/* ============================================
   HOSTINGDON.COM - PREMIUM DESIGN SYSTEM
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,300..800&family=Manrope:wght@300;400;500;600;700;800&family=JetBrains+Mono:wght@400;500;600&family=Instrument+Serif:ital@0;1&display=swap');

:root {
  /* Color Palette - Premium Botanical Tech */
  --cream: #F5F2EA;
  --cream-soft: #FAF8F2;
  --white: #FFFFFF;
  --forest: #0D3B2C;
  --forest-dark: #051F15;
  --emerald: #1A6E4E;
  --emerald-bright: #2A9D6F;
  --lime: #84F582;
  --lime-bright: #A8FF95;
  --mint: #C8F7DC;
  --mint-soft: #E8FAF0;
  --ink: #0A1F18;
  --ink-soft: #1A2F26;
  --body: #4A5D54;
  --muted: #7A8B82;
  --border: #E5E2DA;
  --border-soft: #EFEDE5;
  --warning: #F59E0B;
  --error: #DC2626;

  /* Typography */
  --font-display: 'Bricolage Grotesque', sans-serif;
  --font-body: 'Manrope', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --font-serif: 'Instrument Serif', serif;

  /* Spacing */
  --container: 1280px;
  --container-narrow: 1080px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(13, 59, 44, 0.04), 0 2px 8px rgba(13, 59, 44, 0.04);
  --shadow-md: 0 4px 12px rgba(13, 59, 44, 0.08), 0 8px 24px rgba(13, 59, 44, 0.06);
  --shadow-lg: 0 12px 32px rgba(13, 59, 44, 0.10), 0 24px 48px rgba(13, 59, 44, 0.08);
  --shadow-glow: 0 0 0 4px rgba(132, 245, 130, 0.15);
  --shadow-green: 0 12px 28px rgba(26, 110, 78, 0.25);

  /* Radius */
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-2xl: 36px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  font-size: 16px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Subtle grain texture */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' /%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
  opacity: 0.03;
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: multiply;
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* Typography Scale */
h1, h2, h3, h4, h5 { font-family: var(--font-display); font-weight: 600; letter-spacing: -0.02em; line-height: 1.05; color: var(--ink); }
h1 { font-size: clamp(2.5rem, 5.5vw, 4.75rem); font-weight: 600; letter-spacing: -0.035em; }
h2 { font-size: clamp(2rem, 4vw, 3.25rem); letter-spacing: -0.03em; }
h3 { font-size: clamp(1.5rem, 2.5vw, 2rem); }
h4 { font-size: 1.25rem; }
.serif-accent { font-family: var(--font-serif); font-style: italic; font-weight: 400; letter-spacing: -0.01em; color: var(--emerald); }

p { color: var(--body); font-size: 1.0625rem; line-height: 1.65; }
.lead { font-size: 1.25rem; line-height: 1.55; color: var(--ink-soft); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--emerald);
  padding: 0.5rem 0.875rem;
  background: var(--mint-soft);
  border: 1px solid var(--mint);
  border-radius: 100px;
}
.eyebrow::before {
  content: ''; width: 6px; height: 6px; background: var(--lime);
  border-radius: 50%; box-shadow: 0 0 0 3px rgba(132,245,130,0.3);
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }

/* Container */
.container { max-width: var(--container); margin: 0 auto; padding: 0 1.5rem; position: relative; z-index: 2; }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 1.5rem; position: relative; z-index: 2; }

/* ============================================
   ANNOUNCEMENT BAR
   ============================================ */
.announcement {
  background: var(--forest-dark);
  color: var(--cream);
  padding: 0.625rem 1rem;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 500;
  position: relative;
  z-index: 50;
}
.announcement strong { color: var(--lime); font-family: var(--font-mono); font-size: 0.8rem; padding: 0.15rem 0.5rem; background: rgba(132,245,130,0.12); border-radius: 4px; margin: 0 0.25rem; }
.announcement a { color: var(--lime-bright); text-decoration: underline; text-underline-offset: 3px; margin-left: 0.5rem; }

