/* ═══════════════════════════════════════════════════════
   ECONOMICALHOST.COM — Premium Design System v3
   Self-contained. No framework dependencies.
═══════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ── TOKENS ── */
:root {
  --brand: #16a34a;
  --brand-dark: #0f6b2f;
  --brand-deeper: #083d1a;
  --brand-light: #22c55e;
  --brand-tint: #f0fdf4;
  --brand-pale: #dcfce7;
  --accent: #f97316;
  --accent-dark: #ea6b05;
  --gold: #f59e0b;
  --text: #0f172a;
  --text-2: #334155;
  --text-3: #64748b;
  --text-4: #94a3b8;
  --border: #e2e8f0;
  --border-2: #cbd5e1;
  --surface: #ffffff;
  --surface-2: #f8fafc;
  --surface-3: #f1f5f9;
  --shadow-xs: 0 1px 3px rgba(0, 0, 0, .06), 0 1px 2px rgba(0, 0, 0, .04);
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, .07), 0 2px 4px -2px rgba(0, 0, 0, .05);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, .08), 0 4px 6px -4px rgba(0, 0, 0, .05);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, .08), 0 8px 10px -6px rgba(0, 0, 0, .05);
  --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, .15);
  --r-sm: 6px;
  --r: 10px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --font: 'Inter', system-ui, -apple-system, sans-serif;
}

/* ── RESET ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--brand);
  text-decoration: none;
  transition: color .18s;
}

a:hover {
  color: var(--brand-dark);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.02em;
  color: var(--text);
}

/* ── LAYOUT ── */
.container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-sm {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 88px 0;
}

.section-sm {
  padding: 64px 0;
}

/* ── TYPOGRAPHY HELPERS ── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 14px;
}

.eyebrow::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  flex-shrink: 0;
}

.section-heading {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -.03em;
  margin-bottom: 14px;
}

.section-heading span {
  color: var(--brand);
}

.section-lead {
  font-size: 16px;
  color: var(--text-2);
  max-width: 580px;
  line-height: 1.75;
}

.centered {
  text-align: center;
}

.centered .section-lead {
  margin: 0 auto;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 14px;
  padding: 12px 26px;
  border-radius: var(--r);
  border: none;
  cursor: pointer;
  transition: all .2s;
  text-decoration: none !important;
  white-space: nowrap;
  line-height: 1;
}

.btn-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 2px 12px rgba(22, 163, 74, .35);
}

.btn-primary:hover {
  background: var(--brand-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(22, 163, 74, .4);
}

.btn-accent {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 2px 12px rgba(249, 115, 22, .35);
}

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

.btn-ghost {
  background: transparent;
  color: var(--text-2);
  border: 1.5px solid var(--border-2);
}

.btn-ghost:hover {
  border-color: var(--brand);
  color: var(--brand);
  background: var(--brand-tint);
}

.btn-white {
  background: #fff;
  color: var(--brand-dark);
  box-shadow: 0 2px 8px rgba(0, 0, 0, .1);
}

.btn-white:hover {
  background: #f0fdf4;
  color: var(--brand-dark);
}

.btn-lg {
  padding: 15px 34px;
  font-size: 15px;
}

.btn-sm {
  padding: 9px 18px;
  font-size: 13px;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

.btn svg {
  flex-shrink: 0;
}

/* ── TOP STRIP ── */
.topstrip {
  background: var(--brand-deeper);
  padding: 8px 0;
  font-size: 12.5px;
  color: rgba(255, 255, 255, .75);
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.topstrip a {
  color: rgba(255, 255, 255, .8);
}

.topstrip a:hover {
  color: #fff;
}

.topstrip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
  flex-wrap: wrap;
}

.topstrip-left,
.topstrip-right {
  align-items: center;
  gap: 18px;
}

.topstrip-sep {
  opacity: .3;
}

.live-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: #4ade80;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(74, 222, 128, .25);
  margin-right: 5px;
  vertical-align: middle;
}

/* ── NAVBAR ── */
.navbar {
  background: var(--surface);
  position: sticky;
  top: 0;
  z-index: 999;
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-xs);
}

.navbar-inner {
  display: flex;
  align-items: center;
  height: 68px;
  gap: 8px;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -.03em;
  flex-shrink: 0;
  margin-right: 24px;
  text-decoration: none !important;
}

.navbar-brand:hover {
  color: var(--brand);
}

.brand-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--brand), var(--brand-light));
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(22, 163, 74, .3);
}

.brand-icon svg {
  width: 20px;
  height: 20px;
  stroke: #fff;
}

