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

:root {
  --primary:    #059669;
  --primary-dk: #047857;
  --primary-lt: #d1fae5;
  --bg:         #f8fafc;
  --surface:    #ffffff;
  --surface2:   #f1f5f9;
  --border:     rgba(0,0,0,0.06);
  --border2:    rgba(0,0,0,0.12);
  --text:       #0f172a;
  --text2:      #334155;
  --muted:      #64748b;
  --shadow:     0 1px 3px rgba(0,0,0,0.06), 0 2px 8px rgba(0,0,0,0.04);
  --shadow-md:  0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg:  0 20px 50px rgba(5,150,105,0.13);
  --radius:     12px;
  --radius-sm:  8px;
  --max:        1200px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── SCROLL LINE ── */
.scroll-line {
  position: fixed; top: 0; left: 0; height: 3px;
  background: var(--primary); z-index: 300; width: 0;
  transition: width .1s linear;
}

/* ── CONTAINER ── */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 48px;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 64px; padding: 0 48px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  text-decoration: none; color: inherit;
  display: inline-flex; align-items: flex-end; gap: 6px;
  flex-shrink: 0;
}
.nav-logo-icon  { height: 38px; width: 38px; display: block; flex: 0 0 38px; }
.nav-logo-wordmark { height: 32px; width: auto; display: block; transform: translateY(2px); }

.nav-center {
  display: flex; align-items: center; gap: 4px;
}
.nav-center a {
  color: var(--muted); text-decoration: none;
  font-size: 14px; font-weight: 500;
  padding: 8px 14px; border-radius: 6px;
  transition: all .2s;
}
.nav-center a:hover { color: var(--text); background: var(--surface2); }

.nav-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }

.btn-ghost-nav {
  color: var(--text2); font-size: 14px; font-weight: 500;
  padding: 8px 16px; border-radius: var(--radius-sm);
  text-decoration: none; transition: all .2s;
}
.btn-ghost-nav:hover { color: var(--text); background: var(--surface2); }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--primary); color: #fff;
  font-size: 14px; font-weight: 600;
  padding: 11px 22px; border-radius: var(--radius-sm);
  text-decoration: none; transition: all .22s;
  border: none; cursor: pointer;
}
.btn-primary:hover {
  background: var(--primary-dk);
  box-shadow: 0 8px 24px rgba(5,150,105,.28);
  transform: translateY(-1px);
}
.btn-primary.btn-lg { font-size: 16px; padding: 14px 32px; border-radius: var(--radius); }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--surface2); color: var(--text);
  font-size: 14px; font-weight: 600;
  padding: 11px 22px; border-radius: var(--radius-sm);
  text-decoration: none; transition: all .22s;
  border: 1px solid var(--border2);
}
.btn-secondary:hover { background: #e2e8f0; }

/* ── HERO ── */
.hero-section {
  min-height: 100vh;
  display: flex; align-items: center;
  padding-top: 64px;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #f0fdf8 100%);
  position: relative; overflow: hidden;
}
.hero-section::after {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle, rgba(0,0,0,.035) 1px, transparent 1px);
  background-size: 30px 30px;
  mask-image: radial-gradient(ellipse 75% 85% at 70% 50%, black 10%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 75% 85% at 70% 50%, black 10%, transparent 75%);
}

.hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 80px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  width: 100%;
  position: relative; z-index: 1;
}

.hero-left { display: flex; flex-direction: column; }

h1 {
  font-size: clamp(2.8rem, 4.5vw, 4rem);
  font-weight: 800; line-height: 1.06; letter-spacing: -.02em;
  color: var(--text); margin-bottom: 20px;
  animation: fadeUp .5s ease both;
}
.text-primary { color: var(--primary); }

.hero-sub {
  font-size: 17px; color: var(--muted); line-height: 1.75;
  max-width: 440px; margin-bottom: 36px; font-weight: 400;
  animation: fadeUp .5s .1s ease both;
}

