/* ─── WPLAUNCH – styles.css ─── */
:root {
  --navy: #0f1e35;
  --navy-light: #162843;
  --blue: #1a4fd8;
  --blue-bright: #2563ff;
  --cyan: #06c0d0;
  --orange: #f97316;
  --green: #10b981;
  --red: #ef4444;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-400: #94a3b8;
  --gray-600: #475569;
  --gray-800: #1e293b;
  --white: #ffffff;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --radius: 12px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 24px rgba(0,0,0,0.1);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); color: var(--gray-800); background: var(--white); line-height: 1.6; overflow-x: hidden; }

/* ─── NAVIGATION ─── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(15,30,53,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.nav-logo { font-family: var(--font-display); font-size: 1.4rem; font-weight: 800; color: var(--white); letter-spacing: -0.02em; text-decoration: none; }
.nav-logo span { color: var(--cyan); }
.nav-links { display: flex; gap: 1.5rem; list-style: none; }
.nav-links a { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 0.875rem; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--white); }
.nav-cta { background: var(--blue-bright) !important; color: var(--white) !important; padding: 0.5rem 1.25rem !important; border-radius: 6px !important; font-weight: 600 !important; }
.nav-cta:hover { background: var(--blue) !important; }
.nav-burger { display: none; cursor: pointer; color: white; font-size: 1.5rem; background: none; border: none; }

/* ─── SECTIONS ─── */
section { padding: 5rem 2rem; }
.container { max-width: 1100px; margin: 0 auto; }
.section-tag { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--blue-bright); margin-bottom: 0.75rem; }
.section-title { font-family: var(--font-display); font-size: clamp(1.9rem, 4vw, 2.8rem); font-weight: 800; line-height: 1.15; letter-spacing: -0.025em; color: var(--navy); margin-bottom: 1rem; }
.section-subtitle { color: var(--gray-600); font-size: 1.05rem; max-width: 580px; font-weight: 300; }
.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }

/* ─── BUTTONS ─── */
.btn-primary {
  background: var(--blue-bright); color: white; text-decoration: none;
  padding: 0.9rem 2rem; border-radius: 8px; font-weight: 600; font-size: 1rem;
  border: none; cursor: pointer; transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  box-shadow: 0 4px 24px rgba(37,99,255,0.4);
  display: inline-flex; align-items: center; gap: 0.5rem; font-family: var(--font-body);
}
.btn-primary:hover { background: #1d56f0; transform: translateY(-2px); box-shadow: 0 8px 32px rgba(37,99,255,0.5); }
.btn-secondary {
  background: rgba(255,255,255,0.1); color: white; text-decoration: none;
  padding: 0.9rem 2rem; border-radius: 8px; font-weight: 500; font-size: 1rem;
  border: 1px solid rgba(255,255,255,0.2); cursor: pointer; transition: background 0.2s;
  display: inline-flex; align-items: center; gap: 0.5rem;
}
.btn-secondary:hover { background: rgba(255,255,255,0.18); }

/* ─── HERO ─── */
#hero { background: var(--navy); padding: 7rem 2rem 5rem; text-align: center; position: relative; overflow: hidden; }
#hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% -10%, rgba(37,99,255,0.3) 0%, transparent 70%),
              radial-gradient(ellipse 40% 40% at 80% 80%, rgba(6,192,208,0.15) 0%, transparent 60%);
  pointer-events: none;
}
.hero-badge { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(37,99,255,0.2); border: 1px solid rgba(37,99,255,0.4); color: var(--cyan); font-size: 0.8rem; font-weight: 600; padding: 0.35rem 1rem; border-radius: 100px; margin-bottom: 1.5rem; letter-spacing: 0.05em; text-transform: uppercase; }
#hero h1 { font-family: var(--font-display); font-size: clamp(2.4rem, 6vw, 4.5rem); font-weight: 800; line-height: 1.08; color: var(--white); letter-spacing: -0.03em; max-width: 800px; margin: 0 auto 1.5rem; }
#hero h1 em { font-style: normal; background: linear-gradient(135deg, var(--cyan) 0%, var(--blue-bright) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
#hero p { font-size: 1.2rem; color: rgba(255,255,255,0.7); max-width: 560px; margin: 0 auto 2.5rem; font-weight: 300; }
.hero-ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-trust { margin-top: 3.5rem; display: flex; align-items: center; justify-content: center; gap: 2rem; flex-wrap: wrap; }
.trust-item { color: rgba(255,255,255,0.5); font-size: 0.85rem; display: flex; align-items: center; gap: 0.4rem; }
.trust-check { color: var(--green); }

