/* Economicalhost.com - Main Stylesheet — Redesigned 2025 */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --green: #1e7e34;
  --green-dark: #0f5323;
  --green-light: #28a745;
  --green-bg: #eaf7ed;
  --accent: #e67e00;
  --accent-hover: #c96e00;
  --text: #1a1a2e;
  --text-muted: #5a6472;
  --border: #d8e4db;
  --white: #fff;
  --shadow: 0 4px 18px rgba(0, 0, 0, 0.09);
  --shadow-hover: 0 10px 32px rgba(0, 0, 0, 0.14);
  --radius: 10px;
  --radius-lg: 16px;
  --font: 'Segoe UI', system-ui, -apple-system, Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--text);
  background: #f4f8f5;
  line-height: 1.7;
}

a {
  color: var(--green);
  text-decoration: none;
  transition: color 0.18s;
}

a:hover {
  color: var(--green-dark);
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.25;
  color: var(--green-dark);
}

/* ======== NAVBAR (redesigned) ======== */
.navbar {
  background: #0c2b18;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.35);
}

.navbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0 28px;
  height: 66px;
}

/* Brand */
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
  margin-right: 32px;
}

.navbar-brand:hover {
  text-decoration: none;
}

.brand-globe {
  font-size: 1.7rem;
  line-height: 1;
}

.brand-text {
  font-size: 1.25rem;
  color: #fff;
  line-height: 1;
  font-family: var(--font);
}

.brand-text b {
  font-weight: 900;
}

.brand-text em {
  font-style: normal;
  color: #6fcf8e;
  font-weight: 700;
}

/* Nav menu */
.nav-menu {
  display: flex;
  list-style: none;
  gap: 0;
  margin: 0;
  padding: 0;
  height: 66px;
  flex: 1;
}

.nav-menu>li {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-menu>li>a,
.nav-menu>li>span {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 14px;
  height: 66px;
  color: #cce8d4;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.18s, color 0.18s;
}

.nav-menu>li>a:hover,
.nav-menu>li>span:hover,
.nav-menu>li.is-open>a,
.nav-menu>li.is-open>span {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  text-decoration: none;
}

/* Phone link in nav */
.nav-phone a {
  color: #ff9966 !important;
  font-weight: 700 !important;
  font-size: 0.88rem !important;
  padding: 0 14px !important;
  white-space: nowrap;
}

.nav-phone a:hover {
  color: #ffbb99 !important;
  text-decoration: none !important;
}

/* Get Help button */
.btn-get-help {
  display: inline-block;
  padding: 9px 22px;
  background: var(--green-light);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 7px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.18s, transform 0.15s;
  margin-left: 16px;
}

.btn-get-help:hover {
  background: #219a38;
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
}

/* Dropdown */
.dropdown {
  display: none;
  position: absolute;
  top: 66px;
  left: 0;
  background: #fff;
  min-width: 240px;
  border-top: 3px solid var(--green-light);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
  border-radius: 0 0 10px 10px;
  z-index: 1100;
  padding: 7px 0;
  pointer-events: none;
}

.nav-menu>li.is-open .dropdown {
  display: block;
  pointer-events: auto;
}

.dropdown li {
  list-style: none;
}

.dropdown li a {
  display: block;
  padding: 9px 20px;
  color: var(--text);
  font-size: 0.875rem;
  font-weight: 500;
  transition: background 0.14s, color 0.14s;
}

.dropdown li a:hover {
  background: var(--green-bg);
  color: var(--green-dark);
  text-decoration: none;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ======== BUTTONS ======== */
.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 7px;
  font-weight: 700;
  font-size: 0.97rem;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  letter-spacing: 0.02em;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 3px 10px rgba(230, 126, 0, 0.3);
}

.btn-primary:hover {
  background: var(--accent-hover);
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-green {
  background: var(--green-light);
  color: #fff;
  box-shadow: 0 3px 10px rgba(40, 167, 69, 0.28);
}

.btn-green:hover {
  background: var(--green);
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--green);
  border: 2px solid var(--green);
}

.btn-outline:hover {
  background: var(--green);
  color: #fff;
  text-decoration: none;
}

.btn-white {
  background: #fff;
  color: var(--green-dark);
  font-weight: 700;
}

.btn-white:hover {
  background: #e8f5e9;
  color: var(--green-dark);
  text-decoration: none;
  transform: translateY(-1px);
}

/* ======== HERO v1 (legacy — kept for inner pages) ======== */
.hero {
  background: linear-gradient(140deg, #0c2b18 0%, #1a5e2a 55%, #2e9e4f 100%);
  color: #fff;
  padding: 90px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero .container {
  position: relative;
}

.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 18px;
  color: #fff;
  line-height: 1.15;
}

.hero h1 em {
  color: #6fcf8e;
  font-style: normal;
}

.hero p {
  font-size: 1.18rem;
  max-width: 700px;
  margin: 0 auto 32px;
  opacity: 0.92;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 32px;
}

.hero-badge {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50px;
  padding: 6px 18px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #e0f5e9;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ======== HERO v2 — homepage two-column ======== */
.hero-v2 {
  background: #0d2e18;
  position: relative;
  overflow: hidden;
  min-height: 580px;
  display: flex;
  align-items: center;
}

.hero-v2::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 80% at 15% 60%, rgba(30, 120, 60, 0.45) 0%, transparent 70%),
    radial-gradient(ellipse 50% 60% at 90% 10%, rgba(20, 90, 40, 0.35) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 50% 100%, rgba(40, 160, 80, 0.15) 0%, transparent 60%);
}

.hero-v2-inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  padding: 72px 40px 64px;
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 60px;
  align-items: center;
}