.brand-name {
  color: var(--text);
}

.brand-name em {
  font-style: normal;
  color: var(--brand);
}

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 0;
  flex: 1;
  height: 68px;
}

.nav-links>li {
  position: relative;
  display: flex;
  align-items: center;
  height: 68px;
}

.nav-links>li>a,
.nav-links>li>span {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 14px;
  height: 68px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-2);
  cursor: pointer;
  white-space: nowrap;
  transition: color .18s;
  border-bottom: 2px solid transparent;
}

.nav-links>li>a:hover,
.nav-links>li>span:hover,
.nav-links>li.open>a,
.nav-links>li.open>span {
  color: var(--brand);
  border-bottom-color: var(--brand);
  text-decoration: none;
}

/* Dropdown */
.nav-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 1px);
  left: 0;
  background: var(--surface);
  min-width: 220px;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  padding: 8px 0;
  z-index: 1000;
  pointer-events: none;
}

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

.nav-dropdown li {
  list-style: none;
}

.nav-dropdown li a {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 18px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-2);
  transition: all .14s;
}

.nav-dropdown li a:hover {
  background: var(--brand-tint);
  color: var(--brand);
  text-decoration: none;
}

.nav-dropdown li a svg {
  flex-shrink: 0;
  stroke: var(--text-3);
  width: 14px;
  height: 14px;
}

.nav-dropdown li a:hover svg {
  stroke: var(--brand);
}

/* Nav right */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

.nav-phone {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-2);
}

.nav-phone:hover {
  color: var(--brand);
  text-decoration: none;
}

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

.hamburger span {
  display: block;
  width: 22px;
  height: 2.5px;
  background: var(--text);
  border-radius: 2px;
  transition: all .3s;
}

/* ── HERO ── */
.hero {
  background: var(--brand-deeper);
  position: relative;
  overflow: hidden;
  padding: 90px 0 80px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(22, 163, 74, .18) 0%, transparent 70%),
    radial-gradient(ellipse 50% 70% at 5% 100%, rgba(34, 197, 94, .12) 0%, transparent 60%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(34, 197, 94, .15);
  border: 1px solid rgba(34, 197, 94, .3);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 11px;
  font-weight: 700;
  color: #86efac;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(2.2rem, 4vw, 3.3rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -.03em;
  margin-bottom: 20px;
}

.hero-title .hl {
  color: #4ade80;
}

.hero-body {
  font-size: 16px;
  color: rgba(255, 255, 255, .72);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 480px;
}

.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.hero-stats {
  display: flex;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding-top: 28px;
  flex-wrap: wrap;
}

.hero-stat {
  padding-right: 32px;
}

.hero-stat:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, .1);
  margin-right: 32px;
}

.hero-stat-num {
  font-size: 1.9rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.hero-stat-label {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, .45);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-top: 3px;
}

/* Domain card */
.domain-card {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--r-xl);
  padding: 32px 28px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .4), inset 0 1px 0 rgba(255, 255, 255, .06);
}

.domain-card-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .5);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.domain-card-label::before {
  content: '';
  width: 14px;
  height: 2px;
  background: var(--brand-light);
  border-radius: 2px;
}

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

.domain-search-row {
  display: flex;
  background: rgba(255, 255, 255, .95);
  border-radius: var(--r);
  overflow: hidden;
  margin-bottom: 14px;
}

.domain-search-row input {
  flex: 1;
  border: none;
  outline: none;
  padding: 14px 16px;
  font-size: 14px;
  font-family: var(--font);
  color: var(--text);
  background: transparent;
}

.domain-search-row button {
  padding: 0 22px;
  background: var(--brand);
  color: #fff;
  border: none;
  font-weight: 700;
  font-size: 13.5px;
  cursor: pointer;
  font-family: var(--font);
  transition: background .18s;
  white-space: nowrap;
}

.domain-search-row button:hover {
  background: var(--brand-dark);
}

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

.tld-chip {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 50px;
  padding: 5px 13px;
  font-size: 12px;
  color: rgba(255, 255, 255, .75);
}

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

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

.domain-perks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, .75);
}

.domain-perks li svg {
  flex-shrink: 0;
  stroke: #4ade80;
}

/* ── SERVICES STRIP ── */
.services-strip {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 0;
}

.services-row {
  display: flex;
  border-left: 1px solid var(--border);
}

.svc-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 22px 10px;
  gap: 10px;
  border-right: 1px solid var(--border);
  color: var(--text-2);
  cursor: pointer;
  transition: background .18s;
  text-decoration: none !important;
}