/* ─── PROBLEMS ─── */
#problems { background: var(--gray-50); }
.problems-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.problem-card { background: white; border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 1.75rem; }
.problem-icon { font-size: 2rem; margin-bottom: 1rem; }
.problem-card h3 { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--navy); }
.problem-card p { font-size: 0.9rem; color: var(--gray-600); }
.problem-arrow { background: var(--navy); color: white; text-align: center; padding: 2rem; border-radius: var(--radius); display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 1rem; }
.problem-arrow h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 800; color: white; }
.problem-arrow p { font-size: 0.9rem; color: rgba(255,255,255,0.7); }

/* ─── PRICING ─── */
#offres { background: white; }
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; margin-top: 3rem; }
.pricing-card { border: 1.5px solid var(--gray-200); border-radius: 14px; padding: 1.75rem; position: relative; transition: transform 0.2s, box-shadow 0.2s; background: white; }
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pricing-card.featured { border-color: var(--orange); border-width: 2px; box-shadow: 0 4px 24px rgba(249,115,22,0.15); }
.pricing-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--orange); color: white; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; padding: 0.25rem 0.85rem; border-radius: 100px; white-space: nowrap; }
.pricing-icon { font-size: 1.5rem; margin-bottom: 0.5rem; }
.pricing-name { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; color: var(--navy); margin-bottom: 0.75rem; }
.pricing-price { font-family: var(--font-display); font-size: 2rem; font-weight: 800; color: var(--orange); line-height: 1.1; margin-bottom: 0.25rem; }
.pricing-period { font-size: 0.8rem; color: var(--gray-400); margin-bottom: 1.25rem; }
.pricing-features { list-style: none; margin-bottom: 1.5rem; }
.pricing-features li { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.875rem; color: var(--gray-600); padding: 0.35rem 0; border-bottom: 1px solid var(--gray-100); }
.pricing-features li:last-child { border: none; }
.feat-yes { color: var(--green); font-weight: 700; }
.feat-no  { color: var(--red);   font-weight: 700; }
.domain-checker { margin: 1rem 0; display: flex; flex-direction: column; gap: 0.5rem; }
.domain-checker label { font-size: 0.75rem; color: var(--gray-400); }
.domain-input { width: 100%; padding: 0.5rem 0.75rem; border: 1px solid var(--gray-200); border-radius: 6px; font-size: 0.85rem; font-family: var(--font-body); transition: border-color 0.2s; }
.domain-input:focus { outline: none; border-color: var(--blue-bright); }
.domain-result { font-size: 0.78rem; font-weight: 600; min-height: 1rem; }
.domain-result.available { color: var(--green); }
.domain-result.taken     { color: var(--red); }
.subdomain-preview { font-size: 0.78rem; color: var(--gray-400); }
.pricing-cta { width: 100%; padding: 0.75rem 1rem; border-radius: 8px; font-weight: 600; font-size: 0.9rem; cursor: pointer; border: none; font-family: var(--font-body); transition: all 0.2s; }
.pricing-cta-free { background: var(--gray-800); color: white; }
.pricing-cta-free:hover { background: var(--navy); }
.pricing-cta-blue { background: var(--blue-bright); color: white; box-shadow: 0 4px 14px rgba(37,99,255,0.3); }
.pricing-cta-blue:hover { background: #1d56f0; }

/* ─── MÉTIERS ─── */
#metiers { background: var(--gray-50); }
.metiers-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 1rem; margin-top: 2.5rem; }
.metier-card { background: white; border: 1.5px solid var(--gray-200); border-radius: var(--radius); padding: 1.25rem 1rem; text-align: center; cursor: pointer; transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s; }
.metier-card:hover, .metier-card.active { border-color: var(--blue-bright); box-shadow: 0 4px 16px rgba(37,99,255,0.15); transform: translateY(-2px); }
.metier-emoji  { font-size: 2rem; margin-bottom: 0.5rem; }
.metier-label  { font-size: 0.85rem; font-weight: 600; color: var(--navy); }
.metier-sublabel { font-size: 0.72rem; color: var(--gray-400); margin-top: 0.2rem; }
.metier-detail { margin-top: 2rem; background: var(--navy); border-radius: 14px; padding: 2rem; display: none; }
.metier-detail.visible { display: block; }
.metier-detail h3 { font-family: var(--font-display); color: white; font-size: 1.3rem; font-weight: 700; margin-bottom: 1rem; }
.modules-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.module-tag { background: rgba(37,99,255,0.25); border: 1px solid rgba(37,99,255,0.4); color: var(--cyan); font-size: 0.8rem; font-weight: 500; padding: 0.3rem 0.75rem; border-radius: 100px; }

