@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: 14px !important;
  box-shadow:
    0 1px 2px rgba(6, 65, 99, 0.08),
    0 8px 18px rgba(6, 65, 99, 0.10),
    0 28px 50px rgba(6, 65, 99, 0.18) !important;
  border: 1px solid rgba(6, 65, 99, 0.12) !important;
  padding: 14px !important;
  min-width: 290px;
}

.navbar-area .sub-menu li {
  margin-bottom: 4px;
}

.navbar-area .sub-menu li:last-child {
  margin-bottom: 0;
}

.navbar-area .sub-menu li a {
  color: #1a1a1a !important;
  font-weight: 500 !important;
  font-size: 0.85rem !important;
  padding: 13px 16px !important;
  border-radius: 8px;
  display: flex !important;
  align-items: center;
  gap: 14px;
  transition: background 0.2s ease, color 0.2s ease;
}

.navbar-area .sub-menu li a > i {
  display: inline-block;
  width: 24px;
  text-align: center;
  color: #29a4c8;
  font-size: 1.3rem;
  line-height: 1;
  flex-shrink: 0;
  transition: color 0.2s ease;
}

/* Text span (title + description) - fills remaining row space and stacks vertically */
.navbar-area .sub-menu li a > span:not(.sf-coming-tag) {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  text-align: left;
  line-height: 1.25;
}

/* Description line beneath each item title (HostPapa-style) */
.navbar-area .sub-menu li a > span:not(.sf-coming-tag) > small {
  display: block;
  margin-top: 2px;
  font-size: 0.74rem;
  font-weight: 400;
  color: #6b7280;
  line-height: 1.35;
  letter-spacing: 0.005em;
}

.navbar-area .sub-menu li a:hover > span:not(.sf-coming-tag) > small {
  color: #4b5563;
}

.navbar-area .sub-menu li a:hover {
  color: #064163 !important;
  background: #f0f7fa !important;
}

.navbar-area .sub-menu li a:hover > i {
  color: #064163;
}

/* Push the Coming Soon tag to the right edge of the dropdown row */
.navbar-area .sub-menu li a .sf-coming-tag {
  margin-left: auto;
}

/* 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.75rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 64px;
}

.sf-hero .header-content h1 .sf-hero-subline {
  display: block;
  margin-top: 22px;
  font-size: 1.55rem;
  font-weight: 600;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.92);
}

.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: 14px;
}

.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: #000000;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.sf-tld-item span {
  color: #000000;
  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);
}

.sf-tld-item-sale {
  position: relative;
  background: #fff4e6;
  border: 1px solid #f0923a;
  padding-right: 18px;
}

.sf-tld-item-sale span {
  color: #c4541b !important;
  font-weight: 700 !important;
}

.sf-tld-item-sale::after {
  content: "Sale";
  position: absolute;
  top: -9px;
  right: -10px;
  background: #f0923a;
  color: #ffffff;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(240, 146, 58, 0.35);
}

.sf-tld-item-sale:hover {
  background: #f0923a;
  border-color: #f0923a;
  color: #ffffff;
}

.sf-tld-item-sale:hover span {
  color: #ffffff !important;
}

/* 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: #f5f9fb !important;
  background-color: #f5f9fb !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.25rem !important;
  font-weight: 700 !important;
  margin-bottom: 26px;
  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.95rem !important;
  line-height: 1.65;
  min-height: 72px;
}

.sf-price-from {
  display: block;
  font-size: 0.85rem !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.85rem !important;
  font-weight: 800 !important;
}

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

.sf-plan-card .duration {
  font-size: 0.95rem !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: 1.05rem !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: 1rem;
  font-weight: 600;
  margin-bottom: 22px;
}

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

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

.sf-finder-chip i {
  font-size: 0.95rem;
  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.9;
}

.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.6rem;
  line-height: 1.45;
  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 {
  --bs-gutter-x: 1.75rem;
  --bs-gutter-y: 1.75rem;
  margin-top: 10px;
}

/* Card */
.sf-testi-card {
  position: relative;
  background: #ffffff;
  border: 1px solid #e8edf0;
  border-radius: 14px;
  padding: 36px 22px 22px;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.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);
}

/* Decorative quote mark in top-right corner */
.sf-testi-mark {
  position: absolute;
  top: 14px;
  right: 16px;
  font-size: 2.4rem;
  color: rgba(240, 146, 58, 0.55);
  line-height: 1;
  pointer-events: none;
}

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

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

/* Headline */
.sf-testi-headline {
  color: #064163;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 18px;
  line-height: 1.35;
  padding-right: 40px;
}

/* Quote */
.sf-testi-quote {
  color: #2d2d2d;
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 10px;
  flex: 1;
}

.sf-testi-quote.sf-testi-quote-clamped {
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Read more / Show less link-style button */
.sf-testi-readmore {
  align-self: flex-start;
  background: none;
  border: none;
  padding: 0;
  margin-bottom: 18px;
  color: #29a4c8;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.2s ease;
}

.sf-testi-readmore:hover {
  color: #f0923a;
  text-decoration: underline;
}

/* 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 {
  --bs-gutter-x: 1.75rem;
  --bs-gutter-y: 1.75rem;
  margin-top: 10px;
}

/* Card */
.sf-testi-card {
  position: relative;
  background: #ffffff;
  border: 1px solid #e8edf0;
  border-radius: 14px;
  padding: 36px 22px 22px;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.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);
}

/* Decorative quote mark in top-right corner */
.sf-testi-mark {
  position: absolute;
  top: 14px;
  right: 16px;
  font-size: 2.4rem;
  color: rgba(240, 146, 58, 0.55);
  line-height: 1;
  pointer-events: none;
}

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

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

/* Headline */
.sf-testi-headline {
  color: #064163;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 18px;
  line-height: 1.35;
  padding-right: 40px;
}

/* Quote */
.sf-testi-quote {
  color: #2d2d2d;
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 10px;
  flex: 1;
}

.sf-testi-quote.sf-testi-quote-clamped {
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Read more / Show less link-style button */
.sf-testi-readmore {
  align-self: flex-start;
  background: none;
  border: none;
  padding: 0;
  margin-bottom: 18px;
  color: #29a4c8;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.2s ease;
}

.sf-testi-readmore:hover {
  color: #f0923a;
  text-decoration: underline;
}

/* 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: 80px;
  width: auto;
  filter: none;
  opacity: 0.95;
  transition: all 0.3s ease;
}

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

/* Square-shaped icons (e.g. simpleicons monogram) need a smaller max-height
   to visually match landscape vector logos at the same x-height */
.sf-client-logo.sf-client-logo-square img {
  max-height: 60px;
}

/* 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;
  max-width: 110px;
  width: auto;
  filter: none;
  opacity: 0.8;
  transition: all 0.3s ease;
}

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

/* WHMCS logo PNG is wider than the standard 2.1:1 ratio of the other logos.
   Cap its width so it does not dominate the strip. */
.sf-tech-logo.sf-tech-logo-whmcs img {
  max-width: 90px;
  max-height: 28px;
}

@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.25rem;
  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;
  display: flex;
  flex-direction: column;
}
.sf-wh-card-body .sf-wh-cta-bottom {
  margin-top: auto;
}

.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: #0a0a0a;
  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: 14px 0 40px 0;
  background: #7e98a5;
}

.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.9;
}

.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: 17px;
  color: #000000;
  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: 16px;
  }
  .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.9;
}
.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: #0a0a0a;
  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.9;
  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: 30px !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: #042e44;
  margin-bottom: 10px;
}
.sfwp-trail-card p {
  font-size: 0.9rem;
  color: #3a6471;
  line-height: 1.9;
  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: 30px !important;
}
.sfwp-features-label {
  margin-bottom: 30px !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: 30px !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: 70px 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);
}

.sfd-tld-item-sale {
  position: relative;
  background: rgba(240, 146, 58, 0.18);
  border-color: #f0923a;
  padding-right: 18px;
  color: #ffffff;
}

.sfd-tld-item-sale span {
  color: #ffd9b8 !important;
  font-weight: 700 !important;
}

.sfd-tld-item-sale::after {
  content: "Sale";
  position: absolute;
  top: -9px;
  right: -10px;
  background: #f0923a;
  color: #ffffff;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(240, 146, 58, 0.45);
}

.sfd-tld-item-sale:hover {
  background: #f0923a;
  border-color: #f0923a;
}

.sfd-tld-item-sale:hover span {
  color: #ffffff !important;
}

/* Transfer link */
.sfd-transfer-link {
  text-align: left;
  margin-top: 16px;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}

.sfd-hero-mascot {
  max-width: 220px;
  width: 100%;
  height: auto;
}
.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: 1.05rem;
  font-weight: 600;
  color: #374151;
  transition: color 0.2s ease;
}
.sfd-popular-card:hover .sfd-popular-price {
  color: #f0923a;
}

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

/* Sale variant – matches homepage strip cosmetic emphasis */
.sfd-popular-card-sale {
  position: relative;
  background: #fff4e6;
  border-color: #f0923a;
}

.sfd-popular-card-sale .sfd-popular-ext {
  color: #c4541b;
}

.sfd-popular-card-sale .sfd-popular-price {
  color: #c4541b;
  font-weight: 800;
}

.sfd-popular-card-sale::after {
  content: "Sale";
  position: absolute;
  top: -10px;
  right: -10px;
  background: #f0923a;
  color: #ffffff;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(240, 146, 58, 0.35);
}

.sfd-popular-card-sale:hover {
  background: #ffe4c4;
  border-color: #f0923a;
}

/* Actions */
.sfd-popular-actions {
  margin-top: 28px;
}
.sfd-popular-more-btn {
  background: #29a4c8;
  border: none;
  color: #ffffff;
  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: #064163;
  color: #ffffff;
}
.sfd-popular-more-btn i {
  margin-left: 4px;
}
.sfd-popular-all-link {
  display: inline-block;
  background: #29a4c8;
  color: #ffffff;
  padding: 10px 28px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  margin-left: 12px;
  transition: all 0.2s ease;
}
.sfd-popular-all-link:hover {
  background: #064163;
  color: #ffffff;
  text-decoration: none;
}
.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: 70px 0 100px;
  background: #e8edf1;
}
.sfd-filler .sfd-section-title {
  margin-bottom: 36px;
}
.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: 70px 0 80px;
  background: #fdfdfd;
}
.sfd-transfer .sfd-section-title {
  margin-bottom: 36px;
}