.hero-cta {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  animation: fadeUp .5s .2s ease both;
}

/* Hero right — card wrap */
.hero-right { animation: fadeIn .7s .3s ease both; }

.hero-card-wrap {
  transform: rotate(2deg);
  transition: transform .4s ease;
}
.hero-card-wrap:hover { transform: rotate(0deg); }

/* ── PHOTO CARD (hero visual) ── */
.photo-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px; overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.photo-main {
  height: 260px; position: relative; overflow: hidden;
}
.photo-main::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    #b8cfe0 0%, #9ab8cc 35%, #7a9ab0 50%,
    #5a6858 50%, #4a5848 65%, #3a4838 100%
  );
}
.photo-main::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 120px;
  background: linear-gradient(to right,
    transparent 0%, transparent 8%, #2a3428 8%, #2a3428 12%,
    transparent 12%, transparent 18%, #232820 18%, #232820 28%,
    transparent 28%, transparent 34%, #1e2418 34%, #1e2418 46%,
    transparent 46%, transparent 52%, #2a3428 52%, #2a3428 64%,
    transparent 64%, transparent 72%, #232820 72%, #232820 80%,
    transparent 80%
  );
  clip-path: polygon(
    0% 100%, 8% 100%, 8% 40%, 12% 40%, 12% 100%,
    18% 100%, 18% 20%, 28% 20%, 28% 100%,
    34% 100%, 34% 10%, 46% 10%, 46% 100%,
    52% 100%, 52% 30%, 64% 30%, 64% 100%,
    72% 100%, 72% 15%, 80% 15%, 80% 100%,
    100% 100%
  );
}

.photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,.45));
}