/* ─── SÉCURITÉ ─── */
#securite { background: var(--navy); }
#securite .section-title   { color: white; }
#securite .section-tag     { color: var(--cyan); }
#securite .section-subtitle{ color: rgba(255,255,255,0.6); }
.security-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.25rem; margin-top: 3rem; }
.security-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius); padding: 1.5rem; }
.security-card h4 { font-family: var(--font-display); color: white; font-size: 1rem; font-weight: 700; margin-bottom: 0.75rem; }
.security-card ul  { list-style: none; }
.security-card li  { font-size: 0.85rem; color: rgba(255,255,255,0.65); padding: 0.3rem 0; display: flex; align-items: center; gap: 0.5rem; border-bottom: 1px solid rgba(255,255,255,0.06); }
.security-card li:last-child { border: none; }
.check-icon { color: var(--green); font-weight: 900; font-size: 0.9rem; }

/* ─── DÉPLOIEMENT ─── */
#deploiement { background: white; }
.deploy-steps { display: flex; flex-direction: column; gap: 0; margin-top: 3rem; position: relative; }
.deploy-steps::before { content: ''; position: absolute; left: 28px; top: 0; bottom: 0; width: 2px; background: linear-gradient(to bottom, var(--blue-bright), var(--cyan)); }
.deploy-step { display: flex; gap: 1.5rem; padding: 1.5rem 0; position: relative; }
.step-num { width: 56px; height: 56px; border-radius: 50%; background: var(--blue-bright); color: white; font-family: var(--font-display); font-size: 1.1rem; font-weight: 800; display: flex; align-items: center; justify-content: center; flex-shrink: 0; position: relative; z-index: 1; box-shadow: 0 0 0 4px white; }
.step-content h4 { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 0.4rem; }
.step-content p  { font-size: 0.9rem; color: var(--gray-600); }
.step-badge { display: inline-block; background: var(--gray-100); color: var(--blue-bright); font-size: 0.75rem; font-weight: 600; padding: 0.2rem 0.6rem; border-radius: 4px; font-family: monospace; margin-top: 0.5rem; }

/* ─── AVIS ─── */
#avis { background: var(--gray-50); }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.25rem; margin-top: 3rem; }
.review-card { background: white; border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 1.75rem; }
.review-stars { color: #f59e0b; font-size: 1rem; margin-bottom: 0.75rem; }
.review-text  { font-size: 0.9rem; color: var(--gray-600); line-height: 1.65; margin-bottom: 1.25rem; font-style: italic; }
.reviewer     { display: flex; align-items: center; gap: 0.75rem; }
.reviewer-avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--blue-bright), var(--cyan)); display: flex; align-items: center; justify-content: center; color: white; font-weight: 700; font-size: 0.9rem; }
.reviewer-name { font-size: 0.875rem; font-weight: 600; color: var(--navy); }
.reviewer-role { font-size: 0.78rem; color: var(--gray-400); }
.stats-row { display: flex; gap: 2rem; justify-content: center; flex-wrap: wrap; margin-top: 3rem; padding-top: 2.5rem; border-top: 1px solid var(--gray-200); }
.stat-item  { text-align: center; }
.stat-num   { font-family: var(--font-display); font-size: 2.5rem; font-weight: 800; color: var(--blue-bright); line-height: 1; }
.stat-label { font-size: 0.85rem; color: var(--gray-600); margin-top: 0.25rem; }

