/* =============================================
   SalonBuilder.hu – Landing Page Styles
   ============================================= */

:root {
  --bg: #faf7f4;
  --bg-soft: #f2ede7;
  --surface: #ffffff;
  --text: #1a1410;
  --text-muted: #6b5c52;
  --line: rgba(26, 20, 16, 0.10);
  --accent: #c4704a;
  --accent-dark: #a05535;
  --accent-light: #f5e8df;
  --gradient: linear-gradient(135deg, #c4704a 0%, #e8956a 100%);
  --shadow-sm: 0 4px 12px rgba(59, 34, 21, 0.06);
  --shadow-md: 0 12px 32px rgba(59, 34, 21, 0.12);
  --shadow-lg: 0 24px 64px rgba(59, 34, 21, 0.16);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-xl: 44px; /* Squircle style */
  --container: 1160px;
  --font-sans: "Manrope", sans-serif;
  --font-serif: "Cormorant Garamond", serif;
  
  /* Liquid Glass iOS 26 Design System */
  --glass-bg: rgba(255, 255, 255, 0.45);
  --glass-border: 1px solid rgba(255, 255, 255, 0.6);
  --glass-inner: inset 0 1px 1px rgba(255, 255, 255, 0.7);
  --glass-blur: blur(25px);
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #110e0c;
    --bg-soft: #1a1614;
    --surface: #221d19;
    --text: #f4ede9;
    --text-muted: #a19389;
    --line: rgba(255, 255, 255, 0.1);
    --glass-bg: rgba(30, 26, 24, 0.5);
    --glass-border: 1px solid rgba(255, 255, 255, 0.12);
    --glass-inner: inset 0 1px 1px rgba(255, 255, 255, 0.1);
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 12px 32px rgba(0, 0, 0, 0.6);
    --shadow-lg: 0 24px 64px rgba(0, 0, 0, 0.8);
  }
}

body.dark-mode {
  --bg: #110e0c;
  --bg-soft: #1a1614;
  --surface: #221d19;
  --text: #f4ede9;
  --text-muted: #a19389;
  --line: rgba(255, 255, 255, 0.1);
  --glass-bg: rgba(30, 26, 24, 0.5);
  --glass-border: 1px solid rgba(255, 255, 255, 0.12);
  --glass-inner: inset 0 1px 1px rgba(255, 255, 255, 0.1);
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 12px 32px rgba(0, 0, 0, 0.6);
  --shadow-lg: 0 24px 64px rgba(0, 0, 0, 0.8);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  width: min(var(--container), calc(100% - 2.5rem));
  margin: 0 auto;
}

.section { padding: 96px 0; }
.section-soft { background: var(--bg-soft); }

/* ---- Typography ---- */
h1, h2, h3 { font-family: var(--font-serif); font-weight: 600; line-height: 1.15; }
h1 { font-size: clamp(2.8rem, 6vw, 4.8rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.4rem; }

em { font-style: italic; color: var(--accent); }

.eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.section-sub {
  margin-top: 1rem;
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-lg); /* iOS 26 squircle */
  padding: 0.6rem 1.4rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  white-space: nowrap;
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  min-height: 44px; /* Mobile minimum touch target area */
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gradient);
  color: #fff;
  border: none;
  box-shadow: var(--glass-inner), 0 4px 16px rgba(196, 112, 74, 0.35);
  border: 0.5px solid rgba(255, 255, 255, 0.2);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--glass-inner), 0 10px 24px rgba(196, 112, 74, 0.5);
}

.btn-outline {
  background: var(--glass-bg);
  color: var(--accent);
  border: var(--glass-border);
  box-shadow: var(--shadow-sm);
}
.btn-outline:hover {
  background: var(--bg-soft);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
}
.btn-ghost:hover {
  background: var(--glass-bg);
  border: var(--glass-border);
}

.btn-ghost-white {
  background: transparent;
  color: #fff;
  border: 0.5px solid rgba(255,255,255,0.4);
}
.btn-ghost-white:hover {
  background: rgba(255,255,255,0.15);
}

.btn-sm { padding: 0.45rem 1.1rem; font-size: 0.875rem; }
.btn-lg { padding: 0.85rem 2rem; font-size: 1rem; }
.btn-block { width: 100%; justify-content: center; }

/* ---- Header ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: var(--glass-border);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
}

.brand {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.brand-dot { color: var(--accent); }

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.15s;
}
.nav-link:hover { color: var(--text); }

.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: all 0.25s;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0;
  padding: 1rem 1.25rem 1.5rem;
  border-top: 1px solid var(--line);
  background: var(--surface);
}
.mobile-nav a {
  padding: 0.75rem 0;
  font-size: 1rem;
  font-weight: 500;
  border-bottom: 1px solid var(--line);
  color: var(--text);
}
.mobile-nav a:last-child { border-bottom: none; margin-top: 0.75rem; }
.mobile-nav.open { display: flex; }

/* ---- Hero ---- */
.hero {
  padding: 80px 0 96px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent-light);
  color: var(--accent-dark);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