/* LEFT side */
.hero-left {
  color: #fff;
}

.hero-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(40, 167, 69, 0.25);
  border: 1px solid rgba(111, 207, 142, 0.4);
  border-radius: 50px;
  padding: 7px 18px;
  font-size: 0.8rem;
  font-weight: 800;
  color: #a8e6bc;
  letter-spacing: 0.08em;
  margin-bottom: 22px;
}

.hero-headline {
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 18px;
  font-family: var(--font);
  letter-spacing: -0.01em;
}

.hero-accent {
  color: #6fcf8e;
  display: inline;
}

.hero-sub {
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.82);
  max-width: 500px;
  line-height: 1.72;
  margin-bottom: 30px;
}

.hero-cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.btn-hero-primary {
  padding: 14px 30px;
  background: var(--green-light);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 8px;
  transition: all 0.2s;
  box-shadow: 0 4px 16px rgba(40, 167, 69, 0.35);
}

.btn-hero-primary:hover {
  background: #219a38;
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(40, 167, 69, 0.45);
}

.btn-hero-outline {
  padding: 13px 28px;
  background: transparent;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 8px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  transition: all 0.2s;
}

.btn-hero-outline:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  text-decoration: none;
}

/* Stats row */
.hero-stats {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hstat-num {
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.hstat-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.48);
  letter-spacing: 0.08em;
  margin-top: 4px;
  text-transform: uppercase;
}

/* RIGHT: domain card */
.hero-right {
  display: flex;
  align-items: center;
}

.domain-card {
  background: rgba(10, 40, 18, 0.72);
  border: 1px solid rgba(110, 210, 130, 0.22);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: 16px;
  padding: 30px 30px;
  width: 100%;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.domain-card-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 18px;
}

.domain-card-row {
  display: flex;
  gap: 0;
  margin-bottom: 14px;
}

.domain-card-row input {
  flex: 1;
  padding: 13px 16px;
  background: rgba(255, 255, 255, 0.92);
  border: none;
  border-radius: 8px 0 0 8px;
  font-size: 0.97rem;
  font-family: var(--font);
  outline: none;
  color: #222;
}

.domain-card-row input:focus {
  background: #fff;
}