/* ─── ESSAI ─── */
#essai { background: linear-gradient(135deg, var(--blue-bright) 0%, #0a3bbd 100%); text-align: center; }
#essai .section-title    { color: white; }
#essai .section-subtitle { color: rgba(255,255,255,0.8); max-width: 540px; margin: 0 auto 2.5rem; }
.trial-options { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; max-width: 680px; margin: 0 auto 2.5rem; }
.trial-card { background: rgba(255,255,255,0.12); border: 1.5px solid rgba(255,255,255,0.25); border-radius: var(--radius); padding: 1.75rem; text-align: left; }
.trial-card h4 { color: white; font-family: var(--font-display); font-size: 1rem; font-weight: 700; margin-bottom: 0.75rem; }
.trial-card ul { list-style: none; }
.trial-card li { font-size: 0.85rem; color: rgba(255,255,255,0.8); padding: 0.25rem 0; display: flex; gap: 0.5rem; }
.trial-cta { margin-top: 1.25rem; width: 100%; background: white; color: var(--blue-bright); padding: 0.7rem; border-radius: 8px; border: none; font-weight: 700; font-size: 0.9rem; cursor: pointer; transition: opacity 0.2s; font-family: var(--font-body); }
.trial-cta:hover { opacity: 0.9; }

/* ─── FAQ ─── */
#faq { background: white; }
.faq-list { max-width: 720px; margin: 3rem auto 0; }
.faq-item { border-bottom: 1px solid var(--gray-200); }
.faq-q { width: 100%; background: none; border: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; padding: 1.25rem 0; text-align: left; font-family: var(--font-body); font-size: 0.975rem; font-weight: 600; color: var(--navy); transition: color 0.2s; }
.faq-q:hover { color: var(--blue-bright); }
.faq-arrow { font-size: 1.2rem; transition: transform 0.3s; flex-shrink: 0; }
.faq-item.open .faq-arrow { transform: rotate(45deg); }
.faq-a { overflow: hidden; max-height: 0; transition: max-height 0.35s ease; }
.faq-a p { font-size: 0.9rem; color: var(--gray-600); padding-bottom: 1.25rem; line-height: 1.7; }

