/* ================================================================
   SiteForge 2026 — Premium Redesign
   Glassmorphism · Neumorphism · Grain · Kinetic Typography
   ================================================================ */

/* ── DESIGN TOKENS ── */
:root {
  /* Earth-tone foundation */
  --cream:       #F5F0EB;
  --cream-light: #FAF7F1;
  --stone:       #E8E0D8;
  --stone-dark:  #D4C5A9;
  --terracotta:  #C4704A;
  --terracotta-deep: #A05438;
  --forest:      #2D4A3E;
  --forest-dark: #1C3D2E;
  --sage:        #8A9A7B;
  --gold:        #C9A84C;
  --gold-light:  #D9BF72;
  --warm-brown:  #4A3728;
  --deep-brown:  #2D1F14;
  --matte-black: #1A1A1A;

  /* Semantic aliases */
  --bg:           var(--cream-light);
  --surface:      var(--stone);
  --surface-2:    var(--cream);
  --surface-3:    #E0D6C8;
  --accent:       var(--terracotta);
  --accent-hover: var(--terracotta-deep);
  --accent-dim:   rgba(196, 112, 74, 0.10);
  --accent-glow:  rgba(196, 112, 74, 0.28);

  /* Text */
  --text:         var(--warm-brown);
  --text-dim:     #8A7560;
  --text-bright:  var(--deep-brown);
  --text-on-dark: var(--cream);
  --text-muted:   rgba(74, 55, 40, 0.55);

  /* Borders */
  --border:       rgba(74, 55, 40, 0.10);
  --border-med:   rgba(74, 55, 40, 0.18);
  --border-strong:rgba(74, 55, 40, 0.28);

  /* Glass/Neumorphic */
  --glass-bg:     rgba(245, 240, 235, 0.70);
  --glass-border: rgba(255, 255, 255, 0.45);
  --glass-shadow: 0 8px 32px rgba(45, 31, 20, 0.12), inset 0 1px 0 rgba(255,255,255,0.55);
  --neu-shadow:   6px 6px 14px rgba(45, 31, 20, 0.08), -6px -6px 14px rgba(255, 255, 255, 0.90);
  --neu-shadow-hover: 10px 10px 22px rgba(45, 31, 20, 0.13), -10px -10px 22px rgba(255, 255, 255, 0.95);
  --neu-inset:    inset 4px 4px 10px rgba(45, 31, 20, 0.07), inset -4px -4px 10px rgba(255, 255, 255, 0.88);

  /* Typography */
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body:    'DM Sans', system-ui, -apple-system, sans-serif;

  /* Spacing / Radii */
  --max-w:        1180px;
  --radius:       10px;
  --radius-lg:    18px;
  --radius-xl:    26px;
  --shadow-sm:    0 2px 16px rgba(45, 31, 20, 0.07);
  --shadow:       0 4px 24px rgba(45, 31, 20, 0.10);
  --shadow-lg:    0 12px 52px rgba(45, 31, 20, 0.16);
}

/* ── GRAIN TEXTURE OVERLAY ── */
.grain-overlay {
  position: relative;
}
.grain-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.045'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 180px 180px;
  pointer-events: none;
  z-index: 1;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--surface-2); }
::-webkit-scrollbar-thumb { background: var(--stone-dark); border-radius: 3px; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: var(--font-body); cursor: pointer; }

/* ── SCROLL PROGRESS BAR ── */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--terracotta), var(--gold));
  z-index: 1000;
  transition: width 0.1s linear;
  border-radius: 0 2px 2px 0;
}

/* ── BACK TO TOP ── */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--cream);
  box-shadow: var(--neu-shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.4s ease, transform 0.4s ease, box-shadow 0.2s;
  z-index: 99;
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}
.back-to-top:hover {
  box-shadow: var(--neu-shadow-hover);
  transform: translateY(-2px);
}
.back-to-top:active {
  box-shadow: var(--neu-inset);
  transform: translateY(0);
}
.back-to-top svg { width: 18px; height: 18px; stroke: var(--terracotta); }

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1rem 2.5rem;
  background: rgba(245, 240, 235, 0.60);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: padding 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}
.nav.scrolled {
  padding: 0.65rem 2.5rem;
  background: rgba(245, 240, 235, 0.82);
  box-shadow: 0 4px 24px rgba(45, 31, 20, 0.08);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--deep-brown);
  letter-spacing: -0.02em;
}
.nav-logo span { color: var(--terracotta); }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-link {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-dim);
  transition: color 0.2s;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1.5px;
  background: var(--terracotta);
  border-radius: 2px;
  transition: width 0.25s ease;
}
.nav-link:hover { color: var(--warm-brown); }
.nav-link:hover::after { width: 100%; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.22s ease;
  position: relative;
  overflow: hidden;
}
/* Glassmorphism button surface */
.btn-primary {
  background: linear-gradient(135deg, var(--terracotta) 0%, var(--terracotta-deep) 100%);
  color: #fff;
  box-shadow: 0 4px 18px rgba(196, 112, 74, 0.30);
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.12) 0%, transparent 60%);
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.22s;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(196, 112, 74, 0.38);
  background: linear-gradient(135deg, var(--terracotta-deep) 0%, var(--terracotta) 100%);
}
.btn-primary:hover::before { opacity: 1; }
.btn-primary:active {
  transform: translateY(0px) scale(0.98);
  box-shadow: 0 2px 8px rgba(196, 112, 74, 0.22);
}
.btn-ghost {
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(8px);
  color: var(--warm-brown);
  border: 1px solid var(--border-med);
  box-shadow: var(--neu-shadow);
}
.btn-ghost:hover {
  border-color: var(--terracotta);
  background: rgba(255,255,255,0.85);
  box-shadow: var(--neu-shadow-hover);
  transform: translateY(-1px);
}
.btn-ghost:active { box-shadow: var(--neu-inset); transform: translateY(0); }
.btn-lg { padding: 0.88rem 2.1rem; font-size: 0.95rem; border-radius: 12px; }