.domain-card-row button {
  padding: 13px 22px;
  background: var(--green-light);
  color: #fff;
  border: none;
  border-radius: 0 8px 8px 0;
  font-size: 0.97rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.18s;
  white-space: nowrap;
}

.domain-card-row button:hover {
  background: #219a38;
}

.domain-tld-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.tld-pill {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  padding: 5px 13px;
  font-size: 0.82rem;
  color: #d4f0dc;
  transition: background 0.15s;
}

.tld-pill b {
  color: #fff;
}

.tld-pill:hover {
  background: rgba(255, 255, 255, 0.2);
}

.domain-card-perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.domain-card-perks li {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.82);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ======== SERVICES STRIP ======== */
.services-strip {
  background: #fff;
  border-bottom: 2px solid #e4ede6;
  padding: 0;
}

.services-row {
  display: flex;
  justify-content: stretch;
  align-items: stretch;
  flex-wrap: nowrap;
  max-width: 1260px;
  margin: 0 auto;
  border-left: 1px solid #e4ede6;
}

.svc-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 22px 10px;
  gap: 10px;
  flex: 1;
  border-right: 1px solid #e4ede6;
  color: var(--text);
  text-decoration: none;
  transition: background 0.18s;
  min-width: 0;
}

.svc-item:hover {
  background: var(--green-bg);
  text-decoration: none;
}

.svc-item:hover .svc-svg {
  stroke: var(--green-dark);
}

.svc-item:hover .svc-label {
  color: var(--green-dark);
}

.svc-svg {
  width: 32px;
  height: 32px;
  stroke: #555;
  stroke-width: 1.8;
  fill: none;
  flex-shrink: 0;
  transition: stroke 0.18s;
}

.svc-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: #444;
  text-align: center;
  line-height: 1.3;
}

/* ======== SECTIONS ======== */
section {
  padding: 64px 20px;
}

.container {
  max-width: 1260px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 10px;
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 44px;
}

.section-alt {
  background: var(--green-bg);
}

/* ======== STATS STRIP ======== */
.stats-strip {
  background: #fff;
  padding: 36px 20px;
  border-top: 1px solid #e0ede4;
  border-bottom: 1px solid #e0ede4;
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  max-width: 1000px;
  margin: 0 auto;
}

.stat-item {
  flex: 1 1 200px;
  text-align: center;
  padding: 20px 24px;
  border-right: 1px solid #e0ede4;
}

.stat-item:last-child {
  border-right: none;
}

.stat-num {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--green);
  line-height: 1;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 4px;
  font-weight: 500;
}

/* ======== PRICING CARDS — FORCE 4 COLUMNS ======== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 10px;
  align-items: start;
}

.pricing-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 22px 26px;
  box-shadow: var(--shadow);
  text-align: center;
  position: relative;
  transition: transform 0.22s, box-shadow 0.22s;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.pricing-card.featured {
  border-color: var(--green-light);
  border-width: 2.5px;
  box-shadow: 0 6px 28px rgba(30, 126, 52, 0.15);
}

.badge-popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 18px;
  border-radius: 20px;
  white-space: nowrap;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.plan-name {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--green-dark);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.plan-price {
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--green);
  margin: 8px 0 3px;
  line-height: 1;
}

.plan-price span {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--text-muted);
}

.plan-period {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid #eef3ef;
}

.plan-features {
  list-style: none;
  text-align: left;
  margin-bottom: 24px;
  flex: 1;
}

.plan-features li {
  padding: 6px 0;
  font-size: 0.875rem;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  border-bottom: 1px solid #f2f6f3;
}

.plan-features li:last-child {
  border-bottom: none;
}

.plan-features li::before {
  content: '✓';
  color: var(--green-light);
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ======== FEATURES GRID ======== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px;
  margin-top: 16px;
}

/* Force 3-column layout on desktop */
.features-grid.cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

.feature-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  text-align: center;
  border-top: 3px solid var(--green-light);
  transition: transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

