/* ─────────────────────────────────────────────────────────────
   UbuntuWeb — styles.css
   ───────────────────────────────────────────────────────────── */

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

:root {
  --accent:       #6c47ff;
  --accent-light: #8b6bff;
  --accent-dark:  #4f2fe0;
  --bg:           #0b0c10;
  --bg-2:         #111318;
  --bg-3:         #181b24;
  --surface:      #1e2230;
  --border:       #272b3a;
  --text:         #e8eaf0;
  --text-muted:   #8b90a8;
  --text-dim:     #5a5f7a;
  --white:        #ffffff;
  --radius:       12px;
  --radius-lg:    20px;
  --shadow:       0 4px 24px rgba(0,0,0,.45);
  --transition:   .22s ease;
}

html { scroll-behavior: smooth; }

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

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

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

/* ── Typography helpers ── */
.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 56px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(108,71,255,.4);
}
.btn-primary:hover { background: var(--accent-light); box-shadow: 0 6px 28px rgba(108,71,255,.55); }

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn-ghost:hover { border-color: var(--accent-light); color: var(--accent-light); }

.btn-outline {
  background: transparent;
  color: var(--accent-light);
  border-color: var(--accent);
}
.btn-outline:hover { background: var(--accent); color: var(--white); }

.btn-full { width: 100%; }

/* ── Gradient text ── */
.gradient-text {
  background: linear-gradient(135deg, #6c47ff 0%, #a78bfa 50%, #38bdf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─────────────────────────────────────────────────────────────
   NAV
   ───────────────────────────────────────────────────────────── */
.nav-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background var(--transition), border-color var(--transition), backdrop-filter var(--transition);
  border-bottom: 1px solid transparent;
}

.nav-header.scrolled {
  background: rgba(11,12,16,.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-color: var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.logo {
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.5px;
}
.logo span { color: var(--accent-light); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--white); }

.nav-links .nav-cta {
  background: var(--accent);
  color: var(--white);
  padding: 9px 20px;
  border-radius: 8px;
  font-weight: 600;
  transition: background var(--transition), transform var(--transition);
}
.nav-links .nav-cta:hover { background: var(--accent-light); transform: translateY(-1px); color: var(--white); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─────────────────────────────────────────────────────────────
   HERO
   ───────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(108,71,255,.18) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 80% 60%, rgba(56,189,248,.08) 0%, transparent 60%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  background: rgba(108,71,255,.15);
  border: 1px solid rgba(108,71,255,.35);
  color: var(--accent-light);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
  letter-spacing: .04em;
}

.hero h1 {
  font-size: clamp(38px, 6vw, 72px);
  font-weight: 900;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 24px;
}

.hero-sub {
  font-size: clamp(16px, 2.2vw, 20px);
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto 40px;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 64px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 32px;
  width: fit-content;
  margin: 0 auto;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 28px;
}

.stat-num {
  font-size: 26px;
  font-weight: 800;
  color: var(--white);
}

.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 2px;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-dim);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

.scroll-arrow {
  width: 14px;
  height: 14px;
  border-right: 2px solid var(--text-dim);
  border-bottom: 2px solid var(--text-dim);
  transform: rotate(45deg);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ─────────────────────────────────────────────────────────────
   INDUSTRIES
   ───────────────────────────────────────────────────────────── */
.industries {
  padding: 100px 0;
  background: var(--bg-2);
}

.industries .section-sub { margin-bottom: 52px; }

.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}

.industry-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  cursor: default;
}

.industry-card:hover {
  border-color: rgba(108,71,255,.5);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,.4);
}

.industry-icon {
  font-size: 32px;
  margin-bottom: 14px;
}

.industry-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.industry-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ─────────────────────────────────────────────────────────────
   SERVICES
   ───────────────────────────────────────────────────────────── */
.services {
  padding: 100px 0;
  background: var(--bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 52px;
}

.service-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: border-color var(--transition), transform var(--transition);
}

.service-card:hover {
  border-color: rgba(108,71,255,.4);
  transform: translateY(-3px);
}

.service-icon-wrap {
  width: 48px;
  height: 48px;
  background: rgba(108,71,255,.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--accent-light);
}

.service-icon-wrap svg {
  width: 24px;
  height: 24px;
}

.service-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ─────────────────────────────────────────────────────────────
   HOW IT WORKS
   ───────────────────────────────────────────────────────────── */
.how-it-works {
  padding: 100px 0;
  background: var(--bg-2);
}