/* 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: #000000;
}
.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: #064163;
  font-size: 1.15rem;
  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: #ffffff;
  background: #f0923a;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
}
.sfd-cta-btn:hover {
  background: #29a4c8;
  color: #ffffff;
  text-decoration: none;
}
.sfd-cta-btn i {
  margin-left: 6px;
}

/* ── Bulk Domain Search ── */
.sfd-bulk {
  padding: 50px 0 100px;
  background: #ffffff;
  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: 58px;
  box-shadow: 0 16px 44px rgba(6, 65, 99, 0.16), 0 4px 12px rgba(6, 65, 99, 0.08);
}
.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: #e8f1f4;
}
.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: #064163;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
}
.sfd-quick-links a:hover {
  color: #f0923a;
  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: 920px;
  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: 20px 40px 40px;
}
.sfd-shutter-mascot {
  display: block;
  width: 200px;
  height: auto;
  margin: 0 auto 32px;
  padding: 18px;
  background: radial-gradient(ellipse at center, rgba(220, 230, 240, 0.22) 0%, rgba(220, 230, 240, 0.10) 55%, rgba(220, 230, 240, 0) 80%);
  border-radius: 50%;
}
.sfd-shutter-title {
  color: #ffffff !important;
  font-size: 4rem !important;
  font-weight: 800;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
  margin-bottom: 56px;
  line-height: 1.15;
}
.sfd-shutter-text {
  color: #c5cfd9;
  font-size: 1.4rem;
  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 58%, #064163 58%);
}

.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(25px);
}
.sf-stagger-up {
  transform: translateY(-45px);
}

/* Individual card */
.sf-stagger-card {
  position: relative;
  background: #fff;
  border-radius: 16px;
  padding: 50px 28px 48px;
  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;
  overflow: hidden;
}

.sf-stagger-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 60px rgba(0,0,0,0.32), 0 8px 20px rgba(0,0,0,0.14);
}

/* Soft tinted panel behind the icon - fades out at the bottom for a softer transition */
.sf-stagger-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to bottom, rgba(6, 65, 99, 0.07) 0%, rgba(6, 65, 99, 0.07) 55%, rgba(6, 65, 99, 0) 100%);
  z-index: 0;
}

.sf-stagger-card > * {
  position: relative;
  z-index: 1;
}

.sf-stagger-card.sf-card-ssl::before {
  background: linear-gradient(to bottom, rgba(6, 65, 99, 0.10) 0%, rgba(6, 65, 99, 0.10) 55%, rgba(6, 65, 99, 0) 100%);
}
.sf-stagger-card.sf-card-backups::before {
  background: linear-gradient(to bottom, rgba(41, 164, 200, 0.14) 0%, rgba(41, 164, 200, 0.14) 55%, rgba(41, 164, 200, 0) 100%);
}
.sf-stagger-card.sf-card-migration::before {
  background: linear-gradient(to bottom, rgba(212, 160, 60, 0.18) 0%, rgba(212, 160, 60, 0.18) 55%, rgba(212, 160, 60, 0) 100%);
}
.sf-stagger-card.sf-card-support::before {
  background: linear-gradient(to bottom, rgba(240, 146, 58, 0.14) 0%, rgba(240, 146, 58, 0.14) 55%, rgba(240, 146, 58, 0) 100%);
}

