@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Plus+Jakarta+Sans:wght@600;700;800&display=swap');

:root {
  --blue: #0052cc;
  --blue-2: #2374ff;
  --dark: #071126;
  --green: #00c853;
  --light: #f4f7fc;
  --ink: #17233b;
  --muted: #61708a;
  --line: #dfe6f1;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: white; font-family: Inter, Arial, sans-serif; }
h1, h2, h3, h4 { font-family: "Plus Jakarta Sans", Inter, sans-serif; letter-spacing: -.035em; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.section { padding: 88px 0; }
.eyebrow { font-size: .77rem; line-height: 1; text-transform: uppercase; letter-spacing: .16em; font-weight: 800; color: var(--blue); }
.display { font-size: clamp(2.65rem, 6vw, 5.7rem); line-height: .98; margin: 18px 0 22px; font-weight: 800; }
.title { font-size: clamp(2rem, 4vw, 3.7rem); line-height: 1.06; margin: 14px 0 18px; font-weight: 800; }
.lead { font-size: clamp(1.05rem, 2vw, 1.25rem); color: var(--muted); line-height: 1.7; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 50px; padding: 0 22px; border-radius: 13px; font-weight: 800; transition: .2s ease; border: 1px solid transparent; cursor: pointer; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--green); color: white; box-shadow: 0 12px 30px rgba(0,200,83,.2); }
.btn-blue { background: var(--blue); color: white; box-shadow: 0 12px 30px rgba(0,82,204,.18); }
.btn-ghost { background: white; color: var(--blue); border-color: #cddbf2; }
.tag { display: inline-flex; align-items: center; gap: 8px; border-radius: 999px; padding: 8px 13px; font-size: .78rem; font-weight: 800; background: #edf4ff; color: var(--blue); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card { background: white; border: 1px solid var(--line); border-radius: 24px; padding: 28px; box-shadow: 0 18px 60px rgba(17,37,71,.06); }
.card h3 { margin: 16px 0 10px; font-size: 1.25rem; }
.card p { color: var(--muted); line-height: 1.65; }
.icon { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 14px; background: #edf4ff; color: var(--blue); font-weight: 900; }
.checklist { display: grid; gap: 12px; padding: 0; list-style: none; }
.checklist li { display: flex; gap: 10px; align-items: flex-start; color: var(--muted); line-height: 1.5; }
.checklist li::before { content: "✓"; flex: 0 0 22px; width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center; background: #e5faed; color: #008c3a; font-size: .75rem; font-weight: 900; }

.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.94); backdrop-filter: blur(16px); border-bottom: 1px solid rgba(223,230,241,.9); }
.site-nav { height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 25px; }
.brand-logo { height: 53px; width: auto; max-width: 210px; object-fit: contain; }
.nav-links { display: flex; align-items: center; gap: 15px; font-size: .76rem; font-weight: 700; white-space: nowrap; }
.nav-links a:hover { color: var(--blue); }
.mobile-nav { display: none; }

.hero { min-height: 700px; display: grid; align-items: center; overflow: hidden; background: radial-gradient(circle at 82% 15%, rgba(35,116,255,.15), transparent 30%), radial-gradient(circle at 72% 90%, rgba(0,200,83,.12), transparent 25%), linear-gradient(145deg,#fff 20%,#f2f7ff); }
.hero-grid { display: grid; grid-template-columns: 1.06fr .94fr; gap: 58px; align-items: center; }
.hero-copy strong { color: var(--blue); }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 30px; }
.hero-panel { background: var(--dark); color: white; border-radius: 34px; padding: 32px; position: relative; box-shadow: 0 35px 100px rgba(7,17,38,.25); }
.hero-panel::before { content:""; position: absolute; inset: -8px 18px auto; height: 80px; border-radius: 28px; background: var(--blue); z-index: -1; opacity: .25; }
.metric { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; margin-top: 25px; }
.metric div { border: 1px solid rgba(255,255,255,.12); border-radius: 18px; padding: 18px; background: rgba(255,255,255,.05); }
.metric b { display: block; font-size: 1.4rem; color: #6dff9e; margin-bottom: 5px; }
.metric span { color: #b9c5d9; font-size: .82rem; line-height: 1.4; }

.offer-strip { background: var(--dark); color: white; padding: 20px 0; }
.offer-inner { display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.offer-inner strong { color: #65ff99; }
.soft { background: var(--light); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.solution-card { position: relative; overflow: hidden; }
.solution-card.featured { background: var(--dark); color: white; border-color: var(--dark); }
.solution-card.featured p, .solution-card.featured li { color: #bec9d9; }
.solution-card .price { font-family: "Plus Jakarta Sans"; color: var(--blue); font-size: 1.6rem; font-weight: 800; margin: 18px 0; }
.solution-card.featured .price { color: #65ff99; }

.mail-plans { margin-top: 40px; align-items: stretch; }
.mail-card { display: flex; flex-direction: column; }
.mail-card.featured { border: 2px solid var(--blue); transform: translateY(-10px); box-shadow: 0 24px 70px rgba(0,82,204,.14); }
.mail-card .checklist { flex: 1; }
.mail-price { font-family:"Plus Jakarta Sans"; font-size:2rem; font-weight:800; color:var(--blue); margin:14px 0 22px; }
.mail-price small { font:600 .8rem Inter,sans-serif; color:var(--muted); }
.hosting-section { background:radial-gradient(circle at 80% 15%,rgba(0,82,204,.35),transparent 28%),var(--dark); color:white; }
.hosting-section .title { color:white; }
.hosting-section .lead { color:#b9c5d9; }
.hosting-price { margin:25px 0; color:#b9c5d9; }
.hosting-price strong { display:inline-block; color:#65ff99; font:800 clamp(2rem,4vw,3.3rem) "Plus Jakarta Sans"; margin-left:8px; }
.hosting-features { display:grid; grid-template-columns:repeat(2,1fr); gap:16px; }
.hosting-features article { padding:26px; border-radius:20px; background:rgba(255,255,255,.07); border:1px solid rgba(255,255,255,.13); }
.hosting-features b { display:block; color:#65ff99; font:800 1.45rem "Plus Jakarta Sans"; }
.hosting-features span { display:block; color:#b9c5d9; margin-top:7px; font-size:.85rem; }
.ia-section { background:linear-gradient(145deg,#fff 10%,#eef5ff); }
.ia-heading { max-width:820px; }
.ia-service-grid { display:grid; grid-template-columns:repeat(6,1fr); gap:18px; margin-top:42px; }
.ia-service-grid article { grid-column:span 2; min-height:190px; display:flex; gap:18px; align-items:flex-start; padding:27px; border:1px solid #dce7f6; border-radius:24px; background:rgba(255,255,255,.88); box-shadow:0 18px 50px rgba(17,37,71,.07); transition:.25s ease; }
.ia-service-grid article:nth-child(4) { grid-column:2/span 2; }
.ia-service-grid article:hover { transform:translateY(-5px); border-color:#a9c5ef; box-shadow:0 24px 60px rgba(0,82,204,.12); }
.ia-service-grid article > span { flex:0 0 48px; width:48px; height:48px; border-radius:15px; display:grid; place-items:center; background:linear-gradient(145deg,var(--blue),var(--blue-2)); color:white; font:800 .8rem "Plus Jakarta Sans"; box-shadow:0 10px 25px rgba(0,82,204,.2); }
.ia-service-grid h3 { margin:2px 0 9px; font-size:1.08rem; }
.ia-service-grid p { margin:0; color:var(--muted); line-height:1.6; font-size:.88rem; }
.work-steps { display:grid; grid-template-columns:repeat(5,1fr); gap:16px; margin-top:40px; }
.work-steps article { background:white; border:1px solid var(--line); border-radius:20px; padding:23px; }
.work-steps span { color:#b9c8df; font:800 1.8rem "Plus Jakarta Sans"; }
.work-steps h3 { margin:12px 0 8px; }
.work-steps p { color:var(--muted); font-size:.88rem; line-height:1.55; }
.about-panel { display:grid; grid-template-columns:1.15fr .85fr; gap:65px; align-items:center; }
.about-panel > div:first-child > p:not(.lead) { color:var(--muted); line-height:1.75; }
.about-values { display:grid; gap:14px; }
.about-values article { display:grid; gap:6px; padding:22px; background:var(--light); border-radius:18px; border-left:4px solid var(--blue); }
.about-values b { font:800 1.05rem "Plus Jakarta Sans"; }
.about-values span { color:var(--muted); font-size:.88rem; line-height:1.5; }
.attention-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:14px; margin-top:25px; }
.attention-grid .card { padding:21px; }
.attention-grid .card h3 { font-size:1rem; }
.attention-grid .card p { font-size:.84rem; }
.contact-direct { margin-top:14px; padding:22px; }

.demo-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; margin-top: 40px; }
.demo-card { min-height: 360px; border-radius: 28px; overflow: hidden; position: relative; color: white; display: flex; align-items: end; background-size: cover; background-position: center; box-shadow: 0 20px 60px rgba(9,17,36,.15); }
.demo-card::after { content:""; position:absolute; inset:0; background:linear-gradient(180deg,transparent 15%,rgba(3,10,23,.88)); }
.demo-card > div { position: relative; z-index: 2; padding: 30px; width: 100%; }
.demo-card h3 { font-size: 1.7rem; margin: 8px 0; }
.demo-card p { color:#d7e0ed; max-width: 480px; line-height:1.5; }
.demo-card span { color:#7effa9; font-weight:800; font-size:.8rem; letter-spacing:.08em; text-transform:uppercase; }
.demo-abogado { background-image:url('https://images.unsplash.com/photo-1450101499163-c8848c66ca85?auto=format&fit=crop&w=1200&q=85'); }
.demo-consultor { background-image:url('https://images.unsplash.com/photo-1556761175-b413da4baf72?auto=format&fit=crop&w=1200&q=85'); }
.demo-pasteleria { background-image:url('https://images.unsplash.com/photo-1578985545062-69928b1d9587?auto=format&fit=crop&w=1200&q=85'); }
.demo-madera { background-image:url('https://images.unsplash.com/photo-1519947486511-46149fa0a254?auto=format&fit=crop&w=1200&q=85'); }

.contact-grid { display:grid; grid-template-columns:.75fr 1.25fr; gap:45px; }
.form-card { background:white; border:1px solid var(--line); border-radius:28px; padding:30px; box-shadow:0 20px 70px rgba(17,37,71,.08); }
.form-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:16px; }
.field { display:grid; gap:8px; margin-bottom:16px; }
.field label { font-size:.76rem; text-transform:uppercase; letter-spacing:.06em; font-weight:800; color:#53627a; }
.field input,.field select,.field textarea { width:100%; border:1px solid #d9e1ec; border-radius:12px; padding:13px 14px; color:var(--ink); background:#fff; outline:none; }
.field input:focus,.field select:focus,.field textarea:focus { border-color:var(--blue); box-shadow:0 0 0 3px rgba(0,82,204,.1); }
.form-note { font-size:.78rem; color:var(--muted); text-align:center; margin-top:12px; }
.site-footer { padding:68px 0 24px; background:var(--dark); color:#9eabc0; }
.footer-grid { display:grid; grid-template-columns:1.35fr 1fr 1fr 1.2fr; align-items:start; gap:42px; }
.site-footer h3 { color:white; font-size:1rem; margin:4px 0 20px; }
.site-footer ul { list-style:none; padding:0; margin:0; display:grid; gap:11px; font-size:.84rem; }
.site-footer li a,.footer-contact a { transition:.2s ease; }
.site-footer li a:hover,.footer-contact a:hover { color:white; }
.footer-brand p { max-width:250px; font-size:.84rem; line-height:1.65; }
.footer-social { display:flex; gap:9px; margin-top:18px; }
.footer-social a { width:35px; height:35px; border-radius:10px; border:1px solid #27334a; display:grid; place-items:center; color:white; font-size:.75rem; font-weight:800; }
.footer-social a:hover { background:var(--blue); border-color:var(--blue); }
.footer-contact { display:grid; gap:9px; font-size:.84rem; }
.footer-contact p { margin:0; line-height:1.55; }
.footer-contact a { color:#dce5f2; }
.footer-bottom { display:flex; justify-content:space-between; gap:25px; margin-top:48px; padding-top:22px; border-top:1px solid #202c42; font-size:.74rem; }
.floating-wa { position:fixed; z-index:40; bottom:22px; right:22px; width:58px; height:58px; border-radius:50%; display:grid; place-items:center; background:var(--green); color:white; font-weight:900; box-shadow:0 15px 35px rgba(0,200,83,.3); }

.page-hero { background:var(--dark); color:white; padding:100px 0 85px; position:relative; overflow:hidden; }
.page-hero::after { content:""; position:absolute; width:500px; height:500px; border-radius:50%; right:-180px; top:-250px; background:rgba(35,116,255,.22); filter:blur(10px); }
.page-hero p { color:#c5cfdd; }
.pricing-box { border:1px solid rgba(255,255,255,.15); background:rgba(255,255,255,.06); border-radius:26px; padding:28px; }
.pricing-box .big { font-family:"Plus Jakarta Sans"; font-size:clamp(2.3rem,5vw,4rem); font-weight:800; color:#65ff99; }
.pilot-hero-price { margin:22px 0 2px; color:#65ff99!important; font-family:"Plus Jakarta Sans"; font-size:1.35rem; font-weight:800; }
.pilot-hero-license { margin:0; color:#fff!important; font-size:.9rem; font-weight:700; }
.pilot-offer { background:linear-gradient(150deg,#f4f8ff 0%,#fff 52%,#f1fff6 100%); }
.pilot-heading { display:grid; grid-template-columns:1.4fr .6fr; gap:42px; align-items:end; }
.pilot-heading .lead { max-width:760px; }
.pilot-price-card { background:var(--dark); color:#fff; padding:25px 28px; border-radius:24px; box-shadow:0 22px 55px rgba(12,31,57,.16); }
.pilot-price-card > span,.pilot-kicker { display:block; color:#4fc879; font-size:.75rem; font-weight:900; letter-spacing:.1em; text-transform:uppercase; }
.pilot-price-card strong { display:block; margin:6px 0; color:#65ff99; font-family:"Plus Jakarta Sans"; font-size:clamp(2rem,4vw,3.1rem); line-height:1; }
.pilot-price-card strong small { color:#fff; font-size:.9rem; }
.pilot-price-card p { margin:8px 0 0; color:#c5cfdd; font-size:.86rem; }
.pilot-credit { margin:28px 0; padding:19px 22px; border:1px solid #aeeec4; border-radius:16px; background:#eafff1; display:flex; gap:14px; align-items:center; color:#173d27; }
.pilot-credit strong { white-space:nowrap; }
.pilot-columns { display:grid; grid-template-columns:1fr 1fr .78fr; gap:20px; }
.pilot-panel { background:#fff; border:1px solid var(--line); border-radius:22px; padding:27px; box-shadow:0 14px 40px rgba(25,55,95,.07); }
.pilot-panel h3 { margin:9px 0 17px; font-size:1.4rem; }
.pilot-list { margin:0; padding:0; list-style:none; display:grid; gap:12px; }
.pilot-list li { position:relative; padding-left:25px; color:#526273; line-height:1.5; }
.pilot-list li::before { content:"✓"; position:absolute; left:0; color:#159447; font-weight:900; }
.pilot-annual { background:var(--dark); border-color:var(--dark); color:#fff; }
.pilot-annual p { color:#c5cfdd; line-height:1.65; }
.annual-price { color:#65ff99; font-family:"Plus Jakarta Sans"; font-size:2rem; font-weight:900; margin:18px 0; }
.annual-price small { display:block; margin-top:5px; color:#fff; font-size:.82rem; }
.pilot-contact-note { margin-top:24px; padding:18px 20px; border-left:4px solid #26bd5f; border-radius:0 12px 12px 0; background:#edfff3; color:#244d32; line-height:1.6; }
.steps { counter-reset:steps; display:grid; grid-template-columns:repeat(4,1fr); gap:18px; }
.step { padding:24px; border-radius:20px; background:white; border:1px solid var(--line); }
.step::before { counter-increment:steps; content:"0" counter(steps); display:block; color:#b8c8e3; font-family:"Plus Jakarta Sans"; font-size:2rem; font-weight:800; }
.step h3 { margin:10px 0; }

.demo-site { --demo-accent:#9b6a42; --demo-dark:#1e1c1b; --demo-bg:#f8f5f0; background:var(--demo-bg); color:var(--demo-dark); min-height:100vh; font-family:Inter,sans-serif; }
.demo-site h1,.demo-site h2,.demo-site h3 { font-family:"Plus Jakarta Sans"; }
.demo-header { background:white; position:sticky; top:0; z-index:30; border-bottom:1px solid rgba(0,0,0,.06); }
.demo-site .demo-nav { height:76px; display:flex; align-items:center; justify-content:space-between; gap:20px; }
.demo-site .demo-brand { font-size:1.2rem; font-weight:900; }
.demo-site .demo-links { display:flex; gap:22px; font-size:.86rem; font-weight:700; }
.demo-site .demo-btn { background:var(--demo-accent); color:white; padding:13px 18px; border-radius:9px; font-weight:800; display:inline-flex; }
.demo-hero { min-height:600px; display:grid; align-items:center; background-size:cover; background-position:center; position:relative; color:white; }
.demo-hero::before { content:""; position:absolute; inset:0; background:linear-gradient(90deg,rgba(8,12,18,.9),rgba(8,12,18,.3)); }
.demo-hero .container { position:relative; z-index:2; }
.demo-hero h1 { font-size:clamp(2.8rem,6vw,5.4rem); max-width:800px; line-height:1; margin:0 0 20px; }
.demo-hero p { max-width:650px; font-size:1.15rem; line-height:1.7; color:#e2e7ee; }
.demo-features { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.demo-feature { background:white; border-radius:18px; padding:26px; box-shadow:0 15px 40px rgba(0,0,0,.06); }
.demo-feature h3 { margin:0 0 12px; }
.demo-feature p { color:#6e6e70; line-height:1.6; }
.demo-about { background:white; }
.demo-about-image { min-height:440px; border-radius:24px; background-size:cover; background-position:center; }
.demo-gallery { display:grid; grid-template-columns:1.3fr .7fr .7fr; gap:16px; }
.demo-gallery div { min-height:260px; border-radius:18px; background-size:cover; background-position:center; }
.demo-contact { padding:78px 0; background:var(--demo-dark); color:white; }
.demo-contact-grid { display:grid; grid-template-columns:.8fr 1.2fr; gap:55px; align-items:center; }
.demo-contact-grid > div > p { color:#c9d1db; max-width:520px; line-height:1.7; }
.demo-contact-form { background:white; color:#1b2537; padding:28px; border-radius:22px; box-shadow:0 20px 60px rgba(0,0,0,.18); }
.demo-form-row { display:grid; grid-template-columns:repeat(2,1fr); gap:14px; }
.demo-form-note,.demo-disclaimer { color:#8d98a7!important; font-size:.73rem; margin-top:14px; }
.demo-success { color:#07853a!important; background:#e8faef; border-radius:10px; padding:10px 12px; font-weight:800; }
.back-demo { position:fixed; left:18px; bottom:18px; z-index:80; background:white; color:#101828; border:1px solid #d9e1ec; border-radius:999px; padding:11px 16px; font-size:.82rem; font-weight:800; box-shadow:0 10px 35px rgba(0,0,0,.15); }

/* Jurídico: composición clásica, serif y sobria */
.demo-classic h1,.demo-classic h2,.demo-classic h3,.demo-classic .demo-brand { font-family:Georgia,"Times New Roman",serif; letter-spacing:-.02em; }
.demo-classic .demo-header { background:#111827; color:white; border:0; }
.demo-classic .demo-hero { min-height:680px; }
.demo-classic .demo-hero::before { background:linear-gradient(90deg,rgba(9,17,32,.94),rgba(9,17,32,.42)); }
.demo-classic .demo-feature { border-top:4px solid var(--demo-accent); border-radius:2px; }
.demo-classic .demo-about .split { grid-template-columns:.8fr 1.2fr; }
.demo-classic .demo-gallery div { border-radius:2px; filter:saturate(.7); }

/* Consultoría: portada editorial dividida y geometría corporativa */
.demo-editorial .demo-hero { min-height:600px; color:var(--demo-dark); background-size:52% 100%; background-position:right; background-repeat:no-repeat; background-color:white; }
.demo-editorial .demo-hero::before { background:linear-gradient(90deg,#fff 0%,#fff 45%,rgba(255,255,255,.15) 72%); }
.demo-editorial .demo-hero h1 { max-width:650px; font-size:clamp(2.8rem,5vw,4.9rem); }
.demo-editorial .demo-hero p { color:#526273; max-width:580px; }
.demo-editorial .demo-hero span { color:var(--demo-accent)!important; }
.demo-editorial .demo-feature { border-radius:0; box-shadow:none; border-bottom:3px solid var(--demo-accent); }
.demo-editorial .demo-about .split { direction:rtl; }
.demo-editorial .demo-about .split > * { direction:ltr; }
.demo-editorial .demo-gallery { grid-template-columns:repeat(3,1fr); }
.demo-editorial .demo-gallery div { border-radius:0; }

/* Pastelería: boutique cálida, centrada y galería abundante */
.demo-boutique { font-family:Inter,sans-serif; }
.demo-boutique .demo-header { background:#fff7f9; }
.demo-boutique .demo-brand { color:#9d3656; letter-spacing:.08em; }
.demo-boutique .demo-hero { min-height:720px; text-align:center; background-position:center; }
.demo-boutique .demo-hero::before { background:linear-gradient(rgba(60,18,34,.52),rgba(60,18,34,.68)); }
.demo-boutique .demo-hero h1,.demo-boutique .demo-hero p { margin-left:auto; margin-right:auto; }
.demo-boutique .demo-feature { border-radius:35px 8px 35px 8px; }
.demo-boutique .demo-about-image { border-radius:50% 50% 8px 8px; }
.demo-boutique .demo-gallery { grid-template-columns:repeat(4,1fr); }
.demo-boutique .demo-gallery div { min-height:230px; border-radius:24px; }
.demo-boutique .demo-gallery div:nth-child(1),.demo-boutique .demo-gallery div:nth-child(6) { grid-column:span 2; }

/* Madera: catálogo artesanal, oscuro y asimétrico */
.demo-craft .demo-header { background:#2d2118; color:#f7eee4; border:0; }
.demo-craft .demo-hero { min-height:760px; align-items:end; padding-bottom:85px; }
.demo-craft .demo-hero::before { background:linear-gradient(0deg,rgba(28,18,11,.95),rgba(28,18,11,.08) 75%); }
.demo-craft .demo-hero h1 { max-width:930px; }
.demo-craft .demo-features { grid-template-columns:1fr; max-width:860px; margin-left:auto; }
.demo-craft .demo-feature { display:grid; grid-template-columns:.5fr 1fr auto; gap:20px; align-items:center; border-radius:2px; background:#fbf6ef; }
.demo-craft .demo-feature p { margin:0; }
.demo-craft .demo-gallery { grid-template-columns:1fr 1fr; }
.demo-craft .demo-gallery div { min-height:360px; border-radius:2px; }

@media (max-width: 900px) {
  .nav-links { display:none; }
  .mobile-nav { display:inline-flex; }
  .hero-grid,.split,.contact-grid,.about-panel,.demo-contact-grid { grid-template-columns:1fr; }
  .pilot-heading,.pilot-columns { grid-template-columns:1fr; }
  .ia-service-grid { grid-template-columns:repeat(2,1fr); }
  .ia-service-grid article,.ia-service-grid article:nth-child(4) { grid-column:span 1; }
  .footer-grid { grid-template-columns:repeat(2,1fr); }
  .grid-3 { grid-template-columns:1fr 1fr; }
  .steps { grid-template-columns:1fr 1fr; }
  .work-steps { grid-template-columns:repeat(2,1fr); }
  .hero { padding:70px 0; }
  .demo-features { grid-template-columns:1fr; }
  .demo-gallery { grid-template-columns:1fr 1fr; }
  .demo-gallery div:first-child { grid-column:1/-1; }
  .demo-editorial .demo-hero { background-size:cover; color:white; }
  .demo-editorial .demo-hero::before { background:linear-gradient(90deg,rgba(8,47,73,.94),rgba(8,47,73,.3)); }
  .demo-editorial .demo-hero p { color:#e5eef4; }
  .demo-editorial .demo-hero span { color:white!important; }
  .demo-boutique .demo-gallery { grid-template-columns:repeat(2,1fr); }
}
@media (max-width: 620px) {
  .container { width:min(100% - 28px,1180px); }
  .section { padding:68px 0; }
  .grid-3,.demo-grid,.form-grid,.steps,.work-steps,.hosting-features,.attention-grid,.demo-form-row,.ia-service-grid,.footer-grid { grid-template-columns:1fr; }
  .hero-panel { padding:24px; }
  .offer-inner,.footer-grid { align-items:flex-start; flex-direction:column; }
  .demo-card { min-height:330px; }
  .demo-site .demo-links { display:none; }
  .demo-gallery { grid-template-columns:1fr; }
  .demo-gallery div:first-child { grid-column:auto; }
  .mail-card.featured { transform:none; }
  .demo-boutique .demo-gallery,.demo-craft .demo-gallery,.demo-editorial .demo-gallery { grid-template-columns:1fr; }
  .demo-boutique .demo-gallery div:nth-child(1),.demo-boutique .demo-gallery div:nth-child(6) { grid-column:auto; }
  .demo-craft .demo-feature { grid-template-columns:1fr; }
  .footer-bottom { flex-direction:column; }
  .pilot-credit { align-items:flex-start; flex-direction:column; }
}

.mobile-static-menu{display:none}.mobile-static-menu.open{display:grid;gap:12px;padding-bottom:18px;font-weight:800}@media(min-width:901px){.mobile-static-menu{display:none!important}}