.pill-dot {
  width: 7px;
  height: 7px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.8); }
}

.hero-lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin: 1.5rem 0 2.5rem;
  max-width: 480px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.hero-social-proof strong { color: var(--text); }

.avatars {
  display: flex;
}
.avatars img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--surface);
  margin-left: -8px;
}
.avatars img:first-child { margin-left: 0; }

/* ---- Hero Visual / Mockup ---- */
.hero-visual {
  position: relative;
}

.mockup-window {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg), var(--glass-inner);
  overflow: hidden;
  border: var(--glass-border);
}

.mockup-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 16px;
  background: rgba(0,0,0,0.03);
  border-bottom: var(--glass-border);
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  box-shadow: inset 0 1px 2px rgba(255,255,255,0.4);
}
.dot.red { background: #ff5f57; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #28c840; }

.mockup-url {
  margin-left: 8px;
  font-size: 0.78rem;
  color: var(--text-muted);
  background: rgba(255,255,255,0.6);
  padding: 3px 12px;
  border-radius: 6px;
}

.mockup-body { padding: 16px; }

.mock-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.mock-logo {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
}

.mock-nav-dots {
  display: flex;
  gap: 8px;
}
.mock-nav-dots span {
  width: 28px;
  height: 6px;
  background: var(--bg-soft);
  border-radius: 3px;
}

.mock-hero-img {
  height: 110px;
  background: linear-gradient(135deg, #c4704a 0%, #e8956a 60%, #f5c09a 100%);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: flex-end;
  padding: 12px;
  margin-bottom: 12px;
}

.mock-hero-overlay {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mock-badge {
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  background: rgba(0,0,0,0.18);
  padding: 3px 8px;
  border-radius: 4px;
  width: fit-content;
}

.mock-btn {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  background: #fff;
  padding: 5px 12px;
  border-radius: 6px;
  width: fit-content;
}

.mock-services {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mock-service-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  background: var(--bg);
  border-radius: 8px;
}

.mock-service-icon { font-size: 1.1rem; }

.mock-service-name {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
}

.mock-service-price {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Floating cards */
.floating-card {
  position: absolute;
  background: var(--surface);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 190px;
  border: 1px solid var(--line);
  animation: float 4s ease-in-out infinite;
}

.card-top {
  top: -16px;
  right: -24px;
  animation-delay: 0s;
}

.card-bottom {
  bottom: 24px;
  left: -24px;
  animation-delay: 2s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.fc-icon { font-size: 1.4rem; }

.floating-card strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
}

.floating-card span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ---- Logos Bar ---- */
.logos-bar {
  padding: 36px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.logos-label {
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.logos-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.logo-pill {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--bg-soft);
  padding: 6px 18px;
  border-radius: 100px;
  border: 1px solid var(--line);
}

/* ---- Steps ---- */
.steps-grid {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.step-card {
  flex: 1;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.step-number {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 600;
  color: var(--accent-light);
  line-height: 1;
  margin-bottom: 16px;
}

.step-icon { font-size: 2rem; margin-bottom: 12px; }

.step-card h3 { margin-bottom: 8px; }
.step-card p { color: var(--text-muted); font-size: 0.95rem; }

.step-arrow {
  font-size: 1.5rem;
  color: var(--accent);
  align-self: center;
  flex-shrink: 0;
  margin-top: -20px;
}

/* ---- Features ---- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
}

.feature-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  box-shadow: var(--glass-inner), var(--shadow-sm);
  transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1.5px;
  background: linear-gradient(90deg, transparent, rgba(196,112,74,0.35), transparent);
  opacity: 0;
  transition: opacity 0.25s;
}
.feature-card:hover::before { opacity: 1; }
.feature-card:hover {
  box-shadow: var(--glass-inner), var(--shadow-md);
  transform: translateY(-4px);
}

.feature-card-wide {
  grid-column: span 2;
}

.feature-icon-wrap {
  font-size: 2rem;
  margin-bottom: 16px;
}

.feature-card h3 { margin-bottom: 8px; }
.feature-card p { color: var(--text-muted); font-size: 0.95rem; }

.feature-list {
  list-style: none;
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.feature-list li {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.domain-preview {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.domain-badge {
  font-size: 0.82rem;
  font-weight: 600;
  background: var(--bg-soft);
  padding: 6px 14px;
  border-radius: 8px;
  color: var(--text-muted);
  font-family: monospace;
  border: 1px solid var(--line);
}

.domain-badge-custom {
  background: var(--accent-light);
  color: var(--accent-dark);
  border-color: rgba(196, 112, 74, 0.2);
}

.domain-arrow { color: var(--accent); font-size: 1.1rem; }

/* ---- Demo Section ---- */
.demo-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.demo-copy .eyebrow { margin-bottom: 0.5rem; }
.demo-copy h2 { margin-bottom: 1rem; }
.demo-copy p { color: var(--text-muted); margin-bottom: 2rem; }

.demo-list {
  list-style: none;
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.demo-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
}

.demo-check {
  width: 22px;
  height: 22px;
  background: var(--accent-light);
  color: var(--accent-dark);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* Phone mockup */
.phone-mockup {
  width: 240px;
  margin: 0 auto;
  background: #1a1410;
  border-radius: 36px;
  padding: 14px;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(0,0,0,0.3);
}

.phone-screen {
  background: var(--surface);
  border-radius: 26px;
  padding: 18px 14px;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
}

.phone-step {}
.phone-step-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.phone-salon-card {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-light);
  border-radius: 10px;
  padding: 8px 10px;
  border: 1px solid rgba(196,112,74,0.2);
}

.phone-salon-avatar {
  width: 28px;
  height: 28px;
  background: var(--gradient);
  color: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  flex-shrink: 0;
}

.phone-salon-card strong { font-size: 0.82rem; display: block; }
.phone-salon-card span { font-size: 0.72rem; color: var(--text-muted); }

.phone-check-icon {
  margin-left: auto;
  color: var(--accent);
  font-size: 0.85rem;
  flex-shrink: 0;
}

.phone-service-chip {
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 8px;
  background: var(--bg-soft);
  color: var(--text-muted);
}
.active-chip {
  background: var(--accent-light);
  color: var(--accent-dark);
}

.phone-time-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.phone-time-grid span {
  text-align: center;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 4px;
  border-radius: 7px;
  background: var(--bg-soft);
  color: var(--text-muted);
  cursor: pointer;
}

.phone-time-grid span.sel {
  background: var(--gradient);
  color: #fff;
}

.phone-btn-wrap { margin-top: auto; }
.phone-btn {
  background: var(--gradient);
  color: #fff;
  border-radius: 10px;
  padding: 10px;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 700;
}

/* ---- Pricing ---- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.pricing-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 38px 30px;
  position: relative;
  box-shadow: var(--glass-inner), var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.pricing-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--glass-inner), var(--shadow-md);
}
.pricing-card-featured {
  border-color: rgba(196,112,74,0.35);
  box-shadow: 0 0 0 1.5px var(--accent), var(--glass-inner), var(--shadow-lg);
  transform: scale(1.03);
}
.pricing-card-featured:hover {
  transform: scale(1.03) translateY(-3px);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-tag {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.pricing-price {
  font-family: var(--font-serif);
  font-size: 2.6rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1;
  margin-bottom: 0.75rem;
}
.pricing-price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-muted);
}

.pricing-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.pricing-list {
  list-style: none;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pricing-list li {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.pricing-list li:has(✗) { opacity: 0.45; }

/* ---- Testimonials ---- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
}

.stars {
  color: #f5a623;
  font-size: 1rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.testimonial-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

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

.testimonial-author img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.testimonial-author strong { display: block; font-size: 0.9rem; }
.testimonial-author span { font-size: 0.8rem; color: var(--text-muted); }

/* ---- CTA Banner ---- */
.cta-banner {
  background: linear-gradient(135deg, #2a1d16 0%, #4a2c1e 100%);
  padding: 80px 0;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.cta-copy h2 {
  color: #fff;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 0.75rem;
}

.cta-copy p {
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
  max-width: 500px;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
  flex-wrap: wrap;
}

/* ---- FAQ ---- */
.faq-section {}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-item summary {
  padding: 20px 24px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.95rem;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  font-size: 1.2rem;
  color: var(--accent);
  transition: transform 0.2s;
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  padding: 0 24px 20px;
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ---- Footer ---- */
.site-footer {
  background: #1a1410;
  color: rgba(255,255,255,0.8);
  padding-top: 72px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .brand {
  color: #fff;
  display: block;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  max-width: 280px;
}

.footer-socials {
  margin-top: 1.25rem;
  display: flex;
  gap: 0.75rem;
  font-size: 1.2rem;
}

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1rem;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-col a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.15s;
}
.footer-col a:hover { color: #fff; }

.footer-bottom {
  padding: 20px 0;
}
.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.3);
  text-align: center;
}

/* ---- Scroll Reveal ---- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .steps-grid { flex-direction: column; }
  .step-arrow { transform: rotate(90deg); align-self: center; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .feature-card-wide { grid-column: span 2; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .pricing-card-featured { transform: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .demo-section { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .hero { padding: 56px 0 64px; }

  .main-nav { display: none; }
  .hamburger { display: flex; }

  h1 { font-size: 2.6rem; }
  h2 { font-size: 1.9rem; }

  .features-grid { grid-template-columns: 1fr; }
  .feature-card-wide { grid-column: span 1; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }

  .hero-actions { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  h1 { font-size: 2.2rem; }
  .pricing-grid { max-width: 100%; }
}
