:root {
  --navy:       #001F5F;
  --navy-mid:   #001850;
  --navy-light: #002B82;
  --green:      #FFC500;
  --green-dark: #E6B000;
  --green-pale: #FFF9E0;
  --white:      #FFFFFF;
  --off-white:  #FAF9F5;
  --border:     #E8E6DF;
  --text:       #202020;
  --text-mid:   #4A4A4A;
  --text-light: #888888;
  --radius:     10px;
  --shadow:     0 4px 24px rgba(0,31,95,0.10);
  --shadow-lg:  0 12px 48px rgba(0,31,95,0.16);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Ubuntu', sans-serif; font-size: 16px; color: var(--text); background: var(--white); line-height: 1.6; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
h1,h2,h3,h4,h5 { font-family: 'Nunito', sans-serif; line-height: 1.15; color: var(--navy); }

/* UTILITY */
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-sm { padding: 56px 0; }
.text-center { text-align: center; }
.badge { display: inline-block; background: var(--green-pale); color: var(--green-dark); font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; padding: 5px 12px; border-radius: 20px; margin-bottom: 16px; }
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 28px; border-radius: var(--radius); font-family: 'Ubuntu', sans-serif; font-size: 15px; font-weight: 600; cursor: pointer; transition: all 0.2s ease; border: none; text-decoration: none; }
.btn-primary { background: var(--green); color: var(--navy); }
.btn-primary:hover { background: var(--green-dark); color: var(--navy); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(255,197,0,0.4); }
.btn-outline { background: transparent; color: var(--navy); border: 2px solid var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-white { background: var(--white); color: var(--navy); }
.btn-white:hover { background: var(--green); color: var(--navy); }
.btn-lg { padding: 16px 36px; font-size: 16px; }

/* ALERT BANNER */
.alert-banner { background: var(--green); color: var(--navy); padding: 11px 0; text-align: center; font-size: 14px; font-weight: 600; }
.alert-banner a { color: var(--navy); text-decoration: underline; }

/* TOPBAR */
.topbar { background: var(--navy); padding: 9px 0; font-size: 13px; color: rgba(255,255,255,0.7); }
.topbar .container { display: flex; justify-content: space-between; align-items: center; }
.topbar a { color: rgba(255,255,255,0.7); transition: color 0.2s; }
.topbar a:hover { color: var(--green); }
.topbar-links { display: flex; gap: 20px; }
.topbar-right { display: flex; gap: 16px; align-items: center; }
.topbar-phone { color: var(--green) !important; font-weight: 600; font-size: 14px; }

/* NAVBAR */
.navbar { background: var(--white); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 12px rgba(0,31,95,0.07); }
.navbar .container { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.navbar-logo { display: flex; align-items: center; gap: 10px; }
.navbar-logo-mark { width: 38px; height: 38px; background: var(--navy); border-radius: 8px; display: flex; align-items: center; justify-content: center; }
.navbar-logo-mark span { font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 18px; color: var(--green); }
.navbar-logo-text { font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 20px; color: var(--navy); }
.navbar-logo-text em { color: var(--green-dark); font-style: normal; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-item { position: relative; }
.nav-link { display: flex; align-items: center; gap: 4px; padding: 8px 14px; font-size: 15px; font-weight: 500; color: var(--text); border-radius: 6px; cursor: pointer; transition: all 0.2s; white-space: nowrap; text-decoration: none; }
.nav-link:hover, .nav-link.active { color: var(--navy); background: var(--off-white); }
.nav-link svg { transition: transform 0.2s; flex-shrink: 0; }
.nav-item:hover .nav-link svg { transform: rotate(180deg); }
.nav-dropdown { position: absolute; top: calc(100% + 8px); left: 0; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-lg); min-width: 240px; padding: 8px; opacity: 0; pointer-events: none; transform: translateY(-8px); transition: all 0.2s ease; z-index: 200; }
.nav-item:hover .nav-dropdown { opacity: 1; pointer-events: all; transform: translateY(0); }
.nav-dropdown a { display: block; padding: 9px 14px; font-size: 14px; font-weight: 500; color: var(--text); border-radius: 6px; transition: all 0.15s; }
.nav-dropdown a:hover { background: var(--off-white); color: var(--navy); }
.dropdown-divider { height: 1px; background: var(--border); margin: 6px 0; }
.nav-cta { display: flex; align-items: center; gap: 10px; }

/* BREADCRUMB */
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: 20px; }
.breadcrumb a { color: rgba(255,255,255,0.5); transition: color 0.15s; }
.breadcrumb a:hover { color: var(--green); }
.breadcrumb-sep { color: rgba(255,255,255,0.25); }

/* PAGE HERO */
.page-hero { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%); padding: 64px 0 56px; }
.page-hero-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(255,197,0,0.15); border: 1px solid rgba(255,197,0,0.3); color: #FFC500; font-size: 12px; font-weight: 600; padding: 5px 12px; border-radius: 20px; margin-bottom: 16px; letter-spacing: 0.06em; text-transform: uppercase; }
.page-hero h1 { color: var(--white); font-size: clamp(28px,3.5vw,44px); font-weight: 800; margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,0.72); font-size: 17px; max-width: 580px; }