/* ============================================
   HEADER
   ============================================ */
.header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(245, 242, 234, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-soft);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 0;
}
.logo {
  display: flex; align-items: center; gap: 0.625rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.375rem;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.logo-mark {
  width: 32px; height: 32px;
  background: var(--forest);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  box-shadow: var(--shadow-md);
}
.logo-mark::after {
  content: ''; position: absolute; inset: 3px;
  border: 1.5px solid var(--lime);
  border-radius: 5px;
  border-top-color: transparent;
  border-right-color: transparent;
}
.logo-mark svg { color: var(--lime); width: 18px; height: 18px; position: relative; z-index: 2; }
.logo-dot { color: var(--lime); margin: 0 -2px; }

.nav { display: flex; align-items: center; gap: 0.25rem; }
.nav-item { position: relative; }
.nav-link {
  padding: 0.625rem 1rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink-soft);
  border-radius: var(--r-sm);
  display: flex; align-items: center; gap: 0.35rem;
  transition: all 0.2s;
}
.nav-link:hover { color: var(--forest); background: var(--mint-soft); }
.nav-link svg { width: 14px; height: 14px; transition: transform 0.2s; }
.nav-item:hover .nav-link svg { transform: rotate(180deg); }

.dropdown {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(8px);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 0.75rem;
  min-width: 320px;
  box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden;
  transition: all 0.25s;
}
.nav-item:hover .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown a {
  display: flex; gap: 0.875rem; padding: 0.75rem;
  border-radius: var(--r-md);
  transition: background 0.15s;
}
.dropdown a:hover { background: var(--mint-soft); }
.dropdown-icon {
  width: 36px; height: 36px;
  background: var(--forest);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.dropdown-icon svg { width: 18px; height: 18px; color: var(--lime); }
.dropdown-title { font-weight: 600; font-size: 0.95rem; color: var(--ink); margin-bottom: 0.15rem; }
.dropdown-desc { font-size: 0.825rem; color: var(--muted); line-height: 1.4; }

.header-actions { display: flex; align-items: center; gap: 0.5rem; }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--r-sm);
  transition: all 0.2s ease;
  white-space: nowrap;
  position: relative;
  font-family: var(--font-body);
}
.btn-ghost { color: var(--ink-soft); }
.btn-ghost:hover { background: var(--mint-soft); color: var(--forest); }
.btn-outline { background: var(--white); color: var(--ink); border: 1px solid var(--border); }
.btn-outline:hover { border-color: var(--forest); transform: translateY(-1px); }
.btn-primary {
  background: var(--forest); color: var(--cream);
  box-shadow: 0 1px 0 rgba(255,255,255,0.1) inset, 0 4px 12px rgba(13,59,44,0.2);
}
.btn-primary:hover { background: var(--forest-dark); transform: translateY(-1px); box-shadow: 0 1px 0 rgba(255,255,255,0.1) inset, 0 8px 20px rgba(13,59,44,0.3); }
.btn-lime {
  background: var(--lime); color: var(--forest-dark);
  box-shadow: 0 4px 12px rgba(132,245,130,0.4);
}
.btn-lime:hover { background: var(--lime-bright); transform: translateY(-1px); box-shadow: 0 8px 20px rgba(132,245,130,0.5); }
.btn-lg { padding: 0.95rem 1.6rem; font-size: 1rem; }
.btn svg { width: 16px; height: 16px; }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  padding: 5rem 0 6rem;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(132,245,130,0.18) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 100%, rgba(26,110,78,0.12) 0%, transparent 60%);
  z-index: 0;
}
.hero-grid {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(13,59,44,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13,59,44,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
}
.hero-inner { display: grid; grid-template-columns: 1.15fr 1fr; gap: 4rem; align-items: center; position: relative; z-index: 2; }
.hero-content > * + * { margin-top: 1.5rem; }
.hero h1 { font-size: clamp(2.75rem, 5.5vw, 4.75rem); }
.hero h1 .highlight { position: relative; display: inline-block; color: var(--emerald); }
.hero h1 .highlight::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 4px; height: 12px;
  background: var(--lime); opacity: 0.4; z-index: -1;
  transform: skewX(-12deg);
}
.hero-stats {
  display: flex; gap: 2.5rem;
  padding: 1.5rem 0;
  border-top: 1px dashed var(--border);
  border-bottom: 1px dashed var(--border);
  margin-top: 2rem;
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 600;
  color: var(--forest);
  letter-spacing: -0.03em;
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.8rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.5rem;
  font-weight: 500;
}