/* ─── CONTACT ─── */
#contact { background: var(--gray-50); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; margin-top: 3rem; }
.contact-info h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; color: var(--navy); margin-bottom: 1rem; }
.contact-info p  { font-size: 0.9rem; color: var(--gray-600); margin-bottom: 1.5rem; }
.contact-badges  { display: flex; flex-direction: column; gap: 0.75rem; }
.contact-badge   { display: flex; align-items: center; gap: 0.75rem; background: white; border: 1px solid var(--gray-200); border-radius: 10px; padding: 0.85rem 1rem; font-size: 0.875rem; color: var(--gray-600); }
.contact-badge strong { color: var(--navy); font-size: 0.9rem; }
.contact-form   { background: white; border: 1px solid var(--gray-200); border-radius: 14px; padding: 2rem; }
.form-group     { margin-bottom: 1rem; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--navy); margin-bottom: 0.4rem; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 0.65rem 0.85rem; border: 1px solid var(--gray-200); border-radius: 8px; font-size: 0.9rem; font-family: var(--font-body); transition: border-color 0.2s; background: var(--gray-50); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--blue-bright); background: white; }
.form-group textarea { min-height: 110px; resize: vertical; }
.form-row    { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-submit { width: 100%; padding: 0.85rem; background: var(--blue-bright); color: white; border: none; border-radius: 8px; font-size: 1rem; font-weight: 600; cursor: pointer; font-family: var(--font-body); transition: background 0.2s, transform 0.2s; }
.form-submit:hover { background: #1d56f0; transform: translateY(-1px); }
.form-note  { font-size: 0.75rem; color: var(--gray-400); margin-top: 0.75rem; text-align: center; }
.form-feedback { font-size: 0.85rem; font-weight: 600; padding: 0.65rem; border-radius: 8px; margin-top: 0.75rem; text-align: center; display: none; }
.form-feedback.success { background: #d1fae5; color: #065f46; display: block; }
.form-feedback.error   { background: #fee2e2; color: #991b1b; display: block; }
/* Honeypot */
.hp-field { display: none !important; }

/* ─── FOOTER ─── */
footer { background: var(--navy); padding: 3rem 2rem 2rem; color: rgba(255,255,255,0.5); }
.footer-inner { max-width: 1100px; margin: 0 auto; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 2rem; }
.footer-brand .nav-logo { display: block; margin-bottom: 0.75rem; }
.footer-brand p { font-size: 0.82rem; max-width: 260px; line-height: 1.6; }
.footer-links h5 { color: white; font-size: 0.85rem; font-weight: 700; margin-bottom: 0.75rem; }
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 0.4rem; }
.footer-links a  { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 0.82rem; transition: color 0.2s; }
.footer-links a:hover { color: white; }
.footer-bottom { max-width: 1100px; margin: 2.5rem auto 0; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.08); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; font-size: 0.78rem; }

/* ─── MODALS ─── */
.modal-overlay { position: fixed; inset: 0; z-index: 1000; background: rgba(0,0,0,0.6); backdrop-filter: blur(4px); display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal { background: white; border-radius: 16px; padding: 2rem; max-width: 500px; width: calc(100% - 2rem); transform: translateY(20px); transition: transform 0.3s; }
.modal-overlay.open .modal { transform: translateY(0); }
.modal-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; }
.modal-header h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 800; color: var(--navy); }
.modal-close { background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--gray-400); transition: color 0.2s; }
.modal-close:hover { color: var(--navy); }
.modal-feedback { font-size: 0.85rem; font-weight: 600; padding: 0.65rem; border-radius: 8px; margin-top: 0.75rem; text-align: center; display: none; }
.modal-feedback.success { background: #d1fae5; color: #065f46; display: block; }

/* ─── TOAST ─── */
.toast { position: fixed; bottom: 2rem; right: 2rem; z-index: 2000; background: var(--navy); color: white; padding: 0.85rem 1.5rem; border-radius: 10px; font-size: 0.9rem; font-weight: 500; transform: translateY(100px); opacity: 0; transition: all 0.35s; box-shadow: 0 8px 32px rgba(0,0,0,0.25); }
.toast.show { transform: translateY(0); opacity: 1; }

/* ─── COOKIE BANNER ─── */
.cookie-banner { position: fixed; bottom: 1rem; left: 50%; transform: translateX(-50%); z-index: 999; background: var(--navy); color: rgba(255,255,255,0.85); padding: 1rem 1.5rem; border-radius: var(--radius); max-width: 680px; width: calc(100% - 2rem); display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; font-size: 0.82rem; box-shadow: 0 8px 40px rgba(0,0,0,0.3); }
.cookie-banner a { color: var(--cyan); }
.cookie-btn { background: var(--blue-bright); color: white; border: none; padding: 0.5rem 1.25rem; border-radius: 6px; font-size: 0.82rem; font-weight: 600; cursor: pointer; flex-shrink: 0; font-family: var(--font-body); }
.cookie-btn.secondary { background: transparent; border: 1px solid rgba(255,255,255,0.3); }

/* ─── ANIMATIONS ─── */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) { .pricing-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 768px)  { .contact-grid { grid-template-columns: 1fr; } .trial-options { grid-template-columns: 1fr; } }
@media (max-width: 640px)  {
  .nav-links { display: none; }
  .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: var(--navy); padding: 1rem 2rem; gap: 1rem; }
  .nav-burger { display: block; }
  .pricing-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; }
  .deploy-steps::before { display: none; }
}