/* ── SECTIONS ── */
.section { padding: 7rem 2.5rem; }
.section-alt { background: var(--stone); }
.section-dark {
  background: var(--matte-black);
  color: var(--cream);
}
.section-inner { max-width: var(--max-w); margin: 0 auto; }

/* ── SECTION TYPOGRAPHY ── */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 1.5rem;
}
.section-eyebrow::before {
  content: '';
  display: block;
  width: 28px; height: 2px;
  background: var(--terracotta);
  border-radius: 2px;
}
.section-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 700;
  color: var(--deep-brown);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}
.section-headline em {
  color: var(--terracotta);
  font-style: italic;
}
.section-headline.light { color: var(--cream); }
.section-headline.light em { color: var(--gold); }
.section-sub {
  font-size: 1.05rem;
  color: var(--text-dim);
  max-width: 540px;
  line-height: 1.75;
}
.section-sub.light { color: rgba(245, 240, 235, 0.60); }

/* ── SCROLL REVEAL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-scale {
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger delays */
.stagger-1 { transition-delay: 0.08s; }
.stagger-2 { transition-delay: 0.16s; }
.stagger-3 { transition-delay: 0.24s; }
.stagger-4 { transition-delay: 0.32s; }
.stagger-5 { transition-delay: 0.40s; }
.stagger-6 { transition-delay: 0.48s; }

/* Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-left, .reveal-scale {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .scroll-progress, .back-to-top, .hero-float {
    animation: none \!important;
  }
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 7rem 2.5rem 5rem;
  background: linear-gradient(135deg, var(--cream-light) 0%, var(--cream) 50%, var(--stone) 100%);
  position: relative;
  overflow: hidden;
}
/* Animated ambient gradient */
.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -15%;
  width: 70%;
  height: 90%;
  background: radial-gradient(ellipse at 70% 40%, rgba(196,112,74,0.07) 0%, rgba(45,74,62,0.04) 40%, transparent 70%);
  pointer-events: none;
  animation: ambient-shift 20s ease-in-out infinite alternate;
}
@keyframes ambient-shift {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(-3%, 2%) scale(1.04); }
  100% { transform: translate(2%, -2%) scale(1.02); }
}

.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: var(--accent-dim);
  border: 1px solid rgba(196,112,74,0.22);
  border-radius: 100px;
  padding: 0.42rem 1.1rem;
  font-size: 0.70rem;
  font-weight: 700;
  color: var(--terracotta);
  margin-bottom: 2rem;
  letter-spacing: 0.03em;
  backdrop-filter: blur(8px);
}
.badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--terracotta);
  animation: pulse-dot 1.8s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse-dot { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.3; transform: scale(0.85); } }

/* Hero copy */
.hero-eyebrow {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-style: italic;
  color: var(--sage);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 700;
  color: var(--deep-brown);
  line-height: 1.04;
  letter-spacing: -0.03em;
  margin-bottom: 1.75rem;
  /* Kinetic: skew-in animation */
  animation: kinetic-in 0.75s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  transform: translateY(0) skewY(0deg);
}
@keyframes kinetic-in {
  0%   { opacity: 0; transform: translateY(32px) skewY(-2deg) scale(0.97); }
  60%  { transform: translateY(-4px) skewY(0.5deg) scale(1.01); }
  100% { opacity: 1; transform: translateY(0) skewY(0deg) scale(1); }
}
.hero-headline em { color: var(--terracotta); font-style: italic; }

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-dim);
  line-height: 1.8;
  margin-bottom: 2.75rem;
  max-width: 500px;
  animation: fade-up 0.65s ease 0.2s both;
}
@keyframes fade-up {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fade-up 0.65s ease 0.32s both;
}
.hero-meta {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: 2rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  animation: fade-up 0.65s ease 0.44s both;
}
.meta-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: var(--text-dim);
  font-weight: 500;
}
.meta-item svg { width: 13px; height: 13px; stroke: var(--sage); flex-shrink: 0; }
.meta-sep { width: 1px; height: 14px; background: var(--border-strong); }