/* SVG icon container */
.fc-icon {
  width: 54px;
  height: 54px;
  margin: 0 auto 16px;
  background: var(--green-bg);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fc-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--green-dark);
}

/* Legacy emoji icon (inner pages) */
.feature-icon {
  font-size: 2.4rem;
  margin-bottom: 12px;
  line-height: 1;
}

.feature-card h4 {
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--green-dark);
}

.feature-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ======== SERVICE CARDS (homepage hosting plans) ======== */
.service-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  box-shadow: var(--shadow);
  text-align: center;
  border-top: 4px solid var(--green-light);
  transition: transform 0.22s, box-shadow 0.22s;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.service-card .fc-icon {
  margin-bottom: 16px;
}

.service-card h4 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: var(--green-dark);
}

.service-card h4 a {
  color: var(--green-dark);
}

.service-card h4 a:hover {
  color: var(--green-light);
  text-decoration: none;
}

.service-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  flex: 1;
  margin-bottom: 20px;
  line-height: 1.6;
}

/* Small button */
.btn-sm {
  padding: 8px 20px !important;
  font-size: 0.84rem !important;
}

/* ======== TABLE ======== */
.table-wrap {
  overflow-x: auto;
  margin: 20px 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}

th {
  background: var(--green-dark);
  color: #fff;
  padding: 14px 16px;
  text-align: left;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
}

td {
  padding: 11px 16px;
  border-bottom: 1px solid #edf2ee;
  font-size: 0.875rem;
}

tr:last-child td {
  border-bottom: none;
}

tr:nth-child(even) td {
  background: #f5fbf6;
}

td:first-child {
  font-weight: 600;
  color: var(--text);
}

/* ======== ACCORDION ======== */
.accordion-item {
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 10px;
  background: #fff;
  overflow: hidden;
}

.accordion-header {
  padding: 15px 20px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--green-dark);
  background: #fff;
  transition: background 0.2s;
}

.accordion-header:hover {
  background: var(--green-bg);
}

.accordion-header .icon {
  transition: transform 0.3s;
  font-style: normal;
}

.accordion-item.open .accordion-header .icon {
  transform: rotate(180deg);
}

.accordion-body {
  display: none;
  padding: 16px 20px;
  font-size: 0.9rem;
  color: var(--text-muted);
  border-top: 1px solid #eee;
}

.accordion-item.open .accordion-body {
  display: block;
}

/* ======== CONTACT FORM ======== */
.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 7px;
  font-size: 0.95rem;
  font-family: var(--font);
  transition: border-color 0.2s, box-shadow 0.2s;
  background: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(30, 126, 52, 0.1);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

/* ======== NOTICE / ALERT ======== */
.notice {
  background: #fffde7;
  border-left: 4px solid #f9a825;
  padding: 14px 18px;
  border-radius: 6px;
  font-size: 0.9rem;
  margin: 16px 0;
}

.notice-green {
  background: var(--green-bg);
  border-left-color: var(--green);
}

/* ======== CLIENTS STRIP ======== */
.clients-strip {
  background: #fff;
  padding: 36px 20px;
  border-top: 1px solid #e0ede4;
  border-bottom: 1px solid #e0ede4;
}

.clients-strip .section-title {
  font-size: 1.3rem;
  margin-bottom: 20px;
}

.clients-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  align-items: center;
}

.client-badge {
  background: var(--green-bg);
  color: var(--green-dark);
  font-weight: 700;
  font-size: 0.78rem;
  padding: 6px 15px;
  border-radius: 20px;
  border: 1px solid #a5d6a7;
  transition: background 0.15s;
}

.client-badge:hover {
  background: #c8e6c9;
}