/* HERO HOME */
.hero { background: var(--navy); position: relative; overflow: hidden; padding: 100px 0 80px; }
.hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 70% 60% at 65% 50%, rgba(255,197,0,0.12) 0%, transparent 70%), radial-gradient(ellipse 40% 50% at 20% 80%, rgba(0,31,95,0.8) 0%, transparent 60%); }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 1; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,197,0,0.15); border: 1px solid rgba(255,197,0,0.35); color: #FFC500; font-size: 13px; font-weight: 600; padding: 6px 14px; border-radius: 20px; margin-bottom: 24px; letter-spacing: 0.04em; }
.hero-badge-dot { width: 7px; height: 7px; background: #FFC500; border-radius: 50%; animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:0.5; transform:scale(1.3); } }
.hero h1 { font-size: clamp(36px,4.5vw,56px); font-weight: 800; color: var(--white); line-height: 1.1; margin-bottom: 20px; }
.hero h1 em { color: var(--green); font-style: normal; }
.hero-sub { font-size: 18px; color: rgba(255,255,255,0.75); margin-bottom: 36px; line-height: 1.6; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-trust { display: flex; gap: 24px; margin-top: 48px; flex-wrap: wrap; }
.hero-trust-item { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.65); font-size: 13px; }
.hero-trust-item svg { color: var(--green); flex-shrink: 0; }
.hero-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; padding: 32px; backdrop-filter: blur(10px); }
.hero-card-title { font-family: 'Nunito', sans-serif; font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.5); margin-bottom: 20px; }
.plan-preview-row { display: flex; align-items: center; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.plan-preview-row:last-child { border-bottom: none; }
.plan-preview-name { font-weight: 600; color: var(--white); font-size: 15px; }
.plan-preview-desc { font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 2px; }
.plan-preview-price { font-family: 'Nunito', sans-serif; font-weight: 700; color: var(--green); font-size: 18px; }
.plan-preview-price small { font-family: 'Ubuntu', sans-serif; font-size: 12px; color: rgba(255,255,255,0.5); font-weight: 400; }
.plan-preview-row.featured { background: rgba(255,197,0,0.10); border-radius: 8px; padding: 12px; margin: 4px -8px; }

/* TECH STRIP */
.tech-strip { background: var(--off-white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 20px 0; }
.tech-strip-inner { display: flex; gap: 48px; align-items: center; justify-content: center; flex-wrap: wrap; }
.tech-item { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: var(--text-mid); opacity: 0.75; }
.tech-item:hover { opacity: 1; color: var(--navy); }

/* SECTION HEADER */
.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 { font-size: clamp(28px,3.5vw,42px); font-weight: 800; margin-bottom: 14px; }
.section-header p { font-size: 17px; color: var(--text-mid); max-width: 560px; margin: 0 auto; }

/* PLAN CARDS */
.plans-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; align-items: start; }
.plan-card { border: 1.5px solid var(--border); border-radius: 16px; padding: 28px 24px; background: var(--white); transition: all 0.25s ease; position: relative; }
.plan-card:hover { border-color: var(--navy-light); box-shadow: var(--shadow); transform: translateY(-4px); }
.plan-card.featured { border-color: var(--navy); background: var(--navy); color: var(--white); }
.plan-card.featured h3, .plan-card.featured .plan-card-desc, .plan-card.featured .plan-from-label { color: rgba(255,255,255,0.85); }
.plan-card.featured .plan-feature-item { color: rgba(255,255,255,0.8); border-color: rgba(255,255,255,0.1); }
.plan-card.featured .plan-feature-item svg { color: var(--green); }
.plan-popular { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--green); color: var(--navy); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; padding: 4px 14px; border-radius: 20px; white-space: nowrap; }
.plan-icon { width: 44px; height: 44px; border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; font-size: 20px; }
.plan-icon-starter { background: #EDF2FF; }
.plan-icon-business { background: rgba(255,197,0,0.12); }
.plan-icon-performance { background: rgba(245,166,35,0.12); }
.plan-icon-wordpress { background: rgba(255,255,255,0.08); }
.plan-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 6px; }
.plan-card-desc { font-size: 13px; color: var(--text-mid); margin-bottom: 20px; line-height: 1.5; }
.plan-from-label { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-light); margin-bottom: 4px; }
.plan-price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 4px; }
.plan-price-amount { font-family: 'Nunito', sans-serif; font-size: 38px; font-weight: 800; color: var(--navy); }
.plan-card.featured .plan-price-amount { color: var(--white); }
.plan-price-per { font-size: 14px; color: var(--text-mid); }
.plan-price-gst { font-size: 11px; color: var(--text-light); margin-bottom: 20px; }
.plan-card.featured .plan-price-gst { color: rgba(255,255,255,0.5); }
.plan-features { margin: 20px 0; }
.plan-feature-item { display: flex; align-items: flex-start; gap: 8px; font-size: 13px; color: var(--text-mid); padding: 6px 0; border-bottom: 1px solid var(--border); }
.plan-feature-item:last-child { border-bottom: none; }
.plan-feature-item svg { flex-shrink: 0; margin-top: 2px; color: var(--green-dark); }
.plan-cta { width: 100%; text-align: center; display: block; padding: 12px; border-radius: 8px; font-weight: 600; font-size: 15px; transition: all 0.2s; }
.plan-cta-primary { background: var(--green); color: var(--navy); }
.plan-cta-primary:hover { background: var(--green-dark); color: var(--navy); }
.plan-cta-outline { background: transparent; border: 2px solid var(--border); color: var(--text); }
.plan-cta-outline:hover { border-color: var(--navy); color: var(--navy); background: var(--off-white); }
.plan-cta-white { background: var(--white); color: var(--navy); }
.plan-cta-white:hover { background: var(--green); color: var(--navy); }