.steps {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 56px;
  flex-wrap: wrap;
  justify-content: center;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 200px;
  flex: 1 1 180px;
}

.step-num {
  font-size: 48px;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}

.step-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.step-content p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
}

.step-connector {
  flex: 0 0 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent) 0%, rgba(108,71,255,.2) 100%);
  margin-bottom: 48px;
  position: relative;
}

/* ─────────────────────────────────────────────────────────────
   PORTFOLIO
   ───────────────────────────────────────────────────────────── */
.portfolio {
  padding: 100px 0;
  background: var(--bg);
}

.portfolio .section-sub { margin-bottom: 52px; }

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}

.portfolio-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.portfolio-card:hover {
  border-color: rgba(108,71,255,.5);
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0,0,0,.5);
}

/* Browser mock */
.portfolio-preview {
  background: #141520;
  border-radius: var(--radius) var(--radius) 0 0;
  overflow: hidden;
}

.browser-bar {
  background: #1e2030;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.browser-dots {
  display: flex;
  gap: 5px;
}
.browser-dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #3a3d4a;
}
.browser-dots span:nth-child(1) { background: #ff5f57; }
.browser-dots span:nth-child(2) { background: #ffbd2e; }
.browser-dots span:nth-child(3) { background: #28c840; }

.browser-url {
  flex: 1;
  background: #282b3a;
  border-radius: 4px;
  font-size: 11px;
  color: var(--text-dim);
  padding: 4px 10px;
  text-align: center;
}

.mock-site {
  padding: 12px;
  min-height: 160px;
}

.dark-theme { background: #0f1117; }
.blue-theme { background: #0a1628; }
.warm-theme { background: #1a0e0a; }
.gold-theme { background: #120f05; }

.mock-nav {
  height: 8px;
  background: rgba(255,255,255,.06);
  border-radius: 4px;
  margin-bottom: 14px;
}

.mock-hero-block {
  background: rgba(255,255,255,.04);
  border-radius: 8px;
  padding: 14px;
  margin-bottom: 10px;
}

.mock-tag {
  height: 8px;
  width: 60px;
  border-radius: 4px;
  margin-bottom: 8px;
  opacity: .7;
}
.mock-tag.auto     { background: #ff6b35; }
.mock-tag.hvac     { background: #38bdf8; }
.mock-tag.restaurant { background: #f97316; }
.mock-tag.barber   { background: #d4a017; }

.mock-title-lg {
  height: 10px;
  width: 80%;
  background: rgba(255,255,255,.15);
  border-radius: 4px;
  margin-bottom: 6px;
}
.mock-title-sm {
  height: 8px;
  width: 55%;
  background: rgba(255,255,255,.08);
  border-radius: 4px;
  margin-bottom: 12px;
}
.mock-cta-btn {
  height: 18px;
  width: 80px;
  border-radius: 5px;
  background: var(--accent);
  opacity: .8;
}
.blue-btn  { background: #38bdf8; }
.warm-btn  { background: #f97316; }
.gold-btn  { background: #d4a017; }

.mock-row {
  display: flex;
  gap: 6px;
}
.mock-box {
  flex: 1;
  height: 28px;
  background: rgba(255,255,255,.05);
  border-radius: 5px;
}

.portfolio-info {
  padding: 20px 24px;
}

.portfolio-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: 4px;
  padding: 3px 10px;
  margin-bottom: 10px;
}
.auto-tag   { background: rgba(255,107,53,.15); color: #ff6b35; }
.hvac-tag   { background: rgba(56,189,248,.15); color: #38bdf8; }
.rest-tag   { background: rgba(249,115,22,.15); color: #f97316; }
.barber-tag { background: rgba(212,160,23,.15); color: #d4a017; }

.portfolio-info h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.portfolio-info p {
  font-size: 13px;
  color: var(--text-muted);
}

/* ─────────────────────────────────────────────────────────────
   COMPARISON
   ───────────────────────────────────────────────────────────── */
.comparison {
  padding: 100px 0;
  background: var(--bg);
}

.comparison .section-sub { margin-bottom: 52px; }

.comparison-table {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  width: 100%;
}

/* Header row */
.comparison-header {
  display: grid;
  grid-template-columns: 2fr 1.4fr 1.4fr 1.4fr;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.comp-col-label {
  padding: 16px 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.comp-col-label.comp-us {
  background: rgba(108,71,255,.15);
  color: var(--accent-light);
  border-left: 2px solid var(--accent);
  border-right: 2px solid var(--accent);
}

/* Data rows */
.comparison-row {
  display: grid;
  grid-template-columns: 2fr 1.4fr 1.4fr 1.4fr;
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}
.comparison-row:hover { background: rgba(255,255,255,.02); }

.comp-feature {
  padding: 16px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  display: flex;
  align-items: center;
}

.comp-cell {
  padding: 16px 20px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.comp-cell.comp-us {
  background: rgba(108,71,255,.07);
  border-left: 2px solid var(--accent);
  border-right: 2px solid var(--accent);
}

.comp-yes  { color: #34d399; font-weight: 800; font-size: 16px; }
.comp-no   { color: #f87171; font-weight: 800; font-size: 16px; }
.comp-maybe { color: #fbbf24; font-weight: 800; font-size: 16px; }
.comp-note { font-size: 12px; color: var(--text-dim); }

/* Footer row */
.comparison-footer {
  display: grid;
  grid-template-columns: 2fr 1.4fr 1.4fr 1.4fr;
  background: var(--bg-3);
  border-top: 2px solid var(--border);
}

.comp-footer-label {
  padding: 18px 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-dim);
  display: flex;
  align-items: center;
}

.comp-footer-cell {
  padding: 18px 20px;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
}

.comp-footer-cell.comp-us {
  background: rgba(108,71,255,.1);
  border-left: 2px solid var(--accent);
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  border-radius: 0 0 0 0;
}

.comp-winner { color: var(--accent-light); }
.comp-loser  { color: var(--text-dim); }

.comparison-cta {
  text-align: center;
  margin-top: 40px;
}

/* Responsive: mobile portrait — feature label on top, 3 cells below */
@media (max-width: 720px) {
  /* Header: hide "Feature" label, show 3 equal brand columns */
  .comparison-header {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .comparison-header .comp-col-label:first-child {
    display: none;
  }
  .comp-col-label {
    padding: 12px 8px;
    font-size: 10px;
    text-align: center;
    justify-content: center;
  }

  /* Data rows: feature spans full width, 3 cells beneath */
  .comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto;
  }
  .comp-feature {
    grid-column: 1 / -1;
    padding: 12px 14px 8px;
    font-size: 13px;
    border-bottom: 1px solid rgba(255,255,255,.06);
  }
  .comp-cell {
    padding: 10px 8px;
    font-size: 12px;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    gap: 2px;
  }
  .comp-note {
    font-size: 10px;
    line-height: 1.3;
    text-align: center;
  }
  .comp-yes, .comp-no, .comp-maybe {
    font-size: 14px;
  }

  /* Keep UbuntuWeb column highlight, remove side borders */
  .comp-col-label.comp-us,
  .comp-cell.comp-us {
    border-left: none;
    border-right: none;
    border-top: 2px solid var(--accent);
  }

  /* Footer: bottom-line label spans full width, 3 cells beneath */
  .comparison-footer {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto;
  }
  .comp-footer-label {
    grid-column: 1 / -1;
    padding: 12px 14px 8px;
    border-bottom: 1px solid rgba(255,255,255,.06);
  }
  .comp-footer-cell {
    padding: 10px 8px;
    font-size: 11px;
    text-align: center;
    justify-content: center;
    flex-direction: column;
  }
  .comp-footer-cell.comp-us {
    border-left: none;
    border-right: none;
    border-bottom: none;
    border-top: 2px solid var(--accent);
  }
}

/* ─────────────────────────────────────────────────────────────
   PRICING
   ───────────────────────────────────────────────────────────── */
.pricing {
  padding: 100px 0;
  background: var(--bg-2);
}

.pricing .section-sub { margin-bottom: 52px; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  align-items: start;
}

.pricing-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  transition: border-color var(--transition), transform var(--transition);
}
.pricing-card:hover { transform: translateY(-3px); }

.pricing-featured {
  background: linear-gradient(160deg, #1a1540 0%, #12102e 100%);
  border-color: var(--accent);
  transform: scale(1.03);
  box-shadow: 0 0 60px rgba(108,71,255,.25);
}
.pricing-featured:hover { transform: scale(1.03) translateY(-3px); }

.pricing-popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-tier {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.pricing-price {
  font-size: 44px;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1;
}
.pricing-price span {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-muted);
}

.pricing-desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
}

.check {
  color: #34d399;
  font-weight: 800;
  flex-shrink: 0;
}

.pricing-turnaround {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-light);
  background: rgba(108,71,255,.12);
  border: 1px solid rgba(108,71,255,.25);
  border-radius: 100px;
  padding: 4px 12px;
  margin-bottom: 14px;
}

.pricing-note {
  text-align: center;
  color: var(--text-muted);
  font-size: 14px;
  margin-top: 36px;
}
.pricing-note strong { color: var(--text); }

.pricing-deposit {
  text-align: center;
  color: var(--text-muted);
  font-size: 13px;
  margin-top: 12px;
  padding: 12px 20px;
  background: rgba(108,71,255,.07);
  border: 1px solid rgba(108,71,255,.2);
  border-radius: var(--radius);
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.pricing-deposit strong { color: var(--accent-light); }

/* ─────────────────────────────────────────────────────────────
   TESTIMONIALS
   ───────────────────────────────────────────────────────────── */
.testimonials {
  padding: 100px 0;
  background: var(--bg);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 52px;
}

.testimonial-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: border-color var(--transition);
}
.testimonial-card:hover { border-color: rgba(108,71,255,.4); }

.stars {
  color: #fbbf24;
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial-card > p {
  font-size: 15px;
  color: var(--text);
  line-height: 1.65;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
}
.testimonial-author span {
  font-size: 13px;
  color: var(--text-muted);
}

/* ─────────────────────────────────────────────────────────────
   CONTACT
   ───────────────────────────────────────────────────────────── */
.contact {
  padding: 100px 0;
  background: var(--bg-2);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 72px;
  align-items: start;
}

.contact-copy .section-title { margin-bottom: 16px; }
.contact-copy > p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
}

.contact-perks {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-perks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--text);
}

/* Form */
.contact-form {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 11px 14px;
  font-size: 14px;
  color: var(--text);
  font-family: inherit;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-dim); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(108,71,255,.2);
}

.form-group select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238b90a8' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }

.form-group select option { background: var(--surface); color: var(--text); }

.form-group textarea { resize: vertical; min-height: 110px; }

.form-success {
  display: none;
  background: rgba(52,211,153,.1);
  border: 1px solid rgba(52,211,153,.35);
  border-radius: 8px;
  padding: 14px 18px;
  color: #34d399;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}
.form-success.visible { display: block; }

/* ─────────────────────────────────────────────────────────────
   FOOTER
   ───────────────────────────────────────────────────────────── */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding-top: 48px;
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  padding-bottom: 40px;
  flex-wrap: wrap;
}

.footer-brand p {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 10px;
  max-width: 280px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-contact-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.footer-email {
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-email:hover { color: var(--white); }

.footer-yoco {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
}
.yoco-logo {
  width: 60px;
  height: auto;
  border-radius: 8px;
}
.footer-yoco span {
  font-size: 12px;
  color: var(--text-dim);
}

.footer-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 24px;
  text-align: center;
}
.footer-bottom p {
  font-size: 13px;
  color: var(--text-dim);
}

/* ─────────────────────────────────────────────────────────────
   SCROLL-IN ANIMATIONS
   ───────────────────────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─────────────────────────────────────────────────────────────
   RESPONSIVE
   ───────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .steps { gap: 32px; flex-direction: column; align-items: flex-start; }
  .step-connector { width: 2px; height: 32px; background: linear-gradient(180deg, var(--accent) 0%, rgba(108,71,255,.2) 100%); margin: 0 0 0 16px; flex: 0 0 32px; }
  .step { max-width: 100%; flex: unset; flex-direction: row; text-align: left; gap: 20px; align-items: flex-start; }
  .step-num { font-size: 36px; min-width: 56px; }
  .pricing-featured { transform: none; }
  .pricing-featured:hover { transform: translateY(-3px); }
}

@media (max-width: 720px) {
  .nav-links { display: none; position: fixed; top: 68px; left: 0; right: 0; background: rgba(11,12,16,.97); border-bottom: 1px solid var(--border); padding: 20px 24px 28px; flex-direction: column; gap: 0; align-items: flex-start; }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 13px 0; font-size: 16px; width: 100%; border-bottom: 1px solid var(--border); }
  .nav-links a:last-child { border-bottom: none; margin-top: 8px; }
  .nav-links .nav-cta { margin-top: 16px; text-align: center; width: 100%; justify-content: center; }
  .hamburger { display: flex; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 20px; padding: 24px; }
  .stat-divider { width: 100%; height: 1px; }
  .contact-form { padding: 24px; }
  .footer-inner { flex-direction: column; gap: 24px; }
  .footer-links { gap: 16px; }
}

@media (max-width: 480px) {
  .section-title { font-size: 26px; }
  .hero h1 { font-size: 34px; }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; }
  .pricing-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
}
