:root {
  --accent: #2563EB;
  --accent-dim: #EFF6FF;
  --accent-glow: rgba(37,99,235,0.18);
  --indigo: #16A34A;
  --indigo-dim: #F0FDF4;
  --indigo-glow: rgba(22,163,74,0.2);
  --amber: #D97706;
  --amber-dim: rgba(245,158,11,0.1);
  --rose: #DC2626;
  --rose-dim: rgba(244,63,94,0.1);
  --bg: #FAFAF8;
  --surface: #FFFFFF;
  --surface2: #F3F4F6;
  --text: #111827;
  --muted: #6B7280;
  --border: #E5E7EB;
  --border-hover: #BFDBFE;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, .brand { font-family: 'Space Grotesk', sans-serif; }

.bg-orb { position: absolute; border-radius: 50%; filter: blur(120px); pointer-events: none; z-index: 0; }
.grid-bg {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(37,99,235,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(37,99,235,0.04) 1px, transparent 1px);
  background-size: 64px 64px; pointer-events: none; z-index: 0;
}

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1001;
  padding: 0 48px; height: 72px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(250,250,248,0.92); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border); transition: background 0.3s;
}
.brand { font-size: 20px; font-weight: 700; letter-spacing: -0.5px; color: var(--text); text-decoration: none; }
.brand em { color: var(--accent); font-style: normal; }
.brand-logo { height: 36px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a { font-size: 16px; font-weight: 600; color: var(--muted); text-decoration: none; transition: color 0.2s; white-space: nowrap; }
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-links a.active { font-weight: 700; color: var(--accent); }
.btn-nav {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; background: var(--accent); color: #fff;
  font-family: 'Space Grotesk', sans-serif; font-size: 15px; font-weight: 600;
  border-radius: 12px; text-decoration: none; transition: all 0.25s;
  box-shadow: 0 4px 16px rgba(37,99,235,0.15);
}
.btn-nav:hover { background: #1D4ED8; box-shadow: 0 0 36px var(--accent-glow); transform: translateY(-1px); }

/* HAMBURGER */
.hamburger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 40px; height: 40px; background: none; border: none; cursor: pointer;
  padding: 6px; border-radius: 8px; transition: background 0.2s; z-index: 1002;
}
.hamburger:hover { background: var(--surface2); }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.3s ease; transform-origin: center; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* MOBILE MENU */
.mobile-menu {
  display: flex; position: fixed; inset: 0; z-index: 1000;
  background: rgba(250,250,248,0.98); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  opacity: 0; pointer-events: none; visibility: hidden; transition: opacity 0.3s ease;
}
.mobile-menu.open { opacity: 1; pointer-events: auto; visibility: visible; }
.mobile-menu a {
  font-family: 'Space Grotesk', sans-serif; font-size: 26px; font-weight: 600;
  color: var(--muted); text-decoration: none; padding: 14px 32px; border-radius: 14px;
  transition: all 0.2s; width: 100%; max-width: 320px; text-align: center;
}
.mobile-menu a:hover { color: var(--text); background: var(--surface2); }
.mobile-menu .mobile-cta { margin-top: 24px; background: var(--accent); color: #fff !important; box-shadow: 0 0 32px var(--accent-glow); font-size: 17px; }

/* SHARED PAGE HERO */
.page-hero {
  padding: 140px 48px 80px; text-align: center; position: relative; overflow: hidden;
}
.page-hero-inner { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }
.page-hero .section-label { margin-bottom: 16px; }
.page-hero h1 { font-size: clamp(36px, 5vw, 60px); font-weight: 700; letter-spacing: -2px; line-height: 1.08; margin-bottom: 20px; }
.page-hero p { font-size: 17px; color: var(--muted); line-height: 1.7; }

/* SECTIONS */
section { position: relative; overflow: hidden; }
.section-label { font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; display: block; }
.section-title { font-size: clamp(32px, 4vw, 48px); font-weight: 700; letter-spacing: -1px; color: var(--text); line-height: 1.1; margin-bottom: 18px; }
.section-sub { font-size: 16px; color: var(--muted); line-height: 1.7; max-width: 560px; }
.container { max-width: 1240px; margin: 0 auto; padding: 0 48px; width: 100%; }

/* BUTTONS */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 15px 32px; background: var(--accent); color: #fff;
  font-family: 'Space Grotesk', sans-serif; font-size: 15px; font-weight: 600;
  border-radius: 12px; text-decoration: none; transition: all 0.25s;
  box-shadow: 0 0 32px var(--accent-glow);
}
.btn-primary:hover { background: #1D4ED8; box-shadow: 0 0 48px var(--accent-glow); transform: translateY(-2px); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 15px 32px; background: rgba(59,130,246,0.08); color: var(--accent);
  font-family: 'Space Grotesk', sans-serif; font-size: 15px; font-weight: 600;
  border-radius: 12px; border: 1.5px solid rgba(59,130,246,0.4); text-decoration: none; transition: all 0.25s;
}
.btn-ghost:hover { border-color: var(--accent); background: rgba(59,130,246,0.15); transform: translateY(-2px); }

/* WHY */
.why { padding: 80px 0; background: #F8FAFF; }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 64px; }
.why-card { background: var(--bg); border: 1px solid var(--border); padding: 44px 36px; border-radius: 20px; transition: all 0.3s; position: relative; }
.why-card:hover { background: #EFF6FF; border-color: var(--border-hover); }
.why-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform 0.35s ease; border-radius: 0 0 20px 20px; }
.why-card:hover::after { transform: scaleX(1); }
.why-icon { width: 48px; height: 48px; background: var(--accent-dim); border: 1px solid rgba(59,130,246,0.2); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 24px; font-size: 18px; color: var(--accent); }
.why-card:nth-child(2) .why-icon { background: var(--indigo-dim); color: var(--indigo); }
.why-card:nth-child(2)::after { background: var(--indigo); }
.why-card:nth-child(3) .why-icon { background: var(--amber-dim); color: var(--amber); }
.why-card:nth-child(3)::after { background: var(--amber); }
.why-title { font-family: 'Space Grotesk', sans-serif; font-size: 19px; font-weight: 600; color: var(--text); margin-bottom: 12px; }
.why-desc { font-size: 14px; color: var(--muted); line-height: 1.7; }
.why-desc strong { color: var(--text); }

/* PROCESS */
.process { padding: 80px 0; background: #F5F7FA; }
.process-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 64px; }
.step-card { position: relative; }
.step-num { width: 56px; height: 56px; border-radius: 50%; background: var(--surface); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-family: 'Space Grotesk', sans-serif; font-size: 14px; font-weight: 600; color: var(--accent); margin-bottom: 28px; transition: all 0.3s; }
.step-card:hover .step-num { background: var(--accent); color: #fff; border-color: var(--accent); }
.step-card:nth-child(2) .step-num { color: var(--indigo); }
.step-card:nth-child(2):hover .step-num { background: var(--indigo); border-color: var(--indigo); }
.step-card:nth-child(3) .step-num { color: var(--amber); }
.step-card:nth-child(3):hover .step-num { background: var(--amber); border-color: var(--amber); }
.step-title { font-family: 'Space Grotesk', sans-serif; font-size: 18px; font-weight: 600; color: var(--text); margin-bottom: 12px; }
.step-desc { font-size: 14px; color: var(--muted); line-height: 1.7; }
.step-duration { display: inline-block; margin-top: 16px; font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent); background: var(--accent-dim); border: 1px solid rgba(59,130,246,0.2); border-radius: 999px; padding: 4px 12px; }
.step-card:nth-child(2) .step-duration { color: var(--indigo); background: var(--indigo-dim); }
.step-card:nth-child(3) .step-duration { color: var(--amber); background: var(--amber-dim); }

/* TEMPLATES */
.templates { padding: 80px 0; background: #F0F4FB; }
.templates-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 64px; }
.template-card { border-radius: 20px; overflow: hidden; background: var(--bg); border: 1px solid var(--border); transition: all 0.3s ease; cursor: pointer; text-decoration: none; display: flex; flex-direction: column; }
.template-card:hover { border-color: var(--border-hover); transform: translateY(-8px) scale(1.02); box-shadow: 0 12px 40px rgba(37,99,235,0.12); }
.template-preview { height: 180px; position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; font-size: 36px; }
.template-grid-texture { position: absolute; inset: 0; background-image: linear-gradient(rgba(37,99,235,0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(37,99,235,0.06) 1px, transparent 1px); background-size: 15px 15px; opacity: 0.5; }
.tmpl-artisan { background: linear-gradient(135deg, #FDF6EC, #F5E6CC); color: #92400E; }
.tmpl-beauty { background: linear-gradient(135deg, #FDF2F8, #FAE8F5); color: #9D174D; }
.tmpl-boutique { background: linear-gradient(135deg, #EFF6FF, #DBEAFE); color: #1E40AF; }
.tmpl-restaurant { background: linear-gradient(135deg, #F0FDF4, #DCFCE7); color: #166534; }
.template-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 40%, rgba(250,250,248,0.98) 100%); }
.template-preview i { position: relative; z-index: 2; color: inherit; }
.template-meta { padding: 24px 20px; flex: 1; display: flex; flex-direction: column; }
.template-type { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); margin-bottom: 8px; }
.template-name { font-family: 'Space Grotesk', sans-serif; font-size: 18px; font-weight: 600; color: var(--text); margin-bottom: 10px; }
.template-desc { font-size: 13px; color: var(--muted); line-height: 1.6; flex: 1; }
.template-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 20px; font-size: 12.5px; font-weight: 600; color: var(--accent); }

/* INCLUDES GRID */
.includes-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 40px; }
.include-item { display: flex; align-items: center; gap: 14px; font-size: 14.5px; color: var(--muted); background: var(--surface2); border: 1px solid var(--border); border-radius: 10px; padding: 14px 18px; transition: all 0.2s; }
.include-item:hover { border-color: var(--border-hover); color: var(--text); }
.include-check { width: 20px; height: 20px; border-radius: 50%; background: var(--accent-dim); border: 1px solid rgba(59,130,246,0.25); display: flex; align-items: center; justify-content: center; font-size: 10px; color: var(--accent); flex-shrink: 0; }

/* PRICING */
.pricing { padding: 80px 0; background: #FAFAF8; }
.pricing-toggle { display: flex; align-items: center; justify-content: center; gap: 16px; margin: 48px auto 0; width: fit-content; }
.toggle-label { font-size: 14px; font-weight: 500; color: var(--muted); transition: color 0.25s; cursor: pointer; user-select: none; }
.toggle-label.active { color: var(--text); font-weight: 600; }
.recommended-pill { display: inline-block; background: linear-gradient(90deg, var(--accent), #2563EB); color: #fff; font-size: 10px; font-weight: 700; padding: 2px 10px; border-radius: 999px; margin-left: 6px; vertical-align: middle; letter-spacing: 0.04em; text-transform: uppercase; }
.toggle-switch { position: relative; width: 52px; height: 28px; background: var(--surface2); border: 1px solid var(--border); border-radius: 999px; cursor: pointer; transition: all 0.3s; flex-shrink: 0; }
.toggle-switch.on { background: var(--accent); border-color: var(--accent); }
.toggle-knob { position: absolute; top: 3px; left: 3px; width: 20px; height: 20px; border-radius: 50%; background: #fff; transition: transform 0.3s; box-shadow: 0 1px 4px rgba(0,0,0,0.3); }
.toggle-switch.on .toggle-knob { transform: translateX(24px); }
.pricing-panels-container { position: relative; margin-top: 56px; }
.pricing-cards { display: none; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px; }
.pricing-cards.active-panel { display: grid; }
.price-card { background: var(--bg); border: 1px solid var(--border); border-radius: 20px; padding: 40px 36px; transition: all 0.35s; position: relative; overflow: hidden; display: flex; flex-direction: column; }
.price-card:hover { border-color: var(--border-hover); box-shadow: 0 8px 32px rgba(37,99,235,0.10); }
.price-card.featured { border-color: rgba(59,130,246,0.4); background: var(--surface2); }
.price-card.featured::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--accent), rgba(59,130,246,0.3)); }
.price-badge { display: inline-block; font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent); background: var(--accent-dim); border: 1px solid rgba(59,130,246,0.25); border-radius: 999px; padding: 4px 12px; margin-bottom: 20px; width: fit-content; }
.price-name { font-family: 'Space Grotesk', sans-serif; font-size: 22px; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.price-desc { font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); margin-bottom: 28px; }
.price-amount { margin-bottom: 28px; }
.price-number { font-family: 'Space Grotesk', sans-serif; font-size: 52px; font-weight: 700; color: var(--text); letter-spacing: -2px; line-height: 1; }
.price-currency { font-size: 22px; font-weight: 600; color: var(--muted); vertical-align: top; margin-top: 10px; display: inline-block; }
.price-note { font-size: 13px; color: var(--muted); margin-top: 8px; font-weight: 500; }
.price-note strong { color: var(--accent); }
.price-divider { height: 1px; background: var(--border); margin: 0 0 24px; }
.price-features { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; flex: 1; }
.price-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--muted); line-height: 1.5; }
.price-features li .li-check { width: 18px; height: 18px; border-radius: 50%; background: var(--accent-dim); border: 1px solid rgba(59,130,246,0.25); display: flex; align-items: center; justify-content: center; font-size: 10px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.price-cta { display: block; width: 100%; text-align: center; padding: 14px; border-radius: 12px; font-family: 'Space Grotesk', sans-serif; font-size: 14px; font-weight: 600; text-decoration: none; transition: all 0.25s; }
.price-cta.primary { background: var(--accent); color: #fff; box-shadow: 0 4px 16px rgba(37,99,235,0.15); }
.price-cta.primary:hover { background: #1D4ED8; transform: translateY(-1px); }
.price-cta.ghost { background: transparent; color: var(--text); border: 1px solid var(--border); }
.price-cta.ghost:hover { border-color: var(--border-hover); background: var(--accent-dim); color: var(--accent); }
.serenite-card { background: var(--surface2); border: 1px solid rgba(59,130,246,0.25); border-radius: 20px; padding: 32px 40px; margin-top: 40px; display: flex; flex-direction: column; gap: 24px; position: relative; overflow: hidden; }
.serenite-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--accent), rgba(59,130,246,0.2)); }
@media(min-width:768px) { .serenite-card { flex-direction: row; align-items: center; justify-content: space-between; } }
.serenite-title { font-family: 'Space Grotesk', sans-serif; font-size: 16px; font-weight: 600; color: var(--text); margin-bottom: 6px; display: flex; align-items: center; gap: 8px; }
.serenite-title i { color: var(--accent); }
.serenite-desc { font-size: 13px; color: var(--muted); margin-bottom: 16px; }
.serenite-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.serenite-pill { background: #EFF6FF; border: 1px solid #BFDBFE; color: #2563EB; border-radius: 999px; padding: 4px 12px; font-size: 12px; font-weight: 600; }
.serenite-price { text-align: center; flex-shrink: 0; }
.serenite-price .price-number { font-size: 42px; }
.serenite-price p { font-size: 12px; color: var(--muted); margin-top: 4px; }
.serenite-price a { display: inline-block; margin-top: 12px; background: transparent; border: 1px solid var(--border); color: var(--text); font-family: 'Space Grotesk', sans-serif; font-size: 13px; font-weight: 600; padding: 10px 24px; border-radius: 999px; text-decoration: none; transition: all 0.2s; }
.serenite-price a:hover { border-color: var(--border-hover); background: var(--accent-dim); color: var(--accent); }
.pricing-note { text-align: center; margin-top: 32px; font-size: 13px; color: var(--muted); }
.pricing-note a { color: var(--accent); text-decoration: none; }

/* ABOUT */
.about { padding: 80px 0; background: #F5F5F3; }
.about-inner { display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; align-items: start; }
.about-card-main { background: var(--surface); border: 1px solid var(--border); border-radius: 20px; padding: 32px; position: relative; overflow: hidden; }
.about-card-main::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--accent), transparent); }
.about-metric { display: flex; align-items: center; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--border); }
.about-metric:last-child { border-bottom: none; }
.about-metric-icon { width: 40px; height: 40px; border-radius: 8px; background: var(--accent-dim); display: flex; align-items: center; justify-content: center; font-size: 15px; color: var(--accent); flex-shrink: 0; }
.about-metric:nth-child(2) .about-metric-icon { background: var(--indigo-dim); color: var(--indigo); }
.about-metric:nth-child(3) .about-metric-icon { background: var(--amber-dim); color: var(--amber); }
.about-metric:nth-child(4) .about-metric-icon { background: var(--rose-dim); color: var(--rose); }
.about-metric-text strong { font-family: 'Space Grotesk', sans-serif; font-size: 15px; font-weight: 600; color: var(--text); display: block; margin-bottom: 2px; }
.about-metric-text span { font-size: 12.5px; color: var(--muted); }
.about-float-card { background: var(--surface2); border: 1px solid var(--border-hover); border-radius: 16px; padding: 16px 20px; display: flex; align-items: center; gap: 14px; margin-top: 24px; }
.about-float-card i { font-size: 18px; color: var(--accent); }
.float-text strong { font-family: 'Space Grotesk', sans-serif; font-size: 14px; font-weight: 600; color: var(--text); display: block; }
.float-text span { font-size: 11px; color: var(--muted); }
.includes-list { list-style: none; display: flex; flex-direction: column; gap: 16px; margin-top: 32px; }
.includes-list li { display: grid; grid-template-columns: 24px 1fr; gap: 16px; font-size: 14.5px; color: var(--muted); line-height: 1.6; align-items: start; }
.includes-list li strong { color: var(--text); font-weight: 600; }
.includes-list .li-icon { width: 24px; height: 24px; border-radius: 50%; background: var(--accent-dim); border: 1px solid rgba(59,130,246,0.25); display: flex; align-items: center; justify-content: center; font-size: 11px; color: var(--accent); }
.about-badges { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 24px; }
.about-badge { font-size: 12px; font-weight: 500; color: var(--accent); background: var(--accent-dim); border: 1px solid rgba(59,130,246,0.2); border-radius: 999px; padding: 5px 14px; }

/* FAQ */
.faq { padding: 80px 0; background: #F3F4F6; }
.faq-list { max-width: 760px; margin: 64px auto 0; display: flex; flex-direction: column; gap: 8px; }
.faq-item { border: 1px solid var(--border); border-radius: 14px; overflow: hidden; transition: border-color 0.25s; background: #FFFFFF; }
.faq-item:hover, .faq-item.open { border-color: rgba(59,130,246,0.25); }
.faq-q { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; cursor: pointer; font-family: 'Space Grotesk', sans-serif; font-size: 15px; font-weight: 600; color: var(--text); user-select: none; gap: 16px; }
.faq-chevron { width: 20px; height: 20px; border-radius: 50%; background: var(--surface2); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 10px; color: var(--muted); flex-shrink: 0; transition: all 0.25s; }
.faq-item.open .faq-chevron { background: var(--accent-dim); border-color: rgba(59,130,246,0.3); color: var(--accent); transform: rotate(180deg); }
.faq-a { padding: 0 24px 20px; font-size: 14px; color: var(--muted); line-height: 1.75; display: none; }
.faq-a a { color: var(--accent); text-decoration: none; }
.faq-a strong { color: var(--text); }
.faq-item.open .faq-a { display: block; }

/* CONTACT */
.contact-section { padding: 80px 0; background: #F8FAFF; }
.contact-inner { display: grid; grid-template-columns: 1fr 1.3fr; gap: 80px; align-items: start; }
.contact-details { display: flex; flex-direction: column; gap: 16px; margin-top: 40px; }
.contact-detail { display: flex; align-items: center; gap: 14px; font-size: 14px; color: var(--muted); text-decoration: none; transition: color 0.2s; }
.contact-detail:hover { color: var(--accent); }
.contact-detail-icon { width: 36px; height: 36px; border-radius: 8px; background: var(--accent-dim); border: 1px solid rgba(59,130,246,0.2); display: flex; align-items: center; justify-content: center; font-size: 14px; color: var(--accent); flex-shrink: 0; }
.contact-detail:nth-child(2) .contact-detail-icon { background: var(--indigo-dim); color: var(--indigo); }
.contact-detail:nth-child(3) .contact-detail-icon { background: var(--amber-dim); color: var(--amber); }
.contact-form { background: var(--bg); border: 1px solid var(--border); border-radius: 20px; padding: 40px; }
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 13px; font-weight: 500; color: var(--muted); margin-bottom: 8px; }
.form-input, .form-select, .form-textarea { width: 100%; padding: 12px 16px; background: var(--surface); border: 1px solid var(--border); border-radius: 10px; color: var(--text); font-family: 'DM Sans', sans-serif; font-size: 14px; outline: none; transition: border-color 0.2s; }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: rgba(37,99,235,0.5); }
.form-input::placeholder, .form-textarea::placeholder { color: var(--muted); opacity: 0.6; }
.form-select { appearance: none; cursor: pointer; }
.form-textarea { resize: vertical; min-height: 120px; }
.form-checkbox { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 24px; }
.form-checkbox input { width: 16px; height: 16px; margin-top: 2px; accent-color: var(--accent); flex-shrink: 0; cursor: pointer; }
.form-checkbox label { font-size: 13px; color: var(--muted); line-height: 1.5; }
.form-checkbox a { color: var(--accent); text-decoration: none; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit { width: 100%; padding: 15px; background: var(--accent); color: #fff; font-family: 'Space Grotesk', sans-serif; font-size: 15px; font-weight: 600; border: none; border-radius: 12px; cursor: pointer; transition: all 0.25s; box-shadow: 0 4px 16px rgba(37,99,235,0.15); }
.form-submit:hover { background: #1D4ED8; transform: translateY(-1px); }

/* LEGAL */
.legal { padding: 80px 0; background: var(--bg); border-top: 1px solid var(--border); }
.legal-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 40px; }
.legal-block { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 28px 32px; }
.legal-block h3 { font-family: 'Space Grotesk', sans-serif; font-size: 16px; font-weight: 600; color: var(--text); margin-bottom: 14px; display: flex; align-items: center; gap: 10px; }
.legal-block h3 i { color: var(--accent); }
.legal-block p, .legal-block address { font-size: 13.5px; color: var(--muted); line-height: 1.8; font-style: normal; }
.legal-block a { color: var(--accent); text-decoration: none; }
.legal-note { text-align: center; margin-top: 32px; font-size: 12px; color: var(--muted); opacity: 0.6; }

/* CTA SECTION */
.cta-section { padding: 80px 0; background: var(--accent-dim); text-align: center; }
.cta-section h2 { font-size: clamp(28px, 4vw, 42px); font-weight: 700; letter-spacing: -1px; color: var(--text); margin-bottom: 16px; }
.cta-section p { font-size: 16px; color: var(--muted); margin-bottom: 36px; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* FOOTER */
footer { background: var(--surface); border-top: 1px solid var(--border); padding: 48px; }
.footer-inner { max-width: 1160px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.footer-links { display: flex; gap: 28px; list-style: none; flex-wrap: wrap; }
.footer-links a { font-size: 13px; color: var(--muted); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--text); }
.footer-copy { font-size: 12px; color: var(--muted); }
.footer-sub { font-size: 12px; color: var(--muted); opacity: 0.6; margin-top: 2px; }

/* ANIMATIONS */
@keyframes fadeUp { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:translateY(0); } }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
@keyframes pulse { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:0.4; transform:scale(0.7); } }

/* HERO ELEMENTS */
.hero-badge { display: inline-flex; align-items: center; gap: 8px; padding: 7px 18px; background: var(--accent-dim); border: 1px solid rgba(59,130,246,0.25); border-radius: 999px; font-size: 12px; font-weight: 500; color: var(--accent); letter-spacing: 0.04em; margin-bottom: 24px; }
.hero-badge::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); animation: pulse 2s infinite; }
.hero-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 36px; }
.hero-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; max-width: 800px; margin: 48px auto 0; }
.stat-item { padding: 20px 10px; text-align: center; border-left: 1px solid var(--border); }
.stat-item:first-child { border-left: none; }
.stat-value { font-family: 'Space Grotesk', sans-serif; font-size: 28px; font-weight: 700; color: var(--text); display: block; }
.stat-label { font-size: 12px; color: var(--muted); font-weight: 400; display: block; margin-top: 3px; }

/* RESPONSIVE */
@media (max-width: 1100px) {
  .templates-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  nav { padding: 0 24px; }
  .nav-links, .btn-nav { display: none; }
  .hamburger { display: flex; }
  .container { padding: 0 24px; }
  .page-hero { padding: 120px 24px 60px; }
  .why-grid, .process-steps { grid-template-columns: 1fr; gap: 16px; }
  .templates-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .about-inner, .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .contact-form { padding: 24px; }
  .legal-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-left: none; background: var(--surface); border: 1px solid var(--border); border-radius: 12px; }
  footer { padding: 32px 24px 48px; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .includes-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .cta-btns { flex-direction: column; align-items: stretch; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-ghost { justify-content: center; }
  /* Tarifs : 2 colonnes conservées sur mobile */
  .pricing-cards { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .price-card { padding: 20px 14px; }
  .price-number { font-size: 36px; }
  .price-name { font-size: 15px; }
  .price-desc { font-size: 11px; }
  .price-features li { font-size: 12px; }
  .price-badge { font-size: 10px; padding: 3px 8px; }
  .price-note { font-size: 11px; }
}