/* Browser frame — glassmorphism */
.hero-preview { position: relative; animation: fade-up 0.8s ease 0.15s both; }
.browser-frame {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--glass-shadow), 0 0 0 1px rgba(255,255,255,0.15) inset;
  position: relative;
}
/* Animated gradient border */
.browser-frame::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(196,112,74,0.3), transparent 40%, transparent 60%, rgba(45,74,62,0.2));
  z-index: -1;
  animation: border-glow 6s ease-in-out infinite alternate;
}
@keyframes border-glow {
  0%   { opacity: 0.4; }
  50%  { opacity: 0.8; }
  100% { opacity: 0.5; }
}
.browser-bar {
  padding: 0.75rem 1rem;
  background: rgba(232, 224, 216, 0.6);
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--border);
}
.browser-dots { display: flex; gap: 5px; }
.dot { width: 11px; height: 11px; border-radius: 50%; }
.dot-r { background: #d4635a; }
.dot-y { background: #d4b85a; }
.dot-g { background: #6aad74; }
.browser-url {
  flex: 1;
  background: rgba(255,255,255,0.6);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.28rem 0.8rem;
  font-size: 0.62rem;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-left: 0.5rem;
  font-family: var(--font-body);
  backdrop-filter: blur(8px);
}
.browser-content { padding: 1.25rem; }

/* Site preview styles */
.site-topbar {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}
.site-logo {
  display: flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.82rem; font-weight: 700; color: var(--deep-brown);
}
.site-logo-icon {
  width: 26px; height: 26px;
  border-radius: 6px;
  background: var(--forest);
  display: flex; align-items: center; justify-content: center;
}
.site-logo-icon svg { width: 13px; height: 13px; stroke: var(--cream); }
.site-nav { display: flex; gap: 1.25rem; }
.site-nav-item {
  font-size: 0.62rem; color: var(--text-dim); padding: 0.2rem 0.5rem;
}
.site-nav-item:first-child { color: var(--warm-brown); font-weight: 600; }
.site-hero {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 1rem; margin-bottom: 1.25rem;
  padding: 1.25rem;
  background: linear-gradient(135deg, var(--forest-dark), var(--forest));
  border-radius: 10px;
}
.site-hero-text { flex: 1; }
.site-hero-h1 {
  font-family: var(--font-display);
  font-size: 0.95rem; font-weight: 700; color: var(--cream);
  line-height: 1.2; margin-bottom: 0.35rem;
}
.site-hero-sub {
  font-size: 0.58rem; color: rgba(245,239,230,0.72);
  line-height: 1.5;
}
.site-cta-btns { display: flex; gap: 0.4rem; }
.site-btn-primary {
  padding: 0.28rem 0.6rem;
  background: var(--terracotta); color: #fff;
  border-radius: 5px; font-size: 0.52rem; font-weight: 700;
}
.site-btn-ghost {
  padding: 0.28rem 0.6rem;
  background: transparent; color: var(--cream);
  border: 1px solid rgba(245,239,230,0.35);
  border-radius: 5px; font-size: 0.52rem;
}
.site-services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.45rem; margin-bottom: 0.85rem; }
.site-service-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 8px; padding: 0.55rem;
  text-align: center;
}
.site-service-icon {
  width: 24px; height: 24px;
  border-radius: 6px;
  background: var(--accent-dim);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 0.35rem;
}
.site-service-icon svg { width: 12px; height: 12px; stroke: var(--terracotta); }
.site-service-title { font-size: 0.58rem; font-weight: 700; color: var(--deep-brown); margin-bottom: 0.15rem; }
.site-service-desc { font-size: 0.52rem; color: var(--text-dim); }
.site-cta-bar {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px;
  background: var(--accent-dim);
  border: 1px solid rgba(196,112,74,0.20);
  border-radius: 8px;
}
.cta-bar-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--terracotta);
  flex-shrink: 0;
  animation: pulse-dot 1.8s ease-in-out infinite;
}
.cta-bar-text { font-size: 0.65rem; color: var(--terracotta-deep); font-weight: 600; }

/* Floating badge — neumorphic */
.hero-float {
  position: absolute;
  bottom: 1.5rem;
  left: -1.5rem;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  box-shadow: var(--neu-shadow);
  animation: float-anim 4s ease-in-out infinite;
}
@keyframes float-anim {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
.float-icon {
  width: 34px; height: 34px; border-radius: 10px;
  background: var(--accent-dim);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--neu-inset);
}
.float-icon svg { width: 15px; height: 15px; stroke: var(--terracotta); }
.float-text { font-size: 0.72rem; }
.float-text strong { color: var(--deep-brown); display: block; }
.float-text span { color: var(--text-dim); }

/* ── TRUST BAR — Dark section with grain ── */
.trust-bar {
  background: var(--matte-black);
  padding: 3.5rem 2.5rem;
  position: relative;
  overflow: hidden;
}
.trust-bar::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  pointer-events: none;
}
.trust-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  position: relative;
  z-index: 1;
}
.trust-stat { text-align: center; }
.trust-stat-num {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 2.8vw, 2.4rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.trust-stat-num span { color: var(--gold); }
.trust-stat-label { font-size: 0.8rem; color: rgba(245,240,235,0.45); }

/* ── BENTO FEATURES SECTION ── */
.features-section {
  padding: 7rem 2.5rem;
  background: var(--cream-light);
  position: relative;
}
.features-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
}
.bento-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: auto;
  gap: 1.25rem;
}
/* Bento card base — neumorphic */
.bento-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--neu-shadow);
  transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.bento-card:hover {
  box-shadow: var(--neu-shadow-hover);
  transform: translateY(-4px);
  border-color: rgba(196,112,74,0.22);
}
.bento-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--accent-dim);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background 0.25s, transform 0.25s;
}
.bento-card:hover .bento-icon {
  background: rgba(196,112,74,0.18);
  transform: scale(1.08);
}
.bento-icon svg { width: 20px; height: 20px; stroke: var(--terracotta); }
.bento-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--deep-brown);
  line-height: 1.3;
}
.bento-body {
  font-size: 0.87rem;
  color: var(--text-dim);
  line-height: 1.7;
}
/* Bento layout: 2 tall + 3 small + 1 wide */
.bento-card.tall-a  { grid-column: span 2; grid-row: span 2; }
.bento-card.tall-b  { grid-column: span 2; grid-row: span 2; }
.bento-card.small-a { grid-column: span 2; }
.bento-card.small-b { grid-column: span 2; }
.bento-card.small-c { grid-column: span 2; }
.bento-card.wide    { grid-column: span 4; }

