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

:root {
  --navy-950: #050e1b;
  --navy-900: #071426;
  --navy-850: #0a1a2f;
  --navy-800: #0d2038;
  --navy-700: #163454;
  --blue-600: #0878c9;
  --blue-500: #0ea5e9;
  --sky-400: #38bdf8;
  --sky-100: #e1f5fe;
  --white: #ffffff;
  --slate-50: #f7f9fc;
  --slate-100: #eef3f8;
  --slate-200: #dce5ee;
  --slate-400: #8b9bad;
  --slate-500: #65758a;
  --slate-600: #4d5e72;
  --ink: #0a1930;
  --green: #25d366;
  --coral: #f97369;
  --violet: #8b5cf6;
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --shadow-sm: 0 10px 30px rgba(11, 31, 57, .07);
  --shadow-md: 0 24px 64px rgba(11, 31, 57, .12);
  --font-heading: "Manrope", "Segoe UI", sans-serif;
  --font-body: "DM Sans", "Segoe UI", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 86px; }
body { margin: 0; min-width: 320px; overflow-x: hidden; color: var(--ink); background: var(--white); font-family: var(--font-body); -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
p { margin: 0; color: var(--slate-500); line-height: 1.72; }
h1, h2, h3, h4 { margin: 0; font-family: var(--font-heading); letter-spacing: -.035em; }
.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.section { padding: 108px 0; }
.skip-link { position: fixed; z-index: 1000; left: 16px; top: -80px; padding: 12px 18px; color: white; background: var(--blue-600); border-radius: 8px; transition: top .2s; }
.skip-link:focus { top: 12px; }

.button { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 46px; padding: 0 20px; border: 1px solid transparent; border-radius: 10px; font-weight: 700; font-size: .91rem; transition: transform .2s, background .2s, color .2s, border-color .2s, box-shadow .2s; cursor: pointer; }
.button:hover { transform: translateY(-2px); }
.button svg { width: 19px; height: 19px; fill: currentColor; }
.button-large { min-height: 54px; padding: 0 25px; font-size: .96rem; border-radius: 12px; }
.button-primary { color: white; background: linear-gradient(135deg, var(--blue-600), var(--blue-500)); box-shadow: 0 12px 28px rgba(14, 165, 233, .22); }
.button-primary:hover { box-shadow: 0 16px 34px rgba(14, 165, 233, .34); }
.button-primary svg { fill: none; stroke: currentColor; stroke-width: 1.7; }
.button-whatsapp { color: #052d18; background: var(--green); box-shadow: 0 10px 25px rgba(37, 211, 102, .18); }
.button-whatsapp:hover { background: #38df75; box-shadow: 0 14px 30px rgba(37, 211, 102, .3); }
.button-ghost { color: #dbe9f7; border-color: rgba(255,255,255,.22); background: rgba(255,255,255,.04); }
.button-ghost:hover { color: white; border-color: rgba(255,255,255,.42); background: rgba(255,255,255,.08); }
.button-outline { color: var(--ink); border-color: var(--slate-200); width: 100%; }
.button-outline:hover { color: var(--blue-600); border-color: var(--blue-500); background: #f4fbff; }

.site-header { position: fixed; z-index: 100; inset: 0 0 auto; color: white; background: rgba(5, 14, 27, .82); border-bottom: 1px solid rgba(255,255,255,.07); backdrop-filter: blur(16px); }
.header-inner { height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 10px; min-width: max-content; }
.brand-logo { width: 218px; height: auto; display: block; }
.brand-mark { width: 37px; height: 37px; }
.brand-mark path:first-child { fill: rgba(56, 189, 248, .1); stroke: #38bdf8; stroke-width: 1.5; }
.brand-mark path:last-child { fill: none; stroke: #fff; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }
.brand > span { display: flex; align-items: baseline; gap: 5px; }
.brand strong { font: 800 1.08rem var(--font-heading); letter-spacing: -.03em; }
.brand small { color: var(--sky-400); font-size: .7rem; letter-spacing: .08em; text-transform: uppercase; }
.desktop-nav { display: flex; align-items: center; justify-content: center; gap: clamp(17px, 2.1vw, 31px); margin-left: auto; }
.desktop-nav a { position: relative; color: #aebed0; font-size: .83rem; font-weight: 600; }
.desktop-nav a::after { content: ""; position: absolute; inset: auto 50% -10px; height: 2px; background: var(--sky-400); transition: inset .2s; }
.desktop-nav a:hover { color: white; }
.desktop-nav a:hover::after { inset-inline: 0; }
.header-cta { min-height: 40px; padding-inline: 17px; font-size: .82rem; }
.header-cta svg { width: 17px; height: 17px; }
.menu-toggle { display: none; width: 42px; height: 42px; padding: 10px; border: 0; border-radius: 9px; background: rgba(255,255,255,.07); cursor: pointer; }
.menu-toggle span { width: 20px; height: 2px; display: block; margin: 4px 0; background: white; transition: transform .25s, opacity .25s; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.mobile-nav { display: none; }

.hero { min-height: 800px; position: relative; overflow: hidden; padding: 162px 0 115px; color: white; background: radial-gradient(circle at 85% 15%, #102b4c 0, transparent 35%), linear-gradient(128deg, #050e1b 0%, #08182b 58%, #0c2039 100%); }
.hero::before { content: ""; position: absolute; inset: 0; opacity: .11; background-image: linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px); background-size: 68px 68px; mask-image: linear-gradient(90deg, black, transparent 75%); }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(3px); pointer-events: none; }
.hero-glow-one { width: 390px; height: 390px; top: 50px; right: -120px; background: rgba(14, 165, 233, .12); }
.hero-glow-two { width: 280px; height: 280px; bottom: -80px; left: 26%; background: rgba(56, 189, 248, .08); }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 50px; }
.hero-copy { max-width: 570px; }
.eyebrow { display: flex; align-items: center; gap: 9px; margin-bottom: 18px; color: var(--blue-600); font-size: .71rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.eyebrow-light { color: var(--sky-400); }
.eyebrow-light > span { width: 22px; height: 1px; background: currentColor; }
.hero h1 { max-width: 570px; font-size: clamp(2.7rem, 4.5vw, 4.18rem); line-height: 1.08; }
.hero h1 em { color: var(--sky-400); font-style: normal; }
.hero-lead { max-width: 545px; margin-top: 25px; color: #9fb1c5; font-size: 1.07rem; line-height: 1.72; }
.hero-actions { display: flex; gap: 12px; margin-top: 33px; }
.hero-trust { display: flex; align-items: center; gap: 14px; margin-top: 33px; }
.avatar-stack { display: flex; }
.avatar-stack span { width: 34px; height: 34px; display: grid; place-items: center; margin-left: -7px; color: white; border: 2px solid var(--navy-900); border-radius: 50%; background: #245579; font-size: .56rem; font-weight: 800; }
.avatar-stack span:first-child { margin-left: 0; background: #2563a8; }
.avatar-stack span:last-child { background: #5a4b90; }
.hero-trust p { color: #778da4; font-size: .73rem; line-height: 1.5; }
.hero-trust strong { color: #c7d5e4; font-size: .75rem; }
.hero-visual { height: 500px; position: relative; }
.orbit { position: absolute; border: 1px solid rgba(56,189,248,.12); border-radius: 50%; }
.orbit-one { width: 530px; height: 530px; top: -20px; left: 70px; }
.orbit-two { width: 400px; height: 400px; top: 42px; left: 138px; }
.browser-mockup { position: absolute; width: 540px; height: 354px; right: 5px; top: 38px; overflow: hidden; border: 1px solid rgba(255,255,255,.14); border-radius: 14px; background: #f3f6fa; box-shadow: 0 35px 85px rgba(0,0,0,.38); transform: perspective(1000px) rotateY(-3deg) rotateX(1deg); }
.browser-top { height: 28px; display: flex; align-items: center; gap: 4px; padding: 0 10px; background: white; border-bottom: 1px solid #e4e9ef; }
.browser-top i { width: 5px; height: 5px; border-radius: 50%; background: #d4dce5; }
.browser-top span { width: 180px; height: 14px; display: flex; align-items: center; justify-content: center; margin-inline: auto; color: #9aa7b5; border-radius: 4px; background: #f4f6f8; font-size: 6px; }
.browser-body { height: calc(100% - 28px); display: flex; color: var(--ink); }
.mock-sidebar { width: 50px; display: flex; align-items: center; flex-direction: column; gap: 17px; padding-top: 13px; background: #0c2038; }
.mock-logo { width: 22px; height: 22px; display: grid; place-items: center; overflow: hidden; color: white; border-radius: 6px; background: var(--blue-500); font: 800 10px var(--font-heading); }
.mock-logo img { width: 100%; height: 100%; object-fit: contain; }
.mock-sidebar span { width: 16px; height: 4px; border-radius: 4px; background: #38516b; }
.mock-sidebar span.active { height: 16px; background: #143c5f; border: 1px solid var(--sky-400); }
.mock-content { flex: 1; padding: 17px 19px; }
.mock-head { display: flex; justify-content: space-between; align-items: center; }
.mock-head div:first-child { display: flex; flex-direction: column; }
.mock-head small, .mock-content small { color: #8a99a9; font-size: 7px; }
.mock-head b { font-size: 12px; }
.mock-user { width: 23px; height: 23px; border-radius: 50%; background: linear-gradient(135deg, #b9d3df, #547c92); }
.mock-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; margin-top: 16px; }
.mock-stats > div { position: relative; display: flex; flex-direction: column; padding: 11px; background: white; border: 1px solid #e6ebf0; border-radius: 7px; box-shadow: 0 3px 8px rgba(0,0,0,.025); }
.mock-stats b { margin-top: 5px; font-size: 12px; }
.mock-stats em { position: absolute; right: 8px; bottom: 10px; color: #1aad6d; font-size: 6px; font-style: normal; }
.mock-chart-card { margin-top: 11px; padding: 12px; background: white; border: 1px solid #e6ebf0; border-radius: 7px; }
.chart-title { display: flex; justify-content: space-between; align-items: flex-end; }
.chart-title > span { display: flex; flex-direction: column; }
.chart-title b { margin-top: 2px; font-size: 9px; }
.mock-chart { height: 125px; position: relative; margin-top: 10px; background: repeating-linear-gradient(0deg, #fff 0 30px, #edf2f6 31px); }
.mock-chart svg { width: 100%; height: 100%; }
.chart-area { fill: url(#chartfill); }
.chart-line { fill: none; stroke: var(--blue-500); stroke-width: 2; }
.phone-mockup { position: absolute; z-index: 3; width: 174px; height: 348px; left: 6px; bottom: -4px; overflow: hidden; color: var(--ink); border: 7px solid #111d29; border-radius: 27px; background: white; box-shadow: 0 25px 55px rgba(0,0,0,.45); transform: rotate(-2deg); }
.phone-notch { position: absolute; z-index: 3; width: 58px; height: 12px; top: 0; left: 50%; border-radius: 0 0 8px 8px; background: #111d29; transform: translateX(-50%); }
.phone-status { height: 25px; display: flex; align-items: center; justify-content: space-between; padding: 0 11px; font-size: 5px; font-weight: 700; }
.phone-brand { display: flex; align-items: center; gap: 5px; padding: 4px 9px 8px; }
.phone-brand .mock-logo { width: 18px; height: 18px; font-size: 8px; }
.phone-brand span { font: 800 7px var(--font-heading); }
.phone-brand b { margin-left: auto; font-size: 6px; letter-spacing: 1px; }
.phone-banner { height: 111px; margin: 0 8px; position: relative; overflow: hidden; padding: 15px 10px; color: white; border-radius: 9px; background: linear-gradient(125deg, #0c243b, #1775a5); }
.phone-banner::after { content: ""; width: 85px; height: 85px; position: absolute; right: -21px; bottom: -15px; border: 14px solid rgba(255,255,255,.09); border-radius: 50%; }
.phone-banner small { color: #96dcfb; font-size: 5px; letter-spacing: .1em; }
.phone-banner strong { display: block; margin-top: 6px; font: 800 12px/1.2 var(--font-heading); }
.phone-banner button { margin-top: 8px; padding: 4px 8px; color: white; border: 0; border-radius: 4px; background: var(--blue-500); font-size: 5px; }
.phone-label { display: flex; justify-content: space-between; padding: 12px 9px 7px; font-size: 7px; }
.phone-label span { color: var(--blue-500); font-size: 5px; }
.phone-products { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; padding-inline: 8px; }
.phone-products div { display: flex; flex-direction: column; padding: 5px; border: 1px solid #edf1f4; border-radius: 6px; }
.phone-products i { height: 48px; position: relative; border-radius: 4px; background: linear-gradient(145deg, #dce8ea, #91adba); }
.phone-products i::after { content: ""; width: 27px; height: 34px; position: absolute; inset: 8px auto auto 16px; border-radius: 14px 14px 5px 5px; background: #f8fafc; box-shadow: 3px 4px 0 #517288; }
.phone-products b { margin-top: 5px; font-size: 5.5px; }
.phone-products span { margin-top: 2px; color: var(--blue-600); font-size: 6px; font-weight: 800; }
.phone-nav { position: absolute; inset: auto 0 0; height: 38px; display: flex; justify-content: space-around; align-items: center; border-top: 1px solid #eef2f5; background: white; }
.phone-nav span { display: flex; align-items: center; flex-direction: column; gap: 2px; color: #718094; font-size: 8px; }
.phone-nav small { font-size: 4.5px; }
.phone-nav span:first-child { color: var(--blue-500); }
.floating-card { position: absolute; z-index: 5; display: flex; align-items: center; color: var(--ink); border: 1px solid rgba(255,255,255,.8); border-radius: 9px; background: rgba(255,255,255,.95); box-shadow: 0 15px 35px rgba(0,0,0,.2); backdrop-filter: blur(10px); }
.floating-sale { gap: 9px; right: -14px; bottom: 63px; padding: 10px 14px 10px 10px; }
.floating-sale > span { width: 27px; height: 27px; display: grid; place-items: center; color: #168d54; border-radius: 7px; background: #dff8ec; }
.floating-sale div { display: flex; flex-direction: column; }
.floating-sale small { color: #8a97a5; font-size: 6px; }
.floating-sale strong { margin-top: 2px; font-size: 9px; }
.floating-online { gap: 6px; top: 12px; left: 67px; padding: 8px 11px; color: #536579; font-size: 7px; }
.floating-online i { width: 6px; height: 6px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(37,211,102,.12); }
.hero-bottom-fade { position: absolute; inset: auto 0 0; height: 70px; background: linear-gradient(transparent, rgba(255,255,255,.025)); }

.section-heading { margin-bottom: 52px; }
.section-heading h2 { font-size: clamp(2.05rem, 3.4vw, 3.1rem); line-height: 1.16; }
.section-heading h2 span, .benefits-copy h2 span, .faq-intro h2 span { color: var(--blue-500); }
.section-heading > p { max-width: 560px; font-size: .99rem; }
.heading-split { display: grid; grid-template-columns: 1.2fr .8fr; align-items: end; gap: 80px; }
.heading-center { max-width: 710px; margin-inline: auto; text-align: center; }
.heading-center .eyebrow { justify-content: center; }
.heading-center p { max-width: 590px; margin: 18px auto 0; }
.heading-light h2 { color: white; }
.heading-light p { color: #91a6bb; }

.problem-section { background: var(--white); }
.problems-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.problem-card { min-height: 270px; position: relative; overflow: hidden; padding: 29px; border: 1px solid var(--slate-200); border-radius: var(--radius-md); background: white; transition: transform .25s, box-shadow .25s, border-color .25s; }
.problem-card:hover { transform: translateY(-5px); border-color: #c5d9e7; box-shadow: var(--shadow-md); }
.problem-card > span { position: absolute; right: 22px; top: 18px; color: #edf2f7; font: 800 2.2rem var(--font-heading); }
.icon-box { width: 50px; height: 50px; display: grid; place-items: center; margin-bottom: 25px; border-radius: 13px; }
.icon-box svg, .service-icon svg, .step-icon svg, .price-icon svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.icon-coral { color: var(--coral); background: #fff0ef; }
.icon-blue { color: var(--blue-500); background: #eaf7fe; }
.icon-violet { color: var(--violet); background: #f2edff; }
.problem-card h3 { font-size: 1.1rem; }
.problem-card p { margin-top: 11px; font-size: .87rem; line-height: 1.7; }
.solution-strip { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 20px; margin-top: 25px; padding: 24px 27px; border: 1px solid #ccecfb; border-radius: var(--radius-md); background: linear-gradient(90deg, #effaff, #f9fcfe); }
.strip-icon { width: 44px; height: 44px; display: grid; place-items: center; color: white; border-radius: 12px; background: linear-gradient(135deg, var(--blue-600), var(--sky-400)); box-shadow: 0 8px 20px rgba(14,165,233,.22); }
.solution-strip strong { font: 700 1rem var(--font-heading); }
.solution-strip p { margin-top: 3px; font-size: .84rem; line-height: 1.5; }
.solution-strip > a { color: var(--blue-600); font-size: .83rem; font-weight: 700; }
.solution-strip > a span { margin-left: 6px; }

.services-section { background: var(--slate-50); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 19px; }
.service-card { min-height: 305px; position: relative; display: flex; align-items: flex-start; flex-direction: column; padding: 27px; border: 1px solid var(--slate-200); border-radius: var(--radius-md); background: white; transition: transform .25s, box-shadow .25s, border-color .25s; }
.service-card:hover { transform: translateY(-5px); border-color: #bddfee; box-shadow: var(--shadow-sm); }
.service-card.service-featured { grid-column: span 2; display: grid; grid-template-columns: auto 1fr; gap: 25px; background: linear-gradient(130deg, #fff, #f1faff); }
.service-icon { width: 51px; height: 51px; display: grid; place-items: center; flex: 0 0 auto; color: var(--blue-600); border-radius: 14px; background: var(--sky-100); }
.service-tag { display: block; margin: 20px 0 8px; color: var(--blue-600); font-size: .64rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.service-featured .service-tag { margin-top: 0; }
.service-card h3 { font-size: 1.15rem; }
.service-card p { margin-top: 10px; font-size: .85rem; line-height: 1.68; }
.service-card ul { display: flex; flex-wrap: wrap; gap: 7px 18px; margin: 18px 0 0; padding: 0; list-style: none; }
.service-card li { color: var(--slate-600); font-size: .75rem; }
.service-card li::before { content: "✓"; margin-right: 6px; color: var(--blue-500); font-weight: 800; }
.service-card > a { width: 35px; height: 35px; display: grid; place-items: center; position: absolute; right: 23px; bottom: 23px; color: var(--blue-600); border: 1px solid var(--slate-200); border-radius: 9px; transition: color .2s, background .2s, transform .2s; }
.service-card > a:hover { color: white; background: var(--blue-500); transform: rotate(5deg); }

.process-section { position: relative; overflow: hidden; color: white; background: var(--navy-900); }
.process-section::before { content: ""; width: 600px; height: 600px; position: absolute; right: -270px; top: -230px; border: 1px solid rgba(56,189,248,.1); border-radius: 50%; box-shadow: 0 0 0 100px rgba(56,189,248,.025), 0 0 0 200px rgba(56,189,248,.015); }
.process-section .container { position: relative; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.process-step { position: relative; padding: 25px 20px; text-align: center; }
.step-number { position: absolute; right: 12px; top: 4px; color: rgba(255,255,255,.05); font: 800 3.5rem var(--font-heading); }
.step-icon { width: 64px; height: 64px; position: relative; z-index: 2; display: grid; place-items: center; margin: 0 auto 21px; color: var(--sky-400); border: 1px solid rgba(56,189,248,.3); border-radius: 18px; background: #102941; box-shadow: 0 0 0 8px rgba(56,189,248,.035); }
.process-step h3 { font-size: 1.06rem; }
.process-step p { margin-top: 9px; color: #8195aa; font-size: .81rem; line-height: 1.65; }
.process-progress { height: 2px; position: absolute; top: 154px; left: 13%; right: 13%; background: #1b3852; }
.process-progress span { width: 75%; height: 100%; display: block; background: linear-gradient(90deg, var(--blue-500), var(--sky-400)); }
.process-progress i { width: 8px; height: 8px; position: absolute; top: -3px; border: 2px solid var(--navy-900); border-radius: 50%; background: var(--sky-400); }
.process-progress i:nth-of-type(1) { left: 0; }.process-progress i:nth-of-type(2) { left: 33.333%; }.process-progress i:nth-of-type(3) { left: 66.666%; }.process-progress i:nth-of-type(4) { right: 0; background: #37516a; }

.solutions-section { background: white; }
.projects-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.project-card { overflow: hidden; border: 1px solid var(--slate-200); border-radius: var(--radius-lg); background: white; box-shadow: 0 10px 36px rgba(11,31,57,.06); transition: transform .3s, box-shadow .3s; }
.project-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.project-large { grid-column: span 2; }
.project-visual { min-height: 330px; display: grid; place-items: center; position: relative; overflow: hidden; }
.project-large .project-visual { min-height: 440px; }
.project-meta { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 27px 30px 30px; }
.project-meta > div > span { color: var(--blue-600); font-size: .67rem; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.project-meta h3 { margin-top: 7px; font-size: 1.27rem; }
.project-meta p { max-width: 660px; margin-top: 8px; font-size: .83rem; line-height: 1.6; }
.project-arrow { width: 42px; height: 42px; display: grid; place-items: center; flex: 0 0 auto; color: var(--blue-600); border-radius: 50%; background: var(--sky-100); }
.shop-project { padding: 60px 80px 0; background: #e8eff0; }
.project-browser { width: min(900px, 100%); height: 400px; overflow: hidden; border: 8px solid white; border-bottom: 0; border-radius: 13px 13px 0 0; background: white; box-shadow: 0 25px 70px rgba(31,55,62,.22); }
.browser-dots { height: 23px; display: flex; align-items: center; padding-left: 10px; color: #ced5d6; background: #f5f7f7; font-size: 5px; letter-spacing: 3px; }
.shop-nav { height: 52px; display: flex; align-items: center; justify-content: space-between; padding: 0 25px; color: #303e3b; }
.shop-nav b { font: 800 12px var(--font-heading); letter-spacing: .15em; }
.shop-nav span { font-size: 6px; }
.shop-nav i { font-size: 8px; font-style: normal; }
.shop-hero { height: 317px; display: flex; align-items: center; padding: 35px 55px; background: #dfe8e5; }
.shop-hero small { color: #627c72; font-size: 6px; letter-spacing: .2em; }
.shop-hero strong { display: block; margin-top: 12px; color: #253a34; font: 600 35px/1.05 Georgia, serif; letter-spacing: -.04em; }
.shop-hero button { margin-top: 22px; padding: 9px 15px; color: white; border: 0; background: #324f47; font-size: 6px; }
.product-shape { position: relative; margin-left: auto; }
.chair { width: 250px; height: 245px; }
.chair::before { content: ""; width: 145px; height: 120px; position: absolute; left: 50px; top: 30px; border-radius: 70px 70px 18px 18px; background: #af896c; box-shadow: inset -14px -10px rgba(79,55,39,.12); }
.chair::after { content: ""; width: 190px; height: 73px; position: absolute; left: 27px; top: 128px; border-radius: 18px 18px 25px 25px; background: #9e795e; box-shadow: 0 13px 0 -5px #70513e; }
.chair span::before, .chair span::after { content: ""; width: 6px; height: 62px; position: absolute; z-index: 2; top: 184px; background: #3d352f; transform: rotate(7deg); }
.chair span::before { left: 48px; }.chair span::after { right: 48px; transform: rotate(-7deg); }
.food-project { min-height: 390px; padding-top: 34px; background: linear-gradient(145deg, #f4eee7, #e9ddd0); }
.food-phone { width: 210px; height: 410px; padding: 25px 17px; border: 7px solid white; border-bottom: 0; border-radius: 29px 29px 0 0; background: #fffdfa; box-shadow: 0 20px 50px rgba(80,54,32,.18); }
.food-head { display: flex; justify-content: space-between; color: #32453a; font-size: 9px; }
.food-head i { font-style: normal; }
.food-phone > small { display: block; margin-top: 21px; color: #a29a90; font-size: 7px; }
.food-phone > strong { display: block; margin-top: 4px; color: #2c3c34; font: 700 17px/1.2 var(--font-heading); }
.food-search { margin-top: 15px; padding: 8px; color: #a6a098; border-radius: 7px; background: #f3efea; font-size: 6px; }
.food-cats { display: flex; gap: 5px; margin-top: 12px; }
.food-cats span { padding: 5px 8px; border-radius: 9px; background: #f0ece6; font-size: 5px; }
.food-cats span:first-child { color: white; background: #426552; }
.food-item { display: flex; align-items: center; gap: 8px; margin-top: 14px; padding: 8px; border-radius: 9px; background: white; box-shadow: 0 5px 15px rgba(80,60,40,.08); }
.food-item > i { width: 49px; height: 49px; flex: 0 0 auto; border-radius: 8px; background: radial-gradient(circle at 45% 45%, #e9c263 0 22%, #609154 23% 34%, #e5a981 35% 44%, #ddd1b6 45% 65%, #ba996d 66%); }
.food-item div { display: flex; flex-direction: column; }
.food-item b { font-size: 7px; }.food-item small { color: #a09991; font-size: 4.5px; }.food-item strong { margin-top: 6px; color: #426552; font-size: 7px; }
.food-item button { width: 18px; height: 18px; margin-left: auto; color: white; border: 0; border-radius: 5px; background: #426552; font-size: 10px; }
.dashboard-project { min-height: 390px; padding: 46px 35px 0; background: linear-gradient(145deg, #dcecf5, #bdd8e8); }
.dash { width: 400px; height: 315px; display: flex; overflow: hidden; border: 8px solid white; border-bottom: 0; border-radius: 14px 14px 0 0; background: #f5f8fb; box-shadow: 0 20px 50px rgba(25,67,90,.18); }
.dash aside { width: 55px; display: flex; align-items: center; flex-direction: column; gap: 20px; padding-top: 15px; background: #0b2138; }
.dash aside b { width: 24px; height: 24px; display: grid; place-items: center; color: white; border-radius: 6px; background: var(--blue-500); font-size: 9px; }
.dash aside i { width: 16px; height: 5px; border-radius: 3px; background: #25445f; }
.dash main { flex: 1; padding: 24px; }
.dash main > small { color: #8799aa; font-size: 6px; }.dash main h4 { margin-top: 3px; font-size: 14px; }
.dash-boxes { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 18px; }
.dash-boxes span { display: flex; flex-direction: column; padding: 13px; border: 1px solid #e5ebf0; border-radius: 7px; background: white; }
.dash-boxes small { color: #8c9aa8; font-size: 6px; }.dash-boxes b { margin-top: 5px; font-size: 13px; }
.dash-graph { height: 120px; margin-top: 10px; padding: 13px; border: 1px solid #e5ebf0; border-radius: 7px; background: white; }
.dash-graph > b { font-size: 8px; }.dash-graph svg { width: 100%; height: 75px; margin-top: 5px; }
.dash-graph path { fill: none; stroke: var(--blue-500); stroke-width: 2.2; }

.pricing-section { background: var(--slate-50); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); align-items: stretch; gap: 20px; }
.price-card { position: relative; display: flex; flex-direction: column; padding: 31px; border: 1px solid var(--slate-200); border-radius: 23px; background: white; box-shadow: 0 9px 28px rgba(11,31,57,.045); }
.price-popular { border: 2px solid var(--blue-500); box-shadow: 0 22px 55px rgba(14,165,233,.15); transform: translateY(-10px); }
.popular-label { position: absolute; inset: 0 24px auto auto; padding: 7px 14px; color: white; border-radius: 0 0 9px 9px; background: var(--blue-500); font-size: .61rem; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.price-top { display: flex; align-items: center; gap: 11px; }
.price-top > span { color: var(--blue-600); font-size: .66rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.price-icon { width: 39px; height: 39px; display: grid; place-items: center; color: var(--blue-600); border-radius: 11px; background: var(--sky-100); }
.price-icon svg { width: 20px; height: 20px; }
.price-card h3 { margin-top: 20px; font-size: 1.38rem; }
.price-desc { min-height: 67px; margin-top: 9px; font-size: .83rem; line-height: 1.6; }
.price-line { display: grid; grid-template-columns: auto 1fr; align-items: baseline; column-gap: 8px; margin-top: 23px; padding-bottom: 22px; border-bottom: 1px solid var(--slate-200); }
.price-line small { color: var(--slate-500); font-size: .68rem; }
.price-line strong { grid-row: span 2; color: var(--ink); font: 800 2rem var(--font-heading); letter-spacing: -.05em; }
.price-line > span { color: var(--slate-400); font-size: .61rem; }
.custom-price strong { font-size: 1.65rem; }
.price-card ul { display: flex; flex-direction: column; flex: 1; gap: 13px; margin: 23px 0 27px; padding: 0; list-style: none; }
.price-card li { position: relative; padding-left: 25px; color: var(--slate-600); font-size: .79rem; }
.price-card li::before { content: "✓"; width: 16px; height: 16px; display: grid; place-items: center; position: absolute; left: 0; top: 0; color: var(--blue-600); border-radius: 50%; background: var(--sky-100); font-size: .58rem; font-weight: 900; }
.price-card .button { min-height: 48px; font-size: .82rem; }
.price-card .button span { margin-left: auto; }
.pricing-note { margin-top: 34px; text-align: center; font-size: .83rem; }
.pricing-note a { color: var(--blue-600); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }

.benefits-section { overflow: hidden; }
.benefits-grid { display: grid; grid-template-columns: .92fr 1.08fr; align-items: center; gap: 90px; }
.benefits-copy h2, .faq-intro h2 { font-size: clamp(2.05rem, 3.4vw, 3.05rem); line-height: 1.15; }
.benefits-copy > p { margin-top: 20px; font-size: .94rem; }
.benefit-list { display: grid; grid-template-columns: 1fr 1fr; gap: 24px 22px; margin-top: 34px; }
.benefit-list > div { display: flex; align-items: flex-start; gap: 11px; }
.benefit-list > div > span { width: 24px; height: 24px; display: grid; place-items: center; flex: 0 0 auto; color: var(--blue-600); border-radius: 7px; background: var(--sky-100); font-size: .7rem; font-weight: 800; }
.benefit-list p { font-size: .76rem; line-height: 1.48; }
.benefit-list strong { display: block; margin-bottom: 3px; color: var(--ink); font-size: .87rem; }
.benefits-visual { min-height: 440px; position: relative; display: grid; place-items: center; }
.benefits-visual::before { content: ""; width: 420px; height: 420px; position: absolute; border-radius: 50%; background: radial-gradient(circle, #e3f5fd 0 42%, transparent 43%), repeating-radial-gradient(circle, #d3eaf4 0 1px, transparent 2px 16px); }
.quote-card { width: 390px; min-height: 280px; position: relative; z-index: 2; padding: 35px; border: 1px solid var(--slate-200); border-radius: 23px; background: rgba(255,255,255,.96); box-shadow: var(--shadow-md); }
.quote-mark { color: var(--sky-400); font: 700 3.7rem/1 Georgia, serif; }
.quote-card blockquote { margin: 3px 0 25px; font: 600 1.25rem/1.55 var(--font-heading); letter-spacing: -.025em; }
.quote-person { display: flex; align-items: center; gap: 12px; padding-top: 19px; border-top: 1px solid var(--slate-200); }
.quote-person > span { width: 38px; height: 38px; display: grid; place-items: center; color: white; border-radius: 50%; background: linear-gradient(135deg, var(--blue-600), var(--sky-400)); font-size: .7rem; font-weight: 800; }
.quote-person div { display: flex; flex-direction: column; }.quote-person strong { font-size: .76rem; }.quote-person small { margin-top: 3px; color: var(--slate-400); font-size: .62rem; }
.metric-card { position: absolute; z-index: 3; right: -5px; top: 25px; display: flex; align-items: center; gap: 10px; padding: 13px 17px; border: 1px solid white; border-radius: 12px; background: white; box-shadow: var(--shadow-sm); }
.metric-card strong { color: var(--blue-500); font: 800 1.45rem var(--font-heading); }.metric-card span { color: var(--slate-500); font-size: .62rem; line-height: 1.3; }
.support-card { position: absolute; z-index: 3; left: -7px; bottom: 29px; display: flex; align-items: center; gap: 10px; padding: 13px 17px; border: 1px solid white; border-radius: 12px; background: white; box-shadow: var(--shadow-sm); }
.support-card > i { width: 9px; height: 9px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 6px rgba(37,211,102,.12); }
.support-card div { display: flex; flex-direction: column; }.support-card strong { font-size: .72rem; }.support-card small { margin-top: 2px; color: var(--slate-400); font-size: .6rem; }

.faq-section { background: var(--slate-50); }
.faq-grid { display: grid; grid-template-columns: .75fr 1.25fr; align-items: start; gap: 90px; }
.faq-intro { position: sticky; top: 120px; }
.faq-intro p { margin-top: 20px; font-size: .9rem; }
.text-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 25px; color: var(--blue-600); font-size: .82rem; font-weight: 700; }
.faq-item { border-bottom: 1px solid var(--slate-200); }
.faq-item:first-child { border-top: 1px solid var(--slate-200); }
.faq-item button { width: 100%; min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 17px 3px; color: var(--ink); border: 0; background: transparent; text-align: left; font-weight: 700; cursor: pointer; }
.faq-item button span { font-size: .94rem; }
.faq-item button i { width: 24px; height: 24px; position: relative; flex: 0 0 auto; border-radius: 50%; background: white; box-shadow: 0 2px 8px rgba(0,0,0,.05); }
.faq-item button i::before, .faq-item button i::after { content: ""; width: 9px; height: 1.5px; position: absolute; left: 7.5px; top: 11px; background: var(--blue-600); transition: transform .25s; }
.faq-item button i::after { transform: rotate(90deg); }
.faq-item.open button i::after { transform: rotate(0); }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s ease; }
.faq-answer > p { overflow: hidden; padding: 0 45px 0 3px; font-size: .82rem; line-height: 1.68; transition: padding .3s; }
.faq-item.open .faq-answer { grid-template-rows: 1fr; }
.faq-item.open .faq-answer > p { padding-bottom: 23px; }

.final-cta { padding-bottom: 80px; }
.cta-panel { min-height: 430px; position: relative; overflow: hidden; display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; padding: 55px 70px; color: white; border-radius: 28px; background: linear-gradient(120deg, #071426, #0c2946); box-shadow: 0 25px 70px rgba(7,20,38,.22); }
.cta-glow { width: 500px; height: 500px; position: absolute; right: -130px; top: -140px; border-radius: 50%; background: radial-gradient(circle, rgba(14,165,233,.25), transparent 65%); }
.cta-pattern { position: absolute; inset: 0; opacity: .07; background-image: radial-gradient(#fff 1px, transparent 1px); background-size: 22px 22px; mask-image: linear-gradient(90deg, transparent 35%, black); }
.cta-copy { position: relative; z-index: 2; }
.cta-copy h2 { max-width: 560px; font-size: clamp(2.2rem, 4vw, 3.45rem); line-height: 1.12; }
.cta-copy h2 span { color: var(--sky-400); }
.cta-copy > p { max-width: 550px; margin-top: 18px; color: #9db1c5; font-size: .93rem; }
.cta-actions { display: flex; align-items: center; gap: 20px; margin-top: 28px; }
.cta-actions > span { display: flex; align-items: center; gap: 7px; color: #91a6b9; font-size: .69rem; }
.cta-actions > span i { width: 6px; height: 6px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(37,211,102,.12); }
.cta-visual { height: 330px; position: relative; z-index: 2; display: grid; place-items: center; }
.chat-window { width: 290px; overflow: hidden; color: var(--ink); border: 1px solid rgba(255,255,255,.4); border-radius: 17px; background: #eef3f6; box-shadow: 0 22px 60px rgba(0,0,0,.35); transform: rotate(2deg); }
.chat-top { height: 62px; display: flex; align-items: center; gap: 9px; padding: 10px 13px; background: white; }
.chat-avatar { width: 37px; height: 37px; display: grid; place-items: center; overflow: hidden; color: white; border-radius: 50%; background: linear-gradient(135deg, var(--blue-600), var(--sky-400)); font-weight: 800; }
.chat-avatar img { width: 100%; height: 100%; object-fit: contain; }
.chat-top > span { display: flex; flex-direction: column; }.chat-top b { font-size: .72rem; }.chat-top small { display: flex; align-items: center; gap: 5px; margin-top: 3px; color: #7f8d99; font-size: .55rem; }.chat-top small i { width: 5px; height: 5px; border-radius: 50%; background: var(--green); }
.chat-top em { margin-left: auto; color: var(--slate-400); font-size: .55rem; letter-spacing: 2px; }
.chat-body { min-height: 205px; display: flex; align-items: flex-start; flex-direction: column; gap: 8px; padding: 15px 13px; background: #e8f0f2; }
.chat-bubble { max-width: 76%; padding: 9px 11px; border-radius: 10px; font-size: .61rem; line-height: 1.45; box-shadow: 0 2px 5px rgba(0,0,0,.04); }
.chat-bubble.left { border-radius: 2px 10px 10px 10px; background: white; }.chat-bubble.right { align-self: flex-end; border-radius: 10px 2px 10px 10px; background: #d4f8df; }
.typing { display: flex; gap: 3px; padding: 8px 11px; border-radius: 3px 10px 10px 10px; background: white; }.typing i { width: 4px; height: 4px; border-radius: 50%; background: #9aa6b0; }
.chat-input { height: 46px; display: flex; align-items: center; justify-content: space-between; padding: 0 13px; color: #a3adb5; background: white; font-size: .57rem; }.chat-input span { width: 25px; height: 25px; display: grid; place-items: center; color: white; border-radius: 50%; background: var(--blue-500); }

.site-footer { padding: 70px 0 28px; color: white; background: var(--navy-950); }
.footer-main { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; padding-bottom: 55px; }
.footer-brand > p { max-width: 410px; margin-top: 20px; color: #758a9f; font-size: .82rem; }
.footer-contact { display: inline-flex; align-items: center; gap: 8px; margin-top: 19px; color: #a5b8ca; font-size: .77rem; }
.footer-contact span { color: var(--green); }
.footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.footer-links > div { display: flex; flex-direction: column; align-items: flex-start; gap: 11px; }
.footer-links h3 { margin-bottom: 6px; color: white; font-size: .8rem; letter-spacing: 0; }
.footer-links a { color: #758a9f; font-size: .75rem; transition: color .2s; }
.footer-links a:hover { color: var(--sky-400); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-top: 25px; border-top: 1px solid rgba(255,255,255,.07); }
.footer-bottom p { color: #53687c; font-size: .66rem; }.footer-bottom p span { color: var(--sky-400); }
.floating-whatsapp { position: fixed; z-index: 50; right: 22px; bottom: 22px; display: flex; align-items: center; gap: 8px; padding: 10px 15px 10px 11px; color: #07351d; border-radius: 28px; background: var(--green); box-shadow: 0 10px 30px rgba(0,0,0,.23); font-size: .74rem; font-weight: 800; transition: transform .2s; }
.floating-whatsapp:hover { transform: translateY(-3px) scale(1.02); }.floating-whatsapp svg { width: 25px; height: 25px; fill: currentColor; }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.problems-grid .reveal:nth-child(2), .services-grid .reveal:nth-child(2), .process-grid .reveal:nth-child(2), .pricing-grid .reveal:nth-child(2) { transition-delay: .08s; }
.problems-grid .reveal:nth-child(3), .services-grid .reveal:nth-child(3), .process-grid .reveal:nth-child(3), .pricing-grid .reveal:nth-child(3) { transition-delay: .16s; }
.services-grid .reveal:nth-child(4), .process-grid .reveal:nth-child(4) { transition-delay: .22s; }

@media (max-width: 1060px) {
  .desktop-nav { display: none; }
  .header-cta { margin-left: auto; }
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 25px; }
  .hero-visual { transform: scale(.88); transform-origin: center left; }
  .browser-mockup { right: -90px; }
  .heading-split { gap: 40px; }
  .benefits-grid { gap: 45px; }
  .metric-card { right: 0; }
  .support-card { left: 0; }
  .cta-panel { padding-inline: 45px; }
}

@media (max-width: 820px) {
  .brand-logo { width: 190px; }
  .container { width: min(100% - 32px, 680px); }
  .section { padding: 82px 0; }
  .menu-toggle { display: block; }
  .header-cta { display: none; }
  .mobile-nav { max-height: 0; display: flex; overflow: hidden; align-items: stretch; flex-direction: column; gap: 0; padding: 0 20px; background: #071426; transition: max-height .3s ease, padding .3s ease; }
  .mobile-nav.open { max-height: 470px; padding-block: 12px 22px; border-top: 1px solid rgba(255,255,255,.07); }
  .mobile-nav > a:not(.button) { padding: 14px 5px; color: #bdcad8; border-bottom: 1px solid rgba(255,255,255,.06); font-size: .9rem; }
  .mobile-nav .button { margin-top: 14px; }
  .hero { min-height: auto; padding: 135px 0 90px; }
  .hero-grid { grid-template-columns: 1fr; gap: 65px; }
  .hero-copy { max-width: 650px; text-align: center; }
  .hero-copy .eyebrow { justify-content: center; }
  .hero h1, .hero-lead { max-width: 650px; }
  .hero-actions, .hero-trust { justify-content: center; }
  .hero-visual { width: 610px; margin: 0 auto; transform: none; }
  .browser-mockup { right: 0; }
  .heading-split { grid-template-columns: 1fr; gap: 18px; }
  .problems-grid { grid-template-columns: 1fr; }
  .problem-card { min-height: 225px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .service-card.service-featured { grid-column: span 2; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-progress { display: none; }
  .projects-grid { grid-template-columns: 1fr; }
  .project-large { grid-column: auto; }
  .project-large .project-visual { min-height: 360px; }
  .shop-project { padding: 50px 35px 0; }
  .project-browser { height: 330px; }
  .shop-hero { height: 255px; padding: 30px; }
  .chair { transform: scale(.8); transform-origin: center; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; gap: 22px; }
  .price-popular { transform: none; }
  .price-desc { min-height: auto; }
  .benefits-grid { grid-template-columns: 1fr; gap: 45px; }
  .benefits-copy { max-width: 650px; }
  .benefits-visual { width: min(100%, 570px); margin-inline: auto; }
  .faq-grid { grid-template-columns: 1fr; gap: 45px; }
  .faq-intro { position: static; }
  .cta-panel { grid-template-columns: 1fr; padding: 55px 45px 0; text-align: center; }
  .cta-copy .eyebrow { justify-content: center; }.cta-copy h2, .cta-copy > p { margin-inline: auto; }.cta-actions { justify-content: center; }
  .cta-visual { height: 315px; margin-top: 25px; }
  .footer-main { gap: 50px; }
}

@media (max-width: 620px) {
  .container { width: calc(100% - 32px); }
  .section { padding: 70px 0; }
  .header-inner { height: 68px; }
  .brand-logo { width: 176px; }
  .brand-mark { width: 34px; height: 34px; }
  .hero { padding: 116px 0 75px; }
  .hero h1 { font-size: clamp(2.25rem, 11vw, 3.2rem); }
  .hero-lead { margin-top: 20px; font-size: .96rem; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 10px; }
  .hero-actions .button { width: 100%; }
  .hero-trust { align-items: center; text-align: left; }
  .hero-visual { width: 410px; height: 385px; left: 50%; margin-left: -205px; transform: scale(.86); transform-origin: center top; }
  .browser-mockup { width: 430px; height: 300px; right: -35px; top: 30px; }
  .mock-content { padding: 14px; }
  .mock-chart { height: 90px; }
  .phone-mockup { left: -5px; bottom: -20px; }
  .floating-sale { right: -15px; bottom: 18px; }
  .floating-online { left: 35px; }
  .orbit-one { width: 420px; height: 420px; left: 20px; }
  .orbit-two { width: 310px; height: 310px; left: 65px; }
  .section-heading { margin-bottom: 38px; }
  .section-heading h2, .benefits-copy h2, .faq-intro h2 { font-size: 2rem; }
  .section-heading > p { font-size: .9rem; }
  .problem-card { min-height: auto; padding: 24px; }
  .solution-strip { grid-template-columns: auto 1fr; padding: 20px; }
  .solution-strip > a { grid-column: 2; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card, .service-card.service-featured { grid-column: auto; min-height: 270px; display: flex; gap: 0; }
  .service-featured .service-tag { margin-top: 20px; }
  .process-grid { grid-template-columns: 1fr; gap: 5px; }
  .process-step { padding-inline: 30px; }
  .projects-grid { gap: 18px; }
  .project-visual, .project-large .project-visual { min-height: 300px; }
  .shop-project { padding: 35px 20px 0; }
  .project-browser { width: 480px; max-width: none; margin-left: 105px; transform: scale(.72); transform-origin: center top; }
  .project-meta { align-items: flex-start; padding: 22px; }
  .project-meta p { font-size: .78rem; }
  .food-project, .dashboard-project { min-height: 320px; padding-top: 30px; }
  .food-phone { transform: scale(.82); transform-origin: center top; }
  .dash { transform: scale(.76); transform-origin: center top; }
  .price-card { padding: 27px 23px; }
  .benefit-list { grid-template-columns: 1fr; gap: 20px; }
  .benefits-visual { min-height: 380px; }
  .benefits-visual::before { width: 340px; height: 340px; }
  .quote-card { width: calc(100% - 22px); min-height: 260px; padding: 28px 25px; }
  .quote-card blockquote { font-size: 1.1rem; }
  .metric-card { right: -5px; top: 5px; }.support-card { left: -3px; bottom: 7px; }
  .faq-item button { min-height: 70px; }.faq-item button span { font-size: .88rem; }
  .cta-panel { min-height: auto; padding: 42px 22px 0; border-radius: 22px; }
  .cta-copy h2 { font-size: 2.15rem; }
  .cta-actions { align-items: stretch; flex-direction: column; }
  .cta-actions .button { width: 100%; }.cta-actions > span { justify-content: center; }
  .chat-window { transform: scale(.88) rotate(2deg); }
  .footer-main { grid-template-columns: 1fr; gap: 45px; }
  .footer-links { gap: 25px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .floating-whatsapp { width: 52px; height: 52px; right: 15px; bottom: 15px; justify-content: center; padding: 0; }
  .floating-whatsapp span { display: none; }
  .floating-whatsapp svg { width: 27px; height: 27px; }
}

@media (max-width: 390px) {
  .hero-visual { transform: scale(.78); margin-bottom: -55px; }
  .solution-strip { grid-template-columns: 1fr; text-align: left; }.solution-strip > a { grid-column: auto; }
  .project-browser { margin-left: 115px; transform: scale(.68); }
  .project-meta h3 { font-size: 1.12rem; }
  .project-arrow { width: 36px; height: 36px; }
  .metric-card { transform: scale(.85); transform-origin: top right; }
  .support-card { transform: scale(.85); transform-origin: bottom left; }
  .footer-links { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* Ajuste profesional del logo y responsive final */
.brand-wordmark {
  height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
  max-width: 192px;
  overflow: hidden;
  flex: 0 0 auto;
}
.brand-symbol {
  width: 64px;
  height: 44px;
  object-fit: contain;
  flex: 0 0 auto;
}
.brand-divider {
  width: 1px;
  height: 36px;
  flex: 0 0 auto;
  background: rgba(219, 234, 254, .55);
}
.brand-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  line-height: 1;
  color: #fff;
}
.brand-copy strong {
  font: 800 .96rem/1 var(--font-heading);
  letter-spacing: .30em;
  white-space: nowrap;
}
.brand-copy small {
  color: var(--sky-400);
  font: 800 .47rem/1 var(--font-heading);
  letter-spacing: .48em;
  white-space: nowrap;
}
.footer-brand .brand-wordmark {
  max-width: 205px;
  height: 48px;
}
.footer-brand .brand-symbol { width: 70px; height: 48px; }
.footer-brand .brand-divider { height: 39px; }
.footer-brand .brand-copy strong { font-size: 1rem; }
.footer-brand .brand-copy small { font-size: .5rem; }

@media (max-width: 820px) {
  .header-inner { gap: 14px; }
  .brand-wordmark { max-width: 168px; height: 40px; gap: 9px; }
  .brand-symbol { width: 58px; height: 40px; }
  .brand-divider { height: 32px; }
  .brand-copy strong { font-size: .88rem; letter-spacing: .27em; }
  .brand-copy small { font-size: .43rem; letter-spacing: .42em; }
}

@media (max-width: 620px) {
  .container { width: calc(100% - 28px); }
  .header-inner { height: 64px; gap: 10px; }
  .brand-wordmark { max-width: 148px; height: 35px; gap: 7px; }
  .brand-symbol { width: 50px; height: 35px; }
  .brand-divider { height: 28px; }
  .brand-copy { gap: 4px; }
  .brand-copy strong { font-size: .77rem; letter-spacing: .25em; }
  .brand-copy small { font-size: .38rem; letter-spacing: .38em; }
  .menu-toggle { width: 40px; height: 40px; flex: 0 0 auto; }
  .hero { padding: 105px 0 64px; }
  .hero h1 { font-size: clamp(2rem, 10vw, 2.75rem); line-height: 1.08; }
  .hero-lead { font-size: .94rem; line-height: 1.62; }
  .eyebrow { font-size: .64rem; line-height: 1.45; }
  .section-heading h2, .benefits-copy h2, .faq-intro h2 { font-size: 1.82rem; line-height: 1.18; }
  .section-heading > p, .heading-center p { font-size: .89rem; line-height: 1.65; }
  .hero-visual { width: min(100vw, 390px); left: auto; margin: 0 auto -34px; transform: scale(.84); transform-origin: center top; }
  .browser-mockup { right: -12px; }
  .phone-mockup { left: -8px; }
  .project-browser { width: 500px; max-width: none; margin: 0 auto; transform: scale(.62); transform-origin: center top; }
  .food-phone { transform: scale(.78); transform-origin: center top; }
  .dash { transform: scale(.68); transform-origin: center top; }
  .project-meta { gap: 16px; }
  .project-arrow { width: 38px; height: 38px; }
  .footer-brand .brand-wordmark { max-width: 162px; height: 38px; }
  .footer-brand .brand-symbol { width: 54px; height: 38px; }
  .footer-brand .brand-divider { height: 30px; }
  .footer-brand .brand-copy strong { font-size: .84rem; }
  .footer-brand .brand-copy small { font-size: .4rem; }
}

@media (max-width: 390px) {
  .container { width: calc(100% - 24px); }
  .brand-wordmark { max-width: 137px; gap: 6px; }
  .brand-symbol { width: 46px; height: 32px; }
  .brand-divider { height: 26px; }
  .brand-copy strong { font-size: .71rem; letter-spacing: .22em; }
  .brand-copy small { font-size: .35rem; letter-spacing: .34em; }
  .hero h1 { font-size: clamp(1.9rem, 10.5vw, 2.45rem); }
  .hero-visual { width: min(100vw, 360px); transform: scale(.76); margin-bottom: -70px; }
  .project-browser { margin: 0 auto; transform: scale(.58); }
  .food-phone { transform: scale(.72); }
  .dash { transform: scale(.62); }
  .section-heading h2, .benefits-copy h2, .faq-intro h2 { font-size: 1.68rem; }
}


/* ==========================================================
   FIX FINAL: logo compacto, header limpio y mobile cuidado
   ========================================================== */
.site-header {
  background: rgba(5, 14, 27, .94) !important;
  border-bottom: 1px solid rgba(255,255,255,.08) !important;
}
.header-inner {
  height: 64px !important;
  gap: 22px !important;
}
.brand-wordmark {
  height: 38px !important;
  max-width: 132px !important;
  gap: 8px !important;
  overflow: visible !important;
  min-width: 0 !important;
}
.brand-symbol {
  width: 38px !important;
  height: 28px !important;
  object-fit: contain !important;
  flex: 0 0 38px !important;
}
.brand-divider {
  display: none !important;
}
.brand-copy {
  gap: 2px !important;
  min-width: 0 !important;
}
.brand-copy strong {
  font: 800 .9rem/1 var(--font-heading) !important;
  letter-spacing: .08em !important;
  text-transform: uppercase !important;
}
.brand-copy small {
  color: var(--sky-400) !important;
  font: 800 .38rem/1 var(--font-heading) !important;
  letter-spacing: .20em !important;
  text-transform: uppercase !important;
}
.desktop-nav a {
  font-size: .82rem !important;
}
.header-cta {
  min-height: 38px !important;
  padding-inline: 15px !important;
}
.hero {
  padding-top: 140px !important;
}
.footer-brand .brand-wordmark {
  height: 40px !important;
  max-width: 138px !important;
  gap: 8px !important;
}
.footer-brand .brand-symbol {
  width: 40px !important;
  height: 30px !important;
  flex-basis: 40px !important;
}
.footer-brand .brand-copy strong {
  font-size: .92rem !important;
  letter-spacing: .08em !important;
}
.footer-brand .brand-copy small {
  font-size: .39rem !important;
  letter-spacing: .20em !important;
}

@media (max-width: 1060px) {
  .desktop-nav { gap: 18px !important; }
  .brand-wordmark { max-width: 122px !important; }
  .brand-symbol { width: 34px !important; height: 25px !important; flex-basis: 34px !important; }
  .brand-copy strong { font-size: .82rem !important; }
  .brand-copy small { font-size: .34rem !important; }
}

@media (max-width: 820px) {
  .header-inner {
    height: 60px !important;
    gap: 12px !important;
  }
  .brand-wordmark {
    max-width: 116px !important;
    height: 34px !important;
    gap: 7px !important;
  }
  .brand-symbol {
    width: 32px !important;
    height: 24px !important;
    flex-basis: 32px !important;
  }
  .brand-copy strong {
    font-size: .78rem !important;
    letter-spacing: .07em !important;
  }
  .brand-copy small {
    font-size: .31rem !important;
    letter-spacing: .18em !important;
  }
  .hero {
    padding-top: 104px !important;
  }
  .hero-copy {
    padding-inline: 2px !important;
  }
  .hero h1 {
    font-size: clamp(2.1rem, 8vw, 3.05rem) !important;
    line-height: 1.08 !important;
  }
}

@media (max-width: 620px) {
  .container {
    width: calc(100% - 30px) !important;
  }
  .header-inner {
    height: 58px !important;
  }
  .brand-wordmark {
    max-width: 108px !important;
    height: 32px !important;
    gap: 6px !important;
  }
  .brand-symbol {
    width: 30px !important;
    height: 22px !important;
    flex-basis: 30px !important;
  }
  .brand-copy strong {
    font-size: .72rem !important;
    letter-spacing: .06em !important;
  }
  .brand-copy small {
    font-size: .29rem !important;
    letter-spacing: .16em !important;
  }
  .menu-toggle {
    width: 38px !important;
    height: 38px !important;
    border-radius: 10px !important;
  }
  .hero {
    padding: 96px 0 58px !important;
  }
  .hero-copy {
    text-align: left !important;
  }
  .hero-copy .eyebrow {
    justify-content: flex-start !important;
  }
  .hero h1 {
    font-size: clamp(2rem, 9.4vw, 2.6rem) !important;
    letter-spacing: -.045em !important;
  }
  .hero-lead {
    font-size: .95rem !important;
    line-height: 1.62 !important;
  }
  .hero-actions,
  .hero-trust {
    justify-content: flex-start !important;
  }
  .hero-visual {
    width: min(100vw, 380px) !important;
    margin: 0 auto -30px !important;
    transform: scale(.80) !important;
    transform-origin: center top !important;
  }
  .section {
    padding: 78px 0 !important;
  }
  .problem-section {
    padding-top: 72px !important;
  }
  .section-heading h2,
  .benefits-copy h2,
  .faq-intro h2 {
    font-size: clamp(1.75rem, 7.5vw, 2.15rem) !important;
    line-height: 1.14 !important;
  }
  .section-heading > p,
  .heading-center p,
  .benefits-copy > p,
  .faq-intro p {
    font-size: .94rem !important;
    line-height: 1.68 !important;
  }
  .problem-card,
  .service-card,
  .price-card,
  .faq-item,
  .solution-strip,
  .cta-panel {
    border-radius: 20px !important;
  }
  .footer-brand .brand-wordmark {
    max-width: 118px !important;
    height: 34px !important;
  }
  .footer-brand .brand-symbol {
    width: 32px !important;
    height: 24px !important;
    flex-basis: 32px !important;
  }
  .footer-brand .brand-copy strong {
    font-size: .76rem !important;
  }
  .footer-brand .brand-copy small {
    font-size: .30rem !important;
  }
}

@media (max-width: 390px) {
  .container {
    width: calc(100% - 24px) !important;
  }
  .brand-wordmark {
    max-width: 102px !important;
    gap: 5px !important;
  }
  .brand-symbol {
    width: 28px !important;
    height: 20px !important;
    flex-basis: 28px !important;
  }
  .brand-copy strong {
    font-size: .68rem !important;
    letter-spacing: .05em !important;
  }
  .brand-copy small {
    font-size: .27rem !important;
    letter-spacing: .14em !important;
  }
  .hero h1 {
    font-size: clamp(1.85rem, 9.8vw, 2.35rem) !important;
  }
  .hero-visual {
    width: min(100vw, 350px) !important;
    transform: scale(.74) !important;
    margin-bottom: -78px !important;
  }
}


/* ==========================================================
   MARCA FINAL: Wordmark textual sin símbolo en header/footer
   ========================================================== */
.site-header {
  background: rgba(5, 14, 27, .96) !important;
}
.header-inner {
  min-height: 64px !important;
  height: 64px !important;
  align-items: center !important;
}
.brand-wordmark {
  width: auto !important;
  max-width: none !important;
  min-width: 118px !important;
  height: auto !important;
  gap: 0 !important;
  padding: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  flex: 0 0 auto !important;
  text-decoration: none !important;
}
.brand-wordmark .brand-symbol,
.brand-wordmark .brand-divider {
  display: none !important;
}
.brand-wordmark .brand-copy {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: center !important;
  gap: 5px !important;
  min-width: 0 !important;
  line-height: 1 !important;
}
.brand-wordmark .brand-copy strong {
  display: block !important;
  color: #f8fbff !important;
  font-family: var(--font-heading) !important;
  font-size: 1.02rem !important;
  font-weight: 850 !important;
  line-height: .95 !important;
  letter-spacing: .28em !important;
  text-transform: uppercase !important;
}
.brand-wordmark .brand-copy small {
  display: block !important;
  color: var(--sky-400) !important;
  font-family: var(--font-heading) !important;
  font-size: .48rem !important;
  font-weight: 850 !important;
  line-height: .95 !important;
  letter-spacing: .48em !important;
  text-transform: uppercase !important;
}
.footer-brand .brand-wordmark {
  min-width: 128px !important;
  max-width: none !important;
  height: auto !important;
}
.footer-brand .brand-wordmark .brand-copy strong {
  font-size: 1.08rem !important;
  letter-spacing: .28em !important;
}
.footer-brand .brand-wordmark .brand-copy small {
  font-size: .5rem !important;
  letter-spacing: .5em !important;
}

@media (max-width: 1060px) {
  .brand-wordmark { min-width: 112px !important; }
  .brand-wordmark .brand-copy strong { font-size: .96rem !important; letter-spacing: .25em !important; }
  .brand-wordmark .brand-copy small { font-size: .43rem !important; letter-spacing: .43em !important; }
}

@media (max-width: 820px) {
  .header-inner { height: 60px !important; min-height: 60px !important; }
  .brand-wordmark { min-width: 106px !important; }
  .brand-wordmark .brand-copy { gap: 4px !important; }
  .brand-wordmark .brand-copy strong { font-size: .9rem !important; letter-spacing: .22em !important; }
  .brand-wordmark .brand-copy small { font-size: .39rem !important; letter-spacing: .38em !important; }
}

@media (max-width: 620px) {
  .header-inner { height: 58px !important; min-height: 58px !important; }
  .brand-wordmark { min-width: 98px !important; }
  .brand-wordmark .brand-copy strong { font-size: .84rem !important; letter-spacing: .19em !important; }
  .brand-wordmark .brand-copy small { font-size: .36rem !important; letter-spacing: .33em !important; }
  .footer-brand .brand-wordmark { min-width: 108px !important; }
  .footer-brand .brand-wordmark .brand-copy strong { font-size: .92rem !important; letter-spacing: .22em !important; }
  .footer-brand .brand-wordmark .brand-copy small { font-size: .40rem !important; letter-spacing: .38em !important; }
}

@media (max-width: 390px) {
  .brand-wordmark { min-width: 92px !important; }
  .brand-wordmark .brand-copy strong { font-size: .78rem !important; letter-spacing: .17em !important; }
  .brand-wordmark .brand-copy small { font-size: .33rem !important; letter-spacing: .30em !important; }
}