/* Hero visual - server card */
.hero-visual { position: relative; perspective: 1000px; }
.server-card {
  background: var(--forest-dark);
  border-radius: var(--r-xl);
  padding: 1.5rem;
  box-shadow: var(--shadow-lg);
  position: relative;
  transform: rotate(-2deg);
  border: 1px solid rgba(132,245,130,0.1);
}
.server-card-header {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(132,245,130,0.15);
  margin-bottom: 1rem;
}
.server-dots { display: flex; gap: 0.4rem; }
.server-dots span { width: 10px; height: 10px; border-radius: 50%; background: rgba(132,245,130,0.2); }
.server-dots span:first-child { background: #ff5f57; }
.server-dots span:nth-child(2) { background: #ffbd2e; }
.server-dots span:nth-child(3) { background: var(--lime); }
.server-title {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: rgba(245,242,234,0.6);
}
.server-line {
  font-family: var(--font-mono);
  font-size: 0.825rem;
  color: var(--cream);
  margin: 0.5rem 0;
  display: flex; gap: 0.5rem;
}
.server-line .prompt { color: var(--lime); }
.server-line .cmd { color: var(--cream); }
.server-line .out { color: rgba(245,242,234,0.5); }
.server-line .ok { color: var(--lime); }
.cursor { display: inline-block; width: 8px; height: 14px; background: var(--lime); animation: blink 1s infinite; vertical-align: middle; }
@keyframes blink { 50% { opacity: 0; } }

.metric-card {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 0.75rem;
}
.metric-card-1 { top: -1rem; right: -1.5rem; transform: rotate(3deg); }
.metric-card-2 { bottom: -1.5rem; left: -1rem; transform: rotate(-3deg); }
.metric-icon {
  width: 38px; height: 38px;
  background: var(--mint-soft);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.metric-icon svg { width: 18px; height: 18px; color: var(--emerald); }
.metric-num { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--ink); line-height: 1; }
.metric-label { font-size: 0.75rem; color: var(--muted); margin-top: 0.15rem; }

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
  padding: 3rem 0;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  background: var(--cream-soft);
}
.trust-label {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted);
  margin-bottom: 2rem;
}
.trust-logos {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 2rem;
  opacity: 0.65;
}
.trust-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--ink-soft);
  letter-spacing: -0.02em;
  display: flex; align-items: center; gap: 0.5rem;
}

/* ============================================
   SECTIONS
   ============================================ */
section { padding: 5rem 0; position: relative; z-index: 2; }
.section-header { text-align: center; max-width: 720px; margin: 0 auto 3.5rem; }
.section-header h2 { margin-top: 1rem; margin-bottom: 1rem; }
.section-header.left { text-align: left; margin-left: 0; }