.bento-card.tall-a .bento-icon { width: 52px; height: 52px; border-radius: 14px; }
.bento-card.tall-a .bento-icon svg { width: 24px; height: 24px; }
.bento-card.tall-a .bento-title { font-size: 1.25rem; }
.bento-card.tall-a .bento-body  { font-size: 0.95rem; }
.bento-card.wide { flex-direction: row; align-items: center; gap: 1.5rem; }

/* ── TESTIMONIALS — Dark with grain ── */
.testimonials {
  padding: 7rem 2.5rem;
  background: var(--matte-black);
  position: relative;
  overflow: hidden;
}
.testimonials::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  pointer-events: none;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 3rem;
  position: relative;
  z-index: 1;
}
/* Neumorphic dark cards */
.testimonial-card {
  background: rgba(245,240,235,0.04);
  border: 1px solid rgba(245,240,235,0.10);
  border-radius: var(--radius-lg);
  padding: 2rem;
  backdrop-filter: blur(10px);
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 24px rgba(0,0,0,0.15);
}
.testimonial-card:hover {
  border-color: rgba(196,112,74,0.35);
  transform: translateY(-4px);
  box-shadow: 0 8px 36px rgba(0,0,0,0.25);
}
.testimonial-stars { color: var(--gold); font-size: 0.8rem; letter-spacing: 3px; margin-bottom: 1.25rem; }
.testimonial-quote {
  font-family: var(--font-display);
  font-size: 0.97rem;
  font-style: italic;
  color: rgba(245,240,235,0.85);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.testimonial-quote::before { content: "\u201C"; color: var(--terracotta); font-size: 1.8rem; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.author-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--terracotta), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.78rem; color: #fff;
  flex-shrink: 0;
}
.author-name { font-weight: 600; font-size: 0.85rem; color: var(--cream); }
.author-role { font-size: 0.73rem; color: rgba(245,240,235,0.45); }
.testimonial-result {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1.25rem;
  padding: 0.5rem 0.8rem;
  background: rgba(45,74,62,0.25);
  border: 1px solid rgba(45,74,62,0.35);
  border-radius: 8px;
  font-size: 0.72rem;
  color: var(--sage);
  font-weight: 600;
}
.testimonial-result svg { width: 12px; height: 12px; stroke: var(--sage); flex-shrink: 0; }

/* ── DIFFERENCE / COMPARISON ── */
.difference { padding: 7rem 2.5rem; background: var(--stone); }
.comparison-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1.5rem;
  align-items: start;
  margin-top: 3rem;
}
.comparison-col { padding: 2.25rem; border-radius: var(--radius-lg); }
.comparison-old {
  background: rgba(255,255,255,0.5);
  border: 1px solid var(--border);
}
.comparison-new {
  background: rgba(196,112,74,0.07);
  border: 1px solid rgba(196,112,74,0.22);
}
.col-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-dim);
}
.col-list { list-style: none; display: flex; flex-direction: column; gap: 1.1rem; }
.col-list li {
  font-size: 0.95rem;
  color: var(--warm-brown);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.list-icon { width: 14px; height: 14px; stroke: var(--text-dim); stroke-width: 2.5; fill: none; flex-shrink: 0; }
.list-icon-check { stroke: var(--terracotta); }
.comparison-vs {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--text-dim);
  padding-top: 3rem;
}

/* ── PROCESS ── */
.process {
  padding: 7rem 2.5rem;
  background: var(--cream-light);
  position: relative;
}
.process-header { margin-bottom: 4rem; }
.steps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}
.steps-row::before {
  content: '';
  position: absolute;
  top: 2.1rem;
  left: calc(16.67% + 1rem);
  right: calc(16.67% + 1rem);
  height: 2px;
  background: linear-gradient(90deg, var(--terracotta), var(--sage));
  z-index: 0;
}
/* Animated connector lines */
.step-connector {
  position: absolute;
  top: 2.1rem;
  left: calc(16.67% + 1rem);
  height: 2px;
  background: linear-gradient(90deg, var(--terracotta), var(--sage));
  z-index: 0;
  transition: width 0.8s ease;
}
.step {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  position: relative;
  z-index: 1;
  box-shadow: var(--neu-shadow);
  transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
}
.step:hover {
  box-shadow: var(--neu-shadow-hover);
  transform: translateY(-4px);
  border-color: rgba(196,112,74,0.22);
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--terracotta), var(--terracotta-deep));
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 14px rgba(196,112,74,0.3);
}
.step-icon {
  width: 50px; height: 50px;
  border-radius: 12px;
  background: var(--accent-dim);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
  transition: transform 0.25s, background 0.25s;
}
.step:hover .step-icon {
  transform: scale(1.12);
  background: rgba(196,112,74,0.18);
}
.step-icon svg { width: 22px; height: 22px; stroke: var(--terracotta); }
.step-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--deep-brown);
  margin-bottom: 0.85rem;
}
.step-body {
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.75;
}

/* ── PRICING — Dark with animated gradient bg ── */
.pricing {
  padding: 7rem 2.5rem;
  background: linear-gradient(160deg, #1A1A1A 0%, #2D1F14 40%, #1C3D2E 100%);
  position: relative;
  overflow: hidden;
}
/* Warm animated gradient orb */
.pricing::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(196,112,74,0.10) 0%, transparent 70%);
  pointer-events: none;
  animation: ambient-shift 18s ease-in-out infinite alternate;
}
.pricing::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(45,74,62,0.12) 0%, transparent 70%);
  pointer-events: none;
  animation: ambient-shift 22s ease-in-out infinite alternate-reverse;
}
.pricing-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.pricing-header { text-align: center; margin-bottom: 3.5rem; }
.pricing-header .section-headline { color: var(--cream); }
.pricing-header .section-headline em { color: var(--gold); }
.pricing-header .section-sub { color: rgba(212,197,169,0.60); margin: 0.75rem auto 0; }
.pricing-header .section-eyebrow { color: var(--terracotta); }