.svc-item:hover {
  background: var(--brand-tint);
}

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

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

.svc-svg {
  width: 30px;
  height: 30px;
  stroke: var(--text-3);
  fill: none;
  transition: stroke .18s;
}

.svc-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-3);
  text-align: center;
  line-height: 1.3;
  transition: color .18s;
}

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--surface-2);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}

.trust-grid {
  display: flex;
  gap: 0;
}

.trust-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 24px;
  border-right: 1px solid var(--border);
}

.trust-item:first-child {
  padding-left: 0;
}

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

.trust-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--brand-tint);
  border: 1px solid var(--brand-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-icon-box svg {
  width: 22px;
  height: 22px;
  stroke: var(--brand);
  fill: none;
}

.trust-num {
  font-size: 1.55rem;
  font-weight: 900;
  color: var(--text);
  line-height: 1;
}

.trust-label {
  font-size: 11.5px;
  color: var(--text-3);
  font-weight: 500;
  margin-top: 2px;
}

/* ── FEATURE CARDS ── */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.feat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 28px 26px;
  box-shadow: var(--shadow-xs);
  transition: transform .22s, box-shadow .22s, border-color .22s;
}

.feat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand-pale);
}

.feat-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 13px;
  background: var(--brand-tint);
  border: 1px solid var(--brand-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.feat-icon-wrap svg {
  width: 24px;
  height: 24px;
  stroke: var(--brand);
  fill: none;
}

.feat-card h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}

.feat-card p {
  font-size: 13.5px;
  color: var(--text-3);
  line-height: 1.65;
}

/* ── PRICING SECTION ── */
.pricing-tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  background: var(--surface-3);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 5px;
  width: fit-content;
  margin: 0 auto 48px;
}

.ptab {
  padding: 10px 28px;
  font-size: 13.5px;
  font-weight: 600;
  border-radius: 9px;
  cursor: pointer;
  transition: all .2s;
  color: var(--text-3);
  background: transparent;
  border: none;
  font-family: var(--font);
}

.ptab.active {
  background: var(--surface);
  color: var(--text);
  box-shadow: var(--shadow-sm);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: start;
}

.plan-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 30px 24px 26px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-xs);
  transition: transform .25s, box-shadow .25s, border-color .25s;
  position: relative;
}

.plan-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.plan-card.featured {
  border-color: var(--brand);
  border-width: 2px;
  box-shadow: 0 0 0 4px rgba(22, 163, 74, .08), var(--shadow-md);
}

.plan-card.featured:hover {
  box-shadow: 0 0 0 4px rgba(22, 163, 74, .12), var(--shadow-xl);
}

.plan-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--brand), var(--brand-light));
  color: #fff;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 18px;
  border-radius: 50px;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(22, 163, 74, .4);
}

.plan-tier {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 8px;
}

.plan-name {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 4px;
}

.plan-tagline {
  font-size: 12.5px;
  color: var(--text-3);
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.plan-price-row {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 4px;
}

.plan-price {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--text);
  letter-spacing: -.03em;
  line-height: 1;
}

.plan-price-unit {
  font-size: 13px;
  color: var(--text-3);
  font-weight: 500;
}

.plan-annual {
  font-size: 12px;
  color: var(--text-3);
  margin-bottom: 22px;
}

.plan-annual b {
  color: var(--brand);
}

.plan-feats {
  list-style: none;
  flex: 1;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.plan-feats li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 9px 0;
  font-size: 13.5px;
  color: var(--text-2);
  border-bottom: 1px solid var(--surface-3);
}

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

.plan-feats li svg {
  flex-shrink: 0;
  margin-top: 1px;
}

.feat-yes {
  stroke: var(--brand);
}

.feat-no {
  stroke: var(--text-4);
  opacity: .5;
}

.plan-feats li.muted {
  color: var(--text-3);
}

.plan-note {
  background: var(--brand-tint);
  border: 1px solid var(--brand-pale);
  border-radius: var(--r-sm);
  padding: 8px 12px;
  font-size: 11.5px;
  color: var(--brand-dark);
  font-weight: 600;
  margin-bottom: 16px;
}

.plan-cta {
  margin-top: auto;
  margin: auto;
}

/* Plan type colors */
.plan-card.tier-starter .plan-tier {
  color: var(--text-3);
}

.plan-card.tier-starter .plan-badge {
  background: var(--text-2);
}

/* ── COMPARE TABLE ── */
.compare-wrap {
  overflow-x: auto;
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
  background: var(--surface);
}