/* Hosting Types Cards */
.hosting-types { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.hosting-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2rem;
  position: relative;
  transition: all 0.3s ease;
  overflow: hidden;
}
.hosting-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--emerald), var(--lime));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s ease;
}
.hosting-card:hover { transform: translateY(-6px); border-color: var(--mint); box-shadow: var(--shadow-lg); }
.hosting-card:hover::before { transform: scaleX(1); }
.hosting-card-icon {
  width: 56px; height: 56px;
  background: var(--forest);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
  position: relative;
}
.hosting-card-icon::after {
  content: ''; position: absolute; inset: -4px;
  border-radius: calc(var(--r-md) + 4px);
  background: var(--mint);
  opacity: 0.4; z-index: -1;
}
.hosting-card-icon svg { color: var(--lime); width: 26px; height: 26px; }
.hosting-card h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.hosting-card-price { font-family: var(--font-mono); font-size: 0.9rem; color: var(--emerald); margin-bottom: 1rem; }
.hosting-card-price strong { font-family: var(--font-display); font-size: 1.5rem; color: var(--forest); }
.hosting-card ul { list-style: none; margin: 1.25rem 0 1.5rem; }
.hosting-card ul li {
  padding: 0.4rem 0; font-size: 0.95rem;
  display: flex; align-items: center; gap: 0.5rem;
  color: var(--ink-soft);
}
.hosting-card ul li::before {
  content: ''; width: 16px; height: 16px;
  background: var(--mint); border-radius: 50%; flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M3 8l3.5 3.5L13 5' stroke='%231A6E4E' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.hosting-card-link {
  font-weight: 600;
  color: var(--forest);
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.95rem;
}
.hosting-card-link::after { content: '→'; transition: transform 0.2s; }
.hosting-card-link:hover::after { transform: translateX(4px); }

/* ============================================
   PERFORMANCE STATS
   ============================================ */
.stats-section {
  background: var(--forest-dark);
  color: var(--cream);
  border-radius: var(--r-2xl);
  padding: 4rem 3rem;
  margin: 2rem auto;
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 0% 0%, rgba(132,245,130,0.15) 0%, transparent 50%),
    radial-gradient(circle at 100% 100%, rgba(26,110,78,0.3) 0%, transparent 50%);
}
.stats-section h2 { color: var(--cream); }
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem;
  margin-top: 3rem; position: relative; z-index: 2;
}
.stat-item {
  border-left: 2px solid rgba(132,245,130,0.3);
  padding-left: 1.5rem;
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 600;
  color: var(--lime);
  letter-spacing: -0.03em;
  line-height: 1;
}
.stat-num small { font-size: 1.5rem; color: rgba(132,245,130,0.7); }
.stat-label {
  margin-top: 0.75rem;
  color: rgba(245,242,234,0.7);
  font-size: 0.95rem;
}