/* 4 Tier cards — glassmorphism */
.tiers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
  align-items: start;
}
.tier-card {
  background: rgba(245,239,230,0.06);
  border: 1px solid rgba(245,239,230,0.10);
  border-radius: var(--radius-xl);
  padding: 0;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.20);
}
.tier-card:hover {
  border-color: rgba(196,112,74,0.45);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.30), 0 0 0 1px rgba(196,112,74,0.15) inset;
}
.tier-card.featured {
  border-color: rgba(196,112,74,0.50);
  background: rgba(196,112,74,0.10);
  transform: translateY(-4px);
}
.tier-card.featured:hover { transform: translateY(-8px); }
.tier-card.featured .tier-header { background: rgba(196,112,74,0.14); }

/* Tier header */
.tier-header {
  padding: 1.5rem 1.75rem;
  border-bottom: 1px solid rgba(245,239,230,0.08);
  background: rgba(245,239,230,0.03);
}
.tier-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.25rem;
}
.tier-tagline {
  font-size: 0.78rem;
  color: rgba(212,197,169,0.50);
}
.tier-badge {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #1c3a2a;
  border-radius: 100px;
  padding: 0.2rem 0.65rem;
  font-size: 0.62rem;
  font-weight: 700;
  margin-top: 0.75rem;
}

/* Tier price */
.tier-price-wrap {
  padding: 1.75rem 1.75rem 1rem;
  text-align: center;
}
.tier-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.2rem;
  margin-bottom: 0.3rem;
}
.tier-dollar { font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; color: var(--gold); }
.tier-amount { font-family: var(--font-display); font-size: 3rem; font-weight: 700; color: var(--cream); line-height: 1; }
.tier-period { font-size: 0.88rem; color: rgba(212,197,169,0.45); }
.tier-onetime { font-size: 0.70rem; color: rgba(212,197,169,0.40); margin-bottom: 0; }

/* Tier features */
.tier-features {
  list-style: none;
  padding: 0 1.75rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  flex: 1;
}
.tier-features li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.80rem;
  color: rgba(212,197,169,0.75);
  line-height: 1.5;
}
.tier-check { width: 15px; height: 15px; stroke: var(--gold); stroke-width: 2.5; fill: none; flex-shrink: 0; }

/* Tier CTA */
.tier-cta-wrap { padding: 0 1.75rem 1.5rem; }
.tier-cta {
  display: block;
  width: 100%;
  padding: 0.82rem 1.5rem;
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  transition: all 0.22s;
  cursor: pointer;
  border: none;
}
.tier-cta-primary {
  background: linear-gradient(135deg, var(--terracotta), var(--terracotta-deep));
  color: #fff;
  box-shadow: 0 4px 18px rgba(196,112,74,0.35);
}
.tier-cta-primary:hover {
  box-shadow: 0 8px 28px rgba(196,112,74,0.45);
  transform: translateY(-1px);
}
.tier-cta-ghost {
  background: rgba(245,239,230,0.06);
  color: var(--cream);
  border: 1px solid rgba(245,239,230,0.15);
  backdrop-filter: blur(8px);
}
.tier-cta-ghost:hover {
  border-color: rgba(245,239,230,0.35);
  background: rgba(245,239,230,0.12);
  transform: translateY(-1px);
}

/* Tier preview */
.tier-preview-wrap { padding: 0 1.25rem 1.25rem; }
.tier-preview-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(212,197,169,0.35);
  margin-bottom: 0.75rem;
  text-align: center;
}