/* Gradient halo icon - default (overridden per card) */
.sf-stagger-icon {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  color: #ffffff;
  background: linear-gradient(135deg, #064163 0%, #29a4c8 100%);
  box-shadow: 0 10px 22px rgba(6, 65, 99, 0.30);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.sf-stagger-card:hover .sf-stagger-icon {
  transform: translateY(-3px) scale(1.06);
}

.sf-stagger-icon svg {
  width: 42px;
  height: 42px;
}

.sf-stagger-icon i {
  font-size: 2.5rem;
  color: #fff;
  line-height: 1;
}

/* Per-card icon gradient + glow */
.sf-card-ssl .sf-stagger-icon {
  background: linear-gradient(135deg, #064163 0%, #29a4c8 100%);
  box-shadow: 0 10px 22px rgba(6, 65, 99, 0.32);
}
.sf-card-backups .sf-stagger-icon {
  background: linear-gradient(135deg, #29a4c8 0%, #6cc4dc 100%);
  box-shadow: 0 10px 22px rgba(41, 164, 200, 0.34);
}
.sf-card-migration .sf-stagger-icon {
  background: linear-gradient(135deg, #D4A03C 0%, #f0923a 100%);
  box-shadow: 0 10px 22px rgba(212, 160, 60, 0.32);
}
.sf-card-support .sf-stagger-icon {
  background: linear-gradient(135deg, #f0923a 0%, #f7b96b 100%);
  box-shadow: 0 10px 22px rgba(240, 146, 58, 0.32);
}

.sf-stagger-title {
  position: relative;
  font-size: 1.35rem;
  font-weight: 700;
  color: #064163;
  margin-bottom: 22px;
  padding-bottom: 18px;
}

/* Accent divider between title and description */
.sf-stagger-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 78%;
  height: 2px;
  border-radius: 999px;
  background: #29a4c8;
}

.sf-card-ssl       .sf-stagger-title::after { background: #064163; }
.sf-card-backups   .sf-stagger-title::after { background: #29a4c8; }
.sf-card-migration .sf-stagger-title::after { background: #D4A03C; }
.sf-card-support   .sf-stagger-title::after { background: #f0923a; }

.sf-stagger-desc {
  font-size: 1.02rem;
  color: #4b5563;
  line-height: 1.65;
  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: 30px !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;
}


/* Cart icon badge */
.sf-cart-count {
  position: absolute;
  top: -4px;
  right: -8px;
  background: linear-gradient(135deg, #f0923a 0%, #f7b96b 100%);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  min-width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Inter, sans-serif;
  line-height: 1;
}
.sf-cart-link.has-items {
  color: #f0923a !important;
}

/* Checkout button on domain page */
.btn-add-to-cart.checkout {
  background: linear-gradient(135deg, #f0923a 0%, #f7b96b 100%) !important;
  border-color: #f0923a !important;
  color: #fff !important;
}

/* Hide cart icon */
.sf-cart-link {
  display: none !important;
}

/* Hide orange underline on WP hosting plans label */
#wp-plans .sf-wh-label::after {
  display: none !important;
}

/* =============================================
   AFFILIATE PROGRAM PAGE
   ============================================= */

/* Hero */
.sfaff-hero {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding: 60px 0;
  min-height: 700px;
  color: #fff;
  position: relative;
  display: flex;
  align-items: center;
}
.sfaff-hero-overlay {
  display: none;
}
.sfaff-hero .container {
  position: relative;
  z-index: 1;
}
.sfaff-hero-title {
  font-family: Inter, sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: #000;
  margin-bottom: 28px;
  line-height: 1.2;
}
.sfaff-hero-subtitle {
  font-family: Inter, sans-serif;
  font-size: 1.1rem;
  color: #333;
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 540px;
}
.sfaff-hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 28px;
  margin-bottom: 20px;
  flex-direction: column;
  align-items: flex-start;
}
.sfaff-hero-btn-primary {
  background: linear-gradient(135deg, #f0923a 0%, #f7b96b 100%) !important;
  color: #fff !important;
  font-family: Inter, sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 32px;
  border-radius: 10px;
  border: none !important;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  box-shadow: 0 2px 8px rgba(240, 146, 58, 0.3);
  transition: opacity 0.2s, transform 0.2s;
}
.sfaff-hero-btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  color: #fff !important;
}
.sfaff-hero-btn-secondary {
  background: transparent !important;
  color: #064163 !important;
  font-family: Inter, sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 32px;
  border-radius: 10px;
  border: 2px solid #064163 !important;
  transition: border-color 0.2s, background 0.2s;
}
.sfaff-hero-btn-secondary:hover {
  background: #064163 !important;
  color: #fff !important;
}
.sfaff-hero-login {
  font-size: 0.85rem;
  color: #548191;
}
.sfaff-hero-login a {
  color: #f0923a;
  font-weight: 600;
}
.sfaff-hero-login a:hover {
  color: #064163;
}

/* Payout Cards */
.sfaff-payout-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-left: 58px;
}
.sfaff-payout-card {
  background: rgba(255,255,255,0.85);
  border: 1px solid #e2eaee;
  border-radius: 12px;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  border: none;
}
.sfaff-payout-highlight {
  background: rgba(255,255,255,0.95);
  border-color: #e2eaee;
}
.sfaff-payout-amount {
  font-family: Inter, sans-serif;
  font-size: 2.75rem;
  font-weight: 800;
  color: #f0923a;
  white-space: nowrap;
}
.sfaff-payout-highlight .sfaff-payout-amount {
  color: #f0923a;
}
.sfaff-payout-label {
  font-family: Inter, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #000;
}

@media (max-width: 991px) {
  .sfaff-hero {
    padding: 50px 0 40px;
    text-align: center;
  }
  .sfaff-hero-subtitle {
    max-width: 100%;
  }
  .sfaff-hero-ctas {
    justify-content: center;
  }
  .sfaff-hero-login {
    text-align: center;
  }
  .sfaff-payout-cards {
    margin-top: 30px;
  }
}

/* Why Developers Partner */
.sfaff-why {
  padding: 80px 0;
  background: #fff;
}
.sfaff-section-title {
  font-family: Inter, sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: #000;
  margin-bottom: 40px;
  line-height: 1.9;
  letter-spacing: 0.02em;
}
.sfaff-section-title.sfaff-section-title-sm {
  font-size: 2.5rem;
}
.sfaff-why-cards {
  gap: 0;
}
.sfaff-why-card {
  background: #fff;
  border: 1px solid #e2eaee;
  border-radius: 12px;
  padding: 28px 24px;
  margin-bottom: 24px;
  transition: border-color 0.2s, box-shadow 0.2s;
  height: calc(100% - 24px);
}
.sfaff-why-card:hover {
  border-color: #29a4c8;
  box-shadow: 0 4px 16px rgba(6, 65, 99, 0.08);
}
.sfaff-why-icon {
  width: 48px;
  height: 48px;
  background: rgba(41, 164, 200, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.sfaff-why-icon i {
  font-size: 1.3rem;
  color: #29a4c8;
}
.sfaff-why-card h4 {
  font-family: Inter, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #064163;
  margin-bottom: 8px;
}
.sfaff-why-card p {
  font-family: Inter, sans-serif;
  font-size: 0.9rem;
  color: #548191;
  line-height: 1.9;
  margin: 0;
}

/* How It Works */
.sfaff-how {
  padding: 90px 0;
  background: #f8fafb;
}
.sfaff-how-label {
  display: inline-block;
  font-family: Inter, sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: #29a4c8;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}
.sfaff-how-subtitle {
  font-family: Inter, sans-serif;
  font-size: 1.35rem;
  color: #3a5a6a;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}
.sfaff-steps {
  margin-top: 50px;
  position: relative;
}
.sfaff-step {
  text-align: center;
  padding: 24px 20px;
}
.sfaff-step-circle {
  width: 158px;
  height: 158px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #e2eaee;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.sfaff-step-circle i {
  font-size: 2.4rem;
  color: #29a4c8;
}
.sfaff-step-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.sfaff-step:hover .sfaff-step-circle {
  border-color: #29a4c8;
  box-shadow: 0 8px 24px rgba(41, 164, 200, 0.12);
}
.sfaff-step-label {
  display: block;
  font-family: Inter, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #548191;
  letter-spacing: 0.12em;
  margin-bottom: 30px;
}
.sfaff-step h4 {
  font-family: Inter, sans-serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: #064163;
  margin-bottom: 22px;
}
.sfaff-step p {
  font-family: Inter, sans-serif;
  font-size: 1.1rem;
  color: #333;
  line-height: 1.7;
  max-width: 300px;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .sfaff-step {
    margin-bottom: 20px;
  }
}

/* Affiliate CTA Banner */
.sfaff-cta {
  padding: 80px 0;
  background: #f5f8fa;
}
.sfaff-cta-inner {
  background: linear-gradient(135deg, #064163 0%, #0a6e8a 100%);
  border-radius: 16px;
  padding: 60px 40px;
  text-align: center;
}
.sfaff-cta-title {
  font-family: Inter, sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}
.sfaff-cta-text {
  font-family: Inter, sans-serif;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  max-width: 560px;
  margin: 0 auto 28px;
  line-height: 1.7;
}

@media (max-width: 767px) {
  .sfaff-cta-inner {
    padding: 40px 24px;
  }
}

/* Affiliate Hero - centre image */
.sfaff-hero-image {
  text-align: center;
  padding: 20px 0;
}
.sfaff-hero-image img {
  max-width: 100%;
  max-height: 360px;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

@media (max-width: 991px) {
  .sfaff-hero-image {
    margin: 24px 0;
  }
  .sfaff-hero-ctas {
    flex-direction: column;
    align-items: center;
  }
}

/* Main payout card - rectangular, dominant */
.sfaff-payout-main {
  flex-direction: column;
  text-align: center;
  padding: 36px 24px;
  border: none;
  background: rgba(255,255,255,0.92);
  box-shadow: 0 8px 30px rgba(6, 65, 99, 0.12), 0 2px 8px rgba(0,0,0,0.05);
  justify-content: center;
  width: 100%;
  transform: scale(1.03);
}
.sfaff-payout-main .sfaff-payout-amount {
  font-size: 3.8rem;
}
.sfaff-payout-main .sfaff-payout-label {
  font-size: 1.5rem;
}

/* Text-only items - plain text, not cards */
.sfaff-payout-text-only {
  background: none !important;
  border: none !important;
  backdrop-filter: none !important;
  padding: 4px 0 !important;
  gap: 0 !important;
  box-shadow: none !important;
}
.sfaff-payout-text-only {
  text-align: center;
  justify-content: center;
}
.sfaff-payout-text-only .sfaff-payout-label {
  white-space: nowrap;
  font-size: 1.2rem;
  color: #333;
  font-weight: 600;
}
/* Group 2 spacing from cards above */
.sfaff-payout-text-only:nth-child(3) {
  margin-top: 16px;
}

/* More space between first and second card */
.sfaff-payout-main {
  margin-bottom: 30px !important;
  margin-top: -30px;
  margin-right: -26px;
}

/* Align hero content with first card */
.sfaff-hero-content {
  margin-top: -30px;
}

/* Brand highlight in section title */
.sfaff-brand-highlight {
  color: #000;
  font-size: 3.6rem;
  text-shadow: 2px 3px 6px rgba(0,0,0,0.15);
}

/* Smaller first line of section title */
.sfaff-title-small {
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #444;
}

/* Affiliate grid - text and image cards */
.sfaff-grid {
  margin-top: 10px;
  row-gap: 24px;
}
.sfaff-grid > [class*="col-"] {
  display: flex;
}
.sfaff-grid-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 100%;
  padding: 25px 28px 28px;
  background: #f5f7f9;
  border-radius: 12px;
  border: 1px solid #e8ecef;
}
.sfaff-grid-text h4 {
  font-family: Inter, sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #0a4f7a;
  margin-bottom: 41px;
}

.sfaff-grid-text p {
  font-family: Inter, sans-serif;
  font-size: 1.5rem;
  color: #333;
  line-height: 1.6;
  margin: 0;
}
.sfaff-grid-img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 12px;
  overflow: hidden;
  background: #e8eef2;
  border: 1px solid #e8ecef;
}
.sfaff-grid-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

/* Comparison table - No/cross icon */
.sf-comparison-table .sf-no {
  color: #ccc;
  font-size: 1.1em;
}

/* Popular Domains - See more button */
button.sf-popular-all {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px 0;
  outline: none;
}
button.sf-popular-all:focus {
  outline: none;
  box-shadow: none;
}

/* See more extensions button - extra top padding */
#popularMoreBtn {
  margin-top: 20px;
}

/* Hello User and Dashboard - match Welcome Back heading */
.navbar-btn .navbar-nav > li.no-collapse > a {
  color: #064163 !important;
  font-weight: 600;
}


/* ============================
   CLIENT AREA STYLING
   Override HostPulse color scheme to match live site
   ============================ */

/* Override HostPulse primary color to teal matching live site */
:root {
  --primary: #3a6f87 !important;
  --primary-accent: #2d5a6e !important;
  --primary-dark: #2d5a6e !important;
  --primary-light: #e8f1f5 !important;
}

/* Counter tiles - light bg with colored bottom border like live site */
.counter-style .counter-five {
  background: #f0f2f5 !important;
  border-radius: 5px;
  box-shadow: none;
  border-bottom: 3px solid #ccc;
  position: relative;
}
.counter-style .counter-five:hover {
  background: #e8eaed !important;
}
/* Individual tile bottom border colors */
.counter-style:nth-child(1) .counter-five { border-bottom-color: #29a4c8 !important; }
.counter-style:nth-child(2) .counter-five { border-bottom-color: #28a745 !important; }
.counter-style:nth-child(3) .counter-five { border-bottom-color: #dc3545 !important; }
.counter-style:nth-child(4) .counter-five { border-bottom-color: #f0923a !important; }

/* Counter tile numbers - dark navy */
.counter-style .counter-five .counter-content .count {
  color: #064163 !important;
  font-size: 36px;
  font-weight: 600;
}
/* Counter tile labels */
.counter-style .counter-five .counter-content .text {
  color: #064163 !important;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
/* Counter tile icons - grey */
.counter-style .counter-five .counter-icon i {
  color: #b0b8c0 !important;
  font-size: 50px;
}

/* Main body background - white */
#main-body {
  background: #fff !important;
}

/* Sidebar cards - visible borders like live site */
.sidebar .card-sidebar,
.sidebar .card {
  border: 1px solid #ddd !important;
  border-radius: 6px !important;
  margin-bottom: 20px;
  overflow: hidden;
  background: #fff !important;
}

/* Sidebar card headers - light grey background */
.sidebar .card-sidebar .card-header,
.sidebar .card .card-header {
  background: #f5f5f5 !important;
  border-bottom: 1px solid #ddd !important;
  padding: 12px 15px;
}

/* Sidebar section titles - dark grey like live site */
.card-sidebar .card-header .card-title,
.card-title {
  color: #555 !important;
  font-weight: 400;
  font-size: 1.1rem;
}

/* Sidebar body text */
.card-body {
  color: #333 !important;
}

/* Sidebar list items */
.sidebar .list-group-item {
  color: #333 !important;
  border-left: none !important;
  border-right: none !important;
  border-top: 1px solid #eee;
  border-bottom: none;
  padding: 10px 15px;
  background: transparent !important;
}
.sidebar .list-group-item a {
  color: #333 !important;
}
.sidebar .list-group-item.active {
  background-color: #3a6f87 !important;
  color: #fff !important;
}

/* Sidebar footer - grey background like live site */
.card-sidebar .card-footer,
.sidebar .card .card-footer {
  background: #f5f5f5 !important;
  border-top: 1px solid #ddd !important;
  padding: 10px 15px;
}

/* Sidebar footer buttons (Update) - green */
.card-sidebar .card-footer a,
.card-sidebar .card-footer .btn {
  background: #29a4c8 !important;
  border-color: #29a4c8 !important;
  color: #fff !important;
  border-radius: 5px !important;
  text-transform: none !important;
  letter-spacing: normal !important;
  font-weight: 600 !important;
}
.card-sidebar .card-footer a:hover,
.card-sidebar .card-footer .btn:hover {
  background: #2391b2 !important;
  border-color: #2391b2 !important;
}

/* btn-success - GREEN (Register, Open New Ticket) */
body .btn-success,
body .btn.btn-success,
body a.btn.btn-success,
html body .btn-success,
#main-body .btn-success,
.client-home-cards .btn-success,
.primary-content .btn-success {
  background: #29a4c8 !important;
  background-color: #29a4c8 !important;
  border: 1px solid #28a745 !important;
  border-color: #29a4c8 !important;
  color: #fff !important;
  text-transform: none !important;
  letter-spacing: normal !important;
  border-radius: 4px !important;
}
body .btn-success:hover,
body .btn.btn-success:hover,
html body .btn-success:hover,
#main-body .btn-success:hover {
  background: #2391b2 !important;
  background-color: #2391b2 !important;
  border-color: #2391b2 !important;
}

/* btn-default (Transfer) - outlined white */
body .btn-default,
body .btn.btn-default,
html body .btn-default,
#main-body .btn-default,
.primary-content .btn-default {
  background: #fff !important;
  background-color: #fff !important;
  color: #333 !important;
  border: 1px solid #ccc !important;
  text-transform: none !important;
  letter-spacing: normal !important;
  border-radius: 4px !important;
}
body .btn-default:hover,
html body .btn-default:hover,
#main-body .btn-default:hover {
  background: #e6e6e6 !important;
  background-color: #e6e6e6 !important;
  border-color: #adadad !important;
}

/* View Details buttons - outlined style like live site */
.client-home-cards .btn-default,
.client-home-cards a.btn-default,
.client-home-cards .btn-sm {
  background: #fff !important;
  color: #333 !important;
  border: 1px solid #ccc !important;
  font-size: 0.85rem !important;
  padding: 5px 14px !important;
  text-transform: none !important;
  letter-spacing: normal !important;
  border-radius: 4px !important;
  font-weight: 500 !important;
}
.client-home-cards .btn-default:hover,
.client-home-cards a.btn-default:hover,
.client-home-cards .btn-sm:hover {
  background: #e6e6e6 !important;
  border-color: #adadad !important;
}

/* Manage Your Plan button - styled like Register (aqua filled) */
button.btn.btn-view-details,
button.btn-view-details.btn,
button.btn-default.btn-view-details,
button.btn-sm.btn-view-details,
.btn.btn-view-details,
html body button.btn-view-details,
html body .btn-view-details {
  background: #29a4c8 !important;
  background-color: #29a4c8 !important;
  background-image: none !important;
  border: 1px solid #29a4c8 !important;
  border-color: #29a4c8 !important;
  color: #fff !important;
  text-transform: none !important;
  letter-spacing: normal !important;
  border-radius: 4px !important;
  font-size: 0.85rem !important;
  padding: 5px 14px !important;
  font-weight: 700 !important;
}
button.btn.btn-view-details:hover,
button.btn-view-details.btn:hover,
button.btn-default.btn-view-details:hover,
button.btn-sm.btn-view-details:hover,
.btn.btn-view-details:hover,
html body button.btn-view-details:hover,
html body .btn-view-details:hover {
  background: #2391b2 !important;
  background-color: #2391b2 !important;
  border-color: #2391b2 !important;
  color: #fff !important;
}
button.btn-view-details i,
.btn-view-details i,
.btn-view-details .fa,
.btn-view-details .fas,
.btn-view-details .far {
  color: #fff !important;
}

/* My Services / View All links - teal with arrow */
.client-home-cards .btn-link,
.client-home-cards a.btn-link {
  color: #3a6f87 !important;
  text-decoration: none !important;
  font-weight: 600 !important;
  text-transform: none !important;
  letter-spacing: normal !important;
}

/* + Open New Ticket button - green filled like live site */
.client-home-cards .btn-success,
.client-home-cards a.btn-success {
  background: #29a4c8 !important;
  border-color: #29a4c8 !important;
  color: #fff !important;
  border-radius: 4px !important;
  text-transform: none !important;
  letter-spacing: normal !important;
  font-size: 0.85rem !important;
  padding: 5px 14px !important;
}

/* Client home card headers */
.client-home-cards .card-header,
.client-home-cards .panel-heading {
  background: transparent !important;
  border-bottom: 1px solid #e8ecef;
  color: #333 !important;
  font-weight: 600;
}

/* Cards in client area - clean borders */
.client-home-cards .card,
#main-body .card:not(.card-sidebar) {
  border: 1px solid #d8dee3 !important;
  border-radius: 4px !important;
  box-shadow: none;
}

/* Card footer - light grey background like live site */
.client-home-cards .card-footer,
.card-footer {
  background: #f5f5f5 !important;
  border-top: 1px solid #ddd !important;
  padding: 10px 15px;
}

/* Active status badge - modern green pill, clearly non-clickable */
.badge-success,
.label-success,
.div-service-status .label-success,
span.label.label-success {
  background-color: #dcfce7 !important;
  background-image: none !important;
  color: #166534 !important;
  border: 1px solid #bbf7d0 !important;
  font-weight: 600 !important;
  font-size: 0.75rem !important;
  padding: 4px 12px !important;
  border-radius: 20px !important;
  letter-spacing: 0.3px !important;
  text-transform: uppercase !important;
  cursor: default !important;
  display: inline-block !important;
}

/* Welcome message - thin weight like live site */
.tiles h4,
.tiles h4.fw-light {
  color: #064163 !important;
  font-weight: 300 !important;
  font-size: 2rem;
}

/* Space between adjacent buttons */
.primary-content .btn + .btn {
  margin-left: 8px !important;
}

/* Page headings */
#main-body h1,
#main-body h2,
.primary-content h1,
.primary-content h2 {
  color: #3a6f87 !important;
  font-weight: 400;
}

/* Product details page - fix oversized icon/name */
.product-icon .fa-stack {
  font-size: 2rem !important;
}
.product-icon h3 {
  font-size: 1.2rem !important;
  word-break: break-word;
}
.product-icon h4 {
  font-size: 1rem !important;
}
.product-status {
  max-width: 100%;
}

/* Upgrade page - spacing and styling */
.primary-content table.table-striped tr td {
  padding: 20px 15px !important;
}
.primary-content table.table-striped tr + tr td {
  border-top: 1px solid #eee;
}

/* Product details - billing info styling */
.product-details .col-md-6.text-center h4 {
  font-weight: 500 !important;
  font-size: 0.9rem !important;
  color: #555;
  margin-bottom: 2px;
  margin-top: 12px;
}
/* Values (dates, prices, etc) after the h4 labels */
.product-details .col-md-6.text-center {
  font-size: 0.85rem !important;
  font-style: italic;
  color: #000;
}

/* Submit/Save buttons */
.primary-content input[type="submit"].btn,
.primary-content button.btn[type="submit"] {
  background: #3a6f87 !important;
  border-color: #3a6f87 !important;
  color: #fff !important;
  text-transform: none !important;
  letter-spacing: normal !important;
  border-radius: 4px !important;
}
.primary-content input[type="submit"].btn:hover,
.primary-content button.btn[type="submit"]:hover {
  background: #2d5a6e !important;
  border-color: #2d5a6e !important;
}

/* Breadcrumbs */
.breadcrumb {
  background: transparent;
}
.breadcrumb a {
  color: #3a6f87;
}

/* Tables */
table thead th {
  color: #3a6f87;
}

/* Fix ticket attachment file input alignment */
.attachment-group {
    display: flex;
    align-items: stretch;
}
.attachment-group .custom-file {
    flex: 1;
}
.attachment-group .custom-file-label {
    height: 100%;
    display: flex;
    align-items: center;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
.attachment-group .input-group-append .btn {
    height: 100%;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

/* Fix ticket attachment - force consistent height */
.attachment-group .custom-file,
.attachment-group .custom-file-label,
.attachment-group .custom-file-input,
.attachment-group .input-group-append,
.attachment-group .input-group-append .btn {
    height: 42px !important;
}
.attachment-group .custom-file-label::after {
    height: 40px !important;
    line-height: 1.7;
}

/* DNS management - fix invisible delete button */
.dns-table .btn-outline-danger {
    color: #dc3545;
    border-color: #dc3545;
}
.dns-table .btn-outline-primary {
    color: #29a4c8;
    border-color: #29a4c8;
}

/* DNS management - inline action buttons */
.dns-table .btn-sm {
    padding: 2px 6px;
    font-size: 0.75rem;
    display: inline-block;
}

/* ========================================================================
   PORTAL SHELL — Session 1 design system (added 2026-05-04)
   Visual contract: mocks/portal-mock.html
   Scoped under body.portal-page + .portal-shell so it never collides
   with the marketing CSS above.
======================================================================== */

body.portal-page {
    --navy: #064163;
    --aqua: #29a4c8;
    --aqua-soft: #e8f4f8;
    --aqua-dark: #2391b2;
    --teal-grey: #548191;
    --grey-blue: #b1c6cc;
    --gold: #D4A03C;
    --orange: #f0923a;
    --orange-light: #f7b96b;
    --orange-grad: linear-gradient(135deg, #f0923a 0%, #f7b96b 100%);

    --bg-page: #f7f8fa;
    --bg-card: #ffffff;
    --bg-sidebar: #ffffff;
    --bg-hover: #f3f4f6;

    --border-soft: #e5e7eb;

    --text-strong: #0a0a0a;
    --text-body: #1f2937;
    --text-muted: #4b5563;
    --text-faint: #6b7280;

    --shadow-card: 0 1px 2px rgba(6,65,99,0.04), 0 1px 4px rgba(6,65,99,0.04);
    --shadow-pop: 0 4px 16px rgba(6,65,99,0.10);

    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 14px;

    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-page) !important;
    color: var(--text-body);
    font-size: 14px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    margin: 0;
    padding: 0;
}


/* ========== APP SHELL ========== */
.portal-shell {
    display: flex;
    min-height: 100vh;
}

/* ========== SIDEBAR ========== */
.portal-shell .sidebar {
    width: 240px;
    flex-shrink: 0;
    background: var(--bg-sidebar);
    border-right: 1px solid var(--border-soft);
    padding: 22px 0;
    display: flex;
    flex-direction: column;
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
}

.portal-shell .sidebar-brand {
    padding: 0 22px 22px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--text-strong);
    border-bottom: 1px solid var(--border-soft);
    margin-bottom: 18px;
}
.portal-shell .sidebar-brand .logo-mark {
    width: 28px; height: 28px;
    background: var(--navy);
    color: #fff;
    border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
}

.portal-shell .sidebar-section-label {
    font-size: 0.7rem;
    color: var(--text-faint);
    text-transform: uppercase;
    letter-spacing: 0.7px;
    font-weight: 600;
    padding: 14px 22px 6px;
}

.portal-shell .sidebar-nav { display: flex; flex-direction: column; }
.portal-shell .sidebar-nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 9px 22px;
    color: var(--text-strong);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    border-left: 3px solid transparent;
    margin-left: 0;
    transition: all 0.12s;
    cursor: pointer;
}
.portal-shell .sidebar-nav-item i {
    width: 18px;
    text-align: center;
    color: var(--text-faint);
    font-size: 0.95rem;
}
.portal-shell .sidebar-nav-item:hover {
    background: var(--bg-hover);
    color: var(--text-strong);
    text-decoration: none;
}
.portal-shell .sidebar-nav-item:hover i { color: var(--orange); }

.portal-shell .sidebar-nav-item.active {
    background: var(--aqua-soft);
    color: var(--aqua-dark);
    border-left-color: var(--aqua);
    font-weight: 600;
}
.portal-shell .sidebar-nav-item.active i { color: var(--aqua); }

.portal-shell .sidebar-bottom {
    margin-top: auto;
    padding: 16px 22px;
    border-top: 1px solid var(--border-soft);
    font-size: 0.82rem;
    color: var(--text-muted);
}
.portal-shell .sidebar-bottom .upgrade-callout {
    background: linear-gradient(135deg, #064163 0%, #29a4c8 100%);
    color: #fff;
    padding: 12px 14px;
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    font-size: 0.78rem;
}
.portal-shell .sidebar-bottom .upgrade-callout strong {
    display: block;
    margin-bottom: 4px;
    font-size: 0.85rem;
}
.portal-shell .sidebar-bottom .upgrade-callout a {
    color: #fff;
    background: rgba(255,255,255,0.18);
    padding: 5px 11px;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
    margin-top: 6px;
    font-weight: 600;
    font-size: 0.74rem;
}

/* Sub-nav (per-website) */
.portal-shell .sub-nav {
    background: transparent;
    padding-left: 22px;
    padding-bottom: 6px;
}
.portal-shell .sub-nav-item, .portal-shell .sidebar-nav-item, .portal-shell .upgrade-callout { line-height: 1.5; }
.portal-shell .sub-nav-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    color: var(--text-strong);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    border-left: 3px solid var(--border-soft);
    margin-left: 4px;
    cursor: pointer;
    transition: color 0.12s, border-color 0.12s;
}
.portal-shell .sub-nav-item:hover { color: var(--orange); border-left-color: var(--orange-light); text-decoration: none; }
.portal-shell .sub-nav-item:hover i { color: var(--orange); }
.portal-shell .sub-nav-item.active {
    color: var(--aqua-dark);
    border-left-color: var(--aqua);
    font-weight: 700;
}
.portal-shell .sub-nav-item.active i { color: var(--aqua); }
.portal-shell .sub-nav-item i { font-size: 0.82rem; width: 14px; color: var(--text-muted); }

.portal-shell .sub-nav-item-wp { color: #21759b; font-weight: 600; }
.portal-shell .sub-nav-item-wp i { color: #21759b; }
.portal-shell .sub-nav-item-wp:hover { color: #135e7c; border-left-color: #21759b; }
.portal-shell .sub-nav-item-wp:hover i { color: #135e7c; }

/* ========== MAIN AREA ========== */
.portal-shell .main {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.portal-shell .topbar {
    background: #fff;
    height: 56px;
    border-bottom: 1px solid var(--border-soft);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 28px;
    position: sticky;
    top: 0;
    z-index: 10;
}
.portal-shell .topbar-left { display: flex; align-items: center; gap: 14px; color: var(--text-muted); font-size: 0.85rem; }
.portal-shell .topbar-left .crumb-current { color: var(--text-strong); font-weight: 600; }
.portal-shell .topbar-left .crumb-sep { color: var(--text-faint); }
.portal-shell .topbar-left a { color: var(--text-muted); text-decoration: none; }
.portal-shell .topbar-left a:hover { color: var(--orange); }
.portal-shell .topbar-right { display: flex; align-items: center; gap: 18px; }
.portal-shell .topbar-right .icon-btn {
    background: none; border: none; cursor: pointer;
    color: var(--text-muted); font-size: 1rem;
    width: 34px; height: 34px;
    border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
}
.portal-shell .topbar-right .icon-btn:hover { background: var(--bg-hover); color: var(--text-strong); }
.portal-shell .topbar-right .avatar {
    width: 32px; height: 32px;
    background: var(--navy);
    color: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 600;
    font-size: 0.78rem;
    cursor: pointer;
}

.portal-shell .content {
    padding: 28px 36px 60px;
    max-width: 1240px;
    width: 100%;
}

/* Page header */
.portal-shell .page-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 26px;
}
.portal-shell .page-header h1 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-strong);
    margin: 0 0 8px;
    line-height: 1.25;
    letter-spacing: -0.01em;
}
.portal-shell .page-header .page-sub {
    color: var(--text-muted);
    font-size: 0.92rem;
    margin: 0;
    line-height: 1.55;
    font-weight: 500;
}
.portal-shell .page-header .page-actions { display: flex; gap: 10px; align-items: center; }

/* Buttons (scoped to portal-shell to beat Bootstrap on specificity) */
.portal-shell .btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 13px 18px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    border: 1px solid transparent;
    text-decoration: none;
    transition: all 0.12s;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.4;
    text-transform: none;
    letter-spacing: normal;
}
.portal-shell .btn-primary { background: var(--aqua); color: #fff; border-color: var(--aqua); }
.portal-shell .btn-primary:hover, .portal-shell .btn-primary:focus, .portal-shell .btn-primary:active { background: var(--orange) !important; border-color: var(--orange) !important; color: #fff !important; }
.portal-shell .btn-wp {
    background: linear-gradient(135deg, #374151 0%, #9ca3af 100%);
    border: 1px solid transparent;
    border-radius: 8px;
    padding: 5px 18px 5px 5px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 2px 6px rgba(6, 65, 99, 0.10), 0 4px 14px rgba(6, 65, 99, 0.08);
    transition: box-shadow 0.18s, transform 0.18s, background 0.18s;
    line-height: 1.4;
}
.portal-shell .btn-wp:hover, .portal-shell .btn-wp:focus, .portal-shell .btn-wp:active {
    background: linear-gradient(135deg, #f0923a 0%, #f7b96b 100%);
    box-shadow: 0 4px 12px rgba(240, 146, 58, 0.20), 0 10px 28px rgba(240, 146, 58, 0.18);
    transform: translateY(-2px);
    text-decoration: none;
    color: #fff;
}
.portal-shell .btn-wp .wp-icon-circle {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 1px 3px rgba(6, 65, 99, 0.12);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.portal-shell .btn-wp .wp-icon-circle i {
    color: #1a1a1a;
    font-size: 1.1rem;
    transition: color 0.15s;
}
.portal-shell .btn-wp:hover .wp-icon-circle i { color: #000; }
.portal-shell .btn-wp .wp-label { font-weight: 600; font-size: 0.9rem; color: inherit; transition: color 0.15s; }
.portal-shell .btn-secondary { background: #fff; color: var(--text-body); border-color: var(--border-soft); }
.portal-shell .btn-secondary:hover { border-color: var(--orange); color: var(--orange); background: #fff; }
.portal-shell .btn-text { background: none; color: var(--aqua-dark); padding: 9px 4px; border-color: transparent; }
.portal-shell .btn-text:hover { color: var(--orange); }
.portal-shell .btn-sm { padding: 6px 12px; font-size: 0.78rem; }

/* Cards */
.portal-shell .card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    padding: 22px 24px;
    border: none;
}
.portal-shell .card-tight { padding: 16px 20px; }
.portal-shell .card-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-strong);
    margin: 0 0 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.portal-shell .card-title .title-action {
    margin-left: auto;
    font-size: 0.78rem;
    color: var(--aqua-dark);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.12s;
}
.portal-shell .card-title .title-action:hover { color: var(--orange); }

/* Status pills */
.portal-shell .pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 3px 10px;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}
.portal-shell .pill-green { background: #dcfce7; color: #166534; }
.portal-shell .pill-amber { background: #fef3c7; color: #92400e; }
.portal-shell .pill-red { background: #fee2e2; color: #991b1b; }
.portal-shell .pill-blue { background: var(--aqua-soft); color: var(--aqua-dark); }
.portal-shell .pill-grey { background: #f1f5f7; color: var(--text-muted); }

/* Stat cards */
.portal-shell .stat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 26px;
}
@media (max-width: 980px) { .portal-shell .stat-grid { grid-template-columns: repeat(2, 1fr); } }

.portal-shell .stat-card {
    background: #fff;
    padding: 20px 22px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.portal-shell .stat-card .stat-icon {
    width: 36px; height: 36px;
    background: var(--aqua-soft);
    color: var(--aqua);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.95rem;
}
.portal-shell .stat-icon.icon-purple { background: #f3e8ff; color: #8b5cf6; }
.portal-shell .stat-icon.icon-orange { background: #ffedd5; color: var(--orange); }
.portal-shell .stat-icon.icon-gold { background: #fef3c7; color: var(--gold); }
.portal-shell .stat-icon.icon-green { background: #dcfce7; color: #16a34a; }
.portal-shell .stat-card .stat-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    font-weight: 600;
}
.portal-shell .stat-card .stat-value {
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--text-strong);
    line-height: 1.25;
}
.portal-shell .stat-card .stat-foot {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 500;
    line-height: 1.5;
}

/* Two-col layout */
.portal-shell .row-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    margin-bottom: 22px;
}
@media (max-width: 980px) { .portal-shell .row-grid { grid-template-columns: 1fr; } }

/* Attention list */
.portal-shell .attention-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-soft);
}
.portal-shell .attention-row:last-child { border-bottom: none; }
.portal-shell .attention-row .attn-icon {
    width: 30px; height: 30px;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.85rem;
    flex-shrink: 0;
}
.portal-shell .attention-row.warn .attn-icon { background: #fef3c7; color: #92400e; }
.portal-shell .attention-row.ok .attn-icon { background: #dcfce7; color: #166534; }
.portal-shell .attention-row.info .attn-icon { background: var(--aqua-soft); color: var(--aqua); }
.portal-shell .attention-row .attn-body { flex: 1; min-width: 0; }
.portal-shell .attention-row .attn-title { font-weight: 600; color: var(--text-strong); font-size: 0.88rem; line-height: 1.45; }
.portal-shell .attention-row .attn-sub { color: var(--text-muted); font-size: 0.82rem; margin-top: 5px; font-weight: 500; line-height: 1.5; }
.portal-shell .attention-row .attn-cta {
    background: none;
    border: none;
    color: var(--aqua-dark);
    font-weight: 600;
    font-size: 0.82rem;
    cursor: pointer;
    padding: 6px 10px;
    border-radius: 4px;
}
.portal-shell .attention-row .attn-cta:hover { background: rgba(240,146,58,0.12); color: var(--orange); }

/* Activity feed */
.portal-shell .activity-item {
    display: flex;
    gap: 12px;
    padding: 10px 0;
    font-size: 0.85rem;
    border-bottom: 1px dashed var(--border-soft);
}
.portal-shell .activity-item:last-child { border-bottom: none; }
.portal-shell .activity-item .activity-time { color: var(--text-muted); font-size: 0.78rem; min-width: 75px; font-weight: 600; }
.portal-shell .activity-item .activity-text { color: var(--text-body); flex: 1; font-weight: 500; }
.portal-shell .activity-item .activity-text strong { color: var(--text-strong); font-weight: 600; }

/* Website cards (Websites list) */
.portal-shell .website-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}
@media (max-width: 980px) { .portal-shell .website-grid { grid-template-columns: 1fr; } }

.portal-shell .website-card {
    background: #fff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    padding: 24px 26px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: all 0.12s;
}
.portal-shell .website-card:hover { box-shadow: var(--shadow-pop); transform: translateY(-1px); }
.portal-shell .website-card .web-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 10px; }
.portal-shell .website-card .web-domain { font-size: 1.05rem; font-weight: 700; color: var(--text-strong); line-height: 1.35; }
.portal-shell .website-card .web-meta { color: var(--text-muted); font-size: 0.82rem; margin-top: 7px; font-weight: 500; line-height: 1.55; }
.portal-shell .website-card .web-actions { display: flex; gap: 8px; align-items: center; }
.portal-shell .website-card .web-actions .kebab {
    margin-left: auto;
    background: none;
    border: 1px solid var(--border-soft);
    color: var(--text-muted);
    width: 32px; height: 32px;
    border-radius: 6px;
    cursor: pointer;
}
.portal-shell .website-card .web-actions .kebab:hover { color: var(--text-strong); border-color: var(--aqua); }

/* Per-website overview hero */
.portal-shell .site-hero {
    background: #fff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    padding: 22px 26px;
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
.portal-shell .site-hero .site-info { display: flex; flex-direction: column; gap: 6px; }
.portal-shell .site-hero .site-domain { font-size: 1.45rem; font-weight: 700; color: var(--text-strong); display: flex; align-items: center; gap: 12px; }
.portal-shell .site-hero .site-domain .external { color: var(--aqua); font-size: 0.85rem; }
.portal-shell .site-hero .site-meta { display: flex; gap: 14px; align-items: center; font-size: 0.85rem; color: var(--text-muted); }
.portal-shell .site-hero .plan-badge { background: linear-gradient(135deg, var(--navy) 0%, var(--aqua) 100%); color: #fff; padding: 4px 12px; border-radius: 999px; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }
.portal-shell .site-hero .site-actions { display: flex; gap: 22px; }
.portal-shell .site-hero .site-actions > .btn,
.portal-shell .site-hero .site-actions > .btn-wp {
    min-width: 158px;
    justify-content: center;
}
.portal-shell .site-hero .meta-sep { color: var(--text-faint); }
.portal-shell .site-hero .meta-plan { color: var(--text-body); }
.portal-shell .site-hero .meta-plan strong { color: var(--text-strong); }
@media (max-width: 720px) {
    .portal-shell .site-hero { flex-direction: column; align-items: stretch; }
    .portal-shell .site-hero .site-meta { flex-wrap: wrap; }
}

/* Quick Actions (Per-Website Overview) — mini cards with circular icon + line + label */
.portal-shell .quick-actions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px;
    margin-top: 14px;
}
@media (max-width: 720px) { .portal-shell .quick-actions-grid { grid-template-columns: 1fr; gap: 18px; } }
.portal-shell .qa-card {
    background: #fff;
    border-radius: var(--radius-md);
    box-shadow: 0 2px 6px rgba(6, 65, 99, 0.10), 0 4px 14px rgba(6, 65, 99, 0.08);
    padding: 18px 22px 20px;
    text-decoration: none;
    color: var(--text-strong);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    transition: box-shadow 0.18s, transform 0.18s;
}
.portal-shell .qa-card:hover {
    box-shadow: 0 4px 12px rgba(6, 65, 99, 0.14), 0 10px 28px rgba(6, 65, 99, 0.14);
    transform: translateY(-2px);
    text-decoration: none;
    color: var(--text-strong);
}
.portal-shell .qa-card-head {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
}
.portal-shell .qa-card-head .qa-icon {
    width: 36px; height: 36px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    font-size: 0.92rem;
}
.portal-shell .qa-card-head .qa-line {
    flex: 1;
    height: 1px;
    background: #b8c2cb;
}
.portal-shell .qa-card-mailbox .qa-line { background: #4f46e5; }
.portal-shell .qa-card-dns .qa-line { background: #2391b2; }
.portal-shell .qa-card-files .qa-line { background: #92681c; }
.portal-shell .qa-card-usage .qa-line { background: #166534; }
.portal-shell .quick-actions-grid .qa-card:nth-child(odd) .qa-card-head > .qa-line:last-child { background: transparent; }
.portal-shell .quick-actions-grid .qa-card:nth-child(even) .qa-card-head > .qa-line:first-child { background: transparent; }
.portal-shell .qa-card .qa-icon.qa-mailbox { background: #eef2ff; color: #4f46e5; }
.portal-shell .qa-card .qa-icon.qa-dns { background: var(--aqua-soft); color: var(--aqua-dark); }
.portal-shell .qa-card .qa-icon.qa-files { background: #fef3c7; color: #92681c; }
.portal-shell .qa-card .qa-icon.qa-usage { background: #dcfce7; color: #166534; }
.portal-shell .qa-card-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-strong);
    line-height: 1.35;
}
.portal-shell .qa-card-sub {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 500;
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Plan info list (Per-Website Overview "Hosting Plan" card) */
.portal-shell .plan-info-list {
    font-size: 0.88rem;
    line-height: 1.85;
}
.portal-shell .plan-info-list .pi-row {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding: 4px 0;
    border-bottom: 1px dashed var(--border-soft);
}
.portal-shell .plan-info-list .pi-row:last-child { border-bottom: none; }
.portal-shell .plan-info-list .pi-row span { color: var(--text-muted); }
.portal-shell .plan-info-list .pi-row strong { color: var(--text-strong); font-weight: 600; text-align: right; }

/* Info / connection blocks */
.portal-shell .info-block {
    background: var(--aqua-soft);
    border: 1px solid #b8daec;
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    color: var(--navy);
    font-size: 0.86rem;
    margin-bottom: 22px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.portal-shell .info-block i { color: var(--aqua); margin-top: 2px; }

.portal-shell .conn-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 28px;
    background: #f9fbfc;
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-sm);
    padding: 16px 20px;
    margin-bottom: 22px;
}
.portal-shell .conn-row { display: flex; flex-direction: column; gap: 2px; }
.portal-shell .conn-label { font-size: 0.7rem; text-transform: uppercase; color: var(--text-muted); font-weight: 700; letter-spacing: 0.5px; }
.portal-shell .conn-val { font-family: "SF Mono", Consolas, monospace; font-size: 0.86rem; color: var(--text-strong); }

.portal-shell .section-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-strong);
    margin: 28px 0 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.portal-shell .section-title i { color: var(--aqua); }
.portal-shell .section-sub { color: var(--text-muted); font-size: 0.85rem; margin: -6px 0 14px; font-weight: 500; }

/* Mailbox list */
.portal-shell .mbx-table {
    background: #fff;
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-md);
    overflow: hidden;
}
.portal-shell .mbx-table-head {
    display: grid;
    grid-template-columns: 1.5fr 1fr 90px 60px;
    gap: 14px;
    padding: 12px 20px;
    background: #f9fbfc;
    border-bottom: 1px solid var(--border-soft);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    font-weight: 700;
}
.portal-shell .mbx-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr 90px 60px;
    gap: 14px;
    padding: 14px 20px;
    border-bottom: 1px solid var(--border-soft);
    align-items: center;
    transition: background 0.1s;
}
.portal-shell .mbx-row:hover { background: #fafcfd; }
.portal-shell .mbx-row:last-child { border-bottom: none; }
.portal-shell .mbx-addr { font-weight: 600; color: var(--text-strong); font-size: 0.92rem; }
.portal-shell .mbx-name { color: var(--text-muted); font-size: 0.78rem; margin-top: 2px; }
.portal-shell .mbx-bar-wrap { display: flex; flex-direction: column; gap: 4px; }
.portal-shell .mbx-bar-text { font-size: 0.78rem; color: var(--text-muted); font-weight: 500; }
.portal-shell .mbx-bar { background: #e6edf1; border-radius: 3px; height: 5px; overflow: hidden; }
.portal-shell .mbx-bar-fill { background: var(--aqua); height: 100%; border-radius: 3px; }
.portal-shell .mbx-bar-fill.warn { background: var(--gold); }
.portal-shell .mbx-bar-fill.full { background: #dc3545; }
.portal-shell .mbx-actions { display: flex; justify-content: flex-end; }
.portal-shell .kebab-btn {
    background: none;
    border: 1px solid transparent;
    width: 30px; height: 30px;
    border-radius: 6px;
    cursor: pointer;
    color: var(--text-muted);
    display: flex; align-items: center; justify-content: center;
    transition: all 0.1s;
}
.portal-shell .kebab-btn:hover { background: var(--bg-hover); color: var(--text-strong); border-color: var(--border-soft); }

/* Empty state */
.portal-shell .empty-state {
    padding: 50px 24px;
    text-align: center;
}
.portal-shell .empty-state .empty-icon {
    width: 64px; height: 64px;
    background: var(--aqua-soft);
    color: var(--aqua);
    border-radius: 50%;
    margin: 0 auto 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
}
.portal-shell .empty-state .empty-title { font-weight: 700; color: var(--text-strong); margin-bottom: 6px; }
.portal-shell .empty-state .empty-sub { color: var(--text-muted); font-size: 0.88rem; margin-bottom: 16px; }

/* Tab strip */
.portal-shell .tab-strip {
    display: flex;
    gap: 2px;
    border-bottom: 1px solid var(--border-soft);
    margin-bottom: 22px;
    margin-top: -8px;
}
.portal-shell .tab-strip .tab {
    padding: 11px 20px;
    background: none;
    border: none;
    font-family: inherit;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    border-bottom: 3px solid transparent;
    margin-bottom: -1px;
    transition: color 0.12s, border-color 0.12s;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    text-decoration: none;
}
.portal-shell .tab-strip .tab i { font-size: 0.85rem; color: var(--text-muted); transition: color 0.12s; }
.portal-shell .tab-strip .tab:hover { color: var(--orange); }
.portal-shell .tab-strip .tab:hover i { color: var(--orange); }
.portal-shell .tab-strip .tab.active {
    color: var(--text-strong);
    border-bottom-color: var(--aqua);
}
.portal-shell .tab-strip .tab.active i { color: var(--aqua); }
.portal-shell .tab-count {
    background: var(--bg-page);
    color: var(--text-muted);
    padding: 1px 8px;
    border-radius: 999px;
    font-size: 0.7rem;
    margin-left: 4px;
    font-weight: 700;
}
.portal-shell .tab.active .tab-count { background: var(--aqua-soft); color: var(--aqua-dark); }

.portal-shell .tab-panel { display: none; }
.portal-shell .tab-panel.active { display: block; }

/* Email Hub: per-domain cards */
.portal-shell .email-domain-card {
    background: #fff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    padding: 20px 24px;
    margin-bottom: 14px;
    transition: all 0.12s;
    cursor: pointer;
}
.portal-shell .email-domain-card:hover { box-shadow: var(--shadow-pop); transform: translateY(-1px); }
.portal-shell .email-domain-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; }
.portal-shell .email-domain-name { font-size: 1.05rem; font-weight: 700; color: var(--text-strong); margin-bottom: 6px; }
.portal-shell .email-domain-meta { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; font-size: 0.86rem; color: var(--text-muted); font-weight: 500; }
.portal-shell .email-mbx-preview { display: flex; flex-wrap: wrap; gap: 6px; padding-top: 14px; margin-top: 14px; border-top: 1px solid var(--border-soft); }
.portal-shell .mini-mbx { background: var(--bg-page); padding: 5px 10px; border-radius: 4px; font-size: 0.78rem; color: var(--text-body); font-weight: 500; font-family: "SF Mono", Consolas, monospace; }
.portal-shell .mini-mbx-empty { font-style: italic; color: var(--text-faint); padding: 5px 0; }

/* Webmail callout */
.portal-shell .web-callout {
    background: #f9fbfc;
    border: 1px dashed #b8daec;
    border-radius: var(--radius-md);
    padding: 16px 20px;
    color: var(--text-strong);
    font-size: 0.88rem;
    margin-top: 24px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.portal-shell .web-callout i { color: var(--aqua); margin-top: 3px; }
.portal-shell .web-callout a { color: var(--aqua-dark); font-weight: 600; text-decoration: none; }
.portal-shell .web-callout a:hover { color: var(--orange); }

/* END PORTAL SHELL =================================================== */

/* Portal sidebar brand: real logo image (Session 1 polish) */
.portal-shell a.sidebar-brand { text-decoration: none; }
.portal-shell .sidebar-brand-img { max-height: 36px; width: auto; display: block; }

/* Stat card as a clickable link (Session 2 dashboard) */
.portal-shell .stat-card-link { text-decoration: none; color: inherit; transition: box-shadow 0.12s, transform 0.12s; }
.portal-shell .stat-card-link:hover { box-shadow: var(--shadow-pop); transform: translateY(-1px); text-decoration: none; color: inherit; }
.portal-shell .stat-card .stat-value,
.portal-shell .stat-card .stat-label,
.portal-shell .stat-card .stat-foot { color: inherit; }
.portal-shell .stat-card .stat-value { color: var(--text-strong); }
.portal-shell .stat-card .stat-label,
.portal-shell .stat-card .stat-foot { color: var(--text-muted); }

/* Single-plan layout: stretch the card to full row (Session 2 polish) */
.portal-shell .website-grid-single { grid-template-columns: 1fr; }

/* Kebab dropdown menu (portal cards) */
.portal-shell .portal-kebab-menu {
    border: 1px solid var(--border-soft);
    border-radius: 8px;
    box-shadow: var(--shadow-pop);
    padding: 6px;
    min-width: 200px;
}
.portal-shell .portal-kebab-menu .dropdown-item {
    border-radius: 5px;
    padding: 8px 12px;
    font-size: 0.85rem;
    color: var(--text-body);
    display: flex;
    align-items: center;
    gap: 10px;
}
.portal-shell .portal-kebab-menu .dropdown-item i { color: var(--text-muted); width: 14px; text-align: center; }
.portal-shell .portal-kebab-menu .dropdown-item:hover { background: var(--bg-hover); color: var(--text-strong); }
.portal-shell .portal-kebab-menu .dropdown-item:hover i { color: var(--orange); }
.portal-shell .portal-kebab-menu .dropdown-item.text-danger { color: #b91c1c; }
.portal-shell .portal-kebab-menu .dropdown-item.text-danger:hover { background: #fee2e2; color: #991b1b; }
.portal-shell .portal-kebab-menu .dropdown-item.text-danger i { color: #b91c1c; }
.portal-shell .portal-kebab-menu .dropdown-divider { margin: 4px 0; border-color: var(--border-soft); }

/* Kebab button: dont show the default Bootstrap dropdown caret */
.portal-shell .kebab.dropdown-toggle::after { display: none; }

/* ========================================================================
   EMAIL HUB (emails.php)
   Top-level email page. Summary row + per-domain card grid.
   ======================================================================== */

.portal-shell .email-hub-summary {
    display: grid;
    grid-template-columns: 1fr 1fr 1.4fr;
    gap: 22px;
    margin-bottom: 28px;
}
@media (max-width: 980px) { .portal-shell .email-hub-summary { grid-template-columns: 1fr; } }

.portal-shell .email-hub-stat {
    background: #fff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    padding: 22px 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.portal-shell .email-hub-stat .ehs-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    font-weight: 600;
}
.portal-shell .email-hub-stat .ehs-value {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-strong);
    line-height: 1.2;
}
.portal-shell .email-hub-stat .ehs-foot {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.5;
}
.portal-shell .email-hub-conn .ehs-conn-line {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    font-size: 0.85rem;
    color: var(--text-body);
    padding: 4px 0;
    line-height: 1.5;
    border-bottom: 1px dashed var(--border-soft);
}
.portal-shell .email-hub-conn .ehs-conn-line:last-child { border-bottom: none; }
.portal-shell .email-hub-conn .ehs-conn-line span:first-child { color: var(--text-muted); }
.portal-shell .email-hub-conn .ehs-conn-line strong,
.portal-shell .email-hub-conn .ehs-conn-line a { color: var(--text-strong); font-weight: 600; text-decoration: none; }
.portal-shell .email-hub-conn .ehs-conn-line a:hover { color: var(--orange); }

.portal-shell .email-domain-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}
@media (max-width: 980px) { .portal-shell .email-domain-grid { grid-template-columns: 1fr; } }

.portal-shell .email-domain-card {
    background: #fff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    padding: 22px 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: box-shadow 0.18s, transform 0.18s, outline-color 0.18s;
    outline: 2px solid transparent;
    outline-offset: 0;
}
.portal-shell .email-domain-card:hover { box-shadow: var(--shadow-pop); transform: translateY(-1px); }
.portal-shell .email-domain-card.email-domain-card-focus { outline-color: var(--aqua); }

.portal-shell .email-domain-card .edc-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}
.portal-shell .email-domain-card .edc-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-strong);
}
.portal-shell .email-domain-card .edc-title i { color: var(--aqua); font-size: 0.95rem; }
.portal-shell .email-domain-card .edc-plan {
    font-size: 0.82rem;
    color: var(--text-muted);
    font-weight: 500;
}

.portal-shell .email-domain-card .edc-usage {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 4px;
}
.portal-shell .email-domain-card .edc-usage-line {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 10px;
    font-size: 0.86rem;
    color: var(--text-body);
}
.portal-shell .email-domain-card .edc-usage-count strong { color: var(--text-strong); font-weight: 700; }
.portal-shell .email-domain-card .edc-usage-quota { color: var(--text-muted); font-size: 0.78rem; }
.portal-shell .email-domain-card .edc-usage-bar {
    height: 6px;
    background: #eef1f4;
    border-radius: 999px;
    overflow: hidden;
}
.portal-shell .email-domain-card .edc-usage-fill {
    height: 100%;
    background: var(--aqua);
    border-radius: 999px;
    transition: width 0.3s;
}
.portal-shell .email-domain-card .edc-usage-warn {
    font-size: 0.78rem;
    color: #92400e;
    background: #fef3c7;
    padding: 6px 10px;
    border-radius: 6px;
    line-height: 1.4;
}
.portal-shell .email-domain-card .edc-usage-warn i { margin-right: 6px; }

.portal-shell .email-domain-card .edc-actions {
    display: flex;
    gap: 10px;
    margin-top: 6px;
    flex-wrap: wrap;
}


}

.sf-plan-card .sf-price-coming {
  display: block;
  min-height: 0;
  margin: 0;
  padding: 0;
  text-align: center;
}

.sf-plan-card .sf-price-coming-text {
  font-size: 1.4rem;
  font-weight: 600;
  color: #6b7280;
  letter-spacing: 0.01em;
}

/* Lift the "Available soon" line so its baseline sits in the gap row
   between pricing and View Plans on the regular cards */
.sf-plan-card.sf-plan-coming .price {
  margin-bottom: 95px;
}

/* ============================================================
   TESTIMONIAL INITIALS AVATAR (used until real customer photos)
   ============================================================ */
.sf-testi-avatar.sf-testi-avatar-initials {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #064163 0%, #29a4c8 100%);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}

/* Logo / favicon variant - contains rather than covers, on a white plate */
.sf-testi-avatar.sf-testi-avatar-logo {
  background: #ffffff;
  border: 1px solid #e8edf0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
}

.sf-testi-avatar.sf-testi-avatar-logo img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.sf-testi-info span a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px dotted rgba(84, 129, 145, 0.4);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.sf-testi-info span a:hover {
  color: #29a4c8;
  border-bottom-color: #29a4c8;
}

/* ============================================================
   COMING SOON BADGE — subtle pill (used on plan cards + nav)
   ============================================================ */
.sf-plan-card.sf-plan-coming {
  position: relative;
  overflow: visible;
}

.sf-plan-coming-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 11px;
  background: #f87171;
  color: #ffffff;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
  border-radius: 999px;
  box-shadow: 0 1px 3px rgba(248, 113, 113, 0.35);
  pointer-events: none;
  white-space: nowrap;
}

/* Inline variant for use next to nav links */
.sf-coming-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 6px;
  padding: 2px 7px;
  background: #f87171;
  color: #ffffff;
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
  border-radius: 999px;
  vertical-align: middle;
  white-space: nowrap;
}

/* ============================================================
   COMING SOON PAGES (cloud-vps.tpl, email-hosting.tpl)
   ============================================================ */
.sf-coming-page {
  padding: 100px 0 120px;
  background: #fdfdfd;
}

.sf-coming-page-badge {
  display: inline-block;
  padding: 6px 14px;
  background: #f87171;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 999px;
  box-shadow: 0 2px 6px rgba(248, 113, 113, 0.30);
  margin-bottom: 32px;
}

.sf-coming-page-icon {
  width: 112px;
  height: 112px;
  border-radius: 50%;
  margin: 0 auto 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: linear-gradient(135deg, #064163 0%, #29a4c8 100%);
  box-shadow: 0 14px 32px rgba(6, 65, 99, 0.28);
}

.sf-coming-page-icon svg {
  width: 54px;
  height: 54px;
}

.sf-coming-page-vps .sf-coming-page-icon {
  background: linear-gradient(135deg, #064163 0%, #29a4c8 100%);
  box-shadow: 0 14px 32px rgba(6, 65, 99, 0.28);
}

.sf-coming-page-email .sf-coming-page-icon {
  background: linear-gradient(135deg, #29a4c8 0%, #6cc4dc 100%);
  box-shadow: 0 14px 32px rgba(41, 164, 200, 0.30);
}

.sf-coming-page-title {
  font-size: 3rem;
  font-weight: 800;
  color: #064163;
  margin-bottom: 18px;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.sf-coming-page-lead {
  font-size: 1.15rem;
  color: #4b5563;
  line-height: 1.6;
  max-width: 720px;
  margin: 0 auto 60px;
}

.sf-coming-page-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin: 0 auto 56px;
  max-width: 760px;
  text-align: left;
}

.sf-coming-page-feature {
  background: #ffffff;
  border: 1px solid #e8edf0;
  border-radius: 14px;
  padding: 24px 22px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.sf-coming-page-feature:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(6, 65, 99, 0.08);
  border-color: rgba(41, 164, 200, 0.4);
}

.sf-coming-page-feature i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(41, 164, 200, 0.12);
  color: #29a4c8;
  font-size: 1.2rem;
  margin-bottom: 14px;
}

.sf-coming-page-feature h5 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #064163;
  margin-bottom: 6px;
}

.sf-coming-page-feature p {
  font-size: 0.92rem;
  color: #4b5563;
  line-height: 1.55;
  margin: 0;
}

.sf-coming-page-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.sf-coming-page-cta .btn {
  padding: 12px 24px !important;
  font-weight: 600 !important;
  font-size: 0.95rem !important;
  border-radius: 8px !important;
}

@media (max-width: 767px) {
  .sf-coming-page { padding: 70px 0 80px; }
  .sf-coming-page-title { font-size: 2.2rem; }
  .sf-coming-page-features { grid-template-columns: 1fr; }
  .sf-coming-page-icon { width: 96px; height: 96px; }
  .sf-coming-page-icon svg { width: 46px; height: 46px; }
}

/* ============================================================
   HOMEPAGE HOSTING CARDS — sf-wh-card mini variant
   Narrower, taller, more breathing room than the web-hosting
   plan cards. Price in brand orange. CTA pinned to bottom.
   ============================================================ */
.sf-wh-card-mini .sf-wh-card-header {
  min-height: 480px;
  border-bottom: none;
  padding: 56px 30px 48px;
  justify-content: flex-start;
}

/* Smaller title + generous gaps between each element */
.sf-wh-card-mini .sf-wh-plan-name {
  font-size: 1.4rem;
  margin-bottom: 26px;
}

.sf-wh-card-mini .sf-wh-plan-desc {
  margin-bottom: 32px;
}

.sf-wh-card-mini .sf-wh-price {
  margin-bottom: 14px;
}

.sf-wh-card-mini .sf-wh-terms {
  margin-bottom: 32px;
}

/* Smaller, orange price — homepage entry-point cards only */
.sf-wh-card-mini .sf-wh-currency {
  font-size: 1rem;
  color: #f0923a;
}

.sf-wh-card-mini .sf-wh-amount {
  font-size: 2.2rem;
  color: #f0923a;
}

.sf-wh-card-mini .sf-wh-period {
  font-size: 0.9rem;
  color: #f0923a;
}

/* Pin the View Plans button to the bottom so all CTAs align across cards */
.sf-wh-card-mini .sf-wh-cta {
  margin-top: auto;
}

/* Coming Soon variant: "Available soon" pinned to the bottom of the card
   so it aligns with the View Plans buttons on the other cards. */
.sf-wh-card-coming .sf-wh-price-coming {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  margin-bottom: 0;
  min-height: 44px;
}

.sf-wh-card-coming .sf-wh-amount-coming {
  font-size: 1.3rem;
  font-weight: 600;
  color: #6b7280;
  letter-spacing: 0.01em;
}

/* ============================================================
   Affiliate hero + grid — mobile-only fixes (≤991px).
   Desktop layout above this block is untouched.
   ============================================================ */
@media (max-width: 991px) {
  .sfaff-hero {
    min-height: auto;
    padding: 50px 0 40px;
    background-image: none !important;
    background-color: #eaf2f5;
  }
  .sfaff-hero-content {
    margin-top: 0;
  }
  .sfaff-payout-cards {
    align-items: stretch;
  }
  .sfaff-payout-main {
    margin-top: 0 !important;
    margin-right: 0 !important;
    margin-bottom: 16px !important;
    transform: none;
  }
  /* Why Partner grid: keep first image at top, hide the other two */
  .sfaff-grid > div:nth-child(2) {
    order: -1;
  }
  .sfaff-grid > div:nth-child(4),
  .sfaff-grid > div:nth-child(6) {
    display: none;
  }
}

/* ============================================================
   Affiliate Interest Modal — temporary while program is being set up.
   Triggered when any link to /affiliates.php is clicked.
   ============================================================ */
.sfaff-interest-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.sfaff-interest-modal.is-open {
  display: flex;
}
.sfaff-interest-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 65, 99, 0.55);
  backdrop-filter: blur(2px);
}
.sfaff-interest-card {
  position: relative;
  background: #ffffff;
  border-radius: 14px;
  max-width: 540px;
  width: 100%;
  padding: 36px 36px 32px;
  box-shadow: 0 24px 60px rgba(6, 65, 99, 0.30);
  max-height: 90vh;
  overflow-y: auto;
}
.sfaff-interest-close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: transparent;
  border: none;
  font-size: 1.6rem;
  color: #548191;
  cursor: pointer;
  line-height: 1;
  padding: 4px 10px;
}
.sfaff-interest-close:hover {
  color: #064163;
}
.sfaff-interest-notice {
  background: #fff4e6;
  border: 1px solid #f0923a;
  border-radius: 10px;
  padding: 14px 18px;
  margin-bottom: 22px;
}
.sfaff-interest-notice strong {
  display: block;
  color: #c4541b;
  font-size: 1rem;
  margin-bottom: 6px;
}
.sfaff-interest-notice p {
  font-size: 0.92rem;
  color: #4a3220;
  line-height: 1.55;
  margin: 0;
}
.sfaff-interest-field {
  margin-bottom: 16px;
}
.sfaff-interest-field label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: #064163;
  margin-bottom: 6px;
}
.sfaff-interest-field input,
.sfaff-interest-field textarea {
  width: 100%;
  padding: 10px 12px;
  font-size: 0.95rem;
  font-family: Inter, sans-serif;
  border: 1.5px solid #e2eaee;
  border-radius: 8px;
  outline: none;
  transition: border-color 0.2s ease;
  background: #ffffff;
  color: #1a1a1a;
}
.sfaff-interest-field input:focus,
.sfaff-interest-field textarea:focus {
  border-color: #29a4c8;
}
.sfaff-interest-field textarea {
  resize: vertical;
  min-height: 70px;
  font-family: Inter, sans-serif;
}
.sfaff-interest-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}
.sfaff-interest-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 20px;
}
.sfaff-interest-cancel,
.sfaff-interest-submit {
  padding: 10px 22px;
  border: none;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  font-family: Inter, sans-serif;
  transition: background 0.2s ease, color 0.2s ease;
}
.sfaff-interest-cancel {
  background: transparent;
  color: #548191;
}
.sfaff-interest-cancel:hover {
  color: #064163;
}
.sfaff-interest-submit {
  background: #29a4c8;
  color: #ffffff;
}
.sfaff-interest-submit:hover {
  background: #064163;
}
.sfaff-interest-status {
  margin-top: 14px;
  font-size: 0.92rem;
  color: #548191;
  text-align: center;
  min-height: 1.2em;
}
.sfaff-interest-status.sfaff-interest-success {
  color: #2d7a4e;
  font-weight: 600;
}
.sfaff-interest-status.sfaff-interest-error {
  color: #c0392b;
  font-weight: 600;
}

/* Footer link list spacing override — tighter than theme default (was 18px) */
.footer-thirteen .f-link li {
  margin-bottom: 8px;
}

/* Footer column section titles — distinguish from links via uppercase + tracking + smaller weight contrast */
.footer-thirteen .footer-widget h3 {
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 22px;
  opacity: 0.7;
}

/* === Hello [name] user dropdown: tighter padding so it does not extend behind Zendesk widget === */
.navbar-area .sub-menu.dropdown-menu-right li a {
  padding: 7px 14px !important;
  font-size: 0.82rem !important;
}
.navbar-area .sub-menu.dropdown-menu-right li {
  margin-bottom: 1px;
}
.navbar-area .sub-menu.dropdown-menu-right li a > i {
  font-size: 1rem;
}

/* === SF-branded flash message alerts === */
/* Kill the 4px ::before stripe HostPulse theme adds on the left of every alert */
.alert::before,
.alert::after,
.alert.alert-success::before,
.alert.alert-success::after,
.alert.alert-danger::before,
.alert.alert-info::before,
.alert.alert-warning::before,
.alert.alert-primary::before,
.alert.alert-secondary::before {
  display: none !important;
  content: none !important;
  background: none !important;
  width: 0 !important;
}

/* Restore symmetric padding now that the left stripe is gone */
.alert {
  padding: 14px 20px !important;
  border-radius: 6px !important;
  box-shadow: none !important;
  overflow: visible !important;
  text-align: center !important;
}

/* Success state: SF aqua/navy design (replaces Bootstrap default green) */
.alert.alert-success {
  background: #eaf6fb !important;
  border: 1px solid #b5dceb !important;
  color: #064163 !important;
  font-weight: 600 !important;
  font-size: 1.05rem !important;
}
