@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@800&display=swap");
/* =============================================
   Secure Foundations — Brand Override
   ============================================= */

:root {
  /* Primary Colors */
  --primary: #064163;
  --primary-accent: #29a4c8;
  --primary-dark: #042d45;
  --primary-light: #e8f4f8;

  /* Secondary Colors */
  --accent: #29a4c8;
  --accent-dark: #1e8aa8;
  --accent-light: #d9f0f7;

  /* Neutral Colors */
  --white: #fdfdfd;
  --gray-4: #cccccc;
  --light-3: #f7fafb;

  /* Info mapped to aqua */
  --info: #29a4c8;
  --info-dark: #1e8aa8;
  --info-light: #e8f4f8;

  /* Gradients — updated to SF brand */
  --gradient-1: linear-gradient(180deg, #064163 0%, #042d45 100%);
  --gradient-2: linear-gradient(180deg, #064163 13.02%, #29a4c8 85.42%);
  --gradient-5: linear-gradient(180deg, #064163 0%, #29a4c8 100%);
  --gradient-8: linear-gradient(180deg, #042d45 0%, #1e8aa8 100%);
  --gradient-9: linear-gradient(180deg, #29a4c8 13.02%, #064163 85.42%);
}

/* Navbar background */
.navbar-area {
  background: #064163 !important;
}

/* Body background gradient */
body {
  background: linear-gradient(#e8f4f8 0%, rgba(255, 255, 255, 0) 100%) !important;
}

/* Primary buttons */
.primary-btn {
  background: #29a4c8 !important;
  border-color: #29a4c8 !important;
}
.primary-btn:hover {
  background: #1e8aa8 !important;
  border-color: #1e8aa8 !important;
}

/* Outline buttons */
.primary-btn-outline {
  color: #29a4c8 !important;
  border-color: #29a4c8 !important;
}
.primary-btn-outline:hover {
  background: #29a4c8 !important;
  color: #fff !important;
}

/* Navbar buttons when not logged in */
.navbar-btn .primary-btn-outline {
  color: #fff !important;
  border-color: #fff !important;
}
.navbar-btn .primary-btn-outline:hover {
  background: #29a4c8 !important;
  border-color: #29a4c8 !important;
}
.navbar-btn .primary-btn {
  background: #29a4c8 !important;
  border-color: #29a4c8 !important;
}
.navbar-btn .primary-btn:hover {
  background: #fff !important;
  color: #1a1a1a !important;
  border-color: #fff !important;
}

/* Section title accent colors */
.section-title-five .sub-title {
  color: #29a4c8 !important;
}

.sf-plans-section .section-title-five h6 {
  background: none;
  color: #f0923a !important;
  border: none !important;
  padding: 0;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 48px;
}

.sf-plans-section .section-title-five {
  max-width: 100%;
}

.sf-plans-section .section-title-five h2 {
  margin-bottom: 40px;
  font-size: 3.2rem !important;
  font-weight: 700 !important;
  white-space: nowrap;
}

.sf-plans-section .section-title-five p {
  color: #064163 !important;
  font-size: 1.2rem;
}

/* Pricing card active/highlighted */
.pricing-style-fourteen .pricing-active,
.pricing-style-fifteen .pricing-active {
  border-color: #29a4c8 !important;
}
.pricing-style-fourteen .pricing-active .primary-btn,
.pricing-style-fifteen .pricing-active .primary-btn {
  background: #064163 !important;
}

/* Links */
a:hover {
  color: #29a4c8 !important;
}

/* Footer */
.footer-area {
  background: #064163 !important;
}

/* =============================================
   Light Navbar — DreamHost-inspired
   ============================================= */

.navbar-area {
  background: #ffffff !important;
  box-shadow: 0px 6px 24px 0px rgba(38, 45, 118, 0.06) !important;
  padding: 8px 0 !important;
}

/* Nav links — navy, clean */
.navbar-area .navbar-nav .nav-item a {
  color: #1a1a1a !important;
  font-weight: 500 !important;
  font-size: 0.95rem !important;
  transition: color 0.2s ease !important;
}
.navbar-area .navbar-nav .nav-item a:hover,
.navbar-area .navbar-nav .nav-item a:focus {
  color: #29a4c8 !important;
}

/* Dropdown menu */
.navbar-area .sub-menu {
  border-radius: 8px !important;
  box-shadow: 0px 8px 24px rgba(6, 65, 99, 0.1) !important;
  border: 1px solid rgba(6, 65, 99, 0.06) !important;
}
.navbar-area .sub-menu li a {
  color: #1a1a1a !important;
  font-weight: 400 !important;
}
.navbar-area .sub-menu li a:hover {
  color: #29a4c8 !important;
  background: #f0f7fa !important;
}

/* Login button — ghost/outline pill */
.navbar-btn .primary-btn-outline {
  color: #1a1a1a !important;
  border-color: #1a1a1a !important;
  border-radius: 4rem !important;
  font-weight: 600 !important;
  padding: 8px 24px !important;
  transition: all 0.2s ease !important;
}
.navbar-btn .primary-btn-outline:hover {
  background: #064163 !important;
  color: #fff !important;
  border-color: #1a1a1a !important;
}

/* Register button — aqua pill with shadow */
.navbar-btn .primary-btn {
  background: #29a4c8 !important;
  border-color: #29a4c8 !important;
  color: #fff !important;
  border-radius: 4rem !important;
  font-weight: 600 !important;
  padding: 8px 24px !important;
  box-shadow: 0px 6px 24px 0px rgba(38, 45, 118, 0.08) !important;
  transition: all 0.2s ease !important;
}
.navbar-btn .primary-btn:hover {
  background: #064163 !important;
  border-color: #1a1a1a !important;
  color: #fff !important;
  box-shadow: 0px 6px 24px 0px rgba(38, 45, 118, 0.15) !important;
}

/* Cart icon — navy */
.navbar-btn a[title="Cart"] {
  color: #1a1a1a !important;
}
.navbar-btn a[title="Cart"]:hover {
  color: #29a4c8 !important;
}

/* Mobile toggler — navy */
.navbar-toggler .toggler-icon {
  background: #064163 !important;
}

/* Logo — bigger */
.navbar-brand img {
  max-height: 45px !important;
}

/* Chevron icons — navy */
.navbar-area .sub-nav-toggler span i {
  color: #1a1a1a !important;
}

/* Language selector in navbar */
.nav-lang-btn {
  color: #1a1a1a !important;
  font-size: 0.9rem !important;
  font-weight: 500 !important;
  padding: 8px 12px !important;
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
  transition: color 0.2s ease !important;
  text-decoration: none !important;
  cursor: pointer !important;
}
.nav-lang-btn:hover {
  color: #29a4c8 !important;
}

/* Footer logo — white rounded background */
.sf-footer-logo-img {
  max-height: 60px;
  background: #ffffff;
  padding: 8px 16px;
  border-radius: 10px;
}

/* =============================================
   Homepage Hero
   ============================================= */

.sf-hero {
  background: linear-gradient(135deg, #064163 0%, #0a5a7c 50%, #29a4c8 100%) !important;
  padding: 100px 0 50px !important;
  position: relative;
  overflow: hidden;
}

.sf-hero .header-content h1 {
  color: #ffffff !important;
  font-size: 2.3rem;
  font-weight: 800;
  line-height: 1.35;
  margin-bottom: 64px;
}

.sf-hero .header-content p {
  color: rgba(255, 255, 255, 0.85) !important;
  font-size: 1.15rem;
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 520px;
}

/* CTA Button */
.sf-hero-cta .primary-btn {
  background: #ffffff !important;
  color: #1a1a1a !important;
  border-color: #ffffff !important;
  font-size: 1.05rem !important;
  font-weight: 700 !important;
  padding: 14px 32px !important;
  border-radius: 8px !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15) !important;
  transition: all 0.3s ease !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
}
.sf-hero-cta .primary-btn:hover {
  background: #e8f4f8 !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2) !important;
}

.sf-hero-badge {
  background: linear-gradient(135deg, #f0923a 0%, #f7b96b 100%);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  margin-left: 8px;
  vertical-align: middle;
}

.sf-hero-guarantee {
  color: rgba(255, 255, 255, 0.7) !important;
  font-size: 0.85rem !important;
  margin-top: 12px !important;
}

/* Hero image */
.sf-hero .header-image img {
  transform: scale(1.15);
  width: 100%;
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Feature Strip */
.sf-feature-strip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(135deg, #f0923a 0%, #f7b96b 100%);
  border-radius: 12px;
  padding: 20px 32px;
  margin-top: 40px;
  flex-wrap: wrap;
  gap: 12px;
  box-shadow: 0 4px 20px rgba(240, 146, 58, 0.25);
}

.sf-feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 600;
}

.sf-feature-item i {
  font-size: 1.2rem;
  color: #ffffff;
}

@media (max-width: 991px) {
  .sf-hero .header-content h1 {
    font-size: 1.8rem;
  }
  .sf-hero {
    padding: 60px 0 30px !important;
  }
  .sf-feature-strip {
    justify-content: center;
    text-align: center;
  }
  .sf-hero .header-image {
    margin-top: 50px;
  }
}

@media (max-width: 575px) {
  .sf-hero .header-content h1 {
    font-size: 1.6rem;
  }
  .sf-feature-item {
    flex: 0 0 100%;
    justify-content: center;
  }
}

/* =============================================
   Domain Search Section
   ============================================= */

.sf-domain-search {
  padding: 60px 0 40px;
  background: #fdfdfd;
}

.sf-domain-title {
  color: #000000;
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: 28px;
}

.sf-domain-subtitle {
  color: #064163;
  font-size: 1.25rem;
  margin-bottom: 36px;
}

/* Search bar container */
.sf-domain-bar {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(6, 65, 99, 0.08);
  border: 1px solid #e8edf1;
  overflow: hidden;
}

/* Tabs */
.sf-domain-tabs {
  display: flex;
  border-bottom: 1px solid #e8edf1;
}

.sf-domain-tab {
  flex: 1;
  padding: 12px 20px;
  background: transparent;
  border: none;
  font-size: 0.9rem;
  font-weight: 600;
  color: #548191;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
}

.sf-domain-tab.active {
  color: #064163;
  background: #f0f7fa;
}

.sf-domain-tab.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #f0923a;
}

.sf-domain-tab:hover:not(.active) {
  color: #064163;
  background: #f7fafb;
}

/* Input area */
.sf-domain-form {
  padding: 0;
}

.sf-domain-input-wrap {
  display: flex;
  align-items: center;
}

.sf-domain-input {
  flex: 1;
  border: none;
  padding: 18px 20px;
  font-size: 0.9rem;
  color: #064163;
  outline: none;
  background: transparent;
}

.sf-domain-input::placeholder {
  color: #b1c6cc;
}

.sf-domain-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-right: 12px;
}

.sf-domain-ai-btn {
  background: transparent;
  border: 1px solid #f0923a;
  color: #f0923a;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 4px;
}

.sf-domain-ai-btn:hover {
  background: #f0923a;
  border-color: #f0923a;
  color: #ffffff;
}

.sf-domain-search-btn {
  background: #29a4c8;
  border: none;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}

.sf-domain-search-btn:hover {
  background: #064163;
}

/* TLD Price Strip */
.sf-tld-strip {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.sf-tld-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: #f0f7fa;
  border-radius: 20px;
  color: #064163;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.sf-tld-item span {
  color: #548191;
  font-weight: 400;
}

.sf-tld-item:hover {
  background: #29a4c8;
  color: #ffffff;
  text-decoration: none;
}

.sf-tld-item:hover span {
  color: rgba(255, 255, 255, 0.85);
}

/* Transfer link */
.sf-domain-transfer-link {
  text-align: center;
  margin-top: 16px;
  color: #548191;
  font-size: 0.9rem;
}

.sf-domain-transfer-link a {
  color: #f0923a;
  font-weight: 600;
  text-decoration: none;
}

.sf-domain-transfer-link a:hover {
  color: #064163;
}

/* Mobile */
@media (max-width: 575px) {
  .sf-domain-input-wrap {
    flex-wrap: wrap;
  }
  .sf-domain-input {
    width: 100%;
    padding: 14px 16px;
  }
  .sf-domain-actions {
    width: 100%;
    padding: 0 12px 12px;
    justify-content: flex-end;
  }
  .sf-tld-strip {
    gap: 6px;
  }
  .sf-tld-item {
    font-size: 0.8rem;
    padding: 5px 10px;
  }
}

/* AI button active state */
.sf-domain-ai-btn.sf-ai-active {
  background: #f0923a !important;
  border-color: #f0923a !important;
  color: #ffffff !important;
}

/* =============================================
   Most Popular Domains Section
   ============================================= */

.sf-popular-domains {
  padding: 50px 0 60px;
  background: #f7fafb;
}

.sf-section-title {
  color: #064163;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.sf-section-subtitle {
  color: #548191;
  font-size: 1.1rem;
  margin-bottom: 36px;
}

/* Grid layout */
.sf-domains-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

/* Domain card */
.sf-domain-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 1px solid #e8edf1;
  border-radius: 12px;
  padding: 20px 12px;
  text-decoration: none;
  transition: all 0.25s ease;
  position: relative;
  min-height: 100px;
}

.sf-domain-card:hover {
  border-color: #f0923a;
  box-shadow: 0 4px 20px rgba(41, 164, 200, 0.12);
  transform: translateY(-2px);
  text-decoration: none;
}

.sf-domain-ext {
  font-size: 1.3rem;
  font-weight: 700;
  color: #064163;
  margin-bottom: 6px;
}

.sf-domain-card:hover .sf-domain-ext {
  color: #f0923a;
}

.sf-domain-price {
  font-size: 0.9rem;
  font-weight: 600;
  color: #548191;
}

.sf-domain-price small {
  font-weight: 400;
  font-size: 0.8rem;
}

/* Badges: Popular, Trending, Tech, eCommerce */
.sf-domain-hot,
.sf-domain-badge {
  position: absolute;
  top: -8px;
  right: 10px;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 2px 10px;
  border-radius: 12px;
  color: #ffffff;
}

.sf-domain-hot {
  background: linear-gradient(135deg, #f0923a 0%, #f7b96b 100%);
}

.sf-domain-badge {
  background: #c0614a;
}

/* Hidden rows */
.sf-domain-more,
.sf-domain-extra {
  display: none;
}

/* Expand buttons area */
.sf-domains-expand {
  margin-top: 28px;
}

.sf-domains-more-btn {
  background: transparent;
  border: 2px solid #29a4c8;
  color: #f0923a;
  padding: 10px 28px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.sf-domains-more-btn:hover {
  background: #29a4c8;
  color: #ffffff;
}

.sf-domains-more-btn i {
  font-size: 0.8rem;
  transition: transform 0.2s ease;
}

.sf-domains-more-btn:hover i {
  transform: translateY(2px);
}

/* "View full domain pricing" link */
.sf-domains-pricing-link {
  margin-top: 16px;
}

.sf-domains-pricing-link a {
  color: #f0923a;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
}

.sf-domains-pricing-link a:hover {
  color: #064163;
}

/* Responsive */
@media (max-width: 991px) {
  .sf-domains-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 767px) {
  .sf-domains-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  .sf-domain-card {
    padding: 16px 8px;
  }
  .sf-domain-ext {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .sf-domains-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

/* =============================================
   Domain Essentials Filler Section
   ============================================= */

.sf-domain-essentials {
  padding: 36px 0 60px;
  background: #fdfdfd;
}

.sf-essentials-body {
  color: #548191;
  font-size: 1.1rem;
  line-height: 1.75;
  margin-top: 28px;
  margin-bottom: 56px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.sf-essentials-row {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 72px;
  flex-wrap: wrap;
}

.sf-essentials-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  min-width: 100px;
}

.sf-essentials-item i {
  font-size: 2.2rem;
  color: #f0923a;
  background: rgba(41, 164, 200, 0.1);
  width: 62px;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.sf-essentials-item span {
  font-size: 1rem;
  font-weight: 600;
  color: #064163;
  text-align: center;
}

.sf-essentials-orange i {
  color: #f0923a !important;
  background: rgba(240, 146, 58, 0.1) !important;
}

@media (max-width: 767px) {
  .sf-essentials-row {
    gap: 24px;
  }
  .sf-essentials-item {
    flex: 0 0 calc(50% - 24px);
  }
}

@media (max-width: 480px) {
  .sf-essentials-item {
    flex: 0 0 100%;
  }
  .sf-essentials-row {
    gap: 20px;
  }
}

/* =============================================
   Popular Domains — Compact Expandable
   ============================================= */

.sf-popular-compact {
  padding: 0 0 40px;
  background: #fdfdfd;
}

.sf-popular-toggle {
  background: transparent;
  border: none;
  color: #f0923a;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 0;
  transition: color 0.2s ease;
}

.sf-popular-toggle:hover {
  color: #064163;
}

.sf-popular-toggle i {
  font-size: 0.75rem;
  transition: transform 0.3s ease;
}

.sf-popular-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0;
}

.sf-popular-panel.sf-popular-open {
  max-height: 400px;
  padding-top: 16px;
}

.sf-popular-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.sf-popular-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: #f0f7fa;
  border: 1px solid #e8edf1;
  border-radius: 24px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.sf-popular-chip strong {
  color: #064163;
  font-size: 0.9rem;
}

.sf-popular-chip span {
  color: #548191;
  font-size: 0.8rem;
  font-weight: 400;
}

.sf-popular-chip:hover {
  background: #29a4c8;
  border-color: #f0923a;
  text-decoration: none;
}

.sf-popular-chip:hover strong,
.sf-popular-chip:hover span {
  color: #ffffff;
}

.sf-popular-all {
  display: inline-block;
  margin-top: 14px;
  color: #f0923a;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
}

.sf-popular-all:hover {
  color: #064163;
}

/* =============================================
   Plans Section
   ============================================= */

.sf-plans-section {
  background: #fdfdfd !important;
  background-color: #fdfdfd !important;
  padding: 50px 0 70px;
}

.sf-plan-card {
  text-align: center;
  padding: 44px 28px 40px !important;
  border-radius: 12px !important;
  border: 1px solid #e0e8ec !important;
  border-top: 3px solid #064163 !important;
  background: #ffffff !important;
  box-shadow: 0 2px 12px rgba(6, 65, 99, 0.05) !important;
  transition: all 0.3s ease !important;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.sf-plan-card:hover {
  box-shadow: 0 8px 32px rgba(6, 65, 99, 0.1) !important;
  transform: translateY(-4px);
  border-color: #29a4c8 !important;
  border-top-color: #f0923a !important;
}

.sf-plan-icon {
  margin-bottom: 16px;
}

.sf-plan-icon i {
  font-size: 2rem;
  color: #ffffff;
  background: linear-gradient(135deg, #064163 0%, #29a4c8 100%);
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
}

.sf-plan-card .table-head {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.sf-plan-card .table-head .title {
  color: #1a1a1a !important;
  font-size: 1.1rem !important;
  font-weight: 700 !important;
  margin-bottom: 30px;
  border: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  display: block !important;
}

.sf-plan-card .table-head .title a {
  color: #064163;
  text-decoration: none;
  transition: color 0.2s ease;
}

.sf-plan-card .table-head .title a:hover {
  color: #f0923a;
}

.sf-plan-card .table-head p {
  color: #000000 !important;
  font-size: 0.85rem !important;
  line-height: 1.6;
  min-height: 76px;
}

.sf-price-from {
  display: block;
  font-size: 0.75rem !important;
  font-weight: 400 !important;
  color: #548191 !important;
  margin-bottom: 10px;
}

.sf-plan-card .price {
  margin-top: auto;
}

.sf-plan-card .amount {
  color: #f0923a !important;
  font-size: 1.6rem !important;
  font-weight: 800 !important;
}

.sf-plan-card .currency {
  font-size: 1rem !important;
  font-weight: 600 !important;
  color: #f0923a !important;
}

.sf-plan-card .duration {
  font-size: 0.85rem !important;
  font-weight: 400 !important;
  color: #f0923a !important;
}

.sf-plan-card .light-rounded-buttons {
  padding-top: 16px;
}

.sf-plan-card .light-rounded-buttons .btn {
  border-radius: 8px !important;
  padding: 12px 20px !important;
  font-weight: 700 !important;
  font-size: 0.95rem !important;
  background: #29a4c8 !important;
  color: #ffffff !important;
  border: none !important;
  width: 100%;
}

.sf-plan-card:hover .light-rounded-buttons .btn {
  background: linear-gradient(135deg, #f0923a 0%, #f7b96b 100%) !important;
  color: #ffffff !important;
}

.sf-plan-card:hover .sf-plan-icon i {
  background: linear-gradient(135deg, #f0923a 0%, #f7b96b 100%);
}

/* =============================================
   Quick Plan Finder
   ============================================= */

.sf-plan-finder {
  padding: 0 0 70px;
  background: #fdfdfd;
}

.sf-finder-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 32px rgba(6, 65, 99, 0.07);
  border: 1px solid #e0e8ec;
}

/* Two-column horizontal layout */
.sf-finder-layout {
  display: flex;
  min-height: auto;
}

/* Left panel — gradient info */
.sf-finder-left {
  background: linear-gradient(135deg, #064163 0%, #0a5a7c 50%, #29a4c8 100%);
  padding: 20px 28px;
  flex: 0 0 30%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sf-finder-header-icon {
  width: 52px;
  height: 52px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.sf-finder-header-icon i {
  font-size: 1.5rem;
  color: #ffffff;
}

.sf-finder-title {
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.3;
}

.sf-finder-subtitle {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
  margin: 0 0 16px;
  line-height: 1.5;
}

/* Progress bar */
.sf-finder-progress-bar {
  height: 4px;
  background: rgba(212, 160, 60, 0.4);
  border-radius: 4px;
  overflow: hidden;
}

.sf-finder-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #f0923a, #f7b96b);
  border-radius: 4px;
  transition: width 0.4s ease;
}

.sf-finder-step-label {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.78rem;
  margin-top: 10px;
  font-weight: 500;
}

/* Right panel — questions */
.sf-finder-right {
  flex: 1;
  padding: 18px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sf-finder-step-icon {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 10px;
}

.sf-finder-step-icon i {
  font-size: 1.5rem;
  color: #f0923a;
  opacity: 0.2;
}

.sf-finder-question {
  color: #064163;
  font-size: 0.92rem;
  font-weight: 600;
  margin-bottom: 10px;
}

/* Chips — horizontal wrap */
.sf-finder-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.sf-finder-chip {
  background: #f7fafb;
  border: 1px solid #e0e8ec;
  color: #064163;
  padding: 7px 14px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.sf-finder-chip i {
  font-size: 1rem;
  color: #f0923a;
  flex-shrink: 0;
}

.sf-finder-chip:hover {
  background: #064163;
  border-color: #064163;
  color: #ffffff;
}

.sf-finder-chip:hover i {
  color: #f0923a;
}

/* Result */
.sf-finder-result {
  text-align: left;
}

.sf-finder-result-badge {
  display: inline-block;
  background: linear-gradient(135deg, #f0923a 0%, #f7b96b 100%);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.sf-finder-result h4 {
  color: #064163;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.sf-finder-result p {
  color: #548191;
  font-size: 0.88rem;
  margin-bottom: 20px;
  line-height: 1.6;
}

.sf-finder-result-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.sf-finder-cta {
  border-radius: 8px !important;
  padding: 10px 24px !important;
  font-weight: 600 !important;
  font-size: 0.88rem !important;
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
}

.sf-finder-restart {
  background: transparent;
  border: none;
  color: #548191;
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s ease;
}

.sf-finder-restart:hover {
  color: #f0923a;
}

/* Mobile: stack vertically */
@media (max-width: 767px) {
  .sf-finder-layout {
    flex-direction: column;
    min-height: auto;
  }
  .sf-finder-left {
    flex: none;
    padding: 28px 24px;
  }
  .sf-finder-right {
    padding: 24px;
  }
  .sf-finder-options {
    flex-direction: column;
  }
  .sf-finder-result-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

/* =============================================
   Trust and Proof Section
   ============================================= */

.sf-trust-section {
  background: #f0f5f7;
  padding: 100px 0 100px;
  overflow: hidden;
}

.sf-trust-label {
  color: #f0923a !important;
  font-size: 1.2rem !important;
  font-weight: 700 !important;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 48px !important;
}

.sf-trust-title {
  color: #000 !important;
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 68px;
}

.sf-trust-subtitle {
  color: #064163;
  font-size: 1.3rem;
  margin-bottom: 60px;
}

/* Mosaic grid: 2 columns, 3 rows */
.sf-trust-mosaic {
  display: grid;
  grid-template-columns: 45fr 55fr;
  grid-template-rows: 0.47fr 0.33fr 0.47fr;
  gap: 24px;
}

/* Top left - tall (rows 1-2) */
.sf-mosaic-tl {
  grid-column: 1;
  grid-row: 1 / 3;
}

/* Top right - short (row 1) */
.sf-mosaic-tr {
  grid-column: 2;
  grid-row: 1 / 2;
}

.sf-mosaic-tr {
  margin-top: 50px;
}

/* Bottom right - tall (rows 2-3) */
.sf-mosaic-br {
  grid-column: 2;
  grid-row: 2 / 4;
}

.sf-mosaic-br {
  margin-left: 15%;
}

/* Bottom left - short (row 3) */
.sf-mosaic-bl {
  grid-column: 1;
  grid-row: 3 / 4;
}

.sf-mosaic-bl {
  margin-right: -15%;
  position: relative;
  z-index: 2;
  margin-bottom: 50px;
}

/* Card */
.sf-trust-card {
  background: #ffffff;
  border: 1px solid #e8edf0;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.4s ease;
}

.sf-trust-card:hover {
  background: #ffffff;
  border-color: rgba(240, 146, 58, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Image */
.sf-trust-card-img {
  overflow: hidden;
  flex: 1 1 auto;
  min-height: 0;
}

.sf-trust-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.sf-trust-card:hover .sf-trust-card-img img {
  transform: scale(1.05);
}

/* Tall cards: fill the tile frame */
.sf-mosaic-tl .sf-trust-card-img img,
.sf-mosaic-br .sf-trust-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

/* Text */
.sf-trust-card-body {
  flex: 0 0 auto;
  padding: 32px 30px;
}

.sf-trust-card-body h3 {
  color: #1a2b3c;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 14px;
}

.sf-trust-card-body p {
  color: #5a6f7d;
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 22px;
}

/* CTA link */
.sf-trust-cta {
  color: #f0923a;
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
}

.sf-trust-cta:hover {
  color: #f7b96b;
  gap: 10px;
}

/* Tablet */
@media (max-width: 991px) {
  .sf-trust-section {
    padding: 80px 0;
  }
  .sf-trust-title {
    font-size: 2rem;
  }
  .sf-trust-mosaic {
    gap: 16px;
  }
  .sf-trust-card-body {
    padding: 24px 20px;
  }
  .sf-trust-card-body h3 {
    font-size: 1.3rem;
  }
  .sf-trust-card-body p {
    font-size: 0.88rem;
  }
}

/* Mobile - single column stack */
@media (max-width: 767px) {
  .sf-trust-section {
    padding: 60px 0;
  }
  .sf-trust-subtitle {
    margin-bottom: 56px;
  }
  .sf-trust-mosaic {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .sf-trust-card-img {
    height: 200px;
  }
  .sf-trust-card-body h3 {
    font-size: 1.25rem;
  }
}

/* =============================================
   Testimonials Section
   ============================================= */

.sf-testimonials {
  padding: 100px 0 40px;
  margin-bottom: 0;
  background: #c8d3d9;
}

.sf-testi-label {
  color: #f0923a !important;
  font-size: 0.82rem !important;
  font-weight: 600 !important;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px !important;
}

.sf-testi-title {
  color: #000;
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 40px;
}

.sf-testi-subtitle {
  color: #064163;
  font-size: 1.1rem;
  margin-bottom: 50px;
}

.sf-testi-grid {
  margin-top: 10px;
}

/* Card */
.sf-testi-card {
  background: #ffffff;
  border: 1px solid #e8edf0;
  border-radius: 16px;
  padding: 36px 30px;
  margin-bottom: 30px;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.sf-testi-card:hover {
  border-color: rgba(240, 146, 58, 0.3);
  box-shadow: 0 12px 32px rgba(6, 65, 99, 0.08);
  transform: translateY(-4px);
}

/* Stars */
.sf-testi-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 18px;
}

.sf-testi-stars i {
  color: #f0923a;
  font-size: 1rem;
}

/* Headline */
.sf-testi-headline {
  color: #064163;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
}

/* Quote */
.sf-testi-quote {
  color: #5a6f7d;
  font-size: 0.92rem;
  line-height: 1.75;
  margin-bottom: 56px;
  flex: 1;
}

/* Author */
.sf-testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid #f0f3f5;
}

.sf-testi-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: #e8edf0;
}

.sf-testi-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sf-testi-info h5 {
  color: #064163;
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.sf-testi-info span {
  color: #548191;
  font-size: 0.82rem;
}

/* Tablet */
@media (max-width: 991px) {
  .sf-testimonials {
    padding: 80px 0;
  }
  .sf-testi-title {
    font-size: 1.8rem;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .sf-testimonials {
    padding: 60px 0;
  }
  .sf-testi-card {
    padding: 28px 22px;
  }
}

/* =============================================
   Testimonials Section
   ============================================= */

.sf-testimonials {
  padding: 100px 0 40px;
  margin-bottom: 0;
  background: #c8d3d9;
}

.sf-testi-label {
  color: #f0923a !important;
  font-size: 0.82rem !important;
  font-weight: 600 !important;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px !important;
}

.sf-testi-title {
  color: #000;
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 40px;
}

.sf-testi-subtitle {
  color: #064163;
  font-size: 1.1rem;
  margin-bottom: 50px;
}

.sf-testi-grid {
  margin-top: 10px;
}

/* Card */
.sf-testi-card {
  background: #ffffff;
  border: 1px solid #e8edf0;
  border-radius: 16px;
  padding: 36px 30px;
  margin-bottom: 30px;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.sf-testi-card:hover {
  border-color: rgba(240, 146, 58, 0.3);
  box-shadow: 0 12px 32px rgba(6, 65, 99, 0.08);
  transform: translateY(-4px);
}

/* Stars */
.sf-testi-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 18px;
}

.sf-testi-stars i {
  color: #f0923a;
  font-size: 1rem;
}

/* Headline */
.sf-testi-headline {
  color: #064163;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
}

/* Quote */
.sf-testi-quote {
  color: #5a6f7d;
  font-size: 0.92rem;
  line-height: 1.75;
  margin-bottom: 56px;
  flex: 1;
}

/* Author */
.sf-testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid #f0f3f5;
}

.sf-testi-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: #e8edf0;
}

.sf-testi-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sf-testi-info h5 {
  color: #064163;
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.sf-testi-info span {
  color: #548191;
  font-size: 0.82rem;
}

/* Tablet */
@media (max-width: 991px) {
  .sf-testimonials {
    padding: 80px 0;
  }
  .sf-testi-title {
    font-size: 1.8rem;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .sf-testimonials {
    padding: 60px 0;
  }
  .sf-testi-card {
    padding: 28px 22px;
  }
}

/* =============================================
   Clients Ribbon
   ============================================= */

/* What's Included Section */

@media (max-width: 991px) {
  
}

@media (max-width: 575px) {
  
  
}
.sf-clients-ribbon {
  padding: 30px 0 40px;
  margin-top: 0;
  background: #edf5fa;
  border-top: none;
  border-bottom: 1px solid #dce8f0;
}

.sf-clients-headline {
  text-align: center;
  color: #8a9baa;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.sf-clients-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}

.sf-client-logo img {
  max-height: 36px;
  width: auto;
  filter: grayscale(100%);
  opacity: 0.5;
  transition: all 0.3s ease;
}

.sf-client-logo img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* Technology Partners Strip */
.sf-tech-strip {
  padding: 44px 0;
  background: #f0f5f7;
  border-top: 1px solid #e2edf1;
  border-bottom: 1px solid #e2edf1;
}

.sf-tech-headline {
  text-align: center;
  color: #8a9baa;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.sf-tech-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
}

.sf-tech-logo img {
  max-height: 32px;
  width: auto;
  filter: none;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.sf-tech-logo img:hover {
  filter: none;
  opacity: 1;
}

@media (max-width: 767px) {
  .sf-tech-logos {
    gap: 28px;
  }
  .sf-tech-logo img {
    max-height: 30px;
  }
}

/* What's Included Section */

@media (max-width: 991px) {
  
}

@media (max-width: 575px) {
  
  
}
.sf-clients-ribbon {
    padding: 35px 0;
  }
  .sf-clients-logos {
    gap: 30px;
  }
  .sf-client-logo img {
    max-height: 28px;
  }
}

/* =============================================
   Web Hosting - Trust Badge Strip
   ============================================= */

.sf-badge-strip {
  padding: 10px 0;
  background: transparent;
  border-bottom: none;
}

.sf-badge-strip .container {
  background: linear-gradient(135deg, #064163 0%, #1a6d8a 40%, #f0923a 100%);
  border-radius: 16px;
  padding: 14px 40px;
  max-width: 80%;
  margin: 0 auto;
}

.sf-badge-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
}

.sf-badge-item i {
  font-size: 1.6rem;
  color: #ffffff;
  flex-shrink: 0;
  opacity: 0.9;
}

.sf-badge-item strong {
  display: block;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 700;
}

.sf-badge-item span {
  display: block;
  color: rgba(255,255,255,0.85);
  font-size: 0.78rem;
}

@media (max-width: 767px) {
  .sf-badge-item {
    flex-direction: column;
    text-align: center;
    gap: 6px;
  }
}

/* =============================================
   Web Hosting Hero - Top Wave
   ============================================= */

.header-one .header-content-area::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  width: 100%;
  height: 86px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80' preserveAspectRatio='none'%3E%3Cpath d='M0,0 L0,40 C120,70 240,80 360,65 C480,50 600,20 720,15 C840,10 960,30 1080,45 C1200,60 1320,70 1380,72 L1440,75 L1440,0 Z' fill='white' fill-opacity='0.5'/%3E%3C/svg%3E");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  z-index: 2;
}

/* Web Hosting Hero Image Size & Shape */
.header-one .header-image .image {
  max-width: 1140px !important;
}

.header-one .header-image .image img {
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* =============================================
   Web Hosting - Pricing Grid
   ============================================= */

.sf-wh-pricing {
  padding: 100px 0 20px;
  background: #fdfdfd;
}

.sf-wh-label {
  color: #f0923a;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.sf-wh-heading {
  color: #000;
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 40px;
}

.sf-wh-subheading {
  color: #064163;
  font-size: 1.1rem;
  margin-bottom: 50px;
}

.sf-wh-cards {
  margin-top: 10px;
}

/* Card */
.sf-wh-card {
  background: #ffffff;
  border: 1px solid #29a4c8;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 30px;
  transition: all 0.3s ease;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 30px rgba(6, 65, 99, 0.12), 0 2px 8px rgba(6, 65, 99, 0.06);
}

.sf-wh-card:hover {
  border-color: #f0923a;
  box-shadow: 0 16px 50px rgba(6, 65, 99, 0.18), 0 4px 12px rgba(6, 65, 99, 0.08);
  transform: translateY(-6px);
}

/* Popular card */
.sf-wh-popular {
  border: 1px solid #29a4c8;
  box-shadow: 0 8px 30px rgba(41, 164, 200, 0.15);
}

.sf-wh-popular-badge {
  background: #f0923a;
  color: #ffffff;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 0;
}

/* Card header */
.sf-wh-card-header {
  padding: 30px 28px 24px;
  text-align: center;
  border-bottom: 1px solid #f0f3f5;
  min-height: 310px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.sf-wh-plan-name {
  color: #000;
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.sf-wh-plan-desc {
  color: #064163;
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 20px;
}

/* Price */
.sf-wh-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  margin-bottom: 8px;
}

.sf-wh-currency {
  color: #064163;
  font-size: 1.2rem;
  font-weight: 700;
}

.sf-wh-amount {
  color: #064163;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
}

.sf-wh-period {
  color: #548191;
  font-size: 1rem;
  font-weight: 500;
}

.sf-wh-save-badge {
  display: inline-block;
  background: #fef0e2;
  color: #f0923a;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 20px;
  margin-bottom: 8px;
}

.sf-wh-terms {
  color: #8a9baa;
  font-size: 0.72rem;
  margin-bottom: 18px;
}

.sf-wh-cta {
  width: 100%;
  padding: 12px 20px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.sf-wh-cta:hover {
  background: linear-gradient(135deg, #f0923a 0%, #f7b96b 100%) !important;
  border-color: #f0923a !important;
  color: #fff !important;
}

/* Card body */
.sf-wh-card-body {
  padding: 24px 28px 28px;
  flex: 1;
}

.sf-wh-feature-group {
  margin-bottom: 18px;
  margin-top: 22px;
}

.sf-wh-feature-group:first-child {
  margin-top: 0;
}

.sf-wh-feature-group:last-child {
  margin-bottom: 0;
}

.sf-wh-group-title {
  color: #064163;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
  padding-bottom: 6px;
  border-bottom: 1px solid #f0f3f5;
}

.sf-wh-card-body ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sf-wh-card-body ul li {
  color: #5a6f7d;
  font-size: 0.85rem;
  padding: 4px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sf-wh-card-body ul li i {
  color: #f0923a;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.sf-wh-card-body ul li strong {
  color: #064163;
}

/* Compare link */
.sf-wh-compare-link {
  color: #f0923a;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
}

.sf-wh-compare-link:hover {
  color: #064163;
}

/* Footer note */
.sf-wh-footer-note {
  color: #8a9baa;
  font-size: 0.78rem;
  margin-top: 20px;
}

/* Responsive */
@media (max-width: 991px) {
  .sf-wh-pricing {
    padding: 80px 0 40px;
  }
  .sf-wh-heading {
    font-size: 1.8rem;
  }
}

@media (max-width: 767px) {
  .sf-wh-pricing {
    padding: 60px 0 30px;
  }
  .sf-wh-card-header {
    padding: 24px 20px 20px;
  }
  .sf-wh-card-body {
    padding: 20px 20px 24px;
  }
}

/* Pricing card row alignment spacers */
.sf-wh-spacer {
  visibility: hidden;
  height: 24px;
}

.sf-wh-popular:hover {
  border-color: #f0923a !important;
}

/* =============================================
   DEV FLAG — Needs Update Indicator
   ============================================= */

.sf-dev-flag {
  position: relative;
  border: 2px dashed #e74c3c !important;
  border-radius: 8px;
  padding: 8px;
  background: rgba(231, 76, 60, 0.04);
}

.sf-dev-flag::before {
  content: "NEEDS UPDATE";
  display: block;
  background: #e74c3c;
  color: #ffffff;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-align: center;
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 6px;
  animation: sf-flag-pulse 2s ease-in-out infinite;
}

@keyframes sf-flag-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

/* =============================================
   4.1.3 Support Block – Web Hosting
   ============================================= */
.sf-support-block {
  padding: 0 0 10px 0;
}

.sf-support-banner {
  display: flex;
  align-items: center;
  background: #f7fafb;
  border-radius: 12px;
  padding: 30px 40px;
  gap: 24px;
  box-shadow: 0 2px 8px rgba(6, 65, 99, 0.06);
}

.sf-support-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #064163 0%, #29a4c8 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sf-support-icon i {
  font-size: 26px;
  color: #ffffff;
}

.sf-support-text {
  flex: 1;
}

.sf-support-text h4 {
  font-size: 20px;
  font-weight: 700;
  color: #064163;
  margin: 0 0 6px 0;
}

.sf-support-text p {
  font-size: 15px;
  color: #548191;
  margin: 0;
  line-height: 1.5;
}

.sf-support-cta {
  flex-shrink: 0;
}

.sf-support-cta .btn {
  padding: 12px 32px;
  font-weight: 600;
  font-size: 15px;
  border-radius: 8px;
  background: linear-gradient(135deg, #f0923a 0%, #f7b96b 100%) !important;
  border-color: #f0923a !important;
  color: #ffffff !important;
  white-space: nowrap;
}

/* Responsive – stack on mobile */
@media (max-width: 768px) {
  .sf-support-banner {
    flex-direction: column;
    text-align: center;
    padding: 24px 20px;
    gap: 16px;
  }

  .sf-support-cta .btn {
    width: 100%;
  }
}

/* =============================================
   4.1.4 Key Benefits Strip – Web Hosting
   ============================================= */
.sf-benefits-strip {
  padding: 80px 0;
  background: #ffffff;
}

.sf-benefits-label {
  color: #f0923a;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.sf-benefits-heading {
  font-size: 28px;
  font-weight: 700;
  color: #D4A03C;
  margin-bottom: 14px;
}

.sf-benefits-subheading {
  font-size: 15px;
  color: #548191;
  max-width: 600px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

.sf-benefits-cards {
  display: flex;
  flex-wrap: wrap;
  
  justify-content: center;
}

.sf-benefit-card {
  background: #f7fafb;
  border-radius: 12px;
  padding: 36px 28px;
  text-align: center;
  height: 100%;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.sf-benefit-card:hover {
  box-shadow: 0 8px 24px rgba(6, 65, 99, 0.1);
  transform: translateY(-4px);
}

.sf-benefit-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #064163 0%, #29a4c8 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.sf-benefit-icon svg {
  width: 24px;
  height: 24px;
  stroke: #ffffff;
  fill: none;
}

.sf-benefit-icon i {
  font-size: 24px;
  color: #ffffff;
}

.sf-benefit-card h5 {
  font-size: 16px;
  font-weight: 700;
  color: #064163;
  margin-bottom: 10px;
}

.sf-benefit-card p {
  font-size: 14px;
  color: #548191;
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 991px) {
  .sf-benefits-cards .col-lg {
    flex: 0 0 33.333%;
    max-width: 33.333%;
  }
}

@media (max-width: 767px) {
  .sf-benefits-strip {
    padding: 50px 0;
  }
  .sf-benefits-cards .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (max-width: 575px) {
  .sf-benefits-cards .col-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* =============================================
   Global Section Heading System
   ============================================= */

/* Labels (overlines) — small, uppercase, spaced out, orange accent */
.sf-wh-label,
.sf-benefits-label {
  font-size: 1.1rem !important;
  font-weight: 700 !important;
  letter-spacing: 3.5px !important;
  text-transform: uppercase !important;
  color: #f0923a !important;
  margin-bottom: 48px !important;
  display: inline-block;
  position: relative;
  padding-bottom: 8px;
}

.sf-wh-label::after,
.sf-benefits-label::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: #f0923a;
  border-radius: 2px;
}

/* Headings — larger, bolder, tighter line-height */
.sf-wh-heading,
.sf-benefits-heading {
  font-size: 2.4rem !important;
  font-weight: 800 !important;
  color: #000 !important;
  text-shadow: none !important;
  line-height: 1.15 !important;
  letter-spacing: -0.5px !important;
  margin-bottom: 40px !important;
}

/* Subheadings — lighter weight, more readable, subtle contrast */
.sf-wh-subheading,
.sf-benefits-subheading {
  font-size: 1.1rem !important;
  font-weight: 400 !important;
  color: #064163 !important;
  line-height: 1.7 !important;
  max-width: 620px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  letter-spacing: 0.2px !important;
}

/* Support block heading — slightly different feel */
.sf-support-text h4 {
  font-size: 21px !important;
  font-weight: 800 !important;
  letter-spacing: -0.3px !important;
}

.sf-support-text p {
  font-weight: 400 !important;
  letter-spacing: 0.2px !important;
}

/* Benefits section heading overrides */
.sf-benefits-label {
  margin-bottom: 24px !important;
}

.sf-benefits-heading {
  font-size: 2.8rem !important;
  margin-bottom: 24px !important;
}

.sf-benefits-subheading {
  margin-bottom: 60px !important;
}

/* Benefits heading - bigger and more space */
.sf-benefits-label {
  margin-bottom: 32px !important;
}

.sf-benefits-heading {
  font-size: 3.2rem !important;
  margin-bottom: 32px !important;
}

.sf-benefits-subheading {
  margin-bottom: 70px !important;
}

/* Benefits - label bigger, heading reverted, more space */
.sf-benefits-label {
  font-size: 1.1rem !important;
  letter-spacing: 4px !important;
  margin-bottom: 36px !important;
}

.sf-benefits-heading {
  font-size: 2.4rem !important;
  margin-bottom: 36px !important;
}

.sf-benefits-subheading {
  margin-bottom: 70px !important;
}

/* Benefits heading line-height increase */
.sf-benefits-heading {
  line-height: 1.5 !important;
}

/* Remove orange underline from benefits label */
.sf-benefits-label::after {
  display: none !important;
}

/* Thought cloud container for section titles */

/* ===== 4.1.5 Promotional Block – Getting Started ===== */
.sf-promo-block {
  padding: 80px 0;
  background: #f7fafb;
}

.sf-promo-content {
  padding-right: 80px;
}

.sf-promo-heading {
  font-family: "Inter", sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: #064163;
  text-shadow: 0 0 6px rgba(212, 160, 60, 0.35), 0 0 14px rgba(212, 160, 60, 0.15);
  margin-bottom: 20px;
}

.sf-promo-text {
  font-size: 15px;
  color: #064163;
  line-height: 1.75;
  margin-bottom: 30px;
}

.sf-promo-cta {
  padding: 14px 36px;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.sf-promo-image {
  text-align: center;
}

.sf-promo-image img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(6, 65, 99, 0.12);
}

/* Responsive – Promo Block */
@media (max-width: 991px) {
  .sf-promo-block {
    padding: 50px 0;
  }
  .sf-promo-content {
    padding-right: 0;
    text-align: center;
  }
  .sf-promo-heading {
    font-size: 24px;
  }
}

@media (max-width: 575px) {
  .sf-promo-heading {
    font-size: 22px;
  }
  .sf-promo-text {
    font-size: 14px;
  }
  .sf-promo-cta {
    width: 100%;
  }
}

/* 4.1.5 Promo subtitle and spacing */
.sf-promo-subtitle {
  font-size: 24px;
  font-weight: 600;
  color: #D4A03C;
  margin-bottom: 20px;
  letter-spacing: 0.3px;
}

.sf-promo-content .sf-promo-heading {
  margin-bottom: 16px;
}

.sf-promo-content .sf-promo-text {
  line-height: 2;
  margin-bottom: 36px;
}

/* 4.1.5 Promo Collage */
.sf-promo-collage {
  position: relative;
  width: 100%;
  padding-bottom: 20px;
}

.sf-collage-main {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 35px rgba(6, 65, 99, 0.15);
}

.sf-collage-main img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.sf-collage-small {
  position: absolute;
  bottom: -30px;
  left: -35px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #ffffff;
  box-shadow: 0 6px 20px rgba(6, 65, 99, 0.2);
}

.sf-collage-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 991px) {
  .sf-promo-collage {
    display: none;
  }
}

/* Collage main - taller */
.sf-collage-main {
  position: relative;
  min-height: 340px;
}

.sf-collage-main img {
  height: 340px;
  object-fit: cover;
}

/* Overlay text on photo */
.sf-collage-overlay-text {
  position: absolute;
  top: 20px;
  left: 20px;
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.88);
  text-shadow: 1px 2px 8px rgba(0, 0, 0, 0.35);
  letter-spacing: 0.5px;
  transform: rotate(-3deg);
  pointer-events: none;
}

/* 4.1.5 Promo spacing overrides */
.sf-promo-content .sf-promo-heading {
  margin-bottom: 24px !important;
}

.sf-promo-content .sf-promo-subtitle {
  margin-bottom: 28px !important;
}

.sf-promo-content .sf-promo-text {
  margin-bottom: 40px !important;
}

/* Promo CTA - orange like Chat Now */
.sf-promo-cta.btn.primary-btn {
  background: linear-gradient(135deg, #f0923a 0%, #f7b96b 100%) !important;
  border: none !important;
  color: #fff !important;
}

.sf-promo-cta.btn.primary-btn:hover {
  background: linear-gradient(135deg, #e07e2a 0%, #f0a850 100%) !important;
}

/* Fluffy cloud behind "Why Choose Secure Foundations" */
.sf-thought-cloud {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 24px 50px;
  margin: 0 auto 14px;
  background: radial-gradient(ellipse at center, rgba(200, 225, 240, 0.35) 0%, rgba(200, 225, 240, 0) 70%);
}

.sf-thought-cloud .sf-benefits-label {
  position: relative;
  z-index: 1;
  white-space: nowrap;
  text-align: center;
  line-height: 1.3 !important;
  font-family: "Fredoka", sans-serif !important;
  font-weight: 600 !important;
  text-transform: none !important;
  font-size: 1.4rem !important;
  margin: 0;
  color: #f0923a !important;
  letter-spacing: 2.5px !important;
}

/* Thinking avatar */
.sf-thinking-avatar {
  margin: 10px auto 0;
  text-align: center;
}

.sf-thinking-avatar img {
  width: 100px;
  height: auto;
}

/* ==============================

/* ==============================
   Plan Comparison Table (4.1.6)
   ============================== */
.sf-comparison {
  padding: 80px 0;
  background: #ffffff;
}

.sf-comparison-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: #f0923a;
  margin-bottom: 14px;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.sf-comparison-label::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 2px;
  background: #f0923a;
  border-radius: 2px;
}

.sf-comparison-heading {
  font-size: 2.4rem;
  font-weight: 800;
  color: #064163;
  text-shadow: none;
  line-height: 1.15;
  margin-bottom: 12px;
}

.sf-comparison-subheading {
  font-size: 1.1rem;
  font-weight: 400;
  color: #6a949f;
  line-height: 1.7;
  max-width: 620px;
  margin: 0 auto 50px;
}

.sf-comparison-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  background: transparent;
  border: none;
  box-shadow: none;
}

.sf-comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  min-width: 700px;
  table-layout: fixed;
}

/* Header row */
.sf-comparison-header-row td {
  background: linear-gradient(135deg, #064163 0%, #29a4c8 100%) !important;
  color: #ffffff !important;
  text-align: center;
  padding: 22px 16px;
  border: none;
  vertical-align: middle;
}

.sf-comparison-header-row td.sf-comparison-header-blank {
  background: transparent !important;
  border: none !important;
}

.sf-comparison-header-row td.sf-comparison-header-popular {
  background: linear-gradient(135deg, #064163 0%, #29a4c8 100%) !important;
}

.sf-comparison-header-row td.sf-comparison-header-cell:not(.sf-comparison-header-blank) {
  border: 1px solid #29a4c8;
  border-radius: 16px 16px 0 0;
}

.sf-comparison-header-row .sf-comparison-plan-name {
  font-size: 1.4rem;
  font-weight: 800;
  color: #ffffff !important;
  margin-bottom: 4px;
}

.sf-comparison-header-row .sf-comparison-plan-price {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8) !important;
}

.sf-comparison-header-row .sf-comparison-header-popular .sf-comparison-plan-name,
.sf-comparison-header-row .sf-comparison-header-popular .sf-comparison-plan-price {
  color: #ffffff;
}

.sf-comparison-pop-badge {
  display: block;
  margin-bottom: 6px;
  color: #f0923a;
  background: #ffffff;
  padding: 2px 10px;
  border-radius: 10px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin: 4px 0;
}

/* Body rows */
.sf-comparison-table tbody td {
  padding: 14px 20px;
  font-size: 0.9rem;
  color: #3a3a3a;
  text-align: center;
  border-bottom: 1px solid #eef2f4;
  border-top: none;
  border-left: none;
  border-right: none;
  vertical-align: middle;
  background: #ffffff;
}

.sf-comparison-table tbody td.sf-comparison-feature {
  text-align: left;
  font-weight: 600;
  color: #064163;
  background: #f8fafb;
  min-width: 140px;
}

.sf-comparison-table tbody tr:not(.sf-comparison-header-row):hover td {
  background: #f0f7fa;
}

.sf-comparison-table tbody tr:not(.sf-comparison-header-row):hover td.sf-comparison-feature {
  background: #e8f1f5;
}

.sf-comparison-pop-cell {
  background: rgba(240, 146, 58, 0.04);
}

/* Vertical dividers between columns */
.sf-comparison-table tbody tr:not(.sf-comparison-header-row) td:not(:last-child) {
  border-right: 1px solid #29a4c8;
}

.sf-comparison-table tfoot td:not(:last-child) {
  border-right: 1px solid #29a4c8;
}

.sf-comparison-table tbody td .lni-checkmark-circle {
  color: #f0923a;
  font-size: 1.1rem;
  margin-right: 4px;
}

/* Outer border on body - left */
.sf-comparison-table tbody tr:not(.sf-comparison-header-row) td:first-child {
  border-left: 1px solid #29a4c8;
}

/* Outer border on body - right */
.sf-comparison-table tbody tr:not(.sf-comparison-header-row) td:last-child {
  border-right: 1px solid #29a4c8;
}

/* Outer border - top of first data row */
.sf-comparison-header-row + tr td {
  border-top: 1px solid #29a4c8;
}

/* Top-left and top-right rounded corners on first data row */
.sf-comparison-header-row + tr td:first-child {
  border-radius: 16px 0 0 0;
}

.sf-comparison-header-row + tr td:last-child {
  border-radius: 0;
}

/* Footer / CTA row */
.sf-comparison-table tfoot td {
  padding: 24px 20px;
  text-align: center;
  background: #f8fafb;
  border: none;
  border-top: 1px solid #eef2f4;
}

.sf-comparison-table tfoot td:first-child {
  border-left: 1px solid #29a4c8;
}

.sf-comparison-table tfoot td:last-child {
  border-right: 1px solid #29a4c8;
}

/* Bottom border + rounded corners on last footer row */
.sf-comparison-table tfoot tr:last-child td {
  border-bottom: 1px solid #29a4c8;
}

.sf-comparison-table tfoot tr:last-child td:first-child {
  border-radius: 0 0 0 16px;
}

.sf-comparison-table tfoot tr:last-child td:last-child {
  border-radius: 0 0 16px 0;
}

.sf-comparison-cta {
  padding: 10px 22px;
  font-weight: 700;
  font-size: 0.85rem;
  white-space: nowrap;
}

.sf-comparison-cta:hover {
  background: linear-gradient(135deg, #f0923a 0%, #f7b96b 100%) !important;
  border-color: #f0923a !important;
  color: #ffffff !important;
}

/* Responsive */
@media (max-width: 991px) {
  .sf-comparison {
    padding: 60px 0;
  }
  .sf-comparison-heading {
    font-size: 1.8rem;
  }
}

@media (max-width: 767px) {
  .sf-comparison {
    padding: 50px 0;
  }
  .sf-comparison-heading {
    font-size: 1.5rem;
  }
  .sf-comparison-subheading {
    font-size: 0.95rem;
    margin-bottom: 30px;
  }
  .sf-comparison-table tbody td {
    font-size: 0.82rem;
    padding: 12px;
  }
  .sf-comparison-cta {
    font-size: 0.78rem;
    padding: 8px 14px;
  }
}

.sf-comparison-header-row td.sf-comparison-header-cell:not(.sf-comparison-header-blank):not(.sf-comparison-header-popular) {
  padding-top: 48px;
}

/* Plan column cell hover - light orange */
.sf-comparison-table tbody tr:not(.sf-comparison-header-row) td:nth-child(2):hover,
.sf-comparison-table tbody tr:not(.sf-comparison-header-row) td:nth-child(3):hover,
.sf-comparison-table tbody tr:not(.sf-comparison-header-row) td:nth-child(4):hover,
.sf-comparison-table tfoot tr td:nth-child(2):hover,
.sf-comparison-table tfoot tr td:nth-child(3):hover,
.sf-comparison-table tfoot tr td:nth-child(4):hover {
  background: rgba(240, 146, 58, 0.1) !important;
  cursor: pointer;
}

/* Plan header hover - orange */
.sf-comparison-table .sf-comparison-header-row td.sf-comparison-header-cell:not(.sf-comparison-header-blank):hover {
  background: linear-gradient(135deg, #f0923a 0%, #f7b96b 100%) !important;
  cursor: pointer;
}
.sf-comparison-table .sf-comparison-header-row td.sf-comparison-header-cell:not(.sf-comparison-header-blank):hover .sf-comparison-plan-name,
.sf-comparison-table .sf-comparison-header-row td.sf-comparison-header-cell:not(.sf-comparison-header-blank):hover .sf-comparison-plan-price,
.sf-comparison-table .sf-comparison-header-row td.sf-comparison-header-cell:not(.sf-comparison-header-blank):hover .sf-comparison-pop-badge {
  color: #ffffff !important;
}

/* =============================================
   FAQ Section
   ============================================= */
.sf-faq {
  padding: 80px 0;
  background: #fdfdfd;
}
.sf-faq-label {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #f0923a;
  margin-bottom: 12px;
  display: inline-block;
  position: relative;
  padding-bottom: 8px;
}
.sf-faq-label::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: linear-gradient(135deg, #f0923a 0%, #f7b96b 100%);
  border-radius: 2px;
}
.sf-faq-heading {
  font-size: 2rem;
  font-weight: 700;
  color: #064163;
  margin-bottom: 12px;
}
.sf-faq-subheading {
  font-size: 1.05rem;
  color: #548191;
  margin-bottom: 56px;
}
.sf-faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sf-faq-item {
  border: 1px solid #e2edf1;
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.sf-faq-item:hover {
  border-color: #f0923a;
}
.sf-faq-item.active {
  border-color: #f0923a;
  box-shadow: 0 4px 16px rgba(6, 65, 99, 0.08);
}
.sf-faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  background: #ffffff;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  color: #064163;
  text-align: left;
  transition: background 0.2s ease;
}
.sf-faq-trigger:hover {
  background: #f7fafb;
}
.sf-faq-trigger i {
  font-size: 0.75rem;
  color: #548191;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 16px;
}
.sf-faq-item.active .sf-faq-trigger i {
  transform: rotate(180deg);
  color: #f0923a;
}
.sf-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 24px;
}
.sf-faq-item.active .sf-faq-answer {
  max-height: 300px;
  padding: 0 24px 20px;
}
.sf-faq-answer p {
  font-size: 0.95rem;
  color: #548191;
  line-height: 1.7;
  margin: 0;
}

/* =============================================
   CTA Banner
   ============================================= */
.sf-cta-banner {
  padding: 80px 0;
  background: linear-gradient(180deg, #064163 0%, #042d45 100%);
}
.sf-cta-inner {
  text-align: center;
  max-width: 650px;
  margin: 0 auto;
}
.sf-cta-heading {
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
}
.sf-cta-text {
  font-size: 1.1rem;
  color: #b1c6cc;
  margin-bottom: 32px;
  line-height: 1.6;
}
.sf-cta-btn {
  background: linear-gradient(135deg, #f0923a 0%, #f7b96b 100%) !important;
  border: none !important;
  color: #ffffff !important;
  font-size: 1.05rem;
  font-weight: 700;
  padding: 14px 40px;
  border-radius: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: inline-block;
}
.sf-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(240, 146, 58, 0.35);
  background: linear-gradient(135deg, #e07e2a 0%, #f0a855 100%) !important;
}
.sf-cta-note {
  font-size: 0.85rem;
  color: #7ba3b3;
  margin-top: 20px;
}

/* Responsive */
@media (max-width: 768px) {
  .sf-faq {
    padding: 50px 0;
  }
  .sf-faq-heading {
    font-size: 1.5rem;
  }
  .sf-faq-trigger {
    padding: 14px 18px;
    font-size: 0.92rem;
  }
  .sf-faq-answer {
    padding: 0 18px;
  }
  .sf-faq-item.active .sf-faq-answer {
    padding: 0 18px 16px;
  }
  .sf-cta-banner {
    padding: 50px 0;
  }
  .sf-cta-heading {
    font-size: 1.6rem;
  }
  .sf-cta-text {
    font-size: 1rem;
  }
  .sf-cta-btn {
    padding: 12px 32px;
    font-size: 1rem;
  }
}

/* Fix: Make "Most Popular" badge visible on orange hover */
.sf-comparison-table .sf-comparison-header-row td.sf-comparison-header-cell:not(.sf-comparison-header-blank):hover .sf-comparison-pop-badge {
  background: rgba(255, 255, 255, 0.25) !important;
}

/* Fix: Size inline SVGs in trust badge strip to match icon font */
.sf-badge-item svg {
  width: 1.6rem;
  height: 1.6rem;
  flex-shrink: 0;
  stroke: #ffffff;
  opacity: 0.9;
}

/* =============================================
   WordPress Hosting Page – Hero & Trust Strip
   ============================================= */

/* WP accent color */
:root {
  --wp-blue: #21759b;
  --wp-blue-light: #e6f2f8;
  --wp-blue-dark: #1a5f7e;
}

/* Scroll-triggered animations */
.sf-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.sf-animate[data-animation="fadeInRight"] {
  transform: translateX(40px);
}
.sf-animate.sf-visible {
  opacity: 1;
  transform: translateY(0) translateX(0);
}

/* Hero Section */
.sfwp-hero {
  position: relative;
  background-image: none; background-size: cover; background-position: center right -100px; background-repeat: no-repeat;
  padding: 100px 0 0;
  overflow: hidden;
}
.sfwp-hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(91, 58, 140, 0.4) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* WP Badge pill */
.sfwp-hero-wp-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  padding: 6px 18px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  backdrop-filter: blur(4px);
}
.sfwp-hero-wp-badge i {
  font-size: 1rem;
  color: #f0923a;
}

/* Title */
.sfwp-hero-title {
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 20px;
}

/* Subtitle */
.sfwp-hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 520px;
}

/* CTA */
.sfwp-hero-cta-wrap {
  margin-bottom: 30px;
}
.sfwp-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #f0923a 0%, #f7b96b 100%) !important;
  border: none !important;
  color: #ffffff !important;
  font-size: 1.05rem;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 10px;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}
.sfwp-hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(240, 146, 58, 0.4);
  color: #ffffff !important;
}
.sfwp-hero-badge {
  background: rgba(255, 255, 255, 0.25);
  padding: 3px 10px;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.sfwp-hero-terms {
  font-size: 0.82rem;
  color: #548191;
  margin-top: 12px;
}

/* Mockup Browser */
.sfwp-hero-visual {
  position: relative;
  padding: 20px;
}
.sfwp-mockup-browser {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}
.sfwp-mockup-dots {
  display: flex;
  gap: 6px;
  padding: 12px 16px;
  background: #f0f3f5;
}
.sfwp-mockup-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.sfwp-mockup-dots span:nth-child(1) { background: #ff5f57; }
.sfwp-mockup-dots span:nth-child(2) { background: #ffbd2e; }
.sfwp-mockup-dots span:nth-child(3) { background: #28c840; }
.sfwp-mockup-body {
  display: flex;
  padding: 16px;
  gap: 12px;
  min-height: 200px;
}
.sfwp-mockup-sidebar {
  width: 30%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 8px;
  background: #f7fafb;
  border-radius: 6px;
}
.sfwp-mockup-line {
  height: 8px;
  background: #21759b;
  border-radius: 4px;
  opacity: 0.3;
  animation: sfwp-pulse 2.5s ease-in-out infinite;
}
.sfwp-mockup-line.short { width: 60%; }
.sfwp-mockup-line:nth-child(2) { animation-delay: 0.3s; }
.sfwp-mockup-line:nth-child(3) { animation-delay: 0.6s; }
.sfwp-mockup-line:nth-child(4) { animation-delay: 0.9s; }
.sfwp-mockup-line:nth-child(5) { animation-delay: 1.2s; }
.sfwp-mockup-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sfwp-mockup-block {
  background: linear-gradient(135deg, #e6f2f8, #d9f0f7);
  border-radius: 6px;
  height: 50px;
  animation: sfwp-pulse 3s ease-in-out infinite;
}
.sfwp-mockup-block.wide { width: 100%; height: 70px; }
.sfwp-mockup-block.short { height: 30px; }
.sfwp-mockup-row {
  display: flex;
  gap: 10px;
}
.sfwp-mockup-row .sfwp-mockup-block { flex: 1; }

@keyframes sfwp-pulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.7; }
}

/* Floating Icons */
.sfwp-floating-icon {
  position: absolute;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  animation: sfwp-float 3s ease-in-out infinite;
}
.sfwp-floating-icon i { font-size: 1.2rem; }
.sfwp-floating-icon svg { width: 20px; height: 20px; }

.sfwp-float-wp {
  background: #21759b;
  color: #ffffff;
  top: 10px;
  right: 60px;
  animation-delay: 0s;
}
.sfwp-float-lock {
  background: #ffffff;
  color: #f0923a;
  bottom: 40px;
  left: 0;
  animation-delay: 1s;
}
.sfwp-float-bolt {
  background: linear-gradient(135deg, #f0923a, #f7b96b);
  color: #ffffff;
  bottom: 80px;
  right: 10px;
  animation-delay: 2s;
}

@keyframes sfwp-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* Hero Wave Shape */
.sfwp-hero-shape {
  position: relative;
  margin-top: -1px;
  line-height: 0;
}
.sfwp-hero-shape svg {
  width: 100%;
  height: 80px;
}

/* Trust Badge Strip */
.sfwp-badge-strip {
  background: rgba(212, 160, 60, 0.4);
  backdrop-filter: blur(8px);
  padding: 18px 0;
  margin-top: 40px;
}
.sfwp-badge-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
}
.sfwp-badge-item i {
  font-size: 1.5rem;
  color: #f0923a;
  flex-shrink: 0;
}
.sfwp-badge-item strong {
  display: block;
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 700;
}
.sfwp-badge-item span {
  display: block;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.76rem;
}

/* Responsive */
@media (max-width: 991px) {
  .sfwp-hero {
    padding: 70px 0 0;
  }
  .sfwp-hero-title {
    font-size: 2rem;
  }
}
@media (max-width: 767px) {
  .sfwp-hero {
    padding: 50px 0 0;
  }
  .sfwp-hero-title {
    font-size: 1.7rem;
  }
  .sfwp-hero-subtitle {
    font-size: 1rem;
  }
  .sfwp-badge-item {
    padding: 8px 0;
  }
  .sfwp-badge-item strong {
    font-size: 0.82rem;
  }
}

/* WP Hero – Background image overlay */
.sfwp-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(6, 65, 99, 0.82) 0%, rgba(6, 65, 99, 0.72) 35%, rgba(10, 45, 74, 0.55) 60%, rgba(42, 31, 94, 0.35) 80%, rgba(91, 58, 140, 0.18) 100%);
  z-index: 1;
  pointer-events: none;
}
.sfwp-hero .container,
.sfwp-hero .sfwp-badge-strip,
.sfwp-hero .sfwp-hero-shape {
  position: relative;
  z-index: 2;
}

/* Hide old mockup elements (no longer used) */
.sfwp-hero-visual,
.sfwp-mockup-browser,
.sfwp-floating-icon {
  display: none;
}

/* WP Hero – WordPress logo watermark */
.sfwp-hero-wp-logo {
  position: absolute;
  top: 30px;
  right: 40px;
  width: 120px;
  height: 120px;
  color: rgba(255, 255, 255, 0.12);
  z-index: 2;
  pointer-events: none;
}
.sfwp-hero-wp-logo svg {
  width: 100%;
  height: 100%;
}
@media (max-width: 767px) {
  .sfwp-hero-wp-logo {
    width: 70px;
    height: 70px;
    top: 20px;
    right: 20px;
  }
}

/* WP Badge strip – top wave */
.sfwp-strip-wave-top {
  position: relative;
  z-index: 2;
  line-height: 0;
  margin-bottom: -1px;
}
.sfwp-strip-wave-top svg {
  width: 100%;
  height: 30px;
  display: block;
}
.sfwp-strip-wave-top svg path {
  fill: rgba(212, 160, 60, 0.4);
}

/* Override: badge strip top wave via pseudo-element */
.sfwp-badge-strip {
  position: relative;
}
.sfwp-badge-strip::before {
  content: "";
  position: absolute;
  top: -29px;
  left: 0;
  width: 100%;
  height: 30px;
  background: rgba(212, 160, 60, 0.4);
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 30' preserveAspectRatio='none'%3E%3Cpath d='M0,15 C360,30 1080,0 1440,15 L1440,30 L0,30 Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 30' preserveAspectRatio='none'%3E%3Cpath d='M0,15 C360,30 1080,0 1440,15 L1440,30 L0,30 Z'/%3E%3C/svg%3E");
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

/* Override: remove badge strip wave */
.sfwp-badge-strip::before {
  display: none;
}
.sfwp-strip-wave-top {
  display: none;
}

/* WP Hero – wavy top border under navbar */
.sfwp-hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background: #fdfdfd;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 50' preserveAspectRatio='none'%3E%3Cpath d='M0,0 L1440,0 L1440,30 C1080,50 360,10 0,30 Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 50' preserveAspectRatio='none'%3E%3Cpath d='M0,0 L1440,0 L1440,30 C1080,50 360,10 0,30 Z'/%3E%3C/svg%3E");
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  z-index: 3;
  pointer-events: none;
}

/* =============================================
   WordPress Hosting – Pricing Grid
   ============================================= */
.sfwp-pricing {
  padding: 80px 0 60px;
  background: #fdfdfd;
}
.sfwp-pricing-label {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #21759b;
  margin-bottom: 12px;
  display: inline-block;
  position: relative;
  padding-bottom: 8px;
}
.sfwp-pricing-label::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: linear-gradient(135deg, #f0923a 0%, #f7b96b 100%);
  border-radius: 2px;
}
.sfwp-pricing-heading {
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: #064163;
  margin-bottom: 56px;
}
.sfwp-pricing-subheading {
  font-size: 1.05rem;
  color: #548191;
  margin-bottom: 50px;
}

/* Cards */
.sfwp-cards {
  align-items: stretch;
}
.sfwp-card {
  background: #ffffff;
  border: 1px solid #e2edf1;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.sfwp-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(6, 65, 99, 0.12);
}

/* Popular card */
.sfwp-popular {
  border: 2px solid #21759b;
  position: relative;
}
.sfwp-popular-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #21759b, #2e93bf);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 20px;
  border-radius: 0 0 10px 10px;
}

/* Card header */
.sfwp-card-header {
  padding: 32px 28px 24px;
  text-align: center;
  border-bottom: 1px solid #f0f4f6;
}
.sfwp-popular .sfwp-card-header {
  padding-top: 42px;
}
.sfwp-plan-name {
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: #064163;
  margin-bottom: 8px;
}
.sfwp-plan-desc {
  font-size: 0.88rem;
  color: #548191;
  line-height: 1.5;
  margin-bottom: 20px;
  min-height: 42px;
}

/* Price */
.sfwp-price {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 2px;
  margin-bottom: 6px;
}
.sfwp-currency {
  font-size: 1.2rem;
  font-weight: 700;
  color: #064163;
  margin-top: 8px;
}
.sfwp-amount {
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-size: 3.2rem;
  font-weight: 800;
  color: #064163;
  line-height: 1;
}
.sfwp-period {
  font-size: 1rem;
  color: #548191;
  font-weight: 500;
  margin-top: 24px;
}
.sfwp-save-badge {
  display: inline-block;
  background: linear-gradient(135deg, #f0923a 0%, #f7b96b 100%);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 6px;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}
.sfwp-terms {
  font-size: 0.78rem;
  color: #8ca8b5;
  margin-bottom: 18px;
}

/* CTA button */
.sfwp-cta {
  display: inline-block;
  background: linear-gradient(135deg, #f0923a 0%, #f7b96b 100%) !important;
  border: none !important;
  color: #ffffff !important;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 12px 32px;
  border-radius: 8px;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
  width: 100%;
}
.sfwp-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(240, 146, 58, 0.35);
  color: #ffffff !important;
}

/* Card body */
.sfwp-card-body {
  padding: 20px 28px 28px;
  flex: 1;
}

/* Feature groups */
.sfwp-feature-group {
  margin-bottom: 18px;
}
.sfwp-feature-group:last-child {
  margin-bottom: 0;
}
.sfwp-group-title {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #21759b;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.sfwp-group-title i {
  font-size: 0.85rem;
  color: #21759b;
}
.sfwp-feature-group ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sfwp-feature-group ul li {
  font-size: 0.88rem;
  color: #3d5a68;
  padding: 4px 0;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.sfwp-feature-group ul li i {
  color: #21759b;
  font-size: 0.8rem;
  margin-top: 3px;
  flex-shrink: 0;
}
.sfwp-feature-group ul li strong {
  color: #064163;
}

/* Compare link */
.sfwp-compare-link {
  color: #21759b;
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}
.sfwp-compare-link:hover {
  color: #064163;
}
.sfwp-compare-link i {
  font-size: 0.7rem;
  margin-left: 4px;
  transition: transform 0.2s ease;
}
.sfwp-compare-link:hover i {
  transform: translateY(3px);
}

/* Footer note */
.sfwp-footer-note {
  font-size: 0.8rem;
  color: #8ca8b5;
  margin-top: 16px;
}

/* Responsive */
@media (max-width: 991px) {
  .sfwp-pricing-heading {
    font-size: 1.6rem;
  }
}
@media (max-width: 767px) {
  .sfwp-pricing {
    padding: 50px 0 40px;
  }
  .sfwp-pricing-heading {
    font-size: 1.4rem;
  }
  .sfwp-card-header {
    padding: 24px 20px 20px;
  }
  .sfwp-card-body {
    padding: 16px 20px 24px;
  }
}

/* WP Pricing – Align card content across columns */
.sfwp-plan-desc {
  min-height: 66px !important;
}
.sfwp-card-header {
  min-height: 340px;
}
.sfwp-popular .sfwp-card-header {
  min-height: 340px;
}
@media (max-width: 991px) {
  .sfwp-plan-desc {
    min-height: auto !important;
  }
  .sfwp-card-header {
    min-height: auto;
  }
  .sfwp-popular .sfwp-card-header {
    min-height: auto;
  }
}

/* WP Pricing – Pop "Most Popular" badge above card */
.sfwp-popular {
  margin-top: -16px;
}
.sfwp-popular-badge {
  top: -14px !important;
  border-radius: 8px !important;
  box-shadow: 0 4px 12px rgba(33, 117, 155, 0.3);
}
.sfwp-popular .sfwp-card-header {
  padding-top: 32px !important;
}

/* Level the CTA buttons across cards */
.sfwp-card-header {
  display: flex;
  flex-direction: column;
}
.sfwp-cta {
  margin-top: auto;
}

@media (max-width: 991px) {
  .sfwp-popular {
    margin-top: 0;
  }
}

/* Fix: prevent save badge from stretching in flex */
.sfwp-save-badge {
  align-self: center;
  flex-shrink: 0;
}

/* WP Pricing – Level feature group titles across cards */
/* Each li ~26px, group title ~30px, margin-bottom 18px */
.sfwp-feature-group:nth-child(1) { min-height: 126px; } /* Essentials: 3 items */
.sfwp-feature-group:nth-child(2) { min-height: 152px; } /* Performance: 4 items */
.sfwp-feature-group:nth-child(3) { min-height: 152px; } /* Security: 4 items */
.sfwp-feature-group:nth-child(4) { min-height: 126px; } /* Marketing: 3 items */
.sfwp-feature-group:nth-child(5) { min-height: 152px; } /* Commerce: 4 items */
.sfwp-feature-group:nth-child(6) { min-height: auto; }  /* Support: last, no need */

@media (max-width: 991px) {
  .sfwp-feature-group:nth-child(1),
  .sfwp-feature-group:nth-child(2),
  .sfwp-feature-group:nth-child(3),
  .sfwp-feature-group:nth-child(4),
  .sfwp-feature-group:nth-child(5) {
    min-height: auto;
  }
}

/* WP Pricing – Feature group titles in muted gold for contrast */
.sfwp-group-title {
  color: #b08a2e !important;
}
.sfwp-group-title i {
  color: #b08a2e !important;
}

/* Fix: Allow popular badge to show above card */
.sfwp-popular {
  overflow: visible !important;
}

/* =============================================
   WordPress Hosting – Support Block
   ============================================= */
.sfwp-support-block {
  padding: 0 0 60px;
  background: #fdfdfd;
}
.sfwp-support-banner {
  display: flex;
  align-items: center;
  gap: 24px;
  background: linear-gradient(135deg, #7e6d9e 0%, #5a4d7d 35%, #2a5d7d 70%, #1a7399 100%);
  border-radius: 16px;
  padding: 32px 40px;
  box-shadow: 0 8px 32px rgba(6, 65, 99, 0.15);
}
.sfwp-support-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sfwp-support-icon i {
  font-size: 1.6rem;
  color: #f0923a;
}
.sfwp-support-text {
  flex: 1;
}
.sfwp-support-text h4 {
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
}
.sfwp-support-text p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  line-height: 1.5;
}
.sfwp-support-cta {
  flex-shrink: 0;
}
.sfwp-support-btn {
  background: linear-gradient(135deg, #f0923a 0%, #f7b96b 100%) !important;
  border: none !important;
  color: #ffffff !important;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 8px;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
  white-space: nowrap;
}
.sfwp-support-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(240, 146, 58, 0.35);
  color: #ffffff !important;
}

/* Responsive */
@media (max-width: 767px) {
  .sfwp-support-banner {
    flex-direction: column;
    text-align: center;
    padding: 28px 24px;
    gap: 16px;
  }
}

/* =============================================
   WordPress Hosting – Feature Block
   ============================================= */
.sfwp-features {
  padding: 80px 0;
  background: #f5f8fa;
}
.sfwp-features-label {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #21759b;
  margin-bottom: 12px;
  display: inline-block;
  position: relative;
  padding-bottom: 8px;
}
.sfwp-features-label::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: linear-gradient(135deg, #f0923a 0%, #f7b96b 100%);
  border-radius: 2px;
}
.sfwp-features-heading {
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: #064163;
  margin-bottom: 12px;
}
.sfwp-features-subheading {
  font-size: 1.05rem;
  color: #548191;
  margin-bottom: 50px;
}

/* Feature cards */
.sfwp-feature-cards {
  margin-bottom: 10px;
}
.sfwp-feat-card {
  background: #ffffff;
  border: 1px solid #e2edf1;
  border-radius: 14px;
  padding: 30px 24px;
  text-align: center;
  margin-bottom: 56px;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.sfwp-feat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(6, 65, 99, 0.1);
  border-color: #21759b;
}
.sfwp-feat-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(33, 117, 155, 0.1), rgba(91, 58, 140, 0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  transition: background 0.3s ease, transform 0.3s ease;
}
.sfwp-feat-icon i {
  font-size: 1.4rem;
  color: #21759b;
  transition: color 0.3s ease;
}
.sfwp-feat-card:hover .sfwp-feat-icon {
  background: linear-gradient(135deg, #21759b, #5b3a8c);
  transform: scale(1.1);
}
.sfwp-feat-card:hover .sfwp-feat-icon i {
  color: #ffffff;
}
.sfwp-feat-card h5 {
  font-size: 1rem;
  font-weight: 700;
  color: #064163;
  margin-bottom: 8px;
}
.sfwp-feat-card p {
  font-size: 0.88rem;
  color: #548191;
  line-height: 1.6;
  margin: 0;
}

/* Responsive */
@media (max-width: 767px) {
  .sfwp-features {
    padding: 50px 0;
  }
  .sfwp-features-heading {
    font-size: 1.5rem;
  }
}

/* WP Features – More generous padding */
.sfwp-feat-card {
  padding: 40px 32px !important;
}
.sfwp-feat-icon {
  width: 68px !important;
  height: 68px !important;
  margin-bottom: 22px !important;
}
.sfwp-feat-icon i {
  font-size: 1.7rem !important;
}
.sfwp-feat-card h5 {
  margin-bottom: 16px !important;
  font-size: 1.05rem !important;
}
.sfwp-feat-card p {
  font-size: 0.92rem !important;
}
.sfwp-features {
  padding: 100px 0 !important;
}
.sfwp-features-subheading {
  margin-bottom: 60px !important;
}
.sfwp-feature-cards {
  margin-bottom: 20px !important;
}

/* WP Features – 3-1-3 layout + more padding */
.sfwp-feat-card {
  padding: 48px 36px !important;
}
.sfwp-feat-hero {
  border: 2px solid #21759b;
  background: linear-gradient(135deg, rgba(33, 117, 155, 0.04), rgba(91, 58, 140, 0.03));
}
.sfwp-feature-cards {
  margin-bottom: 28px !important;
}

/* =============================================
   WordPress Hosting – Feature Trails (marquee)
   ============================================= */

/* Override: remove old feature card styles on this page */
.sfwp-feat-card,
.sfwp-feat-hero,
.sfwp-feature-cards {
  display: none !important;
}

/* Trail wrapper */
.sfwp-trail-wrap {
  margin-top: 50px;
  overflow: hidden;
  padding: 10px 0;
}

/* Single trail row */
.sfwp-trail {
  overflow: hidden;
  padding: 12px 0;
}
.sfwp-trail-inner {
  display: flex;
  gap: 24px;
  width: max-content;
}

/* Left to right */
.sfwp-trail-ltr .sfwp-trail-inner {
  animation: sfwp-scroll-ltr 35s linear infinite;
}
/* Right to left */
.sfwp-trail-rtl .sfwp-trail-inner {
  animation: sfwp-scroll-rtl 30s linear infinite;
}

/* Pause on hover */
.sfwp-trail:hover .sfwp-trail-inner {
  animation-play-state: paused;
}

@keyframes sfwp-scroll-ltr {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes sfwp-scroll-rtl {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* Trail cards */
.sfwp-trail-card {
  flex-shrink: 0;
  width: 320px;
  background: #ffffff;
  border: 1px solid #e2edf1;
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  opacity: 0.45;
  filter: grayscale(30%);
  transform: scale(0.96);
  transition: all 0.4s ease;
  cursor: pointer;
}
.sfwp-trail-card:hover {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.04);
  border-color: #21759b;
  box-shadow: 0 16px 48px rgba(33, 117, 155, 0.18);
}

/* Trail card icon */
.sfwp-trail-card .sfwp-trail-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(33, 117, 155, 0.1), rgba(91, 58, 140, 0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.4s ease;
}
.sfwp-trail-card .sfwp-trail-icon i {
  font-size: 1.6rem;
  color: #21759b;
  transition: color 0.4s ease;
}
.sfwp-trail-card:hover .sfwp-trail-icon {
  background: linear-gradient(135deg, #21759b, #5b3a8c);
  transform: scale(1.1);
}
.sfwp-trail-card:hover .sfwp-trail-icon i {
  color: #ffffff;
}

/* Trail card text */
.sfwp-trail-card h5 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #064163;
  margin-bottom: 10px;
}
.sfwp-trail-card p {
  font-size: 0.9rem;
  color: #548191;
  line-height: 1.6;
  margin: 0;
}

/* Responsive */
@media (max-width: 767px) {
  .sfwp-trail-card {
    width: 260px;
    padding: 28px 22px;
  }
  .sfwp-trail-wrap {
    margin-top: 30px;
  }
}

/* Override: Remove auto-scroll, enable manual horizontal scroll */
.sfwp-trail-ltr .sfwp-trail-inner,
.sfwp-trail-rtl .sfwp-trail-inner {
  animation: none !important;
}
.sfwp-trail {
  overflow-x: auto !important;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
}
.sfwp-trail:active {
  cursor: grabbing;
}
.sfwp-trail::-webkit-scrollbar {
  display: none;
}

/* Override: hide old two-row trail wrapper */
.sfwp-trail-wrap {
  display: none !important;
}
/* Single trail row – full width with padding */
.sfwp-features > .sfwp-trail {
  padding: 12px 40px;
  margin-top: 40px;
}

/* WP Feature trail – scroll arrows */
.sfwp-trail-container {
  position: relative;
  padding: 0;
  margin-top: 40px;
}
.sfwp-trail-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 120px;
  border: none;
  background: rgba(6, 65, 99, 0.35);
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  opacity: 0.7;
  pointer-events: auto;
}
.sfwp-trail-arrow:hover {
  background: rgba(6, 65, 99, 0.6);
  color: #ffffff;
  opacity: 1;
}
.sfwp-trail-arrow i {
  font-size: 1.3rem;
  font-weight: 700;
}
.sfwp-trail-left {
  left: 0;
  border-radius: 0 120px 120px 0;
}
.sfwp-trail-right {
  right: 0;
  border-radius: 120px 0 0 120px;
}
@media (max-width: 767px) {
  .sfwp-trail-arrow {
    width: 34px;
    height: 100px;
  }
  .sfwp-trail-left {
    border-radius: 0 100px 100px 0;
  }
  .sfwp-trail-right {
    border-radius: 100px 0 0 100px;
  }
}

/* WP Features – generous heading spacing */
.sfwp-features-heading {
  margin-bottom: 24px !important;
}
.sfwp-features-subheading {
  margin-bottom: 20px !important;
}
.sfwp-features-label {
  margin-bottom: 20px !important;
}

/* WP Features – Match pricing title style */
.sfwp-features-label {
  font-size: 0.85rem !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 2px !important;
  color: #21759b !important;
  margin-bottom: 16px !important;
  padding: 0 !important;
  padding-bottom: 8px !important;
  background: none !important;
  display: inline-block !important;
  position: relative !important;
}
.sfwp-features-label::after {
  display: block !important;
}
.sfwp-features-heading {
  font-family: "Plus Jakarta Sans", "Inter", sans-serif !important;
  font-size: 2rem !important;
  font-weight: 800 !important;
  color: #1a1a1a !important;
  text-shadow: none !important;
  line-height: 1.4 !important;
  letter-spacing: normal !important;
  margin-bottom: 16px !important;
}
.sfwp-features-subheading {
  font-size: 1.05rem !important;
  font-weight: 400 !important;
  color: #548191 !important;
  line-height: 1.6 !important;
  max-width: 620px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  letter-spacing: normal !important;
  margin-bottom: 20px !important;
}

/* WP Trail cards – image style */
.sfwp-trail-card {
  width: 360px !important;
  padding: 0 !important;
  overflow: hidden;
}
.sfwp-trail-img {
  width: 100%;
  height: 180px;
  overflow: hidden;
}
.sfwp-trail-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease, filter 0.4s ease;
  filter: grayscale(20%);
}
.sfwp-trail-card:hover .sfwp-trail-img img {
  transform: scale(1.05);
  filter: grayscale(0%);
}
/* Keep icon cards working too */
.sfwp-trail-card .sfwp-trail-icon {
  margin-top: 36px;
}
/* Text below image */
.sfwp-trail-card h5,
.sfwp-trail-card p {
  padding-left: 24px;
  padding-right: 24px;
}
.sfwp-trail-card h5 {
  margin-top: 20px;
}
.sfwp-trail-card p {
  padding-bottom: 28px;
}

/* Override: trail card images – no fade, pop on hover */
.sfwp-trail-card {
  opacity: 1 !important;
  filter: none !important;
  transform: scale(1) !important;
}
.sfwp-trail-img img {
  filter: none !important;
}
.sfwp-trail-card:hover {
  transform: scale(1.06) !important;
  box-shadow: 0 20px 56px rgba(33, 117, 155, 0.22) !important;
}

/* WP Features – darker background */
.sfwp-features {
  background: #e8eff3 !important;
}

/* =============================================
   WordPress Hosting – Migration Two-Column
   ============================================= */
.sfwp-migration {
  padding: 100px 0 80px;
  background: #f7f9fb;
}

/* Label */
.sfwp-migration-label {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #f0923a;
  margin-bottom: 12px;
  display: inline-block;
  position: relative;
  padding-bottom: 8px;
}
.sfwp-migration-label::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(135deg, #f0923a 0%, #f7b96b 100%);
  border-radius: 2px;
}

/* Heading */
.sfwp-migration-heading {
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: #064163;
  line-height: 1.4;
  margin-bottom: 16px;
}

/* Subtext */
.sfwp-migration-subtext {
  font-size: 1.05rem;
  color: #3a3a3a;
  line-height: 1.7;
  margin-bottom: 36px;
}

/* Icon + text rows */
.sfwp-migration-item {
  display: flex;
  gap: 18px;
  margin-bottom: 64px;
  align-items: flex-start;
}
.sfwp-migration-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, #21759b, #5b3a8c);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-top: 2px;
}
.sfwp-migration-item h5 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #064163;
  margin-bottom: 6px;
}
.sfwp-migration-item p {
  font-size: 0.92rem;
  color: #3a3a3a;
  line-height: 1.7;
  margin-bottom: 0;
}

/* Right column image */
.sfwp-migration-img {
  width: 100%;
  max-width: 480px;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(6, 65, 99, 0.12);
}

/* Migration CTA */
.sfwp-migration-cta {
  background: linear-gradient(135deg, #f0923a 0%, #f7b96b 100%) !important;
  border: none !important;
  color: #ffffff !important;
  font-size: 1.05rem;
  font-weight: 700;
  padding: 14px 40px;
  border-radius: 10px;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
  display: inline-block;
  margin-top: 12px;
}
.sfwp-migration-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(240, 146, 58, 0.35);
  color: #ffffff !important;
}

/* Responsive */
@media (max-width: 991px) {
  .sfwp-migration-img {
    margin-top: 40px;
  }
}
@media (max-width: 767px) {
  .sfwp-migration {
    padding: 60px 0;
  }
  .sfwp-migration-heading {
    font-size: 1.6rem;
  }
}

/* WP Trail cards – taller/square images, bigger cards */
.sfwp-trail-card {
  width: 300px !important;
}
.sfwp-trail-img {
  height: 260px !important;
}

/* WP Trail cards – larger overall */
.sfwp-trail-card {
  width: 380px !important;
}
.sfwp-trail-img {
  height: 320px !important;
}
.sfwp-trail-card h5 {
  font-size: 1.15rem !important;
  margin-top: 24px !important;
}
.sfwp-trail-card p {
  font-size: 0.95rem !important;
  padding-bottom: 32px !important;
}

/* WP Trail cards – slightly smaller to peek next card */
.sfwp-trail-card {
  width: 340px !important;
}
.sfwp-trail-img {
  height: 280px !important;
}

/* Arrow overrides merged above */

/* WP Trail cards – subtle fade, full on hover */
.sfwp-trail-card {
  opacity: 0.8 !important;
}
.sfwp-trail-card:hover {
  opacity: 1 !important;
}

/* Migration headings – black */
.sfwp-migration-heading {
  color: #1a1a1a !important;
}
.sfwp-migration-item h5 {
  color: #1a1a1a !important;
}

/* Pricing heading – black */
.sfwp-pricing-heading {
  color: #1a1a1a !important;
}

/* Pricing label – orange, subheading – dark grey */
.sfwp-pricing-label {
  color: #f0923a !important;
}
.sfwp-pricing-subheading {
  color: #3a3a3a !important;
}

/* Hide orange underlines on all WP page section labels */
.sfwp-pricing-label::after,
.sfwp-features-label::after,
.sfwp-migration-label::after {
  display: none !important;
}

/* =============================================
   WordPress Hosting - FAQ
   ============================================= */
.sfwp-faq {
  padding: 80px 0;
  background: #fdfdfd;
}
.sfwp-faq-label {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #f0923a;
  margin-bottom: 12px;
  display: inline-block;
}
.sfwp-faq-heading {
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 16px;
}
.sfwp-faq-subheading {
  font-size: 1.05rem;
  color: #3a3a3a;
  margin-bottom: 56px;
}
.sfwp-faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sfwp-faq-item {
  border: 1px solid #e2edf1;
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.sfwp-faq-item:hover {
  border-color: #21759b;
}
.sfwp-faq-item.active {
  border-color: #21759b;
  box-shadow: 0 4px 16px rgba(6, 65, 99, 0.08);
}
.sfwp-faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  background: #ffffff;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  color: #064163;
  text-align: left;
  transition: background 0.2s ease;
}
.sfwp-faq-trigger:hover {
  background: #f7fafb;
}
.sfwp-faq-trigger i {
  font-size: 0.75rem;
  color: #548191;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 16px;
}
.sfwp-faq-item.active .sfwp-faq-trigger i {
  transform: rotate(180deg);
  color: #21759b;
}
.sfwp-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 24px;
}
.sfwp-faq-item.active .sfwp-faq-answer {
  max-height: 300px;
  padding: 0 24px 20px;
}
.sfwp-faq-answer p {
  font-size: 0.95rem;
  color: #3a3a3a;
  line-height: 1.7;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .sfwp-faq {
    padding: 50px 0;
  }
  .sfwp-faq-heading {
    font-size: 1.5rem;
  }
  .sfwp-faq-trigger {
    padding: 14px 18px;
    font-size: 0.92rem;
  }
}

/* WP Comparison table – match WP page colors */
.sfwp-comparison .sf-comparison-heading {
  color: #1a1a1a !important;
}
.sfwp-comparison .sf-comparison-subheading {
  color: #3a3a3a !important;
}
.sfwp-comparison .sf-comparison-label::after {
  display: none !important;
}
.sfwp-comparison .sf-comparison-header-row td:not(.sf-comparison-header-blank) {
  background: linear-gradient(135deg, #064163 0%, #29a4c8 70%, #6b5b8a 100%) !important;
}
.sfwp-comparison .sf-comparison-header-row td.sf-comparison-header-cell:not(.sf-comparison-header-blank) {
  border-color: #21759b;
}
.sfwp-comparison .sf-comparison-table tbody tr:not(.sf-comparison-header-row) td:not(:last-child) {
  border-right-color: #21759b;
}
.sfwp-comparison .sf-comparison-table tbody tr:not(.sf-comparison-header-row):hover td {
  background: #f0f5fa;
}
.sfwp-comparison tfoot td {
  padding: 20px 16px;
  background: #ffffff;
  border: none;
}

/* WP Comparison header text – white like web hosting */
.sfwp-comparison .sf-comparison-header-row .sf-comparison-plan-name {
  color: #ffffff !important;
}
.sfwp-comparison .sf-comparison-header-row .sf-comparison-plan-price {
  color: rgba(255,255,255,0.85) !important;
}

/* WP CTA Banner – navy with purple tint */
.sfwp-cta-banner {
  background: linear-gradient(135deg, #064163 0%, #042d45 60%, #2a1f5e 100%) !important;
}

/* Currency selector already removed from template */

/* Shift main nav right to compensate for removed language selector */
#nav.navbar-nav {
  margin-left: 40px !important;
}

/* =============================================
   Secure Foundations – Domain Page (sfd-)
   ============================================= */

/* Hero */
/* Hero background pattern */
/* Hero with background image */.sfd-hero {  background-image: linear-gradient(135deg, rgba(6,45,69,0.88) 0%, rgba(6,65,99,0.65) 60%, rgba(240,146,58,0.3) 100%), url("../assets/images/header/hero-domains.jpg");  background-size: cover;  background-position: right center;  background-repeat: no-repeat;  padding: 100px 0 60px;  color: #fff;  position: relative;}
.sfd-hero-title {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 44px;
}
.sfd-hero-subtitle {
  font-size: 1.3rem;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 35px;
}

/* Domain bar shadow boost on dark hero */
.sfd-hero .sf-domain-bar {
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

/* TLD Price Strip – light on dark background */
.sfd-tld-strip {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}
.sfd-tld-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(41,164,200,0.25);
  border-radius: 20px;
  color: #fff;
  border: 1px solid rgba(41,164,200,0.4);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}
.sfd-tld-item span {
  color: rgba(255,255,255,0.7);
  font-weight: 400;
}
.sfd-tld-item:hover {
  background: rgba(41,164,200,0.5);
  color: #fff;
  text-decoration: none;
}
.sfd-tld-item:hover span {
  color: rgba(255,255,255,0.9);
}

/* Transfer link */
.sfd-transfer-link {
  text-align: left;
  margin-top: 16px;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}
.sfd-transfer-link a {
  color: #f7b96b;
  font-weight: 600;
  text-decoration: none;
}
.sfd-transfer-link a:hover {
  color: #f0923a;
}

/* Mobile */
@media (max-width: 768px) {
  .sfd-hero {
    padding: 50px 0 35px;
  }
  .sfd-hero-title {
    font-size: 1.8rem;
  }
  .sfd-tld-strip {
    gap: 6px;
  }
  .sfd-tld-item {
    font-size: 0.8rem;
    padding: 5px 10px;
  }
}

/* Popular Domains Section */
.sfd-popular {
  padding: 100px 0;
  background: #fdfdfd;
}
.sfd-section-title {
  color: #000000 !important;
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 20px;
}
.sfd-section-subtitle {
  color: #064163;
  font-size: 1.25rem;
  margin-bottom: 50px;
}

/* Grid */
.sfd-popular-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.sfd-popular-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 24px 16px;
  background: #fff;
  border: 1px solid #e8edf1;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.2s ease;
}
.sfd-popular-card:hover {
  border-color: #f0923a;
  box-shadow: 0 4px 16px rgba(6,65,99,0.08);
  transform: translateY(-3px);
  text-decoration: none;
}
.sfd-popular-ext {
  font-size: 1.3rem;
  font-weight: 700;
  color: #064163;
  margin-bottom: 6px;
}
.sfd-popular-desc {
  font-size: 0.8rem;
  color: #548191;
  margin-bottom: 10px;
  line-height: 1.3;
}
.sfd-popular-price {
  font-size: 0.9rem;
  font-weight: 600;
  color: #f0923a;
}

/* Hidden extras */
.sfd-popular-extra {
  display: none;
}

/* Actions */
.sfd-popular-actions {
  margin-top: 28px;
}
.sfd-popular-more-btn {
  background: transparent;
  border: 2px solid #29a4c8;
  color: #f0923a;
  padding: 10px 28px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}
.sfd-popular-more-btn:hover {
  background: #29a4c8;
  color: #fff;
}
.sfd-popular-more-btn i {
  margin-left: 4px;
}
.sfd-popular-all-link {
  color: #f0923a;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
}
.sfd-popular-all-link:hover {
  color: #064163;
}
.sfd-popular-all-link i {
  margin-left: 4px;
}

/* Responsive */
@media (max-width: 991px) {
  .sfd-popular-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 575px) {
  .sfd-popular-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .sfd-popular-card {
    padding: 18px 12px;
  }
  .sfd-popular-ext {
    font-size: 1.1rem;
  }
}

/* Filler – Domain Essentials */
.sfd-filler {
  padding: 100px 0;
  background: #e8edf1;
}
.sfd-filler-body {
  color: #064163;
  font-size: 1.25rem;
  line-height: 1.7;
  margin-bottom: 50px;
}
.sfd-filler-row {  display: flex;  justify-content: center;  gap: 20px;  flex-wrap: wrap;}
.sfd-filler-item {  display: flex;  flex-direction: column;  align-items: center;  text-align: center;  gap: 12px;  background: #fff;  border: 1px solid #e2edf1;  border-radius: 14px;  padding: 32px 20px;  flex: 1;  min-width: 150px;  transition: all 0.25s ease;  box-shadow: 0 2px 8px rgba(6,65,99,0.04);}.sfd-filler-item:hover {  transform: translateY(-5px);  box-shadow: 0 8px 24px rgba(6,65,99,0.1);  border-color: #f0923a;}
.sfd-filler-icon {  width: 80px;  height: 80px;  display: flex;  align-items: center;  justify-content: center;}

/* Filler labels – gradient text */
.sfd-filler-label {
  font-size: 0.95rem;
  font-weight: 700;
  margin-top: 4px;
  background: linear-gradient(135deg, #064163 0%, #1e5a8a 25%, #2979a8 50%, #6b5ce7 75%, #29a4c8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Transfer Section ── */
.sfd-transfer {
  padding: 100px 0 80px;
  background: #fdfdfd;
}

/* Steps */
.sfd-transfer-steps {
  padding-top: 20px;
}
.sfd-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 64px;
  position: relative;
}
.sfd-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 19px;
  top: 42px;
  width: 2px;
  height: calc(100% - 14px);
  background: #e2edf1;
}
.sfd-step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #064163 0%, #29a4c8 100%);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.sfd-step-text {
  font-size: 1rem;
  color: #3a3a3a;
  padding-top: 8px;
  line-height: 1.5;
}

/* Transfer Form Card */
.sfd-transfer-card {
  background: #fff;
  border: 1px solid #e2edf1;
  border-radius: 14px;
  padding: 36px 32px;
  box-shadow: 0 4px 16px rgba(6,65,99,0.06);
}
.sfd-form-group {
  margin-bottom: 20px;
}
.sfd-form-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 8px;
}
.sfd-form-input {
  width: 100%;
  padding: 14px 16px;
  font-size: 0.95rem;
  border: 2px solid #e2edf1;
  border-radius: 8px;
  outline: none;
  transition: border-color 0.2s;
}
.sfd-form-input:focus {
  border-color: #f0923a;
}
.sfd-transfer-submit {
  width: 100%;
  padding: 14px;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #f0923a 0%, #f7b96b 100%);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: opacity 0.2s;
}
.sfd-transfer-submit:hover {
  opacity: 0.9;
}
.sfd-transfer-submit i {
  margin-right: 6px;
}
.sfd-form-note {
  text-align: center;
  font-size: 0.82rem;
  color: #888;
  margin-top: 12px;
  margin-bottom: 0;
}

/* Help Accordion */
.sfd-transfer-help {
  margin-top: 60px;
}
.sfd-help-title {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 56px;
}
.sfd-accordion-item {
  border: 1px solid #e2edf1;
  border-radius: 10px;
  margin-bottom: 10px;
  overflow: hidden;
  background: #fff;
}
.sfd-accordion-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  background: none;
  border: none;
  font-size: 0.95rem;
  font-weight: 600;
  color: #1a1a1a;
  cursor: pointer;
  transition: background 0.2s;
}
.sfd-accordion-btn:hover {
  background: #f5f8fa;
}
.sfd-accordion-btn i {
  transition: transform 0.25s;
  color: #f0923a;
}
.sfd-accordion-item.active .sfd-accordion-btn i {
  transform: rotate(180deg);
}
.sfd-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.sfd-accordion-item.active .sfd-accordion-content {
  max-height: 200px;
}
.sfd-accordion-content p {
  padding: 0 20px 16px;
  margin: 0;
  font-size: 0.9rem;
  color: #3a3a3a;
  line-height: 1.7;
}

/* Benefit Strip */
.sfd-transfer-benefits {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid #e2edf1;
}
.sfd-tbenefit {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #064163;
}
.sfd-tbenefit i {
  color: #f0923a;
  font-size: 1.1rem;
}

/* Transfer Mobile */
@media (max-width: 767px) {
  .sfd-transfer-steps {
    margin-bottom: 36px;
  }
  .sfd-transfer-card {
    padding: 28px 20px;
  }
  .sfd-transfer-benefits {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
}

/* ── Step Cards (clickable) ── */
.sfd-step-card {
  background: #fff;
  border: 1px solid #e2edf1;
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 2px 6px rgba(6,65,99,0.04);
}
.sfd-step-card:hover {
  border-color: #f0923a;
  box-shadow: 0 4px 16px rgba(6,65,99,0.08);
}
.sfd-step-card.active {
  border-color: #f0923a;
  box-shadow: 0 4px 16px rgba(41,164,200,0.15);
}
.sfd-step-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
}
.sfd-step-card .sfd-step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #064163 0%, #29a4c8 100%);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.sfd-step-title {
  flex: 1;
  font-size: 0.95rem;
  font-weight: 600;
  color: #1a1a1a;
}
.sfd-step-arrow {
  color: #f0923a;
  font-size: 0.85rem;
  transition: transform 0.25s ease;
}
.sfd-step-card.active .sfd-step-arrow {
  transform: rotate(180deg);
}
.sfd-step-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.sfd-step-card.active .sfd-step-body {
  max-height: 150px;
}
.sfd-step-body p {
  padding: 0 20px 16px 70px;
  margin: 0;
  font-size: 0.88rem;
  color: #3a3a3a;
  line-height: 1.7;
}

/* Benefits strip under subtitle */
.sfd-transfer-benefits-top {
  margin-top: 0;
  margin-bottom: 56px;
  padding-top: 0;
  border-top: none;
}

/* ── Free Domain with Hosting ── */
.sfd-free-domain { padding: 0; margin-top: 0; margin-bottom: 0; background: #010c14; color: #fff; overflow: visible; width: 100vw; margin-left: calc(-50vw + 50%); }
.sfd-free-domain .sfd-section-title {
  color: #fff;
}
.sfd-free-domain .sfd-section-subtitle {
  color: #ffffff;
  margin-bottom: 56px;
}
.sfd-cta-btn {
  display: inline-block;
  padding: 14px 36px;
  font-size: 1.05rem;
  font-weight: 600;
  color: #064163;
  background: linear-gradient(135deg, #f0923a 0%, #f7b96b 100%);
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
}
.sfd-cta-btn:hover {
  opacity: 0.9;
  color: #064163;
  text-decoration: none;
  transform: translateY(-2px);
}
.sfd-cta-btn i {
  margin-left: 6px;
}

/* ── Bulk Domain Search ── */
.sfd-bulk {
  padding: 100px 0;
  background: #dce5eb;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}
.sfd-bulk .sfd-section-title {
  text-align: left;
  font-size: 2rem;
}
.sfd-bulk .sfd-section-subtitle {
  text-align: left;
  margin-bottom: 0;
  padding-right: 80px;
}
.sfd-bulk-card {
  background: #fff;
  border: 1px solid #e2edf1;
  border-radius: 14px;
  padding: 32px;
  margin-left: 40px;
  box-shadow: 0 4px 16px rgba(6,65,99,0.06);
}
.sfd-bulk-input {
  width: 100%;
  padding: 16px;
  font-size: 0.95rem;
  font-family: 'Inter', monospace;
  border: 2px solid #e2edf1;
  border-radius: 8px;
  outline: none;
  resize: vertical;
  transition: border-color 0.2s;
  margin-bottom: 16px;
}
.sfd-bulk-input:focus {
  border-color: #f0923a;
}
.sfd-bulk-submit {
  width: 100%;
  padding: 14px;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #f0923a 0%, #f7b96b 100%);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: opacity 0.2s;
}
.sfd-bulk-submit:hover {
  opacity: 0.9;
}
.sfd-bulk-submit i {
  margin-right: 6px;
}

/* ── Domain Protection ── */
.sfd-protection {
  padding: 100px 0;
  margin-top: 60px;
  background: #f5f8fa;
  border-top: none;
}

/* ── Flip Cards ── */
.sfd-flip-card {
  perspective: 1000px;
  height: 480px;
  cursor: pointer;
}
.sfd-flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s ease;
  transform-style: preserve-3d;
}
.sfd-flip-card:hover .sfd-flip-inner {
  transform: rotateY(180deg);
}
.sfd-flip-front,
.sfd-flip-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #e2edf1;
}
.sfd-flip-front {
  background: #fff;
}
.sfd-flip-back {
  background: #064163;
  color: #fff;
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 36px 28px;
}
.sfd-flip-back .sfd-protect-title {
  color: #fff;
  margin-bottom: 20px;
}
.sfd-flip-back .sfd-protect-text {
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  line-height: 1.8;
}

.sfd-protect-img {
  width: 100%;
  height: 260px;
  overflow: hidden;
}
.sfd-protect-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sfd-protect-body {
  padding: 28px 24px 32px;
}
.sfd-protect-card {
  background: #fff;
  border: 1px solid #e2edf1;
  border-radius: 14px;
  padding: 0;
  overflow: hidden;
  height: 100%;
  transition: all 0.25s ease;
  box-shadow: 0 2px 8px rgba(6,65,99,0.04);
}
.sfd-protect-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(6,65,99,0.1);
  border-color: #f0923a;
}
.sfd-protect-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: linear-gradient(135deg, #064163 0%, #29a4c8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.4rem;
  margin-bottom: 20px;
}
.sfd-protect-title {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
}
.sfd-protect-text {
  font-size: 0.9rem;
  color: #548191;
  line-height: 1.7;
  margin-bottom: 16px;
}
.sfd-protect-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sfd-protect-list li {
  font-size: 0.88rem;
  color: #3a3a3a;
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
}
.sfd-protect-list li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: #f0923a;
  font-weight: 700;
}

/* ── Support Section ── */
.sfd-support {
  padding: 100px 0;
  background: #fdfdfd;
}
.sfd-support-card {
  background: #fff;
  border: 1px solid #e2edf1;
  border-radius: 14px;
  padding: 36px 28px;
  text-align: center;
  height: 100%;
  transition: all 0.25s ease;
  box-shadow: 0 2px 8px rgba(6,65,99,0.04);
  margin-bottom: 20px;
}
.sfd-support-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(6,65,99,0.1);
  border-color: #f0923a;
}
.sfd-support-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #e8f4f8;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f0923a;
  font-size: 1.5rem;
  margin: 0 auto 16px;
}
.sfd-support-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
}
.sfd-support-desc {
  font-size: 0.9rem;
  color: #548191;
  margin-bottom: 20px;
}
.sfd-support-btn {
  display: inline-block;
  padding: 10px 28px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  background: #29a4c8;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
}
.sfd-support-btn:hover {
  background: #064163;
  color: #fff;
  text-decoration: none;
}

/* Quick Help Links */
.sfd-quick-links {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid #e2edf1;
  flex-wrap: wrap;
}
.sfd-quick-links a {
  color: #f0923a;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
}
.sfd-quick-links a:hover {
  color: #064163;
  text-decoration: underline;
}

/* Mobile for new sections */
@media (max-width: 767px) {
  .sfd-protect-card,
  .sfd-support-card {
    margin-bottom: 20px;
  }
  .sfd-quick-links {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .sfd-bulk .sfd-section-title,
  .sfd-bulk .sfd-section-subtitle {
    text-align: center;
    margin-bottom: 30px;
  }
}

/* Shutter mobile */
@media (max-width: 767px) {
  .sfd-shutter-1,
  .sfd-shutter-2,
  .sfd-shutter-3 {
    padding: 24px 16px;
  }
}

/* ── Shutter aperture design ── */
.sfd-shutter-wrap {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sfd-shutter-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.sfd-shutter-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  padding: 40px 40px;
}
.sfd-shutter-title {
  color: #ffffff !important;
  font-size: 2.6rem !important;
  font-weight: 700;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
  margin-bottom: 56px;
}
.sfd-shutter-text {
  color: rgba(255,255,255,0.9);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 64px;
}
@media (max-width: 767px) {
  .sfd-shutter-wrap {
    min-height: 400px;
  }
  .sfd-shutter-content {
    max-width: 280px;
    padding: 20px 10px;
  }
  .sfd-shutter-title {
    font-size: 1.4rem !important;
  }
  .sfd-shutter-text {
    font-size: 0.85rem;
  }
}

/* ── Lens design ── */
.sfd-lens-wrap {
  position: relative;
  min-height: 138vh; margin: 0 auto;
  transform: scale(0.8);
  transform-origin: center center;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.sfd-lens-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ---- What's Included – Staggered Cards ---- */
.sf-included {
  position: relative;
  padding: 100px 0 120px;
  background: linear-gradient(to bottom, #fdfdfd 65%, #064163 65%);
}

.sf-included-label {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #f0923a;
  margin-bottom: 16px;
}

.sf-included-title {
  font-size: 2.6rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 100px;
}

/* Stagger row */
.sf-stagger-row {
  position: relative;
}

/* Stagger offsets (desktop only) */
.sf-stagger-down {
  transform: translateY(50px);
}
.sf-stagger-up {
  transform: translateY(0);
}

/* Individual card */
.sf-stagger-card {
  background: #fff;
  border-radius: 16px;
  padding: 60px 28px 56px;
  min-height: 368px;
  border: 1px solid rgba(255,255,255,0.15);
  text-align: center;
  box-shadow: 0 12px 40px rgba(0,0,0,0.20), 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sf-stagger-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.28), 0 6px 16px rgba(0,0,0,0.12);
}

/* Circular icon */
.sf-stagger-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #D4A03C;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.sf-stagger-icon i {
  font-size: 2.5rem;
  color: #fff;
  line-height: 1;
}
/* Alternate icon colors: outer cards terracotta, inner cards gold */
.sf-stagger-row > :first-child .sf-stagger-icon,
.sf-stagger-row > :last-child .sf-stagger-icon {
  background: #c0614a;
}

.sf-stagger-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #064163;
  margin-bottom: 12px;
}

.sf-stagger-desc {
  font-size: 0.92rem;
  color: #666;
  line-height: 1.7;
  margin: 0;
}

/* Tablet */
@media (max-width: 991px) {
  .sf-included {
    padding: 70px 0 90px;
    background: linear-gradient(to bottom, #fdfdfd 30%, #064163 30%);
  }
  .sf-included-title {
    font-size: 2rem;
    margin-bottom: 40px;
  }
  .sf-stagger-down,
  .sf-stagger-up {
    transform: none;
  }
  .sf-stagger-card {
    margin-bottom: 24px;
    min-height: auto;
  }
}

/* Mobile */
@media (max-width: 575px) {
  .sf-included {
    padding: 50px 0 70px;
    background: linear-gradient(to bottom, #fdfdfd 15%, #064163 15%);
  }
  .sf-included-title {
    font-size: 1.6rem;
    margin-bottom: 30px;
  }
}


/* Orange CTA button */
.sf-cta-orange {
  background: linear-gradient(135deg, #f0923a 0%, #f7b96b 100%) !important;
  color: #fff !important;
  border: none !important;
  padding: 14px 36px !important;
  font-size: 1.05rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.sf-cta-orange:hover {
  background: linear-gradient(135deg, #e07e28 0%, #f0923a 100%) !important;
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(240, 146, 58, 0.4);
}

/* Bottom CTA on cards */
.sf-wh-cta-bottom {
  margin-top: 24px;
}

/* Override HostPulse blue gradient backgrounds */
#main-body,
#order-standard_cart,
.cart-body {
  background: #fdfdfd !important;
  background-image: none !important;
}

/* Domain search box on cart page – match main site style */
.input-group-box {
  background: #ffffff !important;
  border-radius: 12px !important;
  box-shadow: 0 4px 24px rgba(6, 65, 99, 0.08) !important;
  border: 1px solid #e8edf1 !important;
  padding: 6px 8px !important;
  max-width: 750px;
  margin: 0 auto;
}
.input-group-box .domain-search {
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 18px 20px !important;
  font-size: 0.95rem !important;
  color: #064163 !important;
  font-family: Inter, sans-serif !important;
  box-shadow: none !important;
}
.input-group-box .domain-search::placeholder {
  color: #b1c6cc !important;
}
.input-group-box .domain-search:focus {
  box-shadow: none !important;
  outline: none !important;
}
.input-group-box .domain-check-availability {
  background: #29a4c8 !important;
  border: none !important;
  color: #fff !important;
  border-radius: 8px !important;
  padding: 10px 24px !important;
  font-size: 0.9rem !important;
  font-weight: 600 !important;
  font-family: Inter, sans-serif !important;
}
.input-group-box .domain-check-availability:hover {
  background: #1e8aa8 !important;
}

/* Cart page typography – match main site */
#order-standard_cart .header-title,
.cart-body .header-title {
  font-family: 'Inter', sans-serif !important;
  font-size: 2.6rem !important;
  font-weight: 700 !important;
  color: #000 !important;
}

#order-standard_cart h3,
.cart-body h3 {
  font-family: 'Inter', sans-serif !important;
  font-weight: 700 !important;
  color: #064163 !important;
}

#order-standard_cart p,
#order-standard_cart .domain-checker-result-headline,
#order-standard_cart .domain-suggestion,
.cart-body p,
.cart-body label {
  font-family: 'Inter', sans-serif !important;
  color: #064163 !important;
}

#order-standard_cart .font-size-24,
#order-standard_cart .font-size-22 {
  font-family: 'Inter', sans-serif !important;
  font-weight: 700 !important;
  color: #000 !important;
}

.domain-checker-result-headline strong {
  color: #000 !important;
}

/* Cart page title and subtitle spacing */
#order-standard_cart .header-lined {
  margin-top: -20px !important;
  margin-bottom: 30px !important;
}
#order-standard_cart .header-lined + p {
  margin-bottom: 50px !important;
}

#order-standard_cart .header-lined + p {
  font-size: 1.2rem !important;
}



/* Cart 2-column section spacing and sizing */
#order-standard_cart .font-size-24,
#order-standard_cart .font-size-22 {
  margin-bottom: 20px !important;
  font-size: 1.65rem !important;
}
#order-standard_cart .font-size-24 + p,
#order-standard_cart .font-size-22 + p {
  font-size: 1.15rem !important;
}

#order-standard_cart .domain-promo-box {
  margin-top: 40px !important;
  background: #f0f5f7 !important;
  border-radius: 12px !important;
  padding: 30px !important;
}

/* Promo box buttons – match web hosting plan select style */
#order-standard_cart .domain-promo-box .btn {
  background: #29a4c8 !important;
  border: none !important;
  color: #fff !important;
  padding: 12px 28px !important;
  font-weight: 700 !important;
  font-size: 0.95rem !important;
  border-radius: 8px !important;
  font-family: 'Inter', sans-serif !important;
  transition: all 0.3s ease !important;
  display: inline-block;
}
#order-standard_cart .domain-promo-box .btn:hover {
  background: linear-gradient(135deg, #f0923a 0%, #f7b96b 100%) !important;
  border-color: #f0923a !important;
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(240, 146, 58, 0.4);
}


#order-standard_cart .cart-body > .row {
  display: flex !important;
  flex-wrap: wrap !important;
}
#order-standard_cart .cart-body > .row > .col-md-6 {
  display: flex !important;
}
#order-standard_cart .domain-promo-box {
  display: flex !important;
  flex-direction: column !important;
  width: 100% !important;
}
#order-standard_cart .domain-promo-box > .btn {
  margin-top: auto !important;
  padding-top: 12px !important;
  align-self: flex-start !important;
  width: auto !important;
}
#order-standard_cart .domain-promo-box > .small {
  position: absolute;
  bottom: -20px;
}

/* Space before promo buttons */
#order-standard_cart .domain-promo-box > p:not(.small) {
  margin-bottom: 40px !important;
}

/* Promo box icons – match homepage plan card style */
#order-standard_cart .domain-promo-box .clearfix > i {
  font-size: 1.8rem !important;
  color: #ffffff !important;
  background: linear-gradient(135deg, #064163 0%, #29a4c8 100%) !important;
  width: 52px !important;
  height: 52px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 12px !important;
  margin-bottom: 16px !important;
}

/* Promo box icon turns orange on card hover */
#order-standard_cart .domain-promo-box:hover .clearfix > i {
  background: linear-gradient(135deg, #f0923a 0%, #f7b96b 100%) !important;
  transition: all 0.3s ease;
}





/* Domain unavailable styling */
#order-standard_cart .domain-checker-unavailable {
  color: #d9534f !important;
  font-weight: 700 !important;
}
#order-standard_cart .domain-checker-unavailable strong {
  color: #d9534f !important;
  font-weight: 400 !important;
}
span.unavailable {
  color: #d9534f !important;
}

/* Narrow the promo box columns */
#order-standard_cart .cart-body > .row {
  max-width: 85%;
  margin-left: auto !important;
  margin-right: auto !important;
}

#order-standard_cart .cart-body > .row > .col-md-6:first-child {
  padding-right: 40px !important;
}
#order-standard_cart .cart-body > .row > .col-md-6:last-child {
  padding-left: 40px !important;
}

/* Gap between search bar and promo section */
#order-standard_cart .cart-body > .row:last-of-type {
  margin-top: 60px !important;
}