.photo-geo {
  position: absolute; top: 16px; left: 16px;
  background: rgba(255,255,255,.92); backdrop-filter: blur(8px);
  border-radius: 10px; padding: 10px 14px;
  font-size: 12px; color: var(--text2);
  display: flex; flex-direction: column; gap: 3px;
  box-shadow: 0 4px 16px rgba(0,0,0,.12);
}
.photo-geo strong { font-weight: 600; font-size: 13px; color: var(--text); }
.photo-geo div { display: flex; align-items: center; gap: 5px; }
.photo-geo-sub { color: #6a6a6a; font-size: 11px; }

.photo-ts {
  position: absolute; top: 16px; right: 16px;
  background: var(--primary); color: #fff;
  font-size: 11px; font-weight: 600; letter-spacing: .04em;
  padding: 5px 11px; border-radius: 100px;
}

.photo-pin {
  position: absolute; bottom: 65px; right: 75px;
  width: 22px; height: 28px;
  animation: pinFloat 2.5s ease infinite;
}
.photo-pin::before {
  content: '';
  display: block; width: 22px; height: 22px;
  background: var(--primary);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 0 3px 10px rgba(5,150,105,.55);
}
@keyframes pinFloat { 0%,100%{ transform:translateY(0); } 50%{ transform:translateY(-6px); } }

.photo-caption {
  position: absolute; bottom: 16px; left: 16px; right: 16px;
  display: flex; align-items: center; justify-content: space-between;
}
.photo-tag-pill {
  background: var(--primary); color: #fff;
  font-size: 11px; font-weight: 600; letter-spacing: .04em;
  padding: 4px 10px; border-radius: 100px;
}
.photo-user { display: flex; align-items: center; gap: 7px; }
.photo-avatar {
  width: 26px; height: 26px; border-radius: 50%;
  background: linear-gradient(135deg, #34d399, #059669);
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; color: #fff; font-weight: 700;
}
.photo-user-name { font-size: 12px; color: rgba(255,255,255,.8); }

.photo-strip {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px; background: var(--border);
}
.photo-thumb { aspect-ratio: 4/3; position: relative; overflow: hidden; cursor: pointer; transition: opacity .2s; }
.photo-thumb:hover { opacity: .85; }
.photo-thumb-bg { position: absolute; inset: 0; }
.photo-thumb:nth-child(1) .photo-thumb-bg { background: linear-gradient(135deg,#d4c4a8,#b8a888); }
.photo-thumb:nth-child(2) .photo-thumb-bg { background: linear-gradient(135deg,#a8c4d4,#88a8b8); }
.photo-thumb:nth-child(3) .photo-thumb-bg { background: linear-gradient(135deg,#c4d4a8,#a8b888); }
.photo-thumb-icon {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  display: flex; align-items: center; justify-content: center; opacity: .75;
}
.photo-thumb-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,.55));
  font-size: 10px; color: rgba(255,255,255,.85); font-weight: 500;
  padding: 6px 8px 5px;
}

.photo-meta {
  padding: 14px 18px;
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid var(--border);
}
.photo-meta-item { font-size: 12px; color: var(--muted); }
.live-dot {
  display: flex; align-items: center; gap: 5px;
  font-size: 12px; font-weight: 500; color: var(--primary);
}
.live-dot::before {
  content:''; width:7px; height:7px;
  background: #34d399; border-radius:50%;
  animation: blink 1.5s ease infinite;
}
@keyframes blink { 0%,100%{ opacity:1; transform:scale(1); } 50%{ opacity:.35; transform:scale(.7); } }

/* ── STATS ── */
.stats-section {
  background: var(--surface2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 64px 0;
}
.stats-row {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 24px; text-align: center;
}
.stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px 20px;
}
.stat-num {
  font-size: 40px; font-weight: 800; color: var(--primary);
  line-height: 1; margin-bottom: 8px; letter-spacing: -.02em;
}
.stat-label { font-size: 14px; font-weight: 500; color: var(--muted); }

/* ── FEATURES ── */
.features-section {
  padding: 96px 0;
  background: var(--surface);
}
.features-section h2 { font-size: clamp(1.8rem, 2.8vw, 2.4rem); font-weight: 800; margin-bottom: 10px; letter-spacing: -.02em; }
.section-sub { font-size: 15px; color: var(--muted); line-height: 1.7; max-width: 560px; margin-bottom: 48px; }

.features-grid-3 {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 20px;
}
.fcard-3 {
  background: var(--surface2); border-radius: var(--radius); padding: 32px;
  transition: background .25s, transform .25s;
  border: 1px solid transparent;
}
.fcard-3:hover { background: var(--surface); border-color: var(--border2); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.fcard-icon {
  width: 48px; height: 48px; border-radius: var(--radius-sm);
  background: var(--primary-lt); color: var(--primary-dk);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.fcard-3 h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.fcard-3 p  { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ── TOOLS ── */
.tools-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 96px 0;
}
.tools-title { font-size: clamp(1.6rem, 2.4vw, 2rem); font-weight: 800; letter-spacing: -.02em; text-align: center; margin-bottom: 48px; }

.tools-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 20px;
}
.tool-card {
  background: var(--surface2); border-radius: var(--radius); padding: 32px 24px;
  border-bottom: 4px solid rgba(5,150,105,.15);
  transition: border-color .25s, transform .25s;
}
.tool-card:hover { border-color: var(--primary); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.tool-icon { color: var(--primary); margin-bottom: 16px; }
.tool-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 10px; }
.tool-card p  { font-size: 13px; color: var(--muted); line-height: 1.65; }

/* ── COME FUNZIONA / STEPS ── */
.steps-section {
  background: var(--surface2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 96px 0;
}
.steps-title { font-size: clamp(1.8rem, 2.8vw, 2.4rem); font-weight: 800; letter-spacing: -.02em; text-align: center; margin-bottom: 56px; }

.steps-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: start;
}

.step-row {
  display: flex; gap: 20px; padding: 22px 20px;
  border-radius: var(--radius); cursor: pointer;
  transition: background .2s, border-color .2s;
  border: 1px solid transparent;
  border-left: 3px solid transparent;
  position: relative; overflow: hidden;
}
.step-row:hover { background: var(--surface); border-color: var(--border); border-left-color: var(--border2); }
.step-row.active {
  background: var(--surface);
  border-color: var(--border); border-left-color: var(--primary);
  box-shadow: var(--shadow);
}

/* Big background number */
.step-num-bg {
  position: absolute; right: 16px; top: 50%;
  transform: translateY(-50%);
  font-size: 72px; font-weight: 900; line-height: 1;
  color: rgba(0,0,0,.04); user-select: none; pointer-events: none;
  letter-spacing: -.04em;
}
.step-row.active .step-num-bg { color: rgba(5,150,105,.07); }

.step-circle {
  width: 34px; height: 34px; min-width: 34px;
  background: var(--primary-lt); border: 1.5px solid rgba(5,150,105,.3);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 15px; color: var(--primary-dk);
  margin-top: 2px; flex-shrink: 0;
}
.step-row.active .step-circle { background: var(--primary); color: #fff; border-color: var(--primary); }

.step-title { font-size: 17px; font-weight: 700; margin-bottom: 5px; }
.step-text  { font-size: 13px; color: var(--muted); line-height: 1.65; }

.step-visual { position: sticky; top: 96px; }
.step-frame {
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  position: relative; aspect-ratio: 4/3;
}
.step-img { position: absolute; inset: 0; opacity: 0; transition: opacity .4s ease; }
.step-img.active { opacity: 1; }

/* Step illustrations */
.scene-field {
  width: 100%; height: 100%;
  background: linear-gradient(175deg,#d0e4f0 0%,#b0c8dc 35%,#7a9aac 50%,#5a7050 50%,#4a6040 65%,#3c5030 100%);
  position: relative;
}
.scene-field::after {
  content: ''; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 50px; height: 75px;
  background: rgba(255,255,255,.18);
  border: 2px solid rgba(255,255,255,.45);
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,.3);
}
.scene-geo {
  width: 100%; height: 100%;
  background: #e6f7f0; position: relative; overflow: hidden;
}
.scene-geo::before {
  content:''; position: absolute; inset: 0;
  background:
    repeating-linear-gradient(0deg,transparent,transparent 39px,rgba(5,150,105,.12) 40px),
    repeating-linear-gradient(90deg,transparent,transparent 39px,rgba(5,150,105,.12) 40px);
}
.scene-geo::after {
  content: ''; position: absolute; top: 36%; left: 46%;
  width: 22px; height: 22px;
  background: var(--primary);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 0 4px 12px rgba(5,150,105,.5);
  animation: pinFloat 2.5s ease infinite;
}

.scene-archive {
  width: 100%; height: 100%;
  background: var(--surface2);
  display: flex; flex-direction: column;
  padding: 24px; gap: 10px;
}
.archive-date-label { font-size: 12px; font-weight: 600; color: var(--text2); padding: 0 0 6px; }
.archive-row {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 12px 14px;
  display: flex; align-items: center; gap: 12px;
  font-size: 12px; color: var(--text2);
}
.archive-thumb { width: 40px; height: 32px; border-radius: 5px; flex-shrink: 0; }
.archive-thumb.t1 { background: linear-gradient(135deg,#d4c4a8,#b8a888); }
.archive-thumb.t2 { background: linear-gradient(135deg,#a8c4d4,#88a8b8); }
.archive-thumb.t3 { background: linear-gradient(135deg,#c4d4a8,#a8b888); }
.archive-info { flex: 1; }
.archive-row-title { font-weight: 500; font-size: 13px; }
.archive-row-meta  { font-size: 11px; color: var(--muted); }
.archive-tag {
  background: var(--primary-lt); color: var(--primary-dk);
  font-size: 10px; font-weight: 600; padding: 2px 8px; border-radius: 100px;
  margin-left: auto; white-space: nowrap;
}

.step-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,.5));
  padding: 24px 20px 16px;
  display: flex; align-items: flex-end; justify-content: space-between;
}
.step-caption-title { font-size: 18px; font-weight: 700; color: #fff; }
.step-caption-meta  { font-size: 11px; color: rgba(255,255,255,.6); text-align: right; }
.step-caption--light { background: linear-gradient(transparent,rgba(241,245,249,.96)); }
.step-caption-title--dark { color: var(--text); }
.step-caption-meta--dark  { color: var(--muted); }

/* ── PRICING ── */
.pricing-section {
  padding: 96px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.pricing-section h2 { font-size: clamp(1.8rem, 2.8vw, 2.4rem); font-weight: 800; letter-spacing: -.02em; margin-bottom: 10px; }

.pricing-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  max-width: 1000px;
}

.price-card {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 18px; padding: 28px;
  display: flex; flex-direction: column; gap: 14px;
  min-height: 320px; position: relative;
  transition: transform .22s, box-shadow .22s, border-color .22s;
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--border2); }

/* Featured card — dark like Stitch */
.price-card.featured {
  background: #0f172a;
  border-color: var(--primary); border-width: 2px;
  box-shadow: 0 20px 48px rgba(5,150,105,.18);
  transform: translateY(-6px);
}
.price-card.featured:hover { transform: translateY(-10px); }
.price-card.featured .price-title  { color: #f8fafc; }
.price-card.featured .price-value  { color: #d1fae5; }
.price-card.featured .price-features { color: #94a3b8; }
.price-card.featured .price-features strong { color: #e2e8f0; }
.price-card.featured .price-check  { background: rgba(5,150,105,.25); color: #6ee7b7; }
.price-card.featured .price-code   { background: rgba(255,255,255,.06); color: #64748b; border-color: rgba(255,255,255,.1); }

.price-badge {
  position: absolute; top: -13px; right: 20px;
  background: var(--primary); color: #fff;
  font-size: 11px; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  border-radius: 999px; padding: 5px 14px;
  box-shadow: 0 4px 12px rgba(5,150,105,.3);
}

.price-head { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; }
.price-title { font-size: 22px; font-weight: 700; line-height: 1; }
.price-code {
  font-size: 11px; font-weight: 600; letter-spacing: .06em; color: var(--muted);
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 999px; padding: 3px 10px;
}

.price-value { font-size: 32px; font-weight: 800; color: var(--text); line-height: 1; letter-spacing: -.02em; }
.price-value span { font-size: 14px; color: var(--muted); font-weight: 500; }

.price-features {
  list-style: none; display: flex; flex-direction: column; gap: 10px;
  color: var(--text2); font-size: 14px; padding-top: 4px;
}
.price-features li { display: flex; align-items: center; gap: 8px; line-height: 1.3; }
.price-check {
  display: inline-flex; align-items: center; justify-content: center;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--primary-lt); color: var(--primary-dk);
  font-size: 11px; font-weight: 700; flex: 0 0 18px;
}
.price-features strong { color: var(--text); font-weight: 600; }
.price-cta { margin-top: auto; justify-content: center; width: 100%; padding: 12px 16px; border-radius: var(--radius-sm); }
.price-loading { min-height: 180px; justify-content: center; }
.price-desc { color: var(--muted); font-size: 14px; max-width: 40ch; }

/* ── CTA ── */
.cta-section {
  background: #0f172a; color: #f8fafc;
  text-align: center; padding: 120px 48px;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content:''; position: absolute; top: -100px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle,rgba(5,150,105,.15) 0%,transparent 65%);
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 2; }
.cta-title {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 800; letter-spacing: -.02em; line-height: 1.1;
  max-width: 600px; margin: 0 auto 16px; color: #f8fafc;
}
.cta-title em { font-style: normal; color: #6ee7b7; }
.cta-sub {
  font-size: 15px; color: rgba(248,250,252,.5);
  font-weight: 400; max-width: 420px; margin: 0 auto 36px; line-height: 1.7;
}
.cta-actions { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; }
.btn-cta-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: rgba(248,250,252,.65);
  font-size: 14px; font-weight: 500; padding: 11px 22px; border-radius: var(--radius-sm);
  text-decoration: none; border: 1px solid rgba(255,255,255,.15);
  transition: all .22s;
}
.btn-cta-ghost:hover { background: rgba(255,255,255,.07); color: #f8fafc; }

/* ── CONTACT ── */
.contact-section {
  background: var(--surface2);
  border-top: 1px solid var(--border);
  padding: 96px 0;
}
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: start;
}
.contact-info h2 { font-size: clamp(1.6rem, 2.4vw, 2rem); font-weight: 800; letter-spacing: -.02em; margin-bottom: 14px; }
.contact-items { display: flex; flex-direction: column; gap: 16px; margin-top: 32px; }
.contact-item {
  display: flex; gap: 16px; align-items: flex-start; padding: 16px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); transition: box-shadow .2s;
}
.contact-item:hover { box-shadow: var(--shadow-md); }
.contact-icon {
  width: 44px; height: 44px; border-radius: var(--radius-sm); flex-shrink: 0;
  background: var(--primary-lt); color: var(--primary-dk);
  display: flex; align-items: center; justify-content: center;
}
.contact-item-label { font-size: 12px; font-weight: 700; color: var(--text); margin-bottom: 2px; }
.contact-item-val   { font-size: 14px; color: var(--muted); }

.contact-form-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px; padding: 36px;
  box-shadow: var(--shadow-md);
}
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--text); }
.form-group input,
.form-group textarea {
  width: 100%; padding: 12px 14px;
  background: var(--surface2); border: 1px solid var(--border2);
  border-radius: var(--radius-sm); font-size: 14px; color: var(--text);
  font-family: 'Inter', sans-serif;
  outline: none; transition: border-color .2s, box-shadow .2s;
  resize: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(5,150,105,.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--muted); }

/* ── FOOTER ── */
footer {
  background: var(--surface2);
  border-top: 1px solid var(--border);
  padding: 28px 48px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
}
.footer-logo { display: inline-flex; align-items: flex-end; gap: 6px; }
.footer-logo-icon     { width: 32px; height: 32px; display: block; flex: 0 0 32px; }
.footer-logo-wordmark { height: 26px; width: auto; display: block; transform: translateY(1px); }
.footer-links { display: flex; gap: 20px; list-style: none; }
.footer-links a { font-size: 13px; color: var(--muted); text-decoration: none; transition: color .2s; }
.footer-links a:hover { color: var(--text); }
.footer-copy { font-size: 12px; color: var(--muted); opacity: .7; }

/* ── ANIMATE ── */
@keyframes fadeUp  { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeIn  { from { opacity:0; } to { opacity:1; } }

.reveal { opacity:0; transform:translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity:1; transform:translateY(0); }

/* ── FOCUS ── */
:focus-visible { outline: 3px solid rgba(5,150,105,.5); outline-offset: 3px; border-radius: 4px; }

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

@media (max-width: 900px) {
  nav { padding: 0 20px; }
  .nav-center { display: none; }
  .hero-inner  { grid-template-columns: 1fr; padding: 80px 24px 60px; gap: 48px; }
  .hero-right  { order: -1; }
  .hero-card-wrap { transform: none; }
  .container   { padding: 0 24px; }
  .stats-section, .features-section, .tools-section,
  .steps-section, .pricing-section, .contact-section { padding: 64px 0; }
  .stats-row   { grid-template-columns: 1fr; gap: 12px; }
  .features-grid-3 { grid-template-columns: 1fr; }
  .tools-grid  { grid-template-columns: 1fr; }
  .steps-layout { display: flex; flex-direction: column; gap: 36px; }
  #stepsList   { order: 2; }
  .step-visual { order: 1; position: static; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .form-row-2  { grid-template-columns: 1fr; }
  .cta-section { padding: 80px 24px; }
  footer { flex-direction: column; text-align: center; padding: 28px 24px; }
  .footer-logo { justify-content: center; }
}