/* ============================================
   FEATURES GRID
   ============================================ */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.feature {
  padding: 2rem 1.75rem;
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid var(--border-soft);
  transition: all 0.25s ease;
}
.feature:hover { border-color: var(--mint); box-shadow: var(--shadow-md); }
.feature-icon {
  width: 44px; height: 44px;
  background: var(--mint-soft);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.feature-icon svg { color: var(--emerald); width: 22px; height: 22px; }
.feature h4 { font-size: 1.125rem; margin-bottom: 0.5rem; font-weight: 600; }
.feature p { font-size: 0.9375rem; line-height: 1.55; }

/* ============================================
   PRICING TABLE
   ============================================ */
.pricing-toggle {
  display: inline-flex;
  background: var(--white);
  padding: 0.3rem;
  border-radius: 100px;
  border: 1px solid var(--border);
  margin: 0 auto 2.5rem;
  box-shadow: var(--shadow-sm);
}
.pricing-toggle button {
  padding: 0.55rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 100px;
  color: var(--muted);
}
.pricing-toggle button.active { background: var(--forest); color: var(--cream); }
.pricing-toggle .save {
  font-family: var(--font-mono); font-size: 0.7rem;
  background: var(--lime); color: var(--forest-dark);
  padding: 0.15rem 0.4rem; border-radius: 4px; margin-left: 0.4rem;
}

.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; align-items: stretch; }
.price-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2rem 1.75rem;
  position: relative;
  display: flex; flex-direction: column;
  transition: all 0.3s ease;
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.price-card.featured {
  background: var(--forest-dark);
  color: var(--cream);
  transform: scale(1.03);
  border-color: var(--forest-dark);
  box-shadow: var(--shadow-green);
}
.price-card.featured h3, .price-card.featured .price-num { color: var(--cream); }
.price-card.featured ul li { color: rgba(245,242,234,0.85); }
.price-card.featured ul li::before {
  background: rgba(132,245,130,0.2);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M3 8l3.5 3.5L13 5' stroke='%2384F582' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.price-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--lime); color: var(--forest-dark);
  padding: 0.3rem 0.875rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.price-card h3 { font-size: 1.375rem; margin-bottom: 0.25rem; }
.price-card .price-tag { font-size: 0.875rem; color: var(--muted); margin-bottom: 1rem; }
.price-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 600;
  color: var(--forest);
  letter-spacing: -0.03em;
  line-height: 1;
}
.price-num small { font-size: 1.25rem; font-weight: 500; color: var(--muted); }
.price-period { font-size: 0.875rem; color: var(--muted); margin: 0.5rem 0 1.5rem; }
.price-card ul { list-style: none; margin-bottom: 2rem; flex: 1; }
.price-card ul li {
  padding: 0.5rem 0;
  font-size: 0.925rem;
  display: flex; align-items: flex-start; gap: 0.625rem;
  color: var(--ink-soft);
}
.price-card ul li::before {
  content: ''; width: 16px; height: 16px;
  background: var(--mint); border-radius: 50%; flex-shrink: 0; margin-top: 3px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M3 8l3.5 3.5L13 5' stroke='%231A6E4E' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.price-card .btn { width: 100%; justify-content: center; }

/* ============================================
   GLOBAL DATACENTERS / WORLD MAP
   ============================================ */
.datacenters {
  background: var(--cream-soft);
  border-radius: var(--r-2xl);
  padding: 4rem 3rem;
}
.world-map {
  position: relative;
  aspect-ratio: 16/8;
  background: radial-gradient(circle at center, var(--mint-soft), transparent);
  border-radius: var(--r-lg);
  margin-top: 3rem;
}
.dc-pin {
  position: absolute;
  width: 14px; height: 14px;
  background: var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(132,245,130,0.3), 0 0 0 8px rgba(132,245,130,0.15);
  cursor: pointer;
  animation: pulse-pin 2.5s infinite;
}
@keyframes pulse-pin {
  0%, 100% { box-shadow: 0 0 0 4px rgba(132,245,130,0.3), 0 0 0 8px rgba(132,245,130,0.15); }
  50% { box-shadow: 0 0 0 6px rgba(132,245,130,0.4), 0 0 0 14px rgba(132,245,130,0.1); }
}
.dc-pin span {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  background: var(--forest-dark); color: var(--cream);
  font-family: var(--font-mono); font-size: 0.7rem;
  padding: 0.25rem 0.5rem; border-radius: 4px; white-space: nowrap;
  margin-top: 0.5rem;
  opacity: 0; transition: opacity 0.2s;
}
.dc-pin:hover span { opacity: 1; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.testimonial {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2rem;
  position: relative;
}
.testimonial::before {
  content: '"'; font-family: var(--font-serif); font-style: italic;
  font-size: 5rem; color: var(--mint);
  position: absolute; top: 0.5rem; right: 1.25rem;
  line-height: 1;
}
.testimonial-stars { color: var(--lime); margin-bottom: 1rem; font-size: 1rem; letter-spacing: 0.1em; }
.testimonial-text { font-size: 1rem; color: var(--ink-soft); line-height: 1.6; margin-bottom: 1.5rem; }
.testimonial-author { display: flex; align-items: center; gap: 0.875rem; }
.testimonial-avatar {
  width: 44px; height: 44px;
  background: var(--forest);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--lime); font-weight: 700;
  font-family: var(--font-display);
}
.testimonial-name { font-weight: 600; font-size: 0.95rem; }
.testimonial-role { font-size: 0.825rem; color: var(--muted); }

/* ============================================
   FAQ
   ============================================ */
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item:hover { border-color: var(--mint); }
.faq-item summary {
  padding: 1.25rem 1.5rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex; align-items: center; justify-content: space-between;
  color: var(--ink);
  font-size: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; font-family: var(--font-display);
  font-size: 1.5rem; color: var(--emerald);
  transition: transform 0.2s;
  font-weight: 300;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item-content {
  padding: 0 1.5rem 1.25rem;
  color: var(--body);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  background: linear-gradient(135deg, var(--forest) 0%, var(--forest-dark) 100%);
  color: var(--cream);
  border-radius: var(--r-2xl);
  padding: 5rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(132,245,130,0.2) 0%, transparent 40%),
    radial-gradient(circle at 80% 50%, rgba(26,110,78,0.4) 0%, transparent 50%);
}
.cta-section > * { position: relative; z-index: 2; }
.cta-section h2 { color: var(--cream); margin-bottom: 1rem; }
.cta-section p { color: rgba(245,242,234,0.8); font-size: 1.125rem; max-width: 580px; margin: 0 auto 2.5rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--forest-dark);
  color: rgba(245,242,234,0.7);
  padding: 5rem 0 0;
  margin-top: 5rem;
  position: relative;
  z-index: 2;
}
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr; gap: 2rem; padding-bottom: 4rem; }
.footer-brand .logo { color: var(--cream); margin-bottom: 1rem; }
.footer-brand p { color: rgba(245,242,234,0.5); font-size: 0.95rem; max-width: 300px; }
.footer-newsletter {
  display: flex; gap: 0.5rem; margin-top: 1.5rem;
  background: rgba(132,245,130,0.08);
  padding: 0.4rem;
  border-radius: 100px;
  border: 1px solid rgba(132,245,130,0.15);
}
.footer-newsletter input {
  flex: 1; background: none; border: none;
  padding: 0.5rem 0.875rem;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
}
.footer-newsletter input::placeholder { color: rgba(245,242,234,0.4); }
.footer-newsletter button {
  background: var(--lime); color: var(--forest-dark);
  padding: 0.5rem 1rem; border-radius: 100px;
  font-weight: 600; font-size: 0.875rem;
}
.footer-col h5 {
  color: var(--cream);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1.25rem;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.625rem; }