/* Mini browser preview inside tier */
.tier-browser {
  background: rgba(245,239,230,0.90);
  border: 1px solid rgba(212,197,169,0.15);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--neu-shadow);
}
.tier-browser-bar {
  padding: 0.45rem 0.75rem;
  background: rgba(212,197,169,0.15);
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid rgba(212,197,169,0.10);
}
.tier-browser-dots { display: flex; gap: 4px; }
.tier-dot { width: 9px; height: 9px; border-radius: 50%; }
.tier-dot-r { background: #d4635a; }
.tier-dot-y { background: #d4b85a; }
.tier-dot-g { background: #6aad74; }
.tier-browser-url {
  flex: 1;
  background: rgba(212,197,169,0.08);
  border: 1px solid rgba(212,197,169,0.12);
  border-radius: 4px;
  padding: 0.2rem 0.6rem;
  font-size: 0.55rem;
  color: rgba(74,55,40,0.5);
  margin-left: 0.4rem;
}
.tier-browser-content { padding: 0.75rem; }

/* Starter site preview */
.tier-site-hero {
  padding: 0.85rem;
  background: linear-gradient(135deg, var(--forest-dark), var(--forest));
  border-radius: 8px;
  margin-bottom: 0.6rem;
}
.tier-site-h1 {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.3rem;
  line-height: 1.2;
}
.tier-site-sub {
  font-size: 0.55rem;
  color: rgba(245,239,230,0.65);
  margin-bottom: 0.6rem;
}
.tier-site-btns { display: flex; gap: 0.35rem; }
.tier-site-btn-primary {
  padding: 0.22rem 0.55rem;
  background: var(--terracotta); color: #fff;
  border-radius: 4px; font-size: 0.52rem; font-weight: 700;
}
.tier-site-btn-ghost {
  padding: 0.22rem 0.55rem;
  background: transparent; color: var(--cream);
  border: 1px solid rgba(245,239,230,0.3);
  border-radius: 4px; font-size: 0.52rem;
}
.tier-site-services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.35rem; margin-bottom: 0.5rem; }
.tier-site-service-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.45rem 0.35rem;
  text-align: center;
}
.tier-site-service-icon {
  width: 20px; height: 20px;
  border-radius: 5px;
  background: var(--accent-dim);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 0.3rem;
}
.tier-site-service-icon svg { width: 10px; height: 10px; stroke: var(--terracotta); }
.tier-site-service-title { font-size: 0.52rem; font-weight: 700; color: var(--deep-brown); margin-bottom: 0.1rem; }
.tier-site-service-desc { font-size: 0.46rem; color: var(--text-dim); }

/* Professional tier site preview */
.tier-site-testimonial {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.55rem;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 6px;
  margin-top: 0.5rem;
}
.tier-site-testimonial-avatar {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--terracotta), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-size: 0.48rem; font-weight: 700; color: #fff;
  flex-shrink: 0;
}
.tier-site-testimonial-text { flex: 1; }
.tier-site-testimonial-stars { font-size: 0.5rem; color: var(--gold); letter-spacing: 1px; margin-bottom: 0.15rem; }
.tier-site-testimonial-quote { font-size: 0.55rem; color: var(--warm-brown); line-height: 1.4; font-style: italic; }
.tier-site-gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.3rem; margin-bottom: 0.5rem; }
.tier-site-gallery-item {
  aspect-ratio: 16/9;
  border-radius: 5px;
  background: linear-gradient(135deg, var(--surface-3), var(--stone));
  border: 1px solid var(--border);
}
.tier-site-map-bar {
  display: flex; align-items: center; gap: 0.3rem;
  padding: 0.3rem 0.75rem;
  font-size: 0.5rem; color: var(--text-dim);
  background: rgba(212,197,169,0.06);
  border-top: 1px solid rgba(212,197,169,0.12);
  margin-top: 0.25rem;
}