.compare-table th {
  padding: 14px 18px;
  font-weight: 700;
  font-size: 13px;
}

.compare-table th:first-child {
  text-align: left;
  background: var(--surface-2);
}

.compare-table th:not(:first-child) {
  text-align: center;
  background: var(--surface);
  border-left: 1px solid var(--border);
}

.compare-table th.featured-col {
  background: var(--brand-tint) !important;
  color: var(--brand-dark);
}

.compare-table td {
  padding: 12px 18px;
  border-top: 1px solid var(--border);
}

.compare-table td:first-child {
  font-weight: 600;
  color: var(--text-2);
  background: var(--surface-2);
}

.compare-table td:not(:first-child) {
  text-align: center;
  border-left: 1px solid var(--border);
  color: var(--text-3);
}

.compare-table td.featured-col {
  background: rgba(240, 253, 244, .5);
  color: var(--text-2);
  font-weight: 600;
}

.compare-table tr:hover td {
  background: var(--surface-2);
}

.compare-table tr:hover td.featured-col {
  background: var(--brand-tint);
}

.check-yes {
  color: var(--brand);
  font-weight: 800;
  font-size: 16px;
}

.check-no {
  color: var(--text-4);
  font-size: 16px;
}

/* ── TECH STACK SECTION ── */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.tech-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 26px 22px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  box-shadow: var(--shadow-xs);
  transition: border-color .2s, box-shadow .2s;
}

.tech-card:hover {
  border-color: var(--brand-pale);
  box-shadow: var(--shadow-sm);
}

.tech-icon {
  width: 46px;
  height: 46px;
  border-radius: 11px;
  flex-shrink: 0;
  background: var(--brand-tint);
  border: 1px solid var(--brand-pale);
  display: flex;
  align-items: center;
  justify-content: center;
}

.tech-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--brand);
  fill: none;
}

.tech-card h5 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--text);
}

.tech-card p {
  font-size: 13px;
  color: var(--text-3);
  line-height: 1.6;
}

/* ── FREE INCLUDED BOX ── */
.free-box {
  background: linear-gradient(135deg, var(--brand-tint) 0%, #f0fdf4 100%);
  border: 1.5px solid var(--brand-pale);
  border-radius: var(--r-lg);
  padding: 36px 40px;
}

.free-box-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--brand-dark);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.free-box-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.free-item {
  background: var(--surface);
  border: 1px solid var(--brand-pale);
  border-radius: var(--r);
  padding: 18px 16px;
  text-align: center;
  transition: box-shadow .2s;
}

.free-item:hover {
  box-shadow: var(--shadow-sm);
}

.free-item-icon {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: var(--brand-tint);
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.free-item-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--brand);
  fill: none;
}

.free-item h5 {
  font-size: 13.5px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text);
}

.free-item p {
  font-size: 12px;
  color: var(--text-3);
  line-height: 1.5;
}

/* ── PHP MODULES BOX ── */
.modules-box {
  background: #0f172a;
  border-radius: var(--r-lg);
  padding: 28px 32px;
  font-family: 'Courier New', 'Cascadia Code', monospace;
  font-size: 13px;
  color: #7dd3fc;
  line-height: 2;
  box-shadow: var(--shadow-xl);
}

.modules-box .mod-label {
  color: #4ade80;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.modules-box .mod-item {
  color: #a78bfa;
}

.modules-box .mod-sep {
  color: rgba(255, 255, 255, .2);
}

/* ── CLIENTS STRIP ── */
.clients-section {
  background: var(--surface-2);
  padding: 48px 0;
  border-top: 1px solid var(--border);
}

.clients-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.client-chip {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 9px 18px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-2);
  transition: all .18s;
}

.client-chip:hover {
  border-color: var(--brand);
  color: var(--brand);
  background: var(--brand-tint);
}