/* ======== PAGE HEADER BANNER ======== */
.page-header {
  background: linear-gradient(140deg, var(--green-dark) 0%, #1a6b2f 60%, #2e9e4f 100%);
  color: #fff;
  text-align: center;
  padding: 54px 20px 42px;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
}

.page-header .container {
  position: relative;
}

.page-header h1 {
  font-size: 2.3rem;
  color: #fff;
  margin-bottom: 10px;
}

.page-header p {
  font-size: 1.07rem;
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto;
}

/* ======== BREADCRUMB ======== */
.breadcrumb {
  background: var(--green-bg);
  padding: 10px 20px;
  font-size: 0.82rem;
  border-bottom: 1px solid #d4e8d8;
}

.breadcrumb a {
  color: var(--green);
}

.breadcrumb span {
  color: var(--text-muted);
}

/* ======== FOOTER ======== */
footer {
  background: var(--green-dark);
  color: #b8e4c0;
  padding: 52px 20px 22px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 36px;
  max-width: 1260px;
  margin: 0 auto;
}

.footer-col h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 14px;
  border-bottom: 2px solid rgba(111, 207, 142, 0.4);
  padding-bottom: 9px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  color: #8dcca4;
  font-size: 0.875rem;
  transition: color 0.15s;
}

.footer-col ul li a:hover {
  color: #fff;
  text-decoration: none;
}

.footer-col p {
  font-size: 0.875rem;
  line-height: 1.75;
  color: #a0c8ac;
}

.footer-bottom {
  text-align: center;
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.81rem;
  color: #70a87e;
  max-width: 1260px;
  margin-left: auto;
  margin-right: auto;
}

/* ======== DOMAIN SEARCH ======== */
.domain-search-box {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow);
  max-width: 720px;
  margin: 0 auto;
  border-top: 4px solid var(--green-light);
}

.domain-search-box .search-row {
  display: flex;
  gap: 0;
  margin-top: 16px;
}

.domain-search-box input[type=text] {
  flex: 1;
  padding: 14px 18px;
  border: 2px solid var(--green-light);
  border-right: none;
  border-radius: 8px 0 0 8px;
  font-size: 1.02rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.domain-search-box input[type=text]:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(30, 126, 52, 0.1);
}

.domain-search-box button {
  padding: 14px 28px;
  background: var(--green);
  color: #fff;
  border: none;
  border-radius: 0 8px 8px 0;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}

.domain-search-box button:hover {
  background: var(--green-dark);
}

.domain-tld-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.tld-item {
  background: var(--green-bg);
  border-radius: 8px;
  padding: 9px 16px;
  text-align: center;
  border: 1px solid #c3e4c9;
  transition: background 0.15s;
}

.tld-item:hover {
  background: #c8e6c9;
}

.tld-item .tld {
  font-weight: 800;
  color: var(--green-dark);
  font-size: 1rem;
}

.tld-item .price {
  font-size: 0.79rem;
  color: var(--text-muted);
}