.footer-col a {
  font-size: 0.925rem;
  color: rgba(245,242,234,0.6);
  transition: color 0.2s;
  display: inline-flex; align-items: center; gap: 0.4rem;
}
.footer-col a:hover { color: var(--lime); }
.footer-col .badge-new {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  background: rgba(132,245,130,0.15); color: var(--lime);
  padding: 0.1rem 0.4rem; border-radius: 4px;
}
.footer-bottom {
  padding: 2rem 0;
  border-top: 1px solid rgba(132,245,130,0.1);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.875rem;
}
.footer-bottom .social { display: flex; gap: 0.5rem; }
.footer-bottom .social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(132,245,130,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(245,242,234,0.6);
  transition: all 0.2s;
}
.footer-bottom .social a:hover { background: var(--lime); color: var(--forest-dark); }

/* ============================================
   BREADCRUMBS
   ============================================ */
.breadcrumbs {
  padding: 1.5rem 0;
  font-size: 0.875rem;
  color: var(--muted);
  display: flex; align-items: center; gap: 0.5rem;
}
.breadcrumbs a { color: var(--emerald); }
.breadcrumbs a:hover { text-decoration: underline; }
.breadcrumbs .sep { color: var(--border); }

/* ============================================
   PAGE HERO (smaller for inner pages)
   ============================================ */