/* Premium tier site preview */
.tier-site-booking {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.55rem;
  background: var(--accent-dim);
  border: 1px solid rgba(196,112,74,0.20);
  border-radius: 6px;
  margin-bottom: 0.5rem;
}
.tier-site-booking-icon {
  width: 22px; height: 22px;
  border-radius: 5px;
  background: var(--terracotta);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.tier-site-booking-icon svg { width: 11px; height: 11px; stroke: #fff; }
.tier-site-booking-text { flex: 1; }
.tier-site-booking-label { font-size: 0.55rem; font-weight: 700; color: var(--terracotta-deep); }
.tier-site-booking-sub { font-size: 0.48rem; color: var(--text-dim); }
.tier-site-social { display: flex; gap: 0.4rem; justify-content: center; padding: 0.4rem; background: var(--surface-2); border-radius: 6px; border: 1px solid var(--border); }
.tier-site-social-icon { width: 20px; height: 20px; border-radius: 4px; background: var(--surface-3); display: flex; align-items: center; justify-content: center; }
.tier-site-social-icon svg { width: 10px; height: 10px; }
.tier-site-premium-colors { display: flex; align-items: center; gap: 0.3rem; padding: 0.3rem 0.75rem; font-size: 0.48rem; color: var(--text-dim); background: rgba(212,197,169,0.06); border-top: 1px solid rgba(212,197,169,0.12); margin-top: 0.25rem; }
.tier-site-color-swatch { width: 10px; height: 10px; border-radius: 2px; border: 1px solid rgba(255,255,255,0.15); }

/* ── STARTER MOCKUP (muted) ── */
.tier-browser-starter { background: rgba(232,224,216,0.7); border: 1.5px dashed rgba(212,197,169,0.35) \!important; }
.tier-browser-starter .tier-browser-bar { background: rgba(212,197,169,0.08); border-bottom: 1px dashed rgba(212,197,169,0.2); }
.tier-starter-hero { background: linear-gradient(135deg, #e8dece, #d4c5a9) \!important; border: 1px solid rgba(74,55,40,0.12) \!important; padding: 0.55rem 0.7rem; }
.tier-starter-h1 { font-size: 0.72rem; color: var(--deep-brown); }
.tier-starter-sub { font-size: 0.48rem; color: rgba(74,55,40,0.55); }
.tier-starter-btn { background: #8a7560; font-size: 0.5rem; padding: 0.18rem 0.5rem; color: #fff; }
.tier-starter-service { border: 1px solid rgba(74,55,40,0.08); background: rgba(255,255,255,0.5); font-size: 0.5rem; color: rgba(74,55,40,0.50); }
.tier-site-contact-bar { display: flex; align-items: center; gap: 0.35rem; padding: 0.5rem 0.55rem; margin-top: 0.5rem; background: rgba(255,255,255,0.8); border: 1px solid rgba(212,197,169,0.12); border-radius: 5px; font-size: 0.52rem; color: var(--text-dim); font-weight: 600; }
.tier-site-contact-bar svg { stroke: var(--text-dim); }

/* ── PROFESSIONAL MOCKUP ── */
.tier-browser-pro .tier-browser-bar { background: linear-gradient(90deg, rgba(28,61,46,0.15), rgba(28,61,46,0.06)) \!important; border-bottom: 1px solid rgba(28,61,46,0.12) \!important; }
.tier-browser-pro .tier-site-hero { background: linear-gradient(135deg, #1c3d2e, #2a5a3e) \!important; }
.tier-pro-h1 { font-size: 0.78rem; color: var(--cream); }
.tier-pro-sub { font-size: 0.52rem; color: rgba(245,239,230,0.65); }
.tier-pro-btn { background: var(--terracotta); font-size: 0.5rem; }
.tier-site-gallery-item { background: var(--surface-3); border: 1px solid var(--border); }

/* ── PREMIUM MOCKUP ── */
.tier-browser-premium { border: 2px solid rgba(196,112,74,0.35) \!important; }
.tier-browser-premium .tier-browser-bar { background: linear-gradient(90deg, rgba(196,112,74,0.18), rgba(196,112,74,0.06)) \!important; border-bottom: 1px solid rgba(196,112,74,0.25) \!important; }
.tier-premium-header { display: flex; align-items: center; justify-content: space-between; padding: 0.3rem 0.75rem; background: linear-gradient(90deg, rgba(196,112,74,0.22), rgba(196,112,74,0.06)); border-bottom: 1px solid rgba(196,112,74,0.30); font-size: 0.5rem; color: var(--terracotta); font-weight: 600; }
.tier-site-premium-badge { display: flex; align-items: center; gap: 0.25rem; font-size: 0.48rem; font-weight: 800; color: var(--terracotta); letter-spacing: 0.05em; text-transform: uppercase; }
.tier-premium-hero { background: linear-gradient(135deg, #7a4a2a, #a0522d, #c2714f) \!important; padding: 1rem; margin-bottom: 0.5rem; border-bottom: 2px solid rgba(212,197,169,0.15); }
.tier-premium-h1 { font-size: 0.88rem; color: var(--cream); text-shadow: 0 1px 4px rgba(0,0,0,0.20); }
.tier-premium-sub { font-size: 0.5rem; color: rgba(245,239,230,0.75); }
.tier-premium-btn { background: linear-gradient(135deg, var(--terracotta-deep), #8a4a2a); font-size: 0.5rem; box-shadow: 0 2px 8px rgba(196,112,74,0.35); }
.tier-premium-services .tier-site-service-card { border-color: rgba(196,112,74,0.18); }
.tier-site-booking { border: 1px solid rgba(196,112,74,0.30); background: rgba(196,112,74,0.10); margin-bottom: 0.4rem; }
.tier-site-social { border: 1px solid rgba(196,112,74,0.18); background: rgba(196,112,74,0.04); margin-bottom: 0.3rem; }
.tier-site-premium-colors { border: 1px solid rgba(196,112,74,0.22); background: rgba(196,112,74,0.06); }

/* ── COMPARISON TABLE ── */
.compare-table {
  width: 100%;
  max-width: 820px;
  margin: 0 auto 2.5rem;
  background: rgba(245,239,230,0.04);
  border: 1px solid rgba(245,239,230,0.10);
  border-radius: var(--radius-lg);
  overflow: hidden;
  font-size: 0.82rem;
}
.compare-header {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  background: rgba(245,239,230,0.06);
  padding: 0.65rem 1.5rem;
  border-bottom: 1px solid rgba(245,239,230,0.10);
  font-weight: 700;
  color: rgba(212,197,169,0.40);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.compare-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  padding: 0.82rem 1.5rem;
  border-bottom: 1px solid rgba(245,239,230,0.06);
  color: rgba(212,197,169,0.50);
  align-items: center;
  transition: background 0.2s;
}
.compare-row:hover { background: rgba(245,239,230,0.05); }
.compare-row:last-child { border-bottom: none; }
.compare-row-highlight {
  background: rgba(196,112,74,0.10);
  border-top: 1px solid rgba(196,112,74,0.22);
  color: rgba(212,197,169,0.85);
}
.compare-col { padding: 0 0.25rem; }
.compare-feature-col { color: var(--cream); }
.compare-siteforge-col { color: var(--gold); font-weight: 700; }
.compare-tag { display: inline-block; background: var(--gold); color: #1c3a2a; font-size: 0.58rem; font-weight: 700; padding: 0.15rem 0.4rem; border-radius: 4px; margin-left: 0.45rem; vertical-align: middle; }
.compare-one-time { font-size: 0.6rem; color: rgba(212,197,169,0.35); font-weight: 400; }

/* Trust badges */
.pricing-trust { display: flex; align-items: center; justify-content: center; gap: 2.5rem; padding: 2rem; flex-wrap: wrap; border-top: 1px solid rgba(245,239,230,0.07); margin-top: 0.5rem; }
.badge-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.80rem; color: rgba(212,197,169,0.45); }
.badge-item svg { width: 15px; height: 15px; stroke: var(--terracotta); }

/* ── SITE+ ADD-ON CARD — premium glass ── */
.siteplus-addon-card {
  margin-top: 3.5rem;
  background: linear-gradient(135deg, rgba(28,61,46,0.90) 0%, rgba(28,61,46,0.85) 100%);
  border: 1px solid rgba(201,168,76,0.45);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.30), 0 0 0 1px rgba(201,168,76,0.10) inset;
  position: relative;
}
.siteplus-addon-card::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px; right: -1px; bottom: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(201,168,76,0.20), transparent 40%, transparent 60%, rgba(201,168,76,0.08));
  pointer-events: none;
}
.siteplus-addon-badge {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #1c3a2a;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.42rem 1.25rem;
  display: inline-block;
}
.siteplus-addon-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem 2.5rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.siteplus-addon-left {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex: 1;
  min-width: 260px;
}
.siteplus-addon-logo {
  width: 50px; height: 50px;
  background: rgba(201,168,76,0.15);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(201,168,76,0.25);
}
.siteplus-addon-logo svg { width: 22px; height: 22px; stroke: var(--gold); }
.siteplus-addon-title { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; color: var(--cream); margin: 0 0 0.35rem; }
.siteplus-addon-sub { font-size: 0.85rem; color: rgba(245,239,230,0.60); margin: 0; line-height: 1.5; }
.siteplus-addon-right { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.siteplus-addon-price { font-family: var(--font-display); font-size: 2.1rem; font-weight: 900; color: var(--cream); white-space: nowrap; }
.siteplus-addon-price span { font-size: 0.9rem; font-weight: 400; color: rgba(245,239,230,0.55); }
.siteplus-addon-features { display: flex; flex-direction: column; gap: 0.3rem; font-size: 0.78rem; color: rgba(245,239,230,0.65); }
.siteplus-addon-features span::before { content: "\u00B7 "; color: var(--gold); }
.siteplus-addon-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #1c3a2a;
  padding: 0.7rem 1.5rem;
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.22s;
  box-shadow: 0 4px 18px rgba(201,168,76,0.30);
}
.siteplus-addon-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,168,76,0.45);
}

/* ── MANIFESTO ── */
.manifesto { padding: 7rem 2.5rem; background: var(--cream-light); }
.manifesto-block { border-left: 3px solid var(--terracotta); padding-left: 2.5rem; margin-bottom: 3rem; }
.manifesto-quote {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.65rem);
  font-style: italic;
  color: var(--deep-brown);
  line-height: 1.5;
}
.manifesto-body { display: flex; flex-direction: column; gap: 1.4rem; max-width: 680px; }
.manifesto-body p { font-size: 0.97rem; color: var(--text-dim); line-height: 1.8; }

/* ── CLOSING CTA ── */
.closing-section {
  padding: 8rem 2.5rem 6rem;
  background: linear-gradient(180deg, var(--stone) 0%, var(--cream-light) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.closing-section::before {
  content: '';
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(196,112,74,0.08), transparent 70%);
  pointer-events: none;
}
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--deep-brown);
  letter-spacing: -0.025em;
  margin-bottom: 1.4rem;
  line-height: 1.1;
}
.closing-body {
  font-size: 1rem;
  color: var(--text-dim);
  max-width: 540px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}
.closing-actions { display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.closing-tagline { font-size: 0.85rem; color: var(--text-dim); margin-top: 1.5rem; }
.closing-tagline span { color: var(--terracotta); font-weight: 600; }

/* ── FOOTER — Dark 4-col ── */
.footer {
  background: var(--matte-black);
  padding: 0;
  position: relative;
  overflow: hidden;
}
.footer::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  pointer-events: none;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 0.8fr;
  gap: 3rem;
  padding: 4rem 2.5rem 2.5rem;
  position: relative;
  z-index: 1;
}
.footer-brand {}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.75rem;
}
.footer-tagline {
  font-size: 0.85rem;
  color: rgba(245,240,235,0.40);
  line-height: 1.7;
  max-width: 260px;
}
.footer-col-title {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--cream);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-links a {
  font-size: 0.85rem;
  color: rgba(245,240,235,0.45);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--cream); }
.footer-social { display: flex; gap: 1rem; }
.social-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(245,240,235,0.06);
  border: 1px solid rgba(245,240,235,0.10);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.social-icon:hover {
  background: rgba(196,112,74,0.18);
  border-color: rgba(196,112,74,0.30);
  transform: translateY(-2px);
}
.social-icon svg { width: 16px; height: 16px; stroke: rgba(245,240,235,0.50); }
.footer-bottom {
  border-top: 1px solid rgba(245,240,235,0.07);
  padding: 1.5rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
.footer-bottom-text { font-size: 0.75rem; color: rgba(245,240,235,0.25); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: 0.75rem; color: rgba(245,240,235,0.25); transition: color 0.2s; }
.footer-legal a:hover { color: rgba(245,240,235,0.55); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-inner { gap: 3rem; }
  .tiers-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .trust-inner { grid-template-columns: repeat(2, 1fr); }
  .comparison-grid { grid-template-columns: 1fr; }
  .comparison-vs { display: none; }
  .steps-row::before { display: none; }
  .footer-inner { grid-template-columns: repeat(2, 1fr); }
  .bento-grid { grid-template-columns: repeat(4, 1fr); }
  .bento-card.tall-a, .bento-card.tall-b { grid-column: span 2; grid-row: span 1; }
}

@media (max-width: 768px) {
  .section { padding: 5rem 1.5rem; }
  .hero { padding: 6rem 1.5rem 3rem; min-height: auto; }
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-right { order: -1; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .trust-inner { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .steps-row { grid-template-columns: 1fr; }
  .hero-float { display: none; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .nav-links { display: none; }
  .compare-table { font-size: 0.72rem; }
  .pricing-trust { gap: 1.5rem; }
  .tiers-grid { grid-template-columns: 1fr; }
  .bento-grid { grid-template-columns: 1fr 1fr; }
  .bento-card.wide { flex-direction: column; }
  .siteplus-addon-inner { flex-direction: column; }
  .siteplus-addon-right { justify-content: flex-start; }
  .footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; }
}

/* ── ANIMATIONS KEYFRAMES ── */
@keyframes fade-in-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate-in { animation: fade-in-up 0.6s ease-out forwards; }

/* Count-up number animation */
.count-up { display: inline-block; }

/* Loading skeleton pulse */
@keyframes skeleton-pulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 0.9; }
}
.skeleton {
  background: var(--surface);
  border-radius: 4px;
  animation: skeleton-pulse 1.5s ease-in-out infinite;
}
