 :root { --font-sans: "Public Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, Roboto, Helvetica, Arial, sans-serif; --font-display: var(--font-sans); --surface-0: rgba(255,255,255,0.02); --surface-1: rgba(255,255,255,0.04); --surface-2: rgba(255,255,255,0.08); --surface-3: rgba(255,255,255,0.14); --space-sm: 16px; --space-md: 24px; --space-lg: 64px; --r-xs: 2px; --r-sm: 4px; --r-md: 6px; --r-lg: 9px; --r-xl: 14px; --primary: #00d4aa; --primary-dark: #00b891; --bg: #0a0e13; --bg-soft: #10161d; --text: #ffffff; --text-soft: rgba(255,255,255,0.86); --text-dim: rgba(255,255,255,0.68); --accent: #00d4ff; --border: rgba(255,255,255,0.16); --shadow: rgba(0,0,0,0.3); --nav-h: 64px; --space-section: 64px; --space-section-sm: 56px; --space-section-lg: 96px; --space-gap-between: 84px; --heading-size-sm: 1.15rem; --heading-size-md: clamp(1.55rem,4.6vw,2.1rem); --heading-size-lg: clamp(2rem,5.5vw,2.6rem); } :root { --bs-primary: #00d4aa; --bs-secondary: #00d4ff; --bs-dark: #0a0e13; --bs-body-bg: var(--bg); --bs-body-color: var(--text); } .navbar { background: rgba(10,14,19,0.9); backdrop-filter: blur(20px); border-bottom: 1px solid var(--border); } .site-header { position: fixed; inset: 0 0 auto 0; z-index: 1100; background: rgba(10,14,19,0.9); backdrop-filter: blur(10px); border-bottom: 1px solid var(--border); } .site-header .header-inner { display:flex; align-items:center; justify-content:space-between; gap:12px; padding: 8px 16px; min-height: var(--nav-h); } .site-header .brand { font-weight:700; font-size:1.05rem; color:var(--text); text-decoration:none; } .header-actions { display:flex; align-items:center; gap:8px; } .header-actions .hamburger { display:inline-flex; align-items:center; justify-content:center; width:44px; height:44px; line-height:1; } .site-header .brand { display:inline-flex; align-items:center; justify-content:center; height:44px; padding:0 8px; line-height:1; } .side-menu { position: fixed; inset: 0 0 0 0; pointer-events: none; z-index: 1200; background: rgba(0,0,0,0); transition: background-color .25s ease, backdrop-filter .25s ease; } .side-menu[aria-hidden="false"] { background: rgba(0,0,0,0.35); pointer-events: auto; backdrop-filter: blur(2px); } .side-menu .side-menu-inner { position: absolute; top:0; left:0; width:280px; max-width:86vw; height:100vh; background: linear-gradient(180deg, rgba(15,20,25,0.98), rgba(10,14,19,0.98)); box-shadow: 10px 0 30px rgba(0,0,0,0.55); transform: translateX(-110%); transition: transform .28s cubic-bezier(.2,.9,.2,1), background-color .25s ease, color .25s ease, box-shadow .25s ease, border-color .25s ease; will-change: transform, background-color; pointer-events: auto; padding:16px; z-index:1220 } .side-menu[aria-hidden="false"] .side-menu-inner { transform: translateX(0); } .side-close { background:transparent; border:none; color:var(--text); font-size:1.3rem; position:relative; padding:6px 8px; border-radius:8px; } .side-header { display:flex; align-items:center; justify-content:space-between; gap:12px; padding-bottom:10px; border-bottom:1px solid var(--border); margin-bottom:10px; } .side-controls .theme-toggle { width:40px; height:40px; display:inline-flex; align-items:center; justify-content:center; box-shadow: none; } body.theme-light .side-menu .side-menu-inner, .side-menu.theme-light .side-menu-inner { background: linear-gradient(180deg, #ffffff, #fafafa); color: var(--text); border-left: 1px solid rgba(0,0,0,0.06); box-shadow: 8px 0 30px rgba(0,0,0,0.04); } .side-menu.theme-light .side-link { color: var(--text-dim); } .side-menu.theme-light .side-link:hover, .side-menu.theme-light .side-link:focus { color: var(--text); } .side-menu.theme-dark .side-menu-inner { background: linear-gradient(180deg, rgba(15,20,25,0.98), rgba(10,14,19,0.98)); color: var(--text); } .side-menu .side-menu-inner, .side-menu.theme-light .side-menu-inner, .side-menu.theme-dark .side-menu-inner { transition: transform .32s cubic-bezier(.2,.9,.2,1), background-color .25s ease, box-shadow .25s ease, color .2s ease; } .side-nav { margin-top:48px; } .side-nav ul { list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:12px; } .side-link { color:var(--text-soft); text-decoration:none; font-weight:600; padding:10px 6px; display:block; } .side-link:active, .side-link:focus, .side-link:hover { color:var(--text); } html, body { overflow-x: hidden; } @media (max-width:420px){ .site-header .brand { font-size:1rem; } .header-actions a.btn.btn-primary { display:none; } .btn-ghost-whatsapp { display:inline-flex; width:40px; height:40px; align-items:center; justify-content:center; background:linear-gradient(180deg,#25D366,#1AA05A); border-radius:10px; box-shadow:0 6px 18px rgba(0,0,0,0.2); text-decoration:none; } .btn-ghost-whatsapp svg { transform:translateY(1px); } .site-header .header-inner { padding: 8px 12px; } } @media (max-width:768px){ :root { --space-section: 56px; } .hero-block, .hero-cluster { padding-top: calc(var(--nav-h) + 8px); padding-bottom: var(--space-section); } .qa-section, .benefits-puzzle, .pricing-section { padding-top: 28px; padding-bottom: 40px; } .benefits-grid-section { padding-top: 40px; padding-bottom: 52px; } } @media(min-width:900px){ .side-menu { display:none; } .header-actions .hamburger { display:none; } } body.theme-light { --bg: #f7f9fb; --bg-soft: #ffffff; --text: #0a0e13; --text-soft: rgba(10,14,19,0.82); --text-dim: rgba(10,14,19,0.55); --border: rgba(10,14,19,0.12); --shadow: rgba(0,0,0,0.15); } body.theme-light .site-header { background: rgba(255,255,255,0.85); } body.theme-light .hero-tagline { -webkit-text-fill-color: initial; background: linear-gradient(135deg,#0a0e13 0%, var(--primary) 100%); -webkit-background-clip: text; background-clip: text; } body.theme-light .benefit { background: rgba(0,0,0,0.04); border-color: rgba(0,0,0,0.08); } body.theme-light .benefit:hover { background: rgba(0,0,0,0.06); } body.theme-light .testimonial-card { background: rgba(255,255,255,0.75); border-color: rgba(0,0,0,0.08); } body.theme-light .benefit-icon.whatsapp, body.theme-light .benefit-icon.permit, body.theme-light .benefit-icon.cash { filter: none; } body.theme-light .pricing-section::after { opacity: 0.08; } body.theme-light .puzzle-preview svg rect[fill="#00d4aa"], body.theme-light .puzzle-preview svg rect[fill="#00d4ff"], body.theme-light .puzzle-preview svg rect[fill="#22e1bd"] { opacity: 0.12; } body.theme-light .qa-icon { background: rgba(0,0,0,0.04); border-color: rgba(0,0,0,0.08); } body.theme-light .qa-section, body.theme-light .benefits-minimal, body.theme-light .process-section, body.theme-light .testimonials-section, body.theme-light .pricing-section { background: rgba(255,255,255,0.95); color: var(--text); } .theme-toggle { background:none; border:none; width:40px; height:40px; display:inline-flex; align-items:center; justify-content:center; cursor:pointer; position:relative; font-size:1.05rem; } .theme-toggle .icon-sun, .theme-toggle .icon-moon { position:absolute; inset:0; display:flex; align-items:center; justify-content:center; transition:opacity .3s ease, transform .45s ease; font-size:1.05rem; } .theme-toggle .icon-sun { color:#ffc94d; text-shadow:0 0 4px rgba(255,201,77,0.55); } .theme-toggle .icon-moon { color:#7ab6ff; text-shadow:0 0 4px rgba(122,182,255,0.55); opacity:0; transform:scale(.7) rotate(-30deg); } .theme-toggle[data-mode="light"] .icon-sun { opacity:0; transform:scale(.7) rotate(30deg); } .theme-toggle[data-mode="light"] .icon-moon { opacity:1; transform:scale(1) rotate(0deg); } .theme-toggle:focus-visible { outline:2px solid #28d1b0; outline-offset:3px; border-radius:10px; } .phone-mock .hc-msg.client, .phone-mock .hc-msg.client * { color:#ffffff !important; } .phone-mock .hc-msg.user, .phone-mock .hc-msg.user * { color:#ffffff !important; } body.theme-light .phone-mock .hc-msg.client, body.theme-light .phone-mock .hc-msg.client * { color:#ffffff !important; } body.theme-light .phone-mock .hc-msg.user, body.theme-light .phone-mock .hc-msg.user * { color:#ffffff !important; } * { margin:0; padding:0; box-sizing:border-box; } body { font-family: var(--font-sans); background: var(--bg); color: var(--text); line-height: 1.6; overflow-x: hidden; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-rendering: optimizeLegibility; } h1, h2, h3, .hero-tagline, .pricing-title, .price-main, .testimonials-title { font-family: var(--font-display); letter-spacing: -0.02em; } .eyebrow { text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.78rem; color: var(--text-dim); font-weight: 700; } .lead { font-size: clamp(1.05rem, 2.4vw, 1.25rem); color: var(--text-soft); } .muted { color: var(--text-dim); } .progress-bar { position:fixed; top:0; left:0; width:100%; height:3px; background:rgba(0,212,255,0.1); z-index:1000; } .progress { height:100%; background:linear-gradient(90deg,var(--accent),var(--primary)); width:0%; transition:width 0.3s ease; } .hero-block { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; padding: 100px 0 84px; align-items: center; min-height: 100vh; position: relative; } .hero-block::before { content: ""; position: absolute; inset: 0; pointer-events: none; z-index: -1; background: url('./assets/img/bg-grid.svg') center/cover no-repeat, url('./assets/img/bg-noise.png') repeat; opacity: 0.12; } .hero-has-bg { background:none !important; } body.theme-light .hero-has-bg { background:none !important; } body.theme-light .hero-has-bg::before { opacity:0.06; } .hero-cluster { padding: calc(var(--nav-h) + 60px + env(safe-area-inset-top)) 0 72px; min-height: 100vh; position: relative; } .hero-cluster::before { content:""; position:absolute; inset:0; pointer-events:none; z-index:-1; background:radial-gradient(circle at 30% 35%, rgba(0,212,170,0.18), transparent 65%); opacity:.5; } .hc-inner { width:100%; display:contents; } .hc-copy { max-width:640px; margin-left:auto; margin-right:auto; text-align:center; } .hc-head { font-size:clamp(2.07rem,5.76vw,3.10rem); line-height:1.05; letter-spacing:-0.03em; background:linear-gradient(120deg,var(--text) 0%, var(--primary) 85%); -webkit-background-clip:text; background-clip:text; color:transparent; margin-top:0; margin-bottom: 18px; } .hc-sub { margin-top:0; margin-bottom: 20px; font-size:clamp(1rem,2.2vw,1.15rem); color:var(--text-soft); line-height:1.45; } .hero-cluster .hc-head, .hero-cluster .hc-sub, .hero-cluster .hc-cta-row, .hero-cluster .hc-card, .hero-cluster .hc-chat .hc-msg { opacity:0; transform:translateY(18px); transition:opacity .55s ease, transform .55s ease; } .hero-cluster.ready .hc-head { opacity:1; transform:none; transition-delay:.05s; } .hero-cluster.ready .hc-sub { opacity:1; transform:none; transition-delay:.15s; } .hero-cluster.ready .hc-cta-row { opacity:1; transform:none; transition-delay:.25s; } .hero-cluster.ready .hc-chat .hc-msg { opacity:1; transform:none; } .hero-cluster.ready .hc-chat .hc-msg:nth-child(1){ transition-delay:.35s; } .hero-cluster.ready .hc-chat .hc-msg:nth-child(2){ transition-delay:.50s; } .hero-cluster.ready .hc-chat .hc-msg:nth-child(3){ transition-delay:.65s; } .hero-cluster.ready .hc-chat .hc-msg:nth-child(4){ transition-delay:.80s; } .hero-cluster.ready .hc-chat .hc-msg:nth-child(5){ transition-delay:.95s; } @media (prefers-reduced-motion:reduce){ .hero-cluster .hc-head, .hero-cluster .hc-sub, .hero-cluster .hc-cta-row, .hero-cluster .hc-card { opacity:1 !important; transform:none !important; transition:none !important; } } .hc-cta-row { margin-top:2.1rem; display:flex; flex-wrap:wrap; gap:0.6rem; align-items:center; } .hero-cluster .hc-cta-row .cta-primary { padding:7px 12px; border-radius: var(--r-sm); box-shadow:none; } .hero-cluster .hc-cta-row .cta-primary .cta-text { font-size:0.95rem; font-weight:700; } @media (max-width:420px){ .hc-cta-row { margin-top:1.8rem; } .hero-cluster .hc-cta-row .cta-primary { padding:8px 12px; } .hero-cluster .hc-cta-row .cta-primary .cta-text { font-size:0.9rem; } } .hc-trust { font-size:.72rem; letter-spacing:.4px; text-transform:none; color:var(--text-dim); opacity:0.9; margin-left:6px; margin-top:6px; } @media (max-width:640px){ .hc-trust { font-size:.68rem; opacity:0.9; } } .hc-visual { max-width:480px; position:relative; } .hc-sources { position:absolute; inset:0; pointer-events:none; font:600 .55rem/1 var(--font-sans); text-transform:uppercase; letter-spacing:.5px; } .hc-source { position:absolute; background:var(--bg-soft); border:1px solid var(--border); padding:.45rem .55rem; border-radius:8px; box-shadow:0 4px 14px -4px rgba(0,0,0,0.5); opacity:.85; backdrop-filter:blur(4px); } .hc-source.s1 { top:4%; left:8%; } .hc-source.s2 { top:16%; left:54%; } .hc-source.s3 { top:38%; left:4%; } .hc-source.s4 { top:64%; left:62%; } .hc-source.s5 { top:72%; left:22%; } .hc-source.s6 { top:12%; left:78%; } .hc-output { display:grid; gap:14px; grid-template-columns:repeat(auto-fit,minmax(150px,1fr)); margin-top:40px; position:relative; z-index:2; } .chat-demo { margin-top:1rem; } .hc-chat { background:var(--bg-soft); border:1px solid var(--border); border-radius:18px; padding:1rem .95rem 1.15rem; display:flex; flex-direction:column; gap:.55rem; max-width:480px; font-size:.82rem; line-height:1.35; box-shadow:0 6px 22px -10px rgba(0,0,0,.55); } .hc-msg { background:rgba(255,255,255,0.06); padding:.48rem .7rem .9rem; border-radius:12px; width:82%; max-width:82%; position:relative; box-sizing:border-box; font-size:0.82rem; line-height:1.25; overflow:visible; } .hc-msg.user { background:var(--primary-dark); color:#fff; margin-right:auto; } .hc-msg.sys { background:rgba(255,255,255,0.06); color:var(--text-soft); } .hc-msg.parse { border:1px solid rgba(255,255,255,0.08); } .hc-msg.estimate { border:1px solid var(--primary); box-shadow:0 0 0 1px rgba(0,212,170,0.25); } .hc-msg.client { margin-right: auto; background: rgba(255,255,255,0.06); color: var(--text-soft); align-self:flex-start; border-top-left-radius:4px; border-top-right-radius:14px; border-bottom-right-radius:14px; } .hc-msg.bildr { margin-left: auto; background: linear-gradient(135deg,var(--primary) 0%, var(--primary-dark) 90%); color: #fff; align-self:flex-end; border-top-right-radius:4px; border-top-left-radius:14px; border-bottom-left-radius:14px; } .typing { display:inline-flex; align-items:center; gap:6px; padding:.18rem .28rem; border-radius:10px; background:transparent; } .typing .typing-text { display:none; } .typing .dot { width:5px; height:5px; background:rgba(255,255,255,0.85); border-radius:50%; opacity:0.95; transform:translateY(0); animation: heroBounce 1s infinite ease-in-out; display:inline-block; } .typing .dot:nth-child(1){ animation-delay:0s } .typing .dot:nth-child(2){ animation-delay:0.12s } .typing .dot:nth-child(3){ animation-delay:0.24s } @keyframes blink { 0%{ opacity:0.2; transform:translateY(0) } 50%{ opacity:1; transform:translateY(-3px) } 100%{ opacity:0.2; transform:translateY(0) } } .msg-ts { display:block; font-size:0.62rem; color:var(--text-dim); margin-top:6px; opacity:0.9; } .hero-cluster { padding-top: calc(var(--nav-h) + 28px + env(safe-area-inset-top)); } .hero-cluster .hc-head { margin-bottom: 4rem; } .hero-cluster .hc-sub { margin-bottom: 4px; } .hero-cluster .hc-cta-row { margin-top: 0.4rem; } @media (max-width:420px){ .hero-cluster { padding-top: calc(var(--nav-h) + 20px + env(safe-area-inset-top)); } .hero-cluster .hc-head { margin-bottom: 2.2rem; } .hero-cluster .hc-sub { margin-bottom: 6px; } .hero-cluster .hc-cta-row { margin-top: 0.9rem; } } .hc-trust { margin-top: 2px; margin-left:6px; } @media (max-width:420px){ .hero-cluster.hc-override .hc-head, .hero-cluster .hc-head { margin-bottom: 2.8rem !important; } .hero-cluster.hc-override .hc-sub, .hero-cluster .hc-sub { margin-bottom: 6px !important; } .hero-cluster.hc-override .hc-cta-row, .hero-cluster .hc-cta-row { margin-top: 0.9rem !important; } } .hero-cluster .hc-sub { margin-bottom: 2px !important; } .hc-trust { margin-top: 2px !important; } .phone-mock { position:relative; } .phone-mock .chat-replay { position:absolute; top:14px; right:14px; width:34px; height:34px; z-index:60; display:flex; align-items:center; justify-content:center; font-size:1rem; line-height:1; background:none !important; border:none !important; box-shadow:none !important; color:#22e1bd; cursor:pointer; padding:0; } .phone-mock .chat-replay span, .phone-mock .chat-replay text, .phone-mock .chat-replay::after { font-size:0; } .phone-mock .chat-replay::before { content:"\27F3"; font-size:1.05rem; display:block; color:#22e1bd; opacity:0.95; transition:opacity .25s ease, transform .25s ease; } .phone-mock .chat-replay:hover::before { opacity:1; } .phone-mock .chat-replay:active::before { transform:scale(.9); opacity:.85; } .phone-mock .chat-replay:focus-visible { outline:2px solid rgba(34,225,189,0.6); outline-offset:4px; border-radius:4px; } .phone-mock .chat-replay.spin::before { animation: replaySpin .65s ease-in-out; } @keyframes replaySpin { 0%{ transform:rotate(0deg) scale(1); } 55%{ transform:rotate(300deg) scale(1.15); } 100%{ transform:rotate(360deg) scale(1); } } .phone-mock .chat-replay .hit { position:absolute; inset:-6px; border-radius:8px; } .phone-mock { background: linear-gradient(145deg,#0f141a,#131c24); } .phone-mock .pm-screen { background:#0c1217; border-color: rgba(255,255,255,0.07); } .theme-light .phone-mock, body.theme-light .phone-mock, body.theme-light .phone-mock * { color:inherit; } body.theme-light .phone-mock { background: linear-gradient(145deg,#0f141a,#131c24) !important; border-color: rgba(255,255,255,0.06) !important; } body.theme-light .phone-mock .pm-screen { background:#0c1217 !important; border-color: rgba(255,255,255,0.07) !important; } body.theme-light .phone-mock .hc-msg { background:rgba(255,255,255,0.06) !important; } body.theme-light .phone-mock .hc-msg.user { background:linear-gradient(135deg,var(--primary) 0%, var(--primary-dark) 90%) !important; color:#fff !important; } body.theme-light .phone-mock .hc-msg.bildr { background:linear-gradient(135deg,var(--primary) 0%, var(--primary-dark) 90%) !important; color:#fff !important; } body.theme-light .phone-mock .hc-msg.sys { background:rgba(255,255,255,0.05) !important; color:var(--text-soft) !important; } body.theme-light .phone-mock .chip { background: rgba(255,255,255,0.06) !important; border-color: rgba(255,255,255,0.06) !important; } .phone-mock .hc-msg.user { color: #ffffff !important; } .phone-mock .chip { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.06); color: rgba(5,20,18,0.95); } .phone-mock .hc-chat { gap:0.5rem; } .phone-mock .hc-msg { width:96% !important; max-width:96% !important; box-sizing:border-box; } .phone-mock .hc-msg .msg-content, .phone-mock .hc-msg .msg-actions, .phone-mock .hc-msg .quote-card, .phone-mock .hc-msg .quote-head { width: 100% !important; max-width: 100% !important; box-sizing: border-box !important; } .msg-sender { display:block; font-size:0.58rem; font-weight:700; letter-spacing:0.02em; text-transform:uppercase; margin-bottom:6px; } .msg-sender.client { color: rgba(255,255,255,0.95); text-align:left; } .msg-sender.bildr { color: rgba(255,255,255,0.9); text-align:right; } .hc-msg { margin-top:2px; } .msg-container { display:flex; flex-direction:column; } .msg-row { display:flex; flex-direction:column; width:100%; } .msg-row.align-right { align-items:flex-end; } .msg-row.align-left { align-items:flex-start; } .msg-row.side-by-side { display:flex; justify-content:space-between; gap:12px; align-items:flex-end; } .msg-row.side-by-side .msg-container { width:48%; } .quote-icon { display:inline-flex; align-items:center; gap:8px; padding:6px 8px; border-radius:8px; background:rgba(255,255,255,0.04); } .msg-actions { display:flex; gap:6px; margin-top:8px; flex-wrap:nowrap !important; align-items:center; justify-content:flex-start; max-width:100% !important; } .msg-actions .action-btn { padding:4px 6px; font-size:0.64rem; border-radius:8px; border:none; cursor:pointer; font-weight:700; min-width:44px; white-space:nowrap; flex: 0 0 auto; } .msg-actions .action-btn.approve { background:#18a14b; color:#ffffff; } .msg-actions .action-btn.modify { background:#f2c94c; color:#111111; } .msg-actions .action-btn.cancel { background:#ef4b4b; color:#ffffff; } .chip { display:inline-flex; align-items:center; gap:6px; padding:6px 8px; background:rgba(0,212,170,0.12); border:1px solid rgba(0,212,170,0.4); color:var(--primary); font-size:0.76rem; line-height:1; border-radius:18px; margin:6px 6px 6px 0; font-weight:700; letter-spacing:0.4px; } .hc-msg.bildr .chip { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.06); color: rgba(5,20,18,0.95); } .chip.area { --chip-clr:var(--primary); } .chip.action { background:rgba(0,212,255,0.12); border-color:rgba(0,212,255,0.4); color:var(--accent); } .chip.issue { background:rgba(255,140,0,0.12); border-color:rgba(255,140,0,0.4); color:#ffb25a; } body.theme-light .chip { background: rgba(0,0,0,0.06); border-color: rgba(0,0,0,0.08); color: var(--text); } body.theme-light .chip.action { background: rgba(0,212,255,0.08); color: #004e66; } body.theme-light .chip.issue { background: rgba(255,140,0,0.08); color: #7a4f00; } .est-note { font-size:.6rem; opacity:.7; } .hc-copy.minimal { max-width:560px; } .hc-copy.minimal .hc-head { margin-bottom:0.81rem; } .hc-cta-row.solo { margin-top:0; } .phone-mock { position:relative; width: clamp(250px, 32vw, 300px); max-width:88vw; aspect-ratio: 9 / 18.2; margin:0.9rem auto 0; border-radius:32px; padding:12px 8px 14px; background:linear-gradient(145deg,#0f141a,#131c24); border:1px solid rgba(255,255,255,0.04); box-shadow:0 4px 14px -6px rgba(0,0,0,0.5); display:flex; flex-direction:column; overflow:hidden; } .pm-notch { position:absolute; top:6px; left:50%; transform:translateX(-50%); width:110px; height:20px; border-radius:12px; background:#0d1318; border:1px solid rgba(255,255,255,0.06); } .pm-screen { background:#0c1217; border:1px solid rgba(255,255,255,0.07); border-radius:26px; padding:44px 14px 18px; flex:1 1 auto; display:flex; flex-direction:column; overflow:hidden; position:relative; } .pm-screen .hc-chat .msg-row:first-child { margin-top:12px; } .pm-screen .hc-chat { flex:1 1 auto; overflow-y:auto; overscroll-behavior:contain; scrollbar-width:none; } .pm-screen .hc-chat::-webkit-scrollbar { width:0; height:0; } .hc-chat.inline { background:none; border:none; box-shadow:none; padding:0; width:100%; } .hc-chat.inline .hc-msg { max-width:84%; } .hc-chat.inline .hc-msg.user { margin-left:auto; background:linear-gradient(135deg,var(--primary) 0%, var(--primary-dark) 90%); box-shadow:0 2px 8px -2px rgba(0,0,0,.6); } .hc-chat.inline .hc-msg.sys { background:rgba(255,255,255,0.05); } .hc-chat.inline .hc-msg.estimate { border-color:var(--primary); } .hc-chat.inline .hc-msg { opacity:0; transform:translateY(10px); } .hero-cluster.ready .hc-chat.inline .hc-msg.revealed { opacity:1; transform:none; transition:opacity .45s ease, transform .45s ease; } @media (max-width:640px){ .msg-actions .action-btn { min-width:56px; padding:6px 6px; font-size:0.74rem; } .hc-cta-row { margin-top:1.8rem; } } @media (max-width:420px){ .phone-mock { width: clamp(230px, 82vw, 286px); aspect-ratio:9 / 18; padding:10px 8px 14px; } .pm-screen { padding:32px 12px 16px; } } @media (max-width:768px){ .hc-head { margin-bottom: 14px; } .hc-sub { margin-bottom: 14px; } .hc-cta-row { margin-top: 1.6rem; } .hc-trust { margin-top: 8px; } } @media (max-width:640px){ .hero-cluster { padding-bottom:60px; } } @media (max-width:420px){ .hero-cluster { padding-bottom:54px; } } .hero-cluster .cta-primary { font-size:.92rem; } .cta-primary:focus-visible, .theme-toggle:focus-visible, .fab-whatsapp:focus-visible { outline: 3px solid rgba(0,212,170,0.18); outline-offset: 3px; } .cta-primary.cta-whatsapp { background: linear-gradient(135deg,#25D366,#128C7E); box-shadow:0 6px 16px -6px rgba(37,211,102,0.28); } .cta-primary.cta-whatsapp:hover { box-shadow:0 8px 20px -6px rgba(37,211,102,0.32); } .hero-cta-center { justify-content:center !important; text-align:center; width:100%; } .hero-cta-center .cta-text { font-size:1.05rem; letter-spacing:-0.01em; } .hero-cta-center .btn.btn-primary, .hero-cta-center .cta-primary { padding:10px 18px; border-radius: var(--r-md); } .hero-cta-center .btn.btn-primary .cta-text { font-size:1.0rem; } .hero-cta-center .hc-trust { margin-top:2px; } .hero-cluster .hero-cta-center .cta-whatsapp { min-width:0; font-size:.9rem; } .hc-head .hero-key { position:relative; display:inline-block; font-weight:800; background:linear-gradient(90deg,#25D366,#22e1bd); -webkit-background-clip:text; background-clip:text; color:transparent; filter:drop-shadow(0 2px 6px rgba(37,211,102,0.35)); } @supports not (background-clip:text) { .hc-head .hero-key { color:#25D366; } } .hc-head .hero-key::after { content:""; position:absolute; left:0; bottom:2px; width:100%; height:38%; background:linear-gradient(90deg,rgba(37,211,102,0.18),rgba(37,211,102,0)); filter:blur(6px); pointer-events:none; z-index:-1; } @media (max-width:640px){ .hero-cta-center .btn.btn-primary, .hero-cta-center .cta-primary { padding:9px 16px; } .hero-cta-center .cta-text { font-size:0.86rem; } } .cta-secondary-sample { background:none; border:1px solid rgba(255,255,255,0.18); color:var(--text-soft); font-size:.75rem; font-weight:600; padding:6px 10px; border-radius:8px; cursor:pointer; transition:background .25s, color .25s, border-color .25s; } .cta-secondary-sample:hover { background:rgba(255,255,255,0.08); color:var(--text); } .detected-scope { display:block; font-size:.55rem; letter-spacing:.5px; text-transform:uppercase; opacity:.78; margin-bottom:2px; font-weight:700; } .chat-replay { color:#fff; cursor:pointer; } .hero-cluster .chat-replay:not(.inside-phone) { position:absolute; bottom:10px; right:10px; width:34px; height:34px; border-radius:8px; background:rgba(0,0,0,0.45); display:flex; align-items:center; justify-content:center; font-size:.85rem; } .quote-placeholder { margin:6px 0 4px; height:42px; border-radius:10px; background:linear-gradient(90deg,rgba(255,255,255,0.08),rgba(255,255,255,0.03)); filter:blur(.3px); position:relative; overflow:hidden; } .quote-placeholder::after { content:""; position:absolute; inset:0; background:linear-gradient(110deg,transparent,rgba(255,255,255,0.18),transparent); animation:qp-shine 2.6s linear infinite; opacity:.55; } @keyframes qp-shine { 0% { transform:translateX(-100%);} 100% { transform:translateX(100%);} } .ai-detect-block { background:rgba(0,0,0,0.25); border:1px solid rgba(255,255,255,0.14); padding:6px 8px 8px; border-radius:10px; margin:0 0 6px; position:relative; } .hc-msg.bildr .ai-detect-block { background:rgba(0,0,0,0.18); } .ai-detect-label { font-size:.45rem; font-weight:600; letter-spacing:.5px; text-transform:uppercase; opacity:.85; margin:0 0 4px; display:block; } .ai-detect-list { list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:2px; font-size:.54rem; line-height:1.2; } .ai-detect-list li { background:rgba(255,255,255,0.07); padding:4px 6px; border-radius:6px; } .hc-msg.bildr .ai-detect-list li { background:rgba(255,255,255,0.15); color:#040c0b; font-weight:600; } .ai-follow-up { font-size:.72rem; line-height:1.25; margin-top:2px; } .ai-follow-up .ai-hint { opacity:.7; font-size:.65rem; } .see-it-section { padding:60px 0 40px; position:relative; } .see-it-title { font-size:clamp(1.6rem,4.2vw,2.4rem); margin:0 0 10px; } .see-it-lead { color:var(--text-dim); margin:0 0 28px; font-size:.95rem; } .role-choices { display:flex; gap:18px; flex-wrap:wrap; margin-bottom:26px; } .role-card { flex:1 1 200px; min-width:190px; background:rgba(255,255,255,0.05); border:1px solid rgba(255,255,255,0.08); border-radius:16px; padding:18px 16px 20px; text-align:left; cursor:pointer; transition:background .25s,border-color .25s,transform .25s; display:flex; flex-direction:column; gap:6px; } .role-card:hover, .role-card[aria-pressed="true"] { background:rgba(255,255,255,0.08); border-color:rgba(255,255,255,0.18); transform:translateY(-3px); } .role-card .r-title { font-weight:700; font-size:.95rem; letter-spacing:.5px; } .role-card .r-desc { font-size:.78rem; color:var(--text-dim); line-height:1.2; } .role-demo-placeholder { background:rgba(255,255,255,0.03); border:1px dashed rgba(255,255,255,0.12); border-radius:14px; padding:26px 20px; font-size:.8rem; min-height:120px; display:flex; align-items:center; justify-content:center; color:var(--text-dim); } .privacy-note { font-size:.65rem; letter-spacing:.25px; opacity:.7; margin-top:24px; font-weight:600; text-align:center; } .sample-quote-preview { margin-top:14px; background:rgba(255,255,255,0.05); border:1px solid rgba(255,255,255,0.1); border-radius:14px; padding:14px 16px 16px; font-size:.72rem; line-height:1.3; position:relative; } .sample-quote-preview .sq-head { font-weight:700; font-size:.78rem; letter-spacing:.5px; text-transform:uppercase; margin:0 0 6px; opacity:.85; } .sample-quote-preview .sq-lines { list-style:none; margin:0 0 8px; padding:0; display:grid; gap:3px; } .sample-quote-preview .sq-lines li { background:rgba(255,255,255,0.04); padding:4px 6px; border-radius:6px; } .sample-quote-preview .sq-total { font-weight:600; font-size:.75rem; } @media (max-width:640px){ :root { --space-lg: 56px; --space-md: 18px; --space-section: 56px; } .hero-cluster { padding-bottom: var(--space-section); } .qa-section, .benefits-puzzle, .pricing-section { padding-top: 24px; padding-bottom: 32px; } .benefits-grid-section { padding-top: 32px; padding-bottom: 40px; } } .br-hide-sm { display:none; } body.theme-light .hc-head { background:linear-gradient(120deg,#0a0e13 0%, var(--primary) 85%); -webkit-background-clip:text; background-clip:text; } body.theme-light .hc-msg.sys { background:rgba(0,0,0,0.06); color:var(--text-soft); } body.theme-light .hc-chat.inline .hc-msg.sys { background:rgba(0,0,0,0.05); } @media (max-width:980px){ .hc-visual { margin-top:1.25rem; } .hc-output { margin-top:28px; } } @media (max-width:640px){ .hc-head { font-size:clamp(1.8rem,8.1vw,2.34rem); } .hc-sources { display:none; } .hc-visual { max-width:100%; } .hc-output { grid-template-columns:1fr 1fr; } .hc-card { padding:.8rem .85rem .9rem; } .hc-card.estimate .c-num { font-size:.95rem; } } @media (max-width:420px){ .hc-output { grid-template-columns:1fr; } .hc-card.brief { order:1; } .hc-card.estimate { order:2; } .hc-card.permit { order:3; } .hc-trust { width:100%; } } @media (prefers-reduced-motion:reduce){ .hc-head, .hc-card, .hc-source { transition:none !important; animation:none !important; } } .flow-canvas, .swirl-stage { display: none !important; } @keyframes swirlAnchored { 0% { transform: translate(var(--emit-x, -40vw), var(--emit-y, 0)) translate(-50%, -50%) rotate(0deg) scale(1); opacity: 0; } 12% { opacity: 1; } 55% { transform: translate( calc((var(--emit-x, 0px) + var(--target-x, 0px)) * 0.5 + var(--jitter-x, 0px)), calc((var(--emit-y, 0px) + var(--target-y, 0px)) * 0.5 + var(--jitter-y, 0px)) ) translate(-50%, -50%) rotate(160deg) scale(0.78); opacity: 1; } 100% { transform: translate(var(--target-x, 0px), var(--target-y, 0px)) translate(-50%, -50%) rotate(320deg) scale(0.38); opacity: 1; } } .swirl-stage.static-chaos .swirl-icon { animation: none !important; opacity: 1; } .swirl-stage .swirl-icon.tier-lg img { width:64px; height:64px; } .swirl-stage .swirl-icon.tier-sm img { width:38px; height:38px; } .swirl-stage .swirl-icon[data-seed="0"]{ animation-delay: 0s; } .swirl-stage .swirl-icon[data-seed="1"]{ animation-delay: .5s; } .swirl-stage .swirl-icon[data-seed="2"]{ animation-delay: 1s; } .swirl-stage .swirl-icon[data-seed="3"]{ animation-delay: 1.5s; } .swirl-stage .swirl-icon[data-seed="4"]{ animation-delay: 2s; } .swirl-stage .swirl-icon[data-seed="5"]{ animation-delay: 2.5s; } .swirl-stage .swirl-icon[data-seed="6"]{ animation-delay: 3s; } .swirl-stage .swirl-icon[data-seed="7"]{ animation-delay: 3.5s; } .swirl-stage .swirl-icon[data-seed="8"]{ animation-delay: 4s; } .swirl-stage .swirl-icon[data-seed="9"]{ animation-delay: 4.5s; } .phone-shell { position:absolute; top:50%; right:clamp(0.9rem,2.8vw,2rem); transform:translateY(-50%); width:clamp(176px,19vw,250px); z-index:2; filter:drop-shadow(0 6px 18px rgba(0,0,0,.38)); } .phone-shell::before { content:""; position:absolute; inset:-6%; border-radius:60px; background:radial-gradient(60% 70% at 50% 35%, rgba(0,212,170,0.14), rgba(0,212,170,0) 70%), radial-gradient(50% 60% at 50% 65%, rgba(0,212,255,0.10), rgba(0,212,255,0) 70%); filter:blur(18px); opacity:0.55; z-index:-1; pointer-events:none; transition:opacity .4s ease; } body.theme-light .phone-shell::before { opacity:0.25; filter:blur(22px); } .phone-shell:hover::before { opacity:0.75; } .phone-frame { width:100%; height:auto; display:block; filter:none; } .phone-screen { position:absolute; inset:24px 14px 24px 14px; border-radius:18px; overflow:hidden; display:flex; font:500 12px/1.3 var(--font-sans); background:#f9fbfa; box-shadow:none; } .chat { width:100%; padding:14px 10px 12px; display:flex; flex-direction:column; gap:6px; } .chat-row { max-width:88%; } .msg { background:var(--accent); color:#081013; padding:6px 9px; border-radius:12px; font-weight:600; opacity:0; transform:translateY(6px); transition:opacity .35s ease, transform .35s ease; } .msg2 { background:#ffffff; color:#0c1317; border:1px solid rgba(0,0,0,0.06); box-shadow:0 1px 2px rgba(0,0,0,0.06); } body.theme-dark .msg2 { background:#f7f9fa; color:#0c1317; } .chat-actions { margin-top:4px; display:flex; flex-direction:column; gap:5px; opacity:0; transform:translateY(8px); transition:opacity .5s ease .1s, transform .5s ease .1s; } .chat-actions .a { font-size:10px; letter-spacing:.5px; font-weight:600; border:none; border-radius:8px; padding:6px 8px; cursor:pointer; } .a.approve { background:#34c759; color:#031a06; } .a.pending { background:#ffcc43; color:#3b2800; } .a.cancel { background:#ff3b30; color:#fff; } .typing { display:flex; gap:3px; padding:6px 10px; background:#ffffff; border-radius:14px; align-self:flex-start; box-shadow:0 2px 4px rgba(0,0,0,.15); } body.theme-dark .typing { background:#1d2c34; color:#fff; } .dot { width:6px; height:6px; background:currentColor; border-radius:50%; animation:heroBounce 1s infinite ease-in-out; } .dot2 { animation-delay:.18s; } .dot3 { animation-delay:.36s; } @keyframes heroBounce { 0%,80%,100%{transform:translateY(0);opacity:.4;}40%{transform:translateY(-4px);opacity:1;} } .puzzle-placeholder { border: 1px solid var(--border); background: linear-gradient(90deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01)); border-radius:8px; color:var(--text-dim); display:flex; align-items:center; justify-content:center; font-size:.88rem; } @media (max-width:900px){ .phone-shell { right:50%; transform:translate(50%,-50%); width:clamp(150px,52vw,210px); } .swirl-stage { inset:0; } .phone-screen { inset:20px 10px 20px 10px; border-radius:16px; box-shadow:none; } .chat { padding:12px 8px 10px; gap:6px; } .hc-sub { font-size:.95rem; } .hc-cta-row { margin-top:1rem; } } .hero-tagline { font-size: clamp(2.2rem, 6vw, 3.8rem); font-weight: 700; line-height: 1.1; margin: 0 0 32px; letter-spacing: -0.02em; background: linear-gradient(135deg, var(--text) 0%, var(--accent) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; } .hero-value { font-size: clamp(1.2rem, 3vw, 1.6rem); color: var(--text-soft); margin: 0 0 40px; font-weight: 500; max-width: 480px; } .cta-primary, .btn-primary { display: inline-flex; flex-direction: column; align-items: center; background: linear-gradient(135deg, var(--primary), var(--accent)); color: var(--bg); text-decoration: none; padding: 14px 24px; border-radius: var(--r-md); font-weight: 700; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); box-shadow: 0 6px 18px rgba(0,212,170,0.22); position: relative; overflow: hidden; min-width: 120px; border: none; } .cta-primary::before, .btn-primary::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, var(--accent), var(--primary)); opacity: 0; transition: opacity 0.3s; } .cta-primary:hover::before, .btn-primary:hover::before { opacity: 1; } .cta-primary:hover, .btn-primary:hover { transform: translateY(-1px); box-shadow: 0 9px 22px rgba(0,212,170,0.28); } .cta-text { font-size: 1.4rem; font-weight: 800; position: relative; z-index: 2; display: block; margin-bottom: 2px; letter-spacing: -0.01em; } .cta-lift-glow { box-shadow: 0 10px 28px rgba(0,212,170,0.34), 0 0 0 0 rgba(0,212,255,0); transform: translateY(0); } .cta-lift-glow:hover { transform: translateY(-3px) scale(1.01); box-shadow: 0 18px 44px rgba(0,212,170,0.45), 0 0 0 0 rgba(0,212,255,0); } .cta-lift-glow:active { transform: translateY(-1px) scale(0.995); box-shadow: 0 10px 26px rgba(0,212,170,0.38); } .cta-lift-glow:focus-visible { outline: none; box-shadow: 0 0 0 3px rgba(0,212,255,0.55), 0 12px 34px rgba(0,212,170,0.42); } .nav-links .cta-small { display: inline-flex; align-items: center; justify-content: center; gap: 6px; padding: 6px 12px !important; font-size: 0.9rem; line-height: 1; min-width: unset; } .nav-links .cta-primary.cta-small::before { content: none; } .nav-links .cta-primary.cta-small, .nav-links .cta-primary.cta-small:hover, .nav-links .cta-primary.cta-small:focus { background: var(--accent) !important; color: var(--bg) !important; } .nav-links .cta-primary.cta-small.cta-lift-glow { box-shadow: 0 6px 16px rgba(0,212,170,0.26); } .nav-links .cta-primary.cta-small.cta-lift-glow:hover { transform: translateY(-1px) scale(1.0); box-shadow: 0 10px 22px rgba(0,212,170,0.32); } .nav-links .cta-primary.cta-small.cta-lift-glow:active { transform: translateY(0) scale(0.995); box-shadow: 0 6px 16px rgba(0,212,170,0.26); } .cta-wrap { display: inline-grid; gap: 10px; justify-items: start; } .cta-note { color: #9CF1E4; font-weight: 700; font-size: 0.98rem; letter-spacing: 0.01em; text-shadow: 0 1px 0 rgba(0,0,0,0.25); } @media (max-width: 768px) { .cta-wrap { justify-items: center; } } @media (max-width: 820px) { .hero-block .hero-cluster .hc-copy .hero-cta-center .cta-primary.cta-lift-glow::after, .hero-block .cta-primary.cta-lift-glow::after, .hero-block .cta-primary::after, .hero-block .cta-primary.cta-lift-glow::before, .hero-block .cta-primary::before { display: none !important; content: none !important; opacity: 0 !important; background: none !important; filter: none !important; box-shadow: none !important; pointer-events: none !important; } .hero-block .cta-primary, .hero-block .cta-primary.cta-lift-glow, .hero-block .btn-primary, .hero-block .cta-lift-glow { box-shadow: none !important; transform: none !important; } } .hero-block .cta-primary.cta-lift-glow::after { content: ""; position: absolute; inset: -6px; border-radius: calc(var(--r-md) + 6px); background: radial-gradient(circle at 50% 40%, rgba(0,212,170,0.18), rgba(0,212,170,0.06) 35%, rgba(0,0,0,0) 65%); filter: blur(20px); opacity: 0.22; z-index: 0; pointer-events: none; } .hero-block .cta-primary.cta-lift-glow { position: relative; z-index: 1; } .hero-block .cta-primary.cta-lift-glow .cta-text, .hero-block .cta-primary.cta-lift-glow .cta-sub { position: relative; z-index: 2; } @media (prefers-reduced-motion: reduce) { .hero-block .cta-primary.cta-lift-glow::after { animation: none; } } @media (max-width: 768px) { .hero-block .cta-primary.cta-lift-glow::after { display: none !important; opacity: 0 !important; } .hero-block .cta-primary.cta-lift-glow, .cta-primary, .btn-primary, .cta-primary.cta-whatsapp, .cta-lift-glow { box-shadow: none !important; background-blend-mode: normal; } .cta-primary::before, .btn-primary::before { display: none !important; opacity: 0 !important; } .cta-primary:hover, .btn-primary:hover, .cta-primary.cta-whatsapp:hover { box-shadow: none !important; } } @media (min-width: 1024px) { .hero-tagline { margin-bottom: 40px; } .cta-text { font-size: 1.6rem; } .cta-primary { padding: 14px 28px; min-width: 140px; } } .cta-sub { font-size: 0.8rem; opacity: 0.85; font-weight: 600; position: relative; z-index: 2; display: block; letter-spacing: 0.02em; } .hero-visual { position: relative; display: flex; align-items: center; justify-content: center; z-index: 0; } .video-placeholder { width: 100%; max-width: 560px; aspect-ratio: 1 / 1; height: auto; min-height: 360px; border-radius: 20px; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, #071126, #0b0f17); border: 1px solid var(--border); } .qa-section { padding: 64px 0 20px; position: relative; } .qa-inner { display: grid; grid-template-columns: 1fr; gap: clamp(2.2ch, 5.5ch, 8ch); } .qa-pair { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 28px; } .qa-pair.flip { grid-template-columns: 1fr auto 1fr; } .qa-col h3 { font-size: clamp(1.4rem, 3.5vw, 2rem); margin: 8px 0 8px; } .qa-col p { color: var(--text-soft); max-width: 520px; } .qa-question { justify-self: end; text-align: left; } .qa-answer { justify-self: start; text-align: left; } .qa-icon { display:inline-grid; place-items:center; width: 36px; height:36px; border-radius: 10px; margin-bottom: 10px; background: rgba(255,255,255,0.03); border:1px solid rgba(255,255,255,0.06); } .qa-icon img { width: 22px; height:22px; display:block; } .qa-divider { display: grid; place-items: center; } .qa-divider img { display: block; max-width: 260px; height: auto; filter: drop-shadow(0 10px 24px rgba(0,0,0,0.35)); opacity: 0.95; } @media (min-width: 901px) { .qa-question, .qa-answer { display: grid; grid-auto-rows: min-content; align-items: center; } .qa-question { grid-template-columns: 1fr 44px; column-gap: 14px; } .qa-answer { grid-template-columns: 44px 1fr; column-gap: 14px; } .qa-question .qa-icon { grid-column: 2; grid-row: 1 / span 2; justify-self: end; margin-bottom: 0; } .qa-answer .qa-icon { grid-column: 1; grid-row: 1 / span 2; justify-self: start; margin-bottom: 0; } .qa-question h3, .qa-question p { grid-column: 1; } .qa-answer h3, .qa-answer p { grid-column: 2; } } .slide-left { opacity: 0; transform: translateX(-40vw); will-change: transform, opacity; } .slide-right { opacity: 0; transform: translateX(40vw); will-change: transform, opacity; } .qa-pair .slide-left, .qa-pair .slide-right { transition: none; } .qa-pair .qa-icon { transition: none; will-change: transform, opacity; } .puzzle-preview { width: 220px; height: 80px; display: flex; align-items: center; justify-content: center; } @media (max-width: 900px) { .qa-inner { gap: clamp(2ch, 5.5ch, 7ch); } .qa-pair { grid-template-columns: 1fr; text-align: center; } .qa-question, .qa-answer { display: block; } .puzzle-preview { margin: 12px auto; } } @media (prefers-reduced-motion: reduce) { .slide-left, .slide-right, .qa-pair[data-active="true"] .slide-left, .qa-pair[data-active="true"] .slide-right { transition: none !important; transform: none !important; opacity: 1 !important; } } @media (max-width: 900px) { .qa-inner { grid-template-columns: 1fr; text-align: center; } .qa-question, .qa-answer { justify-self: center; text-align: center; } .qa-divider img { max-width: 220px; margin: 6px auto 10px; } } .benefits-minimal { padding: 64px 0; margin-top: 20px; position: relative; z-index: 1; } .benefit-trio { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 40px; max-width: 1200px; margin: 0 auto; } .benefit { text-align: center; padding: 32px 24px; background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 16px; backdrop-filter: blur(10px); transition: all 0.3s ease; position: relative; overflow: hidden; } .benefit::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--accent), transparent); opacity: 0; transition: opacity 0.3s ease; } .benefit:hover { transform: translateY(-4px); border-color: rgba(0, 212, 170, 0.28); background: rgba(255, 255, 255, 0.08); } .benefit:hover::before { opacity: 1; } .benefit-icon { font-size: 3rem; margin: 0 0 16px; display: block; transition: transform 0.3s ease; position: relative; z-index: 1; } .benefit:hover .benefit-icon { transform: scale(1.1); } .benefit-icon.whatsapp { background: linear-gradient(135deg, #25d366, #128c7e); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; filter: drop-shadow(0 2px 8px rgba(37, 211, 102, 0.3)); } .benefit-icon.permit { background: linear-gradient(135deg, #6366f1, #8b5cf6); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; filter: drop-shadow(0 2px 8px rgba(99, 102, 241, 0.3)); } .benefit-icon.cash { background: linear-gradient(135deg, #f59e0b, #d97706); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; filter: drop-shadow(0 2px 8px rgba(245, 158, 11, 0.3)); } .benefit h3 { font-size: 1.1rem; font-weight: 600; color: var(--text); letter-spacing: -0.005em; line-height: 1.3; margin: 0; position: relative; z-index: 1; } .site-footer { border-top: 1px solid var(--border); margin-top: 46px; padding: 14px 0 26px; } .footer-inner { display: flex; justify-content: space-between; align-items: center; color: var(--text-dim); font-size: 0.9rem; gap:24px; } .benefits-puzzle { padding:120px 0 360px; position:relative; } .benefits-heading { text-align:center; font-size:clamp(1.55rem,5.2vw,2.4rem); letter-spacing:.15ch; font-weight:800; margin:0 0 34px; background:linear-gradient(120deg,var(--accent),var(--accent-alt)); -webkit-background-clip:text; background-clip:text; color:transparent; } .puzzle-stage { width:100%; max-width:620px; margin:0 auto; position:relative; } .svg-puzzle { width:100%; height:auto; display:block; } .svg-puzzle .board-outline path { stroke-dasharray:5 10; } .svg-puzzle .p-piece path { fill:rgba(0,0,0,0.28); stroke:rgba(255,255,255,0.08); stroke-width:2; vector-effect:non-scaling-stroke; filter:drop-shadow(0 8px 18px rgba(0,0,0,0.55)); } .svg-puzzle .p-piece { opacity:0; transform:translate(var(--from-x,0), var(--final-y,0)); will-change:transform,opacity; } .svg-puzzle .p-piece .p-label { font-size:22px; text-anchor:middle; fill:#f2fffe; font-weight:700; font-family:inherit; dominant-baseline:middle; opacity:0; transform:none; will-change:opacity; } .svg-puzzle .p-piece .p-label { paint-order:stroke; stroke:#031412; stroke-width:6px; stroke-linejoin:round; } @media (hover:hover) and (pointer:fine){ .puzzle-stage[data-assembled="true"] .p-piece path { transition:fill .35s ease, filter .35s ease; } .puzzle-stage[data-assembled="true"] .p-piece:hover path { fill:linear-gradient(120deg,var(--accent),var(--accent-alt)); filter:drop-shadow(0 10px 26px rgba(0,0,0,0.65)); } } @media (prefers-reduced-motion:reduce){ .svg-puzzle .p-piece { opacity:1 !important; transform:none !important; filter:none !important; } .svg-puzzle .p-piece .p-label { opacity:1 !important; transform:none !important; } .puzzle-stage { transform:none !important; transition:none !important; } } @media (max-width:560px){ .svg-puzzle .p-piece .p-label { font-size:18px; } } @media (max-width:420px){ .svg-puzzle .p-piece .p-label { font-size:16px; } } .see-it-section, .qa-section { position:relative; height:0; overflow:hidden; visibility:hidden; opacity:0; pointer-events:none; } .puzzle-stage::after{ content: ""; display:block; height:220px; width:100%; } .benefits-grid-section { position:relative; padding: var(--space-section-sm) 0 calc(var(--space-gap-between) + 20px); margin:0; } .benefits-grid-section::after { content:""; display:block; height:84px; } @media (max-width:640px){ .benefits-grid-section { padding-bottom:120px; } .benefits-grid-section::after { height:96px; } } .benefits-grid-section .benefits-heading { font-size:var(--heading-size-sm); letter-spacing:.16em; font-weight:800; text-align:center; margin:0 0 34px; color:var(--text-dim); background:none; -webkit-background-clip:initial; background-clip:initial; } .benefits-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:14px 14px; max-width:640px; margin:0 auto; } @media (max-width:580px){ .benefits-grid { grid-template-columns:repeat(2,1fr); gap:12px 12px; } } @media (max-width:420px){ .benefits-grid { gap:10px; } } .benefit-card { background:var(--bg-soft); border:1px solid var(--border); border-radius: var(--r-md); padding:26px 18px 28px; display:flex; flex-direction:column; gap:14px; position:relative; overflow:hidden; box-shadow:0 4px 20px -8px rgba(0,0,0,0.55); align-items:center; text-align:center; backdrop-filter:blur(22px) saturate(140%); -webkit-backdrop-filter:blur(22px) saturate(140%); background:linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02)); } .benefit-card .benefit-icon { width:auto; height:auto; border-radius:0; display:flex; align-items:center; justify-content:center; background:none; box-shadow:none; padding:0; } .benefit-card .benefit-icon .ic { width:30px; height:30px; display:block; } .benefit-card .benefit-icon .ic path, .benefit-card .benefit-icon .ic circle { stroke-width:0; } .benefit-card .benefit-icon .ic * { vector-effect:non-scaling-stroke; } .benefit-card::before { content:""; position:absolute; inset:0; background: radial-gradient(circle at 72% 34%, rgba(0,212,170,0.35), transparent 65%), radial-gradient(circle at 18% 70%, rgba(0,212,255,0.22), transparent 70%); opacity:.55; pointer-events:none; mix-blend-mode:color-dodge; } .benefit-card h3 { font-size:.78rem; line-height:1.15; letter-spacing:.55px; text-transform:uppercase; margin:0; font-weight:700; color:var(--text-soft); } @media (min-width:680px){ .benefit-card { padding:30px 22px 32px; } .benefit-card h3 { font-size:.82rem; } } @media (prefers-reduced-motion:no-preference){ .benefit-card { transition:background .35s ease, transform .35s ease, box-shadow .35s ease, border-color .35s ease; } .benefit-card:hover { transform:translateY(-4px); box-shadow:0 10px 26px -8px rgba(0,0,0,0.65); border-color:rgba(255,255,255,0.22); } } body.theme-light .benefit-card { background:linear-gradient(145deg, rgba(255,255,255,0.75), rgba(255,255,255,0.55)); box-shadow:0 6px 20px -10px rgba(0,0,0,0.18); border-color:rgba(0,0,0,0.08); } body.theme-light .benefit-card::before { background:radial-gradient(circle at 60% 40%, rgba(0,212,170,0.22), transparent 70%); } body.theme-light .benefit-card:hover { background:rgba(0,0,0,0.05); } .benefit-card { opacity:0; transform:translateX(0); } .benefit-card.from-left { transform:translateX(-140px); } .benefit-card.from-right { transform:translateX(140px); } .benefit-card.revealed { opacity:1; transform:translate(0,0); transition:opacity .68s cubic-bezier(.16,.8,.26,1), transform .68s cubic-bezier(.16,.8,.26,1); } @media (prefers-reduced-motion:reduce){ .benefit-card, .benefit-card.from-left, .benefit-card.from-right { opacity:1 !important; transform:none !important; transition:none !important; } } .visually-hidden { position:absolute !important; width:1px !important; height:1px !important; padding:0 !important; margin:-1px !important; overflow:hidden !important; clip:rect(0 0 0 0) !important; white-space:nowrap !important; border:0 !important; } .footer-inner a { color: var(--text-soft); text-decoration: none; } .footer-inner a:hover { color: var(--accent); } .fab-whatsapp { position: fixed; right: 24px; left: auto; top: 50%; bottom: auto; width: 64px; height: 64px; border-radius: 50%; background: linear-gradient(135deg, #25D366, #128C7E); display: flex; align-items: center; justify-content: center; color: #fff; box-shadow: 0 10px 30px rgba(18,140,126,0.25); z-index: 1200; cursor: pointer; transform: translateY(-50%); transition: transform 0.18s ease, box-shadow 0.18s ease; } .fab-whatsapp:hover { transform: translateY(calc(-50% - 4px)); box-shadow: 0 14px 36px rgba(18,140,126,0.3); } .testimonials-section { padding: 96px 0 64px; } .testimonials-title { text-align: center; font-size: var(--heading-size-md); margin-bottom: 30px; position: relative; display: inline-block; left: 50%; transform: translateX(-50%); } .testimonials-title::after { content: ""; display: block; height: 3px; width: 84px; margin: 10px auto 0; background: linear-gradient(90deg, var(--accent), var(--primary)); border-radius: 2px; } .section-breaker { width:100%; max-width:480px; height:14px; margin:0 auto 48px; position:relative; opacity:.55; } .section-breaker::before { content:""; position:absolute; left:0; right:0; top:50%; height:1px; background:linear-gradient(90deg,rgba(255,255,255,0),rgba(255,255,255,0.22),rgba(255,255,255,0)); transform:translateY(-50%); } .pricing-section { padding-bottom: calc(var(--space-section-lg) + 40px); } .testimonials-wrap { max-width: 920px; margin: 0 auto; } .testimonials-track { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(86%, 1fr); gap: 20px; overflow-x: auto; padding-bottom: 8px; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none; position: relative; } .testimonials-track::-webkit-scrollbar { display: none; } .testimonial-card { scroll-snap-align: center; } .testimonials-wrap { position: relative; } .testimonials-controls { display: flex; justify-content: center; gap: 12px; margin-top: 16px; } .testimonials-controls .tn-prev, .testimonials-controls .tn-next { background: rgba(255,255,255,0.06); color: var(--text); border: 1px solid rgba(255,255,255,0.08); border-radius: 10px; width: 42px; height: 36px; display: inline-flex; align-items: center; justify-content: center; cursor: pointer; transition: transform 0.2s ease, background 0.2s ease; } .testimonials-controls .tn-prev:hover, .testimonials-controls .tn-next:hover { transform: translateY(-2px); background: rgba(255,255,255,0.08); } .testimonials-controls .tn-prev:disabled, .testimonials-controls .tn-next:disabled { opacity: 0.4; cursor: default; transform: none; } .testimonials-dots { display: flex; justify-content: center; gap: 8px; margin-top: 10px; } .testimonials-dots button { width: 8px; height: 8px; border-radius: 50%; border: none; background: rgba(255,255,255,0.28); cursor: pointer; padding: 0; } .testimonials-dots button[aria-current="true"] { background: linear-gradient(90deg, var(--accent), var(--primary)); } .testimonial-card { margin: 0; padding: 26px 26px 24px; background: rgba(255,255,255,0.045); border: 1px solid rgba(255,255,255,0.07); border-radius: var(--r-md); backdrop-filter: blur(6px) saturate(140%); -webkit-backdrop-filter: blur(6px) saturate(140%); box-shadow: 0 4px 18px -6px rgba(0,0,0,0.55); position: relative; overflow:hidden; } .testimonial-card::before { content:""; position:absolute; left:0; top:0; height:3px; width:100%; background:linear-gradient(90deg,var(--accent),var(--primary)); opacity:0.85; } .testimonial-card::after { content:""; position:absolute; inset:0; pointer-events:none; background:radial-gradient(circle at 85% 110%,rgba(255,255,255,0.12),transparent 70%); mix-blend-mode:overlay; opacity:.4; } body.theme-light .testimonial-card { background: rgba(255,255,255,0.72); border-color: rgba(0,0,0,0.08); box-shadow:0 4px 14px -6px rgba(0,0,0,0.18); } body.theme-light .testimonial-card::after { background:radial-gradient(circle at 85% 110%,rgba(0,0,0,0.05),transparent 70%); mix-blend-mode:normal; } .testimonial-rating { margin-bottom: 10px; color: #f5c518; letter-spacing: 2px; font-size: 1rem; } .testimonial-quote { font-size: clamp(1.1rem, 2.2vw, 1.4rem); line-height: 1.5; color: var(--text); letter-spacing: -0.01em; margin: 0 0 18px 0; } .testimonial-meta { display: flex; align-items: center; gap: 12px; color: var(--text-soft); } .testimonial-meta .avatar { width: 36px; height: 36px; border-radius: 50%; display: grid; place-items: center; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.05); } .testimonial-meta .name { font-weight: 700; color: var(--text); } .testimonial-meta .role { font-size: 0.9rem; color: var(--text-dim); display:flex; align-items:center; gap:8px; flex-wrap:wrap; } .badge { display: inline-block; font-size: 0.75rem; padding: 3px 8px; border-radius: 999px; background: rgba(0,212,170,0.15); color: var(--text); border: 1px solid rgba(0,212,170,0.25); } .process-section { padding: 80px 0 100px; background: transparent; position: relative; isolation: isolate; } .process-title { text-align: center; font-size: 2.2rem; margin-bottom: 24px; } .process-rail { max-width: 1100px; margin: 0 auto; position: relative; } .process-connector { position: absolute; left: 6%; right: 6%; top: 44px; height: 2px; background: rgba(255,255,255,0.14); border-radius: 2px; } .process-nodes { position: absolute; left: 6%; right: 6%; top: 35px; display: grid; grid-template-columns: repeat(4, 1fr); pointer-events: none; } .process-nodes .n { justify-self: center; width: 12px; height: 12px; border-radius: 50%; box-shadow: 0 6px 16px rgba(0,0,0,0.35); border: 1px solid rgba(255,255,255,0.25); } .process-nodes .s1 { background: radial-gradient(circle at 30% 30%, #ff8a8a, #ff6b6b); } .process-nodes .s2 { background: radial-gradient(circle at 30% 30%, #6a80ff, #4d6bff); } .process-nodes .s3 { background: radial-gradient(circle at 30% 30%, #ffd85e, #ffb400); } .process-nodes .s4 { background: radial-gradient(circle at 30% 30%, #22e1bd, #00d4aa); } .process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; align-items: start; } .process-step { text-align: center; padding: 18px 12px 12px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.05); border-radius: 14px; backdrop-filter: blur(8px); transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease; } .process-step:hover { transform: translateY(-3px); background: rgba(255,255,255,0.045); border-color: rgba(255,255,255,0.08); } .p-icon { font-size: 1.6rem; margin-bottom: 10px; position: relative; display: inline-block; } .p-title { font-weight: 800; letter-spacing: -0.01em; margin-bottom: 4px; } .p-desc { color: var(--text-dim); font-size: 0.95rem; } @media (max-width: 900px) { .process-steps { grid-template-columns: repeat(2, 1fr); row-gap: 20px; } .process-connector, .process-nodes { display: none; } } @media (max-width: 520px) { .process-steps { grid-template-columns: 1fr; } } @media (max-width: 768px) { .hero-block { grid-template-columns: 1fr; gap: 60px; .hc-sources { display:none; } padding: 100px 0 80px; text-align: center; } .benefit-trio { grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 24px; } .footer-inner { flex-direction: column; gap: 16px; text-align: center; } .nav-links { gap: 20px; } .container { padding: 0 20px; } } @media (max-width: 480px) { .hero-tagline { font-size: clamp(1.8rem, 9vw, 2.8rem); } } @keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } } .hero-content > * { animation: fadeInUp 0.8s ease forwards; } .hero-tagline { animation-delay: 0.1s; } .hero-value { animation-delay: 0.2s; } .cta-primary { animation-delay: 0.3s; } @media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; } } .scroll-step { opacity: 0; transform: translateX(-40vw); will-change: transform, opacity; } .scroll-step[data-active="true"] { opacity: 1; transform: translateX(0); } @media (prefers-reduced-motion: reduce) { .scroll-step, .scroll-step[data-active="true"] { opacity: 1; transform: none; } } @media (min-width: 1400px) { .hero-block { padding-top: 120px; } .benefit-trio { grid-template-columns: repeat(5, 1fr); gap: 32px; } .benefits-minimal { padding: 100px 0; margin-top: 40px; } } .pricing-section { padding: calc(var(--space-section) + 8px) 0 var(--space-section-lg); position: relative; margin-top:0; } @media (max-width:640px){ .pricing-section { padding-top: 40px; } } #benefits, #pricing, #testimonials { scroll-margin-top: calc(var(--nav-h) + 16px); } .pricing-title { text-align:center; font-size: var(--heading-size-md); margin:0 0 30px; font-weight:800; letter-spacing:.05em; } .pricing-card { max-width: 860px; margin: 0 auto; background: transparent; border: none; border-radius: 0; box-shadow: none; padding: 16px 0 8px; } .pricing-inner { max-width: 760px; margin: 0 auto; } .pricing-header { display: grid; grid-template-columns: 1fr; justify-items: center; text-align: center; gap: 6px; margin-bottom: 10px; } .pricing-badge { display:none; } .pricing-section { --pricing-max: 880px; } .pricing-wrapper { max-width: var(--pricing-max); margin: 0 auto; } .pricing-offer { position:relative; padding: clamp(26px,3.6vw,40px) clamp(22px,2.8vw,34px); border-radius: var(--r-xl); background: rgba(255,255,255,0.028); backdrop-filter: blur(14px) saturate(140%); -webkit-backdrop-filter: blur(14px) saturate(140%); border: 1px solid rgba(255,255,255,0.05); box-shadow: 0 3px 12px -4px rgba(0,0,0,0.28), 0 0 0 1px rgba(255,255,255,0.02) inset; overflow:hidden; } .pricing-title { letter-spacing:0.08em; font-size: var(--heading-size-sm,1.4rem); font-weight:600; margin:0 0 1.25rem; color: var(--text-dim,#9fb3c1); } .offer-cap { display:flex; align-items:flex-start; gap:12px; font-size:.8rem; color:var(--text-dim,#8ea4b2); background:rgba(255,255,255,0.035); border:1px solid rgba(255,255,255,0.08); padding:14px 18px 14px 16px; border-radius: var(--r-lg); margin:0 0 6px; position:relative; backdrop-filter:blur(8px); -webkit-backdrop-filter:blur(8px); } .offer-cap .cap-pulse { width:14px; height:14px; margin-top:4px; flex:0 0 auto; border-radius:50%; background:radial-gradient(circle at 35% 35%,#ff9b40,#ff4d2e); box-shadow:0 0 0 0 rgba(255,111,0,0.55); animation:pulseDot 2.2s ease-in-out infinite; } .offer-cap .cap-lines { display:flex; flex-direction:column; gap:4px; align-items:flex-start; } .offer-cap .cap-main { font-size:clamp(1rem,2.2vw,1.25rem); font-weight:700; line-height:1.15; letter-spacing:.3px; color:var(--text); } .offer-cap .cap-sub { font-size:.72rem; letter-spacing:.05em; text-transform:uppercase; font-weight:600; line-height:1.2; color:var(--text-dim,#8ea4b2); } .offer-cap .cap-sub { text-transform:none; font-style:italic; letter-spacing:.03em; opacity:.85; } .offer-cap strong { font-weight:750; } .pricing-body { display:flex; flex-direction:column; gap:28px; } .pricing-mainline { display:flex; flex-direction:column; align-items:center; text-align:center; gap:10px; } .price-big { font-size: clamp(3rem,6vw,4.25rem); font-weight:800; line-height:0.95; background:linear-gradient(135deg,#ffffff,#caeffc 35%,#7bf2d5); -webkit-background-clip:text; background-clip:text; color:transparent; letter-spacing:-1px; text-shadow:0 2px 8px rgba(0,0,0,0.28); } .price-note { font-size: clamp(.85rem,.9rem,1rem); font-weight:500; color: var(--text-dim,#90a6b5); } .pricing-points { list-style:none; margin:0 auto; padding:0; display:grid; gap:10px; grid-template-columns:repeat(auto-fit,minmax(220px,1fr)); font-size:.9rem; max-width:680px; } .pricing-points li { position:relative; padding-left:20px; line-height:1.38; color: var(--text-mid,#c8d4db); display:flex; align-items:flex-start; } .pricing-points li::before { content:""; position:absolute; left:0; top:5px; width:10px; height:10px; border-radius:3px; background:linear-gradient(135deg,#25d366,#0fb07a); box-shadow:0 0 0 1px rgba(0,0,0,0.45),0 0 0 2px rgba(255,255,255,0.06) inset; } .pricing-cta-flex { display:flex; flex-direction:column; gap:12px; align-items:center; } .pricing-cta-flex .cta-primary { width:auto; min-width:0; padding:12px 22px; border-radius: var(--r-md); font-size:.95rem; } .pricing-cta-flex .cta-primary .cta-text { font-size:1rem; font-weight:700; } .pricing-cta-flex .cta-primary .cta-sub { display:block; font-size:.62rem; letter-spacing:.08em; opacity:.85; margin-top:2px; text-transform:uppercase; font-weight:600; } .micro-alt { font-size:.7rem; text-align:left; width:100%; } .micro-alt.centered { text-align:center; } .micro-alt a { color: var(--text-dim,#8aa0ae); text-decoration:none; position:relative; } .micro-alt a:hover { color: var(--text-strong,#fff); } .pricing-section { padding-bottom: calc(var(--space-section) - 10px); } @media (max-width:760px){ .pricing-section { padding-bottom: calc(var(--space-section) - 6px); } } @media (max-width: 760px) { .pricing-offer { padding: 26px 22px 36px; border-radius: var(--r-xl); } .pricing-mainline { gap:12px; } .price-big { font-size: clamp(2.6rem,11vw,3.3rem); } .pricing-points { grid-template-columns:1fr; gap:8px; } .pricing-cta-flex { align-items:stretch; } .pricing-cta-flex .cta-primary { width:100%; text-align:center; justify-content:center; } } .pricing-offer { max-width:560px; margin:0 auto; } .pricing-section { padding-left:18px; padding-right:18px; } @media (min-width:640px){ .pricing-section { padding-left:0; padding-right:0; } } .pricing-points { grid-template-columns:1fr; } @media (max-width:600px){ .pricing-offer { max-width:100%; } } body.theme-light .pricing-offer { background: rgba(255,255,255,0.55); border-color: rgba(10,25,40,0.08); box-shadow:0 4px 16px -6px rgba(10,25,40,0.15), 0 0 0 1px rgba(10,25,40,0.06) inset; } body.theme-light .price-big { background:linear-gradient(135deg,#0d2633,#14705d 55%,#0d2633); -webkit-background-clip:text; background-clip:text; color:transparent; text-shadow:none; } body.theme-light .pricing-points li { color:#2b4552; } body.theme-light .pricing-fineprint, body.theme-light .price-note, body.theme-light .micro-alt a { color:#47606c; } body.theme-light .pricing-badge { color:#041a14; } .hc-chat .hc-msg[data-sender] { position:relative; } .hc-chat .hc-msg[data-sender]::before { content: attr(data-sender); position:absolute; top:-1.05rem; left:2px; font-size:.55rem; font-weight:600; letter-spacing:.12em; text-transform:uppercase; opacity:.9; color:#fff; pointer-events:none; } body.theme-light .hc-chat .hc-msg[data-sender]::before { color:#fff; text-shadow:0 0 2px rgba(0,0,0,0.35); } .hc-chat.inline { padding-top:10px; } .hc-chat.inline .hc-msg:first-child { margin-top:6px; } .pricing-price { text-align: center; } .price-main { font-size: clamp(3rem, 9vw, 4.2rem); font-weight: 900; letter-spacing: -0.02em; display: block; background: linear-gradient(135deg, var(--text) 0%, var(--accent) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1.05; } .price-hero { font-size: clamp(3.2rem, 10vw, 4.8rem); } .price-sub { display: block; color: var(--text-soft); font-weight: 700; margin-top: 10px; font-size: clamp(1rem, 2.6vw, 1.25rem); } .pricing-footnote { display: none; } .pricing-cta-row { display: flex; flex-direction: column; align-items: center; gap: 12px; margin-top: 26px; } .pricing-card .cta-primary { width: min(720px, 100%); padding: 18px 28px; } .pricing-alt { text-align: center; margin-top: 10px; } .cta-textlink { color: var(--text-soft); text-decoration: none; font-weight: 700; border-bottom: 1px dashed rgba(255,255,255,0.25); padding-bottom: 1px; } .cta-textlink:hover { color: var(--text); border-bottom-color: rgba(255,255,255,0.5); } .pricing-fineprint { text-align: center; color: var(--text-dim); font-size: 0.95rem; margin-top: 14px; } @media (max-width: 768px) { .pricing-card .cta-primary { width: 100%; } } @media (max-width: 768px) { .pricing-includes { grid-template-columns: 1fr; } } .blog-hero { text-align:center; padding: 120px 0 20px; } .blog-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 22px; padding: 20px; } .blog-card { background: rgba(255,255,255,0.035); border:1px solid rgba(255,255,255,0.06); border-radius: 16px; padding: 20px; text-decoration: none; color: inherit; transition: transform .2s ease, border-color .2s ease, background .2s ease; display: flex; flex-direction: column; gap: 8px; } .blog-card:hover { transform: translateY(-3px); border-color: rgba(255,255,255,0.12); background: rgba(255,255,255,0.05); } .blog-card h3 { margin: 0; font-size: 1.1rem; } .blog-card p { margin: 0; color: var(--text-dim); font-size: .95rem; } .blog-meta { color: var(--text-soft); font-size: .85rem; } .back-home { text-align:center; margin: 30px 0 60px; } .post { max-width: 860px; margin: 120px auto 80px; padding: 0 20px; } .post h1 { font-size: clamp(1.8rem, 5vw, 2.4rem); margin-bottom: 10px; } .post .meta { color: var(--text-dim); margin-bottom: 20px; } .post p { color: var(--text-soft); margin: 14px 0; } .post h2 { margin-top: 26px; font-size: 1.3rem; }