/* PRICING TIERS */
.pricing-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin: 40px 0; }
.pricing-tier-card { border: 1.5px solid var(--border); border-radius: 14px; padding: 28px; background: var(--white); position: relative; transition: all 0.2s; }
.pricing-tier-card:hover { border-color: var(--navy-light); box-shadow: var(--shadow); }
.pricing-tier-card.highlight { border-color: var(--navy); box-shadow: 0 0 0 4px rgba(0,31,95,0.06); }
.tier-label { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-light); margin-bottom: 6px; }
.tier-storage { font-family: 'Nunito', sans-serif; font-size: 28px; font-weight: 800; color: var(--navy); margin-bottom: 4px; }
.tier-price { font-family: 'Nunito', sans-serif; font-size: 36px; font-weight: 800; color: var(--green-dark); }
.tier-price span { font-family: 'Ubuntu', sans-serif; font-size: 14px; font-weight: 400; color: var(--text-light); }
.tier-gst { font-size: 11px; color: var(--text-light); margin-bottom: 20px; }
.tier-btn { width: 100%; padding: 11px; border-radius: 8px; font-weight: 600; font-size: 14px; transition: all 0.2s; text-align: center; display: block; }
.tier-btn-primary { background: var(--navy); color: var(--white); }
.tier-btn-primary:hover { background: var(--green); color: var(--navy); }
.tier-btn-outline { background: transparent; border: 1.5px solid var(--border); color: var(--text); }
.tier-btn-outline:hover { border-color: var(--navy); background: var(--navy); color: var(--white); }