.page-hero {
  padding: 3rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.page-hero-inner { display: grid; grid-template-columns: 1.2fr 1fr; gap: 3rem; align-items: center; }
.page-hero h1 { font-size: clamp(2.25rem, 4.5vw, 3.75rem); }
.page-hero-visual {
  background: var(--forest-dark);
  border-radius: var(--r-xl);
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
}

/* ============================================
   COMPARISON TABLE
   ============================================ */
.compare-table {
  background: var(--white);
  border-radius: var(--r-xl);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.compare-table table { width: 100%; border-collapse: collapse; }
.compare-table th, .compare-table td {
  padding: 1.125rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--border-soft);
}
.compare-table th {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  background: var(--cream-soft);
  color: var(--ink);
}
.compare-table th.highlighted { background: var(--forest-dark); color: var(--cream); }
.compare-table td { font-size: 0.95rem; color: var(--ink-soft); }
.compare-table .check { color: var(--emerald); font-weight: 700; }
.compare-table .no { color: var(--muted); }
.compare-table tr:last-child td { border-bottom: none; }

/* ============================================
   CONTACT FORM
   ============================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 4rem; }
.contact-info-card {
  background: var(--forest-dark); color: var(--cream);
  border-radius: var(--r-xl);
  padding: 2.5rem;
}
.contact-info-card h3 { color: var(--cream); margin-bottom: 0.75rem; }
.contact-info-card p { color: rgba(245,242,234,0.7); margin-bottom: 2rem; }
.contact-info-list { list-style: none; }
.contact-info-list li {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1rem 0;
  border-top: 1px solid rgba(132,245,130,0.1);
}
.contact-info-list svg { color: var(--lime); width: 22px; height: 22px; flex-shrink: 0; margin-top: 2px; }
.contact-info-list strong { display: block; color: var(--cream); margin-bottom: 0.2rem; font-weight: 600; }
.contact-info-list span { color: rgba(245,242,234,0.6); font-size: 0.9rem; }

.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block; font-weight: 600; font-size: 0.875rem;
  color: var(--ink); margin-bottom: 0.5rem;
}
.form-control {
  width: 100%;
  padding: 0.875rem 1rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-control:focus {
  outline: none;
  border-color: var(--emerald);
  box-shadow: var(--shadow-glow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
textarea.form-control { min-height: 140px; resize: vertical; }

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-mission {
  background: linear-gradient(135deg, var(--mint-soft) 0%, var(--cream) 100%);
  border-radius: var(--r-2xl);
  padding: 4rem 3rem;
  text-align: center;
}
.about-mission .serif-accent { font-size: 2rem; }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.team-card {
  text-align: center;
}
.team-photo {
  width: 100%;
  aspect-ratio: 1;
  background: var(--forest);
  border-radius: var(--r-lg);
  margin-bottom: 1rem;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--lime);
  font-weight: 600;
  position: relative;
  overflow: hidden;
}
.team-photo::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(132,245,130,0.2), transparent 60%);
}
.team-name { font-family: var(--font-display); font-weight: 600; font-size: 1.125rem; }
.team-role { font-size: 0.875rem; color: var(--muted); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hosting-types, .features, .testimonials { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
  .footer-top { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .contact-grid, .page-hero-inner { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  section { padding: 3.5rem 0; }
  .hero { padding: 3rem 0 4rem; }
  .nav { display: none; }
  .hero-stats { gap: 1.5rem; flex-wrap: wrap; }
  .hosting-types, .features, .testimonials, .pricing-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .stats-section, .cta-section, .datacenters, .about-mission { padding: 3rem 1.5rem; border-radius: var(--r-xl); }
  .form-row { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .metric-card { display: none; }
  .compare-table { overflow-x: auto; }
  .compare-table table { min-width: 700px; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .header-actions .btn-ghost { display: none; }
}

/* Animations on scroll */
.fade-in { opacity: 0; transform: translateY(20px); animation: fadeIn 0.8s forwards; }
@keyframes fadeIn { to { opacity: 1; transform: translateY(0); } }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* ========== LEGAL / POLICY PAGES ========== */
.legal-layout { display: grid; grid-template-columns: 240px 1fr; gap: 4rem; max-width: 1100px; margin: 0 auto; align-items: start; }
.legal-toc { position: sticky; top: 100px; padding: 1.5rem; background: var(--cream); border: 1px solid var(--border); border-radius: var(--radius-lg); }
.legal-toc h5 { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); margin-bottom: 0.85rem; font-weight: 600; }
.legal-toc ul { list-style: none; padding: 0; margin: 0; }
.legal-toc li { margin-bottom: 0.4rem; }
.legal-toc a { display: block; color: var(--text); text-decoration: none; font-size: 0.9rem; padding: 0.35rem 0.6rem; border-radius: 6px; transition: all 0.2s ease; line-height: 1.4; }
.legal-toc a:hover { background: var(--cream-soft); color: var(--green-deep); }
.legal-article { max-width: 760px; }
.legal-article h2 { font-size: 1.65rem; font-weight: 600; margin-top: 3rem; margin-bottom: 1rem; color: var(--green-deep); scroll-margin-top: 100px; }
.legal-article h2:first-child { margin-top: 0; }
.legal-article h3 { font-size: 1.15rem; font-weight: 600; margin-top: 2rem; margin-bottom: 0.75rem; color: var(--text); }
.legal-article p { color: var(--text); line-height: 1.75; margin-bottom: 1rem; font-size: 1rem; }
.legal-article ul, .legal-article ol { margin: 0 0 1.25rem 1.25rem; padding-left: 0.5rem; }
.legal-article li { color: var(--text); line-height: 1.7; margin-bottom: 0.5rem; font-size: 1rem; }
.legal-article a { color: var(--green-deep); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.legal-article a:hover { color: var(--green-bright); }
.legal-article strong { color: var(--text); font-weight: 600; }
.legal-article blockquote { border-left: 3px solid var(--green-bright); padding: 0.5rem 0 0.5rem 1.25rem; margin: 1.5rem 0; color: var(--muted); font-style: italic; background: var(--cream-soft); border-radius: 0 8px 8px 0; }
.legal-article table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; font-size: 0.9rem; border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
.legal-article table th { background: var(--cream-soft); text-align: left; padding: 0.85rem 1rem; font-weight: 600; color: var(--green-deep); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.05em; border-bottom: 1px solid var(--border); }
.legal-article table td { padding: 0.85rem 1rem; border-bottom: 1px solid var(--border); color: var(--text); vertical-align: top; }
.legal-article table tr:last-child td { border-bottom: none; }
.legal-article code { background: var(--cream-soft); padding: 0.15rem 0.4rem; border-radius: 4px; font-family: var(--font-mono); font-size: 0.88em; color: var(--green-deep); }
.legal-meta { display: inline-flex; gap: 1rem; margin-top: 1.5rem; flex-wrap: wrap; font-family: var(--font-mono); font-size: 0.82rem; color: var(--muted); }
.legal-meta span { padding: 0.4rem 0.85rem; background: var(--cream); border: 1px solid var(--border); border-radius: 999px; }
.policy-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1rem; margin: 2rem 0; }
.policy-link-card { display: block; padding: 1.25rem; background: var(--cream); border: 1px solid var(--border); border-radius: 12px; text-decoration: none; color: var(--text); transition: all 0.25s ease; }
.policy-link-card:hover { border-color: var(--green-bright); transform: translateY(-2px); text-decoration: none; }
.policy-link-card h4 { color: var(--green-deep); margin-bottom: 0.4rem; font-size: 1rem; }
.policy-link-card p { color: var(--muted); font-size: 0.85rem; margin: 0; }

@media (max-width: 980px) {
  .legal-layout { grid-template-columns: 1fr; gap: 2rem; }
  .legal-toc { position: relative; top: 0; }
}