/* ======== CTA STRIP ======== */
.cta-strip {
  background: linear-gradient(135deg, var(--green-dark) 0%, #1a6b2f 100%);
  color: #fff;
  text-align: center;
  padding: 56px 20px;
  position: relative;
  overflow: hidden;
}

.cta-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background: repeating-linear-gradient(45deg, #fff, #fff 1px, transparent 1px, transparent 20px);
}

.cta-strip .container {
  position: relative;
}

.cta-strip h2 {
  color: #fff;
  font-size: 2.1rem;
  margin-bottom: 12px;
}

.cta-strip p {
  opacity: 0.88;
  max-width: 580px;
  margin: 0 auto 28px;
  font-size: 1.05rem;
}

/* ======== UTILITY ======== */
.text-center {
  text-align: center;
}

.text-muted {
  color: var(--text-muted);
}

.mt-10 {
  margin-top: 10px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-40 {
  margin-top: 40px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-20 {
  margin-bottom: 20px;
}

.highlight {
  color: var(--green);
  font-weight: 700;
}

.tag {
  display: inline-block;
  background: var(--green-bg);
  color: var(--green-dark);
  border-radius: 5px;
  padding: 2px 10px;
  font-size: 0.8rem;
  font-weight: 600;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ======== STEPS ======== */
.steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 20px;
}

.step {
  background: #fff;
  border-radius: var(--radius);
  padding: 26px 22px;
  text-align: center;
  flex: 0 1 220px;
  box-shadow: var(--shadow);
}

.step-num {
  width: 44px;
  height: 44px;
  background: var(--green);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.2rem;
  margin: 0 auto 12px;
  box-shadow: 0 3px 10px rgba(30, 126, 52, 0.3);
}

/* ======== BANK CARDS ======== */
.bank-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 20px;
}

.bank-card {
  background: #fff;
  border: 2px solid var(--green-light);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  flex: 0 1 320px;
  box-shadow: var(--shadow);
}

.bank-card h3 {
  color: var(--green-dark);
  margin-bottom: 16px;
}

.bank-card table {
  box-shadow: none;
}

.bank-card th {
  background: var(--green-bg);
  color: var(--green-dark);
}

/* ======== RESPONSIVE ======== */
@media (max-width: 1100px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-v2-inner {
    grid-template-columns: 1fr 400px;
    gap: 40px;
  }

  .hero-headline {
    font-size: 2.6rem;
  }

  .features-grid.cols-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {

  /* Navbar mobile */
  .hamburger {
    display: flex;
  }

  .btn-get-help {
    display: none;
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 66px;
    left: 0;
    right: 0;
    background: #0c2b18;
    height: auto;
    gap: 0;
    padding-bottom: 14px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
  }

  .nav-menu.open {
    display: flex;
  }

  .nav-menu>li {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .nav-menu>li>a,
  .nav-menu>li>span {
    height: auto;
    padding: 12px 24px;
    width: 100%;
  }

  .nav-phone {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .dropdown {
    position: static;
    box-shadow: none;
    border-radius: 0;
    border-top: none;
    background: rgba(0, 0, 0, 0.2);
    min-width: 100%;
  }

  .dropdown li a {
    color: #9ed8b4;
    padding: 9px 40px;
  }

  .nav-menu>li.is-open .dropdown {
    pointer-events: auto;
  }

  /* Hero v2 stacks */
  .hero-v2-inner {
    grid-template-columns: 1fr;
    padding: 52px 24px 44px;
    gap: 36px;
  }

  .hero-headline {
    font-size: 2.3rem;
  }

  .hero-accent {
    display: inline;
  }

  .hero-right {
    justify-content: center;
  }

  .domain-card {
    max-width: 480px;
  }

  .two-col {
    grid-template-columns: 1fr;
  }

  .three-col {
    grid-template-columns: 1fr 1fr;
  }

  .svc-item {
    flex: 1 1 100px;
    padding: 20px 16px;
  }
}

@media (max-width: 700px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 1.85rem;
  }

  .hero-headline {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .features-grid.cols-3 {
    grid-template-columns: 1fr;
  }

  .services-row {
    flex-wrap: wrap;
  }

  .svc-item {
    flex: 1 1 30%;
  }

  .three-col {
    grid-template-columns: 1fr;
  }

  .bank-card {
    padding: 20px;
  }

  .domain-search-box .search-row {
    flex-direction: column;
  }

  .domain-search-box input[type=text] {
    border-right: 2px solid var(--green-light);
    border-radius: 7px;
    margin-bottom: 8px;
  }

  .domain-search-box button {
    border-radius: 7px;
  }

  .page-header h1 {
    font-size: 1.7rem;
  }

  footer .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cta-strip h2 {
    font-size: 1.6rem;
  }

  .hero-stats {
    gap: 20px;
  }

  .hstat-num {
    font-size: 1.6rem;
  }

  .svc-item {
    flex: 1 1 80px;
    padding: 16px 12px;
  }

  .svc-label {
    font-size: 0.75rem;
  }
}

@media (max-width: 420px) {
  footer .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero h1,
  .hero-headline {
    font-size: 1.6rem;
  }

  .hero-cta-row {
    flex-direction: column;
  }

  .btn-hero-primary,
  .btn-hero-outline {
    text-align: center;
  }
}