/* ── CTA SECTION ── */
.cta-section {
  background: linear-gradient(135deg, var(--brand-deeper) 0%, #0a3d1a 50%, var(--brand-dark) 100%);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(34, 197, 94, .15) 0%, transparent 65%),
    radial-gradient(ellipse 40% 60% at 10% 20%, rgba(22, 163, 74, .1) 0%, transparent 60%);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-section h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 14px;
}

.cta-section p {
  font-size: 16px;
  color: rgba(255, 255, 255, .72);
  max-width: 520px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.cta-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── FOOTER ── */
footer {
  background: #060f14;
  color: #94a3b8;
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand-name {
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: -.02em;
}

.footer-about {
  font-size: 13.5px;
  line-height: 1.75;
  margin-bottom: 20px;
  color: #64748b;
}

.footer-contact-line {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: 13px;
  color: #64748b;
  margin-bottom: 9px;
}

.footer-contact-line svg {
  flex-shrink: 0;
  margin-top: 2px;
  stroke: var(--brand);
}

.footer-col-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #fff;
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-links a {
  font-size: 13.5px;
  color: #64748b;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color .18s;
}

.footer-links a:hover {
  color: #fff;
  text-decoration: none;
}

.footer-links a::before {
  content: '›';
  color: var(--brand);
  font-size: 15px;
  line-height: 1;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .06);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 12.5px;
  color: #475569;
}

.footer-bottom a {
  color: #64748b;
  font-size: 12.5px;
}

.footer-bottom a:hover {
  color: #fff;
}

/* ── SERVICE OVERVIEW CARDS ── */
.svc-overview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.svc-ov-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-xs);
  transition: all .22s;
  text-decoration: none !important;
}

.svc-ov-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand-pale);
}

.svc-ov-icon {
  width: 52px;
  height: 52px;
  border-radius: 13px;
  background: var(--brand-tint);
  border: 1px solid var(--brand-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.svc-ov-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--brand);
  fill: none;
}

.svc-ov-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.svc-ov-card p {
  font-size: 13.5px;
  color: var(--text-3);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 18px;
}

.svc-ov-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--brand);
  display: flex;
  align-items: center;
  gap: 5px;
}

.svc-ov-link svg {
  width: 14px;
  height: 14px;
  stroke: var(--brand);
  transition: transform .18s;
}

.svc-ov-card:hover .svc-ov-link svg {
  transform: translateX(4px);
}

/* ── PAGE HEADER ── */
.page-banner {
  background: var(--brand-deeper);
  position: relative;
  overflow: hidden;
  padding: 60px 0 50px;
}

.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 80% 50%, rgba(22, 163, 74, .2) 0%, transparent 70%);
}

.page-banner .container {
  position: relative;
  z-index: 1;
}

.page-banner h1 {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 10px;
}

.page-banner p {
  font-size: 15px;
  color: rgba(255, 255, 255, .68);
  max-width: 560px;
}

.breadcrumb {
  background: var(--surface-2);
  border-bottom: 1px solid var(--border);
  padding: 11px 0;
  font-size: 13px;
}

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

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

/* ── UTILITY ── */
.bg-alt {
  background: var(--surface-2);
}

.bg-white {
  background: var(--surface);
}

.mt-4 {
  margin-top: 16px;
}

.mt-6 {
  margin-top: 24px;
}

.mt-8 {
  margin-top: 32px;
}

.mt-12 {
  margin-top: 48px;
}

.notice-bar {
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: var(--r);
  padding: 14px 18px;
  font-size: 13px;
  color: #92400e;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.notice-bar svg {
  flex-shrink: 0;
  stroke: #f59e0b;
  margin-top: 1px;
}

.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 48px 0;
}

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

  .hero-grid {
    grid-template-columns: 1fr 380px;
    gap: 40px;
  }

  .feat-grid,
  .tech-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .free-box-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 900px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    height: auto;
    position: absolute;
    top: 69px;
    left: 0;
    right: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    padding: 8px 0;
    z-index: 998;
  }

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

  .nav-links>li {
    height: auto;
  }

  .nav-links>li>a,
  .nav-links>li>span {
    height: auto;
    padding: 12px 24px;
    border-bottom: none;
  }

  .nav-dropdown {
    position: static;
    box-shadow: none;
    border: none;
    border-radius: 0;
    background: var(--surface-2);
  }

  .nav-actions .btn {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hero-title {
    font-size: 2.2rem;
  }

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

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

  .trust-grid {
    flex-wrap: wrap;
  }

  .trust-item {
    flex: 1 1 45%;
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 16px 16px;
  }

  .feat-grid,
  .tech-grid,
  .svc-overview-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  section {
    padding: 60px 0;
  }

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

  .feat-grid,
  .tech-grid,
  .svc-overview-grid,
  .free-box-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    gap: 24px;
  }

  .hero-stat:not(:last-child) {
    border-right: none;
    margin-right: 0;
    padding-right: 0;
  }

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

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

  .cta-btns {
    flex-direction: column;
    align-items: center;
  }

  .free-box {
    padding: 24px 20px;
  }

  .page-banner h1 {
    font-size: 1.6rem;
  }
}