/* SPECS TABLE */
.specs-grid { display: grid; grid-template-columns: 200px repeat(4,1fr); border: 1px solid var(--border); border-radius: 14px; overflow: hidden; background: var(--white); box-shadow: var(--shadow); }
.specs-header-row, .specs-row { display: contents; }
.specs-cell { padding: 16px 20px; border-bottom: 1px solid var(--border); border-right: 1px solid var(--border); font-size: 14px; display: flex; align-items: center; }
.specs-cell:last-child { border-right: none; }
.specs-row:last-child .specs-cell { border-bottom: none; }
.specs-header-row .specs-cell { background: var(--navy); color: var(--white); font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 14px; }
.specs-header-row .specs-cell:first-child { color: rgba(255,255,255,0.6); font-size: 12px; text-transform: uppercase; letter-spacing: 0.06em; }
.specs-row:nth-child(even) .specs-cell { background: var(--off-white); }
.specs-label { font-weight: 600; color: var(--text-mid); font-size: 13px; }
.specs-value-highlight { font-weight: 700; color: var(--green-dark); }
.specs-wp { background: rgba(0,31,95,0.03) !important; }

/* INCLUSIONS */
.inclusions-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.inclusion-item { display: flex; align-items: flex-start; gap: 12px; background: var(--white); border: 1px solid var(--border); border-radius: 10px; padding: 16px; }
.inclusion-icon { width: 36px; height: 36px; flex-shrink: 0; background: var(--green-pale); border-radius: 8px; display: flex; align-items: center; justify-content: center; }
.inclusion-text strong { font-size: 14px; font-weight: 600; display: block; margin-bottom: 2px; }
.inclusion-text span { font-size: 12px; color: var(--text-mid); }

/* WHY SECTION */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.why-content h2 { font-size: clamp(28px,3vw,40px); font-weight: 800; margin-bottom: 18px; }
.why-content p { color: var(--text-mid); margin-bottom: 16px; line-height: 1.7; }
.why-points { margin: 28px 0; display: flex; flex-direction: column; gap: 14px; }
.why-point { display: flex; gap: 14px; align-items: flex-start; }
.why-point-icon { width: 40px; height: 40px; flex-shrink: 0; background: var(--navy); border-radius: 9px; display: flex; align-items: center; justify-content: center; color: var(--green); font-size: 18px; }
.why-point-text strong { font-size: 15px; font-weight: 600; display: block; margin-bottom: 3px; }
.why-point-text span { font-size: 13px; color: var(--text-mid); }
.why-stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.why-stat { background: var(--navy); border-radius: 14px; padding: 24px; text-align: center; }
.why-stat-num { font-family: 'Nunito', sans-serif; font-size: 36px; font-weight: 800; color: var(--green); display: block; margin-bottom: 4px; }
.why-stat-label { font-size: 13px; color: rgba(255,255,255,0.65); }
.why-stat.highlight { background: var(--green); }
.why-stat.highlight .why-stat-num { color: var(--navy); }
.why-stat.highlight .why-stat-label { color: var(--navy-mid); }

/* REVIEWS */
.reviews-section { background: var(--off-white); }
.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.review-card { background: var(--white); border: 1px solid var(--border); border-radius: 14px; padding: 24px; }
.review-stars { color: #E6A800; font-size: 15px; margin-bottom: 12px; letter-spacing: 2px; }
.review-text { font-size: 14px; color: var(--text-mid); line-height: 1.65; margin-bottom: 16px; font-style: italic; }
.review-author { font-size: 13px; font-weight: 600; color: var(--navy); }
.review-date { font-size: 11px; color: var(--text-light); }

/* FEATURE GRID */
.feature-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.feature-card { background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 24px; }
.feature-card-icon { font-size: 28px; margin-bottom: 14px; }
.feature-card h4 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.feature-card p { font-size: 13px; color: var(--text-mid); line-height: 1.6; }

/* INFO PAGES */
.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.info-content h2 { font-size: 32px; font-weight: 800; margin-bottom: 16px; }
.info-content p { font-size: 15px; color: var(--text-mid); line-height: 1.75; margin-bottom: 16px; }
.info-list { margin: 20px 0; display: flex; flex-direction: column; gap: 10px; }
.info-list-item { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: var(--text-mid); }
.info-list-item::before { content: '✓'; color: var(--green-dark); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.info-aside { background: var(--navy); border-radius: 16px; padding: 32px; color: var(--white); position: sticky; top: 90px; }
.info-aside h3 { color: var(--white); font-size: 20px; margin-bottom: 16px; }
.info-aside p { color: rgba(255,255,255,0.7); font-size: 14px; margin-bottom: 20px; line-height: 1.6; }
.info-aside .btn { width: 100%; justify-content: center; margin-bottom: 12px; }

/* WORDPRESS CARD */
.wp-hero-card { background: var(--navy); border-radius: 20px; overflow: hidden; display: grid; grid-template-columns: 1fr 1fr; }
.wp-hero-content { padding: 48px; }
.wp-hero-content h2 { color: var(--white); font-size: 32px; margin-bottom: 14px; }
.wp-hero-content p { color: rgba(255,255,255,0.72); font-size: 15px; margin-bottom: 24px; line-height: 1.7; }
.wp-hero-specs { background: rgba(255,255,255,0.05); padding: 48px 40px; border-left: 1px solid rgba(255,255,255,0.08); }
.wp-spec-row { display: flex; justify-content: space-between; align-items: center; padding: 11px 0; border-bottom: 1px solid rgba(255,255,255,0.08); font-size: 13px; }
.wp-spec-row:last-child { border-bottom: none; }
.wp-spec-label { color: rgba(255,255,255,0.55); }
.wp-spec-value { font-weight: 700; color: var(--green); font-family: 'Nunito', sans-serif; }

/* DOMAINS */
.domains-search-box { background: var(--white); border-radius: 14px; padding: 36px; box-shadow: var(--shadow-lg); border: 1px solid var(--border); max-width: 700px; margin: 0 auto; }
.search-input-row { display: flex; gap: 10px; }
.search-input { flex: 1; padding: 14px 18px; border: 1.5px solid var(--border); border-radius: 9px; font-family: 'Ubuntu', sans-serif; font-size: 16px; color: var(--text); outline: none; transition: border-color 0.2s; }
.search-input:focus { border-color: var(--navy); }
.tld-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; margin-top: 40px; }
.tld-card { border: 1.5px solid var(--border); border-radius: 12px; padding: 20px 16px; text-align: center; background: var(--white); transition: all 0.2s; }
.tld-card:hover { border-color: var(--navy); box-shadow: var(--shadow); transform: translateY(-2px); }
.tld-name { font-family: 'Nunito', sans-serif; font-size: 22px; font-weight: 800; color: var(--navy); }
.tld-type { font-size: 11px; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 4px; }
.tld-cta { font-size: 12px; font-weight: 600; color: var(--green-dark); margin-top: 8px; }

/* COMING SOON */
.coming-soon-card { background: var(--navy); border-radius: 20px; padding: 64px; text-align: center; color: var(--white); max-width: 600px; margin: 0 auto; }
.coming-soon-card h2 { color: var(--white); font-size: 36px; margin-bottom: 14px; }
.coming-soon-card p { color: rgba(255,255,255,0.7); font-size: 16px; margin-bottom: 28px; }

/* FOOTER */
footer { background: var(--navy); color: rgba(255,255,255,0.65); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-brand p { font-size: 14px; line-height: 1.7; margin: 16px 0; max-width: 280px; }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social a { width: 36px; height: 36px; background: rgba(255,255,255,0.08); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; transition: all 0.2s; color: rgba(255,255,255,0.7); }
.footer-social a:hover { background: var(--green); color: var(--navy); }
.footer-col h4 { font-family: 'Nunito', sans-serif; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--white); margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--green); }
.footer-bottom { padding: 20px 0; display: flex; justify-content: space-between; align-items: center; font-size: 13px; }
.footer-bottom a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--green); }
.footer-bottom-links { display: flex; gap: 20px; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .plans-grid { grid-template-columns: repeat(2,1fr); }
  .pricing-row { grid-template-columns: repeat(2,1fr); }
  .specs-grid { grid-template-columns: 160px repeat(4,1fr); font-size: 12px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-card { display: none; }
  .plans-grid, .pricing-row { grid-template-columns: 1fr; }
  .specs-grid { grid-template-columns: 110px repeat(4,1fr); font-size: 11px; }
  .specs-cell { padding: 10px 8px; }
  .why-grid, .info-grid, .wp-hero-card { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .nav-links, .nav-cta { display: none; }
  .inclusions-grid, .feature-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .tld-grid { grid-template-columns: repeat(2,1fr); }
}