:root {
  --sf-orange: #ff7a00;
  --sf-amber: #ffad0a;
  --sf-ink: #101217;
  --sf-ink-2: #181b22;
  --sf-slate: #292e37;
  --sf-muted: #686f7b;
  --sf-cream: #fffaf2;
  --sf-white: #ffffff;
  --sf-line: rgba(16, 18, 23, .12);
  --sf-radius: 22px;
  --sf-shadow: 0 24px 80px rgba(34, 24, 12, .14);
  --sf-container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; overflow-x: hidden; color: var(--sf-ink); background: var(--sf-cream); font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; font-size: 17px; line-height: 1.65; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { letter-spacing: -.04em; line-height: 1.05; }
h1 { font-size: clamp(3rem, 7vw, 6.7rem); }
h2 { margin-bottom: 22px; font-size: clamp(2.2rem, 4.5vw, 4.3rem); }
h3 { font-size: 1.45rem; }
p { color: var(--sf-muted); }
::selection { color: var(--sf-ink); background: var(--sf-amber); }
.sf-container { width: min(calc(100% - 40px), var(--sf-container)); margin-inline: auto; }
.sf-section { padding: clamp(80px, 10vw, 140px) 0; }
.screen-reader-text, .sf-skip-link { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.sf-skip-link:focus { z-index: 9999; top: 10px; left: 10px; width: auto; height: auto; padding: 12px 16px; clip: auto; color: #fff; background: #000; }

.sf-button { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 13px 22px; border: 1px solid var(--sf-orange); border-radius: 999px; color: #fff; background: linear-gradient(135deg, var(--sf-orange), #ff9400); box-shadow: 0 12px 30px rgba(255, 122, 0, .28); font-size: .86rem; font-weight: 850; letter-spacing: .01em; line-height: 1.15; text-align: center; text-decoration: none; transition: transform .25s ease, box-shadow .25s ease, background .25s ease; }
.sf-button:hover, .sf-button:focus-visible { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(255, 122, 0, .38); }
.sf-button-large { min-height: 60px; padding-inline: 30px; }
.sf-button-small { min-height: 46px; padding: 10px 18px; }
.sf-button-outline { color: var(--sf-ink); background: transparent; border-color: rgba(255, 122, 0, .4); box-shadow: none; }
.sf-button-outline:hover { color: #fff; background: var(--sf-orange); }
.sf-button-light { color: var(--sf-ink); background: #fff; border-color: #fff; box-shadow: 0 18px 38px rgba(42, 24, 0, .18); }
.sf-text-link { display: inline-flex; gap: 9px; align-items: center; color: inherit; font-weight: 800; text-decoration: none; }
.sf-kicker, .sf-eyebrow { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 20px; color: var(--sf-orange); font-size: .75rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.sf-kicker::before, .sf-eyebrow::before { width: 22px; height: 2px; content: ""; background: currentColor; }

.sf-topbar { position: relative; z-index: 100; color: rgba(255, 255, 255, .75); background: var(--sf-ink); font-size: .72rem; font-weight: 700; }
.sf-topbar-inner { display: flex; align-items: center; justify-content: space-between; min-height: 35px; }
.sf-topbar-links { display: flex; gap: 24px; }
.sf-topbar a { color: #fff; text-decoration: none; }
.sf-header { position: sticky; z-index: 90; top: 0; background: rgba(255, 250, 242, .9); border-bottom: 1px solid transparent; backdrop-filter: blur(18px); transition: box-shadow .25s ease, border-color .25s ease; }
.sf-header.is-scrolled { border-color: var(--sf-line); box-shadow: 0 10px 40px rgba(16, 18, 23, .08); }
.sf-header-inner { display: flex; align-items: center; gap: 28px; min-height: 84px; }
.sf-brand { display: block; flex: 0 0 auto; width: 188px; text-decoration: none; }
.custom-logo-link { display: block; width: 188px; }
.custom-logo { max-width: 188px; max-height: 72px; object-fit: contain; }
.sf-primary-nav { margin-left: auto; }
.sf-nav-list { display: flex; align-items: center; gap: clamp(18px, 2.2vw, 34px); padding: 0; margin: 0; list-style: none; }
.sf-nav-list a { position: relative; color: var(--sf-ink); font-size: .78rem; font-weight: 800; text-decoration: none; }
.sf-nav-list a::after { position: absolute; right: 0; bottom: -7px; left: 0; height: 2px; content: ""; background: var(--sf-orange); transform: scaleX(0); transform-origin: right; transition: transform .25s ease; }
.sf-nav-list a:hover::after, .sf-nav-list a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.sf-menu-toggle { display: none; width: 44px; height: 44px; padding: 9px; border: 0; background: transparent; }
.sf-menu-toggle > span:not(.screen-reader-text) { display: block; width: 24px; height: 2px; margin: 5px auto; background: var(--sf-ink); transition: transform .2s ease, opacity .2s ease; }

.sf-hero { position: relative; overflow: hidden; min-height: calc(100vh - 119px); color: #fff; background: var(--sf-ink); }
.sf-hero::before { position: absolute; inset: 0; content: ""; opacity: .55; background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px); background-size: 70px 70px; mask-image: linear-gradient(to bottom, #000, transparent 85%); }
.sf-hero::after { position: absolute; right: -12vw; bottom: -40%; width: 55vw; height: 55vw; border: 130px solid rgba(255, 122, 0, .12); border-radius: 50%; content: ""; }
.sf-hero-glow { position: absolute; top: 10%; left: 40%; width: 520px; height: 520px; border-radius: 50%; background: rgba(255, 122, 0, .16); filter: blur(100px); }
.sf-hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.06fr .94fr; align-items: center; gap: clamp(40px, 6vw, 86px); min-height: calc(100vh - 119px); padding-block: 80px; }
.sf-hero-copy h1 { max-width: 830px; margin-bottom: 28px; font-weight: 900; }
.sf-hero-copy h1 em { display: block; color: transparent; background: linear-gradient(100deg, var(--sf-orange), var(--sf-amber)); background-clip: text; font-style: normal; }
.sf-hero-copy > p { max-width: 680px; color: rgba(255, 255, 255, .7); font-size: clamp(1rem, 1.8vw, 1.25rem); }
.sf-hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 26px; margin-top: 36px; }
.sf-proof-row { display: flex; flex-wrap: wrap; gap: 12px; padding: 0; margin: 46px 0 0; list-style: none; }
.sf-proof-row li { padding: 8px 13px; border: 1px solid rgba(255,255,255,.12); border-radius: 99px; color: rgba(255,255,255,.62); font-size: .72rem; }
.sf-proof-row strong { color: #fff; }
.sf-hero-visual { position: relative; align-self: stretch; min-height: 600px; }
.sf-hero-visual > img { position: absolute; z-index: 2; right: 0; bottom: 0; width: min(100%, 550px); height: 84%; border-radius: 240px 240px 24px 24px; box-shadow: 0 40px 100px rgba(0,0,0,.45); object-fit: cover; object-position: center; }
.sf-hero-visual::after { position: absolute; z-index: 3; right: -3px; bottom: -2px; width: min(100%, 556px); height: 34%; border-radius: 0 0 24px 24px; content: ""; background: linear-gradient(transparent, rgba(16,18,23,.72)); pointer-events: none; }
.sf-speed-orbit { position: absolute; z-index: 1; top: 6%; right: -8%; width: 90%; aspect-ratio: 1; border: 2px solid rgba(255,122,0,.26); border-radius: 50%; }
.sf-speed-orbit::before, .sf-speed-orbit::after { position: absolute; border: 1px solid rgba(255,122,0,.18); border-radius: 50%; content: ""; }
.sf-speed-orbit::before { inset: 13%; }
.sf-speed-orbit::after { inset: 26%; }
.sf-speed-orbit i { position: absolute; width: 13px; height: 13px; border-radius: 50%; background: var(--sf-orange); box-shadow: 0 0 22px var(--sf-orange); }
.sf-speed-orbit i:nth-child(1) { top: 17%; left: 10%; }.sf-speed-orbit i:nth-child(2) { top: 45%; right: -1%; }.sf-speed-orbit i:nth-child(3) { bottom: 6%; left: 28%; }
.sf-promo-chip { position: absolute; z-index: 5; top: 12%; left: -8%; display: grid; min-width: 188px; padding: 22px; border: 1px solid rgba(255,255,255,.14); border-radius: 20px; background: rgba(16,18,23,.86); box-shadow: 0 24px 60px rgba(0,0,0,.36); backdrop-filter: blur(16px); transform: rotate(-3deg); }
.sf-promo-chip small { color: rgba(255,255,255,.56); font-size: .66rem; text-transform: uppercase; }.sf-promo-chip strong { color: #fff; font-size: 2rem; line-height: 1; }.sf-promo-chip span { margin: 8px 0 4px; color: var(--sf-amber); font-size: 1.4rem; font-weight: 900; }

.sf-signal-strip { overflow: hidden; padding: 17px 0; color: #fff; background: linear-gradient(90deg, #ea6300, var(--sf-orange), #ff9b00); transform: rotate(-1deg) scale(1.02); }
.sf-signal-track { display: flex; gap: 30px; align-items: center; justify-content: center; width: max-content; min-width: 100%; padding-inline: 30px; font-size: .72rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.sf-signal-track i { width: 7px; height: 7px; border: 2px solid #fff; border-radius: 50%; }

.sf-section-heading { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(280px, .6fr); gap: 60px; align-items: end; margin-bottom: 58px; }
.sf-section-heading h2 { max-width: 800px; margin-bottom: 0; }
.sf-section-heading > p { margin-bottom: 6px; }
.sf-plan-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.sf-plan-card { position: relative; display: flex; flex-direction: column; min-height: 510px; padding: 38px; overflow: hidden; border: 1px solid var(--sf-line); border-radius: var(--sf-radius); background: rgba(255,255,255,.76); box-shadow: 0 16px 50px rgba(35, 27, 17, .07); }
.sf-plan-card::before { position: absolute; top: -90px; right: -85px; width: 180px; height: 180px; border: 30px solid rgba(255,122,0,.07); border-radius: 50%; content: ""; }
.sf-plan-speed { display: flex; align-items: flex-end; margin-bottom: 12px; }.sf-plan-speed strong { font-size: clamp(3.5rem, 6vw, 5.6rem); letter-spacing: -.08em; line-height: .8; }.sf-plan-speed span { margin-left: 8px; color: var(--sf-orange); font-size: 1.35rem; font-weight: 900; }
.sf-plan-fit { min-height: 50px; margin-bottom: 28px; font-size: .87rem; }
.sf-price { display: flex; align-items: flex-start; margin-bottom: 3px; color: var(--sf-ink); }.sf-price > span { margin: 10px 4px 0 0; font-weight: 900; }.sf-price > strong { font-size: 2.4rem; line-height: 1; letter-spacing: -.05em; }.sf-price > small { align-self: flex-end; margin: 0 0 2px 4px; color: var(--sf-muted); }
.sf-plan-card ul { display: grid; gap: 11px; padding: 24px 0 28px; margin: 0; border-top: 1px solid var(--sf-line); list-style: none; }
.sf-plan-card li { position: relative; padding-left: 25px; font-size: .84rem; font-weight: 700; }.sf-plan-card li::before { position: absolute; top: .52em; left: 1px; width: 9px; height: 5px; border-bottom: 2px solid var(--sf-orange); border-left: 2px solid var(--sf-orange); content: ""; transform: rotate(-45deg); }
.sf-plan-card .sf-button { width: 100%; margin-top: auto; }
.sf-plan-featured { color: #fff; background: var(--sf-ink); border-color: var(--sf-ink); box-shadow: 0 30px 80px rgba(16,18,23,.22); transform: translateY(-12px); }.sf-plan-featured .sf-plan-fit, .sf-plan-featured li, .sf-plan-featured .sf-price-after { color: rgba(255,255,255,.64); }.sf-plan-featured .sf-price { color: #fff; }.sf-plan-featured ul { border-color: rgba(255,255,255,.12); }
.sf-plan-badge { position: absolute; top: 20px; right: -35px; width: 145px; padding: 7px 10px; color: var(--sf-ink); background: var(--sf-amber); font-size: .62rem; font-weight: 950; text-align: center; text-transform: uppercase; transform: rotate(38deg); }
.sf-promo-small { display: block; margin-top: 2px; color: rgba(255,255,255,.58); font-size: .7rem; letter-spacing: .03em; text-transform: lowercase; }
.sf-price-after { margin: 7px 0 18px; font-size: .76rem; font-weight: 800; }
.sf-plan-legal { max-width: 780px; margin: 26px auto 0; font-size: .68rem; text-align: center; }

.sf-dark-section { position: relative; overflow: hidden; color: #fff; background: var(--sf-ink); }
.sf-dark-section::before { position: absolute; inset: 0; content: ""; opacity: .35; background: radial-gradient(circle at 80% 20%, rgba(255,122,0,.35), transparent 30%), linear-gradient(120deg, transparent 0 48%, rgba(255,255,255,.035) 48% 49%, transparent 49%); }
.sf-dark-section .sf-container { position: relative; }
.sf-heading-light p, .sf-dark-section p { color: rgba(255,255,255,.64); }
.sf-feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; overflow: hidden; border: 1px solid rgba(255,255,255,.12); border-radius: var(--sf-radius); background: rgba(255,255,255,.12); }
.sf-feature-grid-three { grid-template-columns: repeat(3, 1fr); }
.sf-feature-grid article { min-height: 270px; padding: 34px; background: rgba(16,18,23,.86); transition: background .25s ease; }.sf-feature-grid article:hover { background: rgba(255,122,0,.1); }.sf-feature-grid article > span { color: var(--sf-orange); font-size: .72rem; font-weight: 900; }.sf-feature-grid h3 { margin: 80px 0 14px; }.sf-feature-grid p { margin-bottom: 0; font-size: .83rem; }

.sf-coverage { position: relative; background: #fff; }
.sf-coverage-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(40px, 8vw, 110px); align-items: center; }
.sf-coverage-copy h2 { max-width: 430px; }.sf-coverage-copy p { max-width: 460px; margin-bottom: 32px; }
.sf-city-cards { display: grid; gap: 18px; }
.sf-city-cards a { position: relative; display: grid; min-height: 195px; padding: 36px; overflow: hidden; border: 1px solid var(--sf-line); border-radius: var(--sf-radius); color: #fff; background: var(--sf-ink); text-decoration: none; transition: transform .25s ease, box-shadow .25s ease; }.sf-city-cards a:hover { transform: translateX(-6px); box-shadow: var(--sf-shadow); }.sf-city-cards a::after { position: absolute; top: -80%; right: -25%; width: 300px; height: 300px; border: 46px solid rgba(255,122,0,.3); border-radius: 50%; content: ""; }.sf-city-cards small { color: rgba(255,255,255,.55); }.sf-city-cards strong { position: relative; z-index: 1; align-self: center; font-size: clamp(1.8rem, 4vw, 3.1rem); letter-spacing: -.05em; }.sf-city-cards span { color: var(--sf-orange); font-size: .75rem; font-weight: 900; }

.sf-app-section { overflow: hidden; background: linear-gradient(145deg, #ff8a00, #ff6a00); }
.sf-app-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 90px; }.sf-app-grid h2 { max-width: 610px; }.sf-app-grid p { max-width: 580px; color: rgba(16,18,23,.67); }
.sf-app-grid .sf-kicker { color: var(--sf-ink); }
.sf-app-art { position: relative; min-height: 520px; }.sf-phone { position: absolute; z-index: 2; top: 50%; left: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; width: 255px; height: 490px; border: 8px solid #111; border-radius: 42px; color: #fff; background: linear-gradient(155deg, #1d222c, #090a0d); box-shadow: 0 35px 80px rgba(81,34,0,.3); transform: translate(-50%, -50%) rotate(-7deg); }.sf-phone-notch { position: absolute; top: 12px; width: 90px; height: 20px; border-radius: 99px; background: #050505; }.sf-phone > span { color: var(--sf-orange); font-size: 1.2rem; font-weight: 900; }.sf-phone > strong { font-size: 4.2rem; letter-spacing: -.1em; line-height: .9; }.sf-phone > i { display: grid; place-items: center; width: 64px; height: 64px; margin: 35px 0; border-radius: 50%; color: var(--sf-ink); background: var(--sf-orange); font-style: normal; }.sf-phone > small { color: rgba(255,255,255,.6); text-align: center; }.sf-app-ring { position: absolute; top: 50%; left: 50%; width: 440px; height: 440px; border: 80px solid rgba(255,255,255,.17); border-radius: 50%; transform: translate(-50%, -50%); }
.sf-store-buttons { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }.sf-store-buttons a { display: grid; min-width: 175px; padding: 10px 18px; border: 1px solid rgba(16,18,23,.18); border-radius: 12px; color: #fff; background: var(--sf-ink); line-height: 1.1; text-decoration: none; }.sf-store-buttons small { color: rgba(255,255,255,.6); font-size: .61rem; }.sf-store-buttons strong { font-size: 1rem; }

.sf-testimonials { background: var(--sf-cream); }
.sf-quote-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }.sf-quote-grid blockquote { display: flex; flex-direction: column; min-height: 330px; padding: 34px; margin: 0; border: 1px solid var(--sf-line); border-radius: var(--sf-radius); background: #fff; }.sf-quote-grid blockquote::before { color: var(--sf-orange); content: "“"; font: 900 5rem/1 Georgia, serif; }.sf-quote-grid blockquote > p { color: var(--sf-ink); font-size: 1rem; font-weight: 650; }.sf-quote-grid footer { display: grid; margin-top: auto; }.sf-quote-grid footer strong { font-size: .82rem; }.sf-quote-grid footer span { color: var(--sf-muted); font-size: .72rem; }

.sf-help { background: #fff; }
.sf-shortcut-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }.sf-shortcut { display: flex; flex-direction: column; min-height: 220px; padding: 28px; border: 1px solid var(--sf-line); border-radius: 18px; text-decoration: none; transition: transform .25s ease, color .25s ease, background .25s ease; }.sf-shortcut:hover { color: #fff; background: var(--sf-ink); transform: translateY(-6px); }.sf-shortcut > span { width: max-content; margin-bottom: auto; color: var(--sf-orange); font-size: .7rem; font-weight: 900; }.sf-shortcut strong { margin-top: 45px; font-size: 1.1rem; }.sf-shortcut small { color: var(--sf-muted); font-size: .72rem; }.sf-shortcut:hover small { color: rgba(255,255,255,.55); }

.sf-faq-section { background: #f3ede4; }
.sf-faq-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: clamp(40px, 8vw, 110px); align-items: start; }.sf-faq-grid > div:first-child { position: sticky; top: 130px; }.sf-faq-list { display: grid; gap: 10px; }.sf-faq-list details { border: 1px solid rgba(16,18,23,.1); border-radius: 15px; background: rgba(255,255,255,.65); }.sf-faq-list summary { position: relative; padding: 22px 56px 22px 24px; cursor: pointer; font-size: .9rem; font-weight: 850; list-style: none; }.sf-faq-list summary::-webkit-details-marker { display: none; }.sf-faq-list summary::after { position: absolute; top: 50%; right: 23px; content: "+"; color: var(--sf-orange); font-size: 1.45rem; transform: translateY(-50%); }.sf-faq-list details[open] summary::after { content: "−"; }.sf-faq-list details > div { padding: 0 24px 22px; }.sf-faq-list p { margin: 0; font-size: .82rem; }

.sf-final-cta { position: relative; overflow: hidden; padding: clamp(90px, 12vw, 160px) 0; color: #fff; background: var(--sf-orange); text-align: center; }.sf-final-cta::before { position: absolute; top: -260px; left: 50%; width: 720px; height: 720px; border: 110px solid rgba(255,255,255,.13); border-radius: 50%; content: ""; transform: translateX(-50%); }.sf-final-cta .sf-container { position: relative; z-index: 1; }.sf-final-cta > .sf-container > span { display: block; margin-bottom: 15px; font-size: .74rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }.sf-final-cta h2 { max-width: 850px; margin-inline: auto; }.sf-final-cta p { max-width: 680px; margin: 0 auto 34px; color: rgba(16,18,23,.68); }

.sf-page-hero, .sf-local-hero { position: relative; overflow: hidden; padding: clamp(90px, 11vw, 155px) 0; color: #fff; background: var(--sf-ink); }.sf-page-hero::after, .sf-local-hero::after { position: absolute; top: -50%; right: -10%; width: 660px; height: 660px; border: 100px solid rgba(255,122,0,.16); border-radius: 50%; content: ""; }.sf-page-hero .sf-container, .sf-local-hero .sf-container { position: relative; z-index: 1; }.sf-page-hero h1 { max-width: 900px; margin-bottom: 24px; font-size: clamp(3rem, 7vw, 6.2rem); }.sf-page-hero p { max-width: 720px; color: rgba(255,255,255,.65); font-size: 1.05rem; }
.sf-story-grid { display: grid; grid-template-columns: 1fr .9fr; gap: clamp(50px, 8vw, 110px); align-items: center; }.sf-story-grid p { font-size: 1rem; }.sf-story-image { margin: 0; }.sf-story-image img { aspect-ratio: 4/5; border-radius: 220px 220px 22px 22px; box-shadow: var(--sf-shadow); object-fit: cover; }.sf-story-image figcaption { margin-top: 12px; color: var(--sf-muted); font-size: .7rem; text-align: center; }.sf-check-list { display: grid; gap: 12px; padding: 0; margin: 30px 0 0; list-style: none; }.sf-check-list li { padding: 13px 16px; border-left: 3px solid var(--sf-orange); background: #fff; font-size: .85rem; font-weight: 750; }
.sf-support-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 90px; align-items: start; }.sf-support-steps { display: grid; gap: 1px; padding: 0; margin: 0; overflow: hidden; border: 1px solid rgba(255,255,255,.12); border-radius: var(--sf-radius); list-style: none; background: rgba(255,255,255,.12); }.sf-support-steps li { display: grid; grid-template-columns: 45px 1fr; gap: 20px; align-items: center; padding: 22px 28px; background: var(--sf-ink); }.sf-support-steps span { color: var(--sf-orange); font-size: .7rem; font-weight: 900; }.sf-support-steps p { margin: 0; font-size: .85rem; }
.sf-local-hero-grid { display: grid; grid-template-columns: 1fr 340px; gap: 80px; align-items: center; }.sf-local-hero h1 { max-width: 880px; font-size: clamp(3rem, 7vw, 6.3rem); }.sf-local-hero h1 em { display: block; color: var(--sf-orange); font-style: normal; }.sf-local-hero p { max-width: 720px; color: rgba(255,255,255,.65); }.sf-local-stat { position: relative; z-index: 2; display: flex; flex-direction: column; justify-content: center; aspect-ratio: 1; padding: 46px; border: 1px solid rgba(255,255,255,.14); border-radius: 50%; background: rgba(255,255,255,.055); box-shadow: inset 0 0 90px rgba(255,122,0,.09); }.sf-local-stat small { color: rgba(255,255,255,.5); text-transform: uppercase; }.sf-local-stat strong { color: var(--sf-orange); font-size: 5rem; letter-spacing: -.09em; line-height: 1; }.sf-local-stat span { font-size: 1.3rem; font-weight: 900; }.sf-local-stat i { margin-top: 22px; color: rgba(255,255,255,.6); font-size: .75rem; font-style: normal; }.sf-local-copy { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; }.sf-local-copy p { font-size: .95rem; }

.sf-content { padding: 90px 0 130px; }.sf-content article { width: min(100%, 790px); }.sf-content .entry-content > * + * { margin-top: 1.5em; }.sf-content a { color: #d85e00; }.sf-404 { padding: 140px 0; text-align: center; }.sf-404 strong { display: block; color: var(--sf-orange); font-size: 7rem; line-height: 1; }
.sf-editor-section { padding-block: 70px; background: #fff; }.sf-editor-content { width: min(calc(100% - 40px), 800px); }.sf-editor-content > * + * { margin-top: 1.4em; }.sf-editor-content a { color: #d85e00; }

.sf-footer { padding: 80px 0 0; color: rgba(255,255,255,.7); background: #090a0d; }.sf-footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 50px; }.sf-footer .sf-brand { width: 220px; filter: brightness(0) invert(1); opacity: .92; }.sf-footer-brand p { max-width: 350px; margin-top: 24px; color: rgba(255,255,255,.47); font-size: .78rem; }.sf-footer h2 { margin-bottom: 20px; color: #fff; font-size: .85rem; letter-spacing: 0; }.sf-footer ul { display: grid; gap: 10px; padding: 0; margin: 0; list-style: none; }.sf-footer a { font-size: .75rem; text-decoration: none; }.sf-footer a:hover { color: var(--sf-orange); }.sf-socials { display: flex; gap: 18px; }.sf-footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding-block: 28px; margin-top: 60px; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.38); font-size: .68rem; }
.sf-floating-whatsapp { position: fixed; z-index: 80; right: 22px; bottom: 22px; display: inline-flex; align-items: center; gap: 9px; min-height: 50px; padding: 12px 18px; border-radius: 99px; color: #fff; background: #1cae59; box-shadow: 0 14px 36px rgba(16,18,23,.24); font-size: .76rem; font-weight: 900; text-decoration: none; }.sf-floating-whatsapp::before { width: 10px; height: 10px; border: 2px solid #fff; border-radius: 50%; content: ""; }

@media (max-width: 1050px) {
  .sf-header-cta { display: none; }
  .sf-hero-grid { grid-template-columns: 1fr .8fr; }
  .sf-hero-visual { min-height: 520px; }
  .sf-plan-card { padding: 28px; }
  .sf-feature-grid { grid-template-columns: repeat(2, 1fr); }
  .sf-shortcut-grid { grid-template-columns: repeat(2, 1fr); }
  .sf-footer-grid { grid-template-columns: 1.5fr repeat(2, 1fr); }
}

@media (max-width: 820px) {
  body { font-size: 16px; }
  .sf-topbar-inner > span { display: none; }
  .sf-topbar-inner { justify-content: center; }
  .sf-header-inner { min-height: 74px; }
  .sf-brand, .custom-logo-link { width: 158px; }
  .sf-menu-toggle { display: block; margin-left: auto; }
  .sf-primary-nav { position: absolute; top: 100%; right: 0; left: 0; display: none; padding: 12px 20px 24px; border-bottom: 1px solid var(--sf-line); background: var(--sf-cream); box-shadow: 0 22px 40px rgba(16,18,23,.1); }
  .sf-primary-nav.is-open { display: block; }
  .sf-nav-list { display: grid; gap: 0; }.sf-nav-list a { display: block; padding: 13px 0; border-bottom: 1px solid var(--sf-line); }
  .sf-menu-toggle[aria-expanded="true"] > span:nth-child(1) { transform: translateY(7px) rotate(45deg); }.sf-menu-toggle[aria-expanded="true"] > span:nth-child(2) { opacity: 0; }.sf-menu-toggle[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .sf-hero-grid { grid-template-columns: 1fr; min-height: auto; padding-block: 70px 0; }
  .sf-hero-copy h1 { font-size: clamp(3.2rem, 15vw, 5.4rem); }
  .sf-hero-visual { min-height: 540px; }.sf-hero-visual > img { right: 50%; width: min(94%, 520px); height: 90%; transform: translateX(50%); }.sf-speed-orbit { right: 5%; width: 90%; }.sf-promo-chip { top: 8%; left: 2%; }
  .sf-section-heading, .sf-coverage-grid, .sf-app-grid, .sf-faq-grid, .sf-story-grid, .sf-support-grid, .sf-local-hero-grid, .sf-local-copy { grid-template-columns: 1fr; gap: 40px; }
  .sf-plan-grid, .sf-quote-grid { grid-template-columns: 1fr; }
  .sf-plan-card { min-height: 470px; }.sf-plan-featured { order: -1; transform: none; }
  .sf-feature-grid { grid-template-columns: 1fr 1fr; }
  .sf-app-art { min-height: 450px; }.sf-phone { width: 225px; height: 430px; }.sf-app-ring { width: 360px; height: 360px; border-width: 64px; }
  .sf-faq-grid > div:first-child { position: static; }
  .sf-local-stat { justify-self: center; width: min(100%, 330px); }
  .sf-footer-grid { grid-template-columns: 1fr 1fr; }.sf-footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  .sf-container { width: min(calc(100% - 28px), var(--sf-container)); }
  .sf-topbar-links { width: 100%; justify-content: space-between; gap: 12px; }
  .sf-hero { min-height: 0; }.sf-hero-copy h1 { font-size: 3.6rem; }.sf-hero-actions { align-items: stretch; flex-direction: column; }.sf-hero-actions .sf-button { width: 100%; }.sf-text-link { justify-content: center; }
  .sf-proof-row { gap: 7px; margin-top: 32px; }.sf-proof-row li { font-size: .64rem; }
  .sf-hero-visual { min-height: 430px; }.sf-promo-chip { min-width: 150px; padding: 16px; }.sf-promo-chip strong { font-size: 1.6rem; }
  .sf-signal-track { justify-content: flex-start; }
  .sf-section { padding: 80px 0; }
  .sf-section-heading { margin-bottom: 38px; }.sf-section-heading h2 { font-size: 2.6rem; }
  .sf-plan-card { padding: 28px; }
  .sf-feature-grid, .sf-feature-grid-three, .sf-shortcut-grid { grid-template-columns: 1fr; }
  .sf-feature-grid article { min-height: 220px; }.sf-feature-grid h3 { margin-top: 50px; }
  .sf-app-grid { gap: 25px; }.sf-app-art { min-height: 390px; }.sf-phone { width: 190px; height: 365px; border-width: 6px; border-radius: 34px; }.sf-phone > strong { font-size: 3.5rem; }.sf-phone > i { width: 52px; height: 52px; margin: 26px 0; }.sf-app-ring { width: 300px; height: 300px; border-width: 50px; }.sf-store-buttons a { flex: 1 1 160px; }
  .sf-page-hero h1, .sf-local-hero h1 { font-size: 3.4rem; }
  .sf-local-stat { width: 260px; }.sf-local-stat strong { font-size: 4rem; }
  .sf-footer-grid { grid-template-columns: 1fr; }.sf-footer-brand { grid-column: auto; }.sf-footer-bottom { flex-direction: column; }
  .sf-floating-whatsapp { right: 14px; bottom: 14px; padding-inline: 14px; }
}

/* Multipage technology system v3 — modern, high-contrast and motion rich. */
.sf-tech-topbar .sf-container { gap: 24px; }
.sf-client-portal { display: inline-flex; align-items: center; gap: 8px; padding: 7px 14px; margin: 4px 0; border-radius: 999px; color: #17181d !important; background: #fff; font-weight: 900; box-shadow: 0 6px 18px rgba(0,0,0,.18); }
.sf-hero-v3 .sf-hero-grid { min-height: 900px; }
.sf-hero-title-line { display: block; }
.sf-hero-copy h1 .sf-hero-title-line:nth-child(1), .sf-hero-copy h1 .sf-hero-title-line:nth-child(2) { white-space: nowrap; }
.sf-hero-v3 .sf-hero-copy h1 { font-size: clamp(3.4rem, 6vw, 6.1rem); }
.sf-client-hero-button { display: grid; grid-template-columns: 38px auto; align-items: center; column-gap: 10px; min-height: 60px; padding: 9px 18px; border: 1px solid rgba(255,255,255,.22); border-radius: 16px; color: #fff; background: rgba(255,255,255,.09); text-decoration: none; box-shadow: 0 15px 35px rgba(0,0,0,.2); backdrop-filter: blur(12px); transition: transform .2s ease, background .2s ease; }
.sf-client-hero-button:hover { color: #17181d; background: #fff; transform: translateY(-3px); }
.sf-client-hero-button > span { grid-row: 1 / 3; display: grid; place-items: center; width: 38px; height: 38px; border-radius: 10px; color: #17181d; background: #fff; }
.sf-client-hero-button:hover > span { color: #fff; background: var(--sf-orange); }
.sf-client-hero-button b { font-size: .78rem; }.sf-client-hero-button small { color: #cfd2d9; font-size: .61rem; }.sf-client-hero-button:hover small { color: #59606a; }
.sf-tech-chip { position: absolute; z-index: 5; padding: 9px 14px; border: 1px solid rgba(255,255,255,.22); border-radius: 999px; color: #fff; background: rgba(17,18,23,.82); font-size: .65rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; backdrop-filter: blur(12px); animation: sf-tech-float 4s ease-in-out infinite; }
.sf-chip-wifi { right: -3%; bottom: 24%; }.sf-chip-fiber { right: 48%; bottom: 7%; animation-delay: -2s; }
.sf-network-background { position: absolute; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }
.sf-router-node { position: absolute; width: 76px; height: 38px; border: 1px solid rgba(245,111,0,.32); border-radius: 11px; background: rgba(245,111,0,.08); box-shadow: 0 0 34px rgba(245,111,0,.12); animation: sf-tech-float 6s ease-in-out infinite; }
.sf-router-node i { position: absolute; bottom: 100%; width: 2px; height: 26px; background: linear-gradient(transparent, rgba(245,111,0,.6)); }.sf-router-node i:first-child { left: 16px; transform: rotate(-15deg); transform-origin: bottom; }.sf-router-node i:nth-child(2) { right: 16px; transform: rotate(15deg); transform-origin: bottom; }
.sf-router-node b { position: absolute; right: 13px; bottom: 10px; width: 6px; height: 6px; border-radius: 50%; background: #52d675; box-shadow: -12px 0 #ffb21a, -24px 0 #52d675; }
.sf-router-node-one { top: 17%; right: 4%; opacity: .7; }.sf-router-node-two { bottom: 12%; left: 3%; opacity: .42; transform: scale(.8); animation-delay: -3s; }
.sf-wifi-wave { position: absolute; width: 130px; height: 130px; border: 2px solid rgba(245,111,0,.2); border-radius: 50%; animation: sf-signal-pulse 3.2s ease-out infinite; }.sf-wifi-wave::before, .sf-wifi-wave::after { position: absolute; border: inherit; border-radius: inherit; content: ""; }.sf-wifi-wave::before { inset: 18%; }.sf-wifi-wave::after { inset: 38%; }.sf-wifi-wave-one { top: 8%; left: 54%; }.sf-wifi-wave-two { right: 6%; bottom: 5%; animation-delay: -1.6s; }
.sf-data-packet { position: absolute; width: 8px; height: 8px; border-radius: 50%; background: #ffb21a; box-shadow: 0 0 18px #ff8a00; animation: sf-data-flow 7s linear infinite; }.sf-packet-one { top: 28%; left: 3%; }.sf-packet-two { top: 65%; left: 48%; animation-delay: -2s; }.sf-packet-three { top: 16%; left: 73%; animation-delay: -4s; }
.sf-fiber-path { position: absolute; top: 50%; left: -20%; width: 140%; height: 1px; background: linear-gradient(90deg, transparent, rgba(245,111,0,.08), rgba(255,178,26,.35), rgba(245,111,0,.08), transparent); transform: rotate(-8deg); animation: sf-fiber-glow 3s ease-in-out infinite; }
.sf-product-gateway { position: relative; z-index: 3; margin-top: -58px; }.sf-product-gateway-grid { display: grid; grid-template-columns: repeat(4,1fr); overflow: hidden; border: 1px solid rgba(23,24,29,.1); border-radius: 24px; background: #fff; box-shadow: 0 24px 70px rgba(23,24,29,.16); }.sf-product-gateway a { display: grid; min-height: 170px; padding: 26px; border-right: 1px solid rgba(23,24,29,.09); color: #17181d; text-decoration: none; transition: .25s ease; }.sf-product-gateway a:last-child { border-right: 0; }.sf-product-gateway a:hover { color: #fff; background: linear-gradient(145deg,#ca4b00,#f56f00); transform: translateY(-5px); }.sf-product-gateway span { color: #f56f00; font-size: .68rem; font-weight: 900; }.sf-product-gateway a:hover span { color: #fff2c8; }.sf-product-gateway strong { align-self: end; font-size: 1rem; }.sf-product-gateway small { color: #626872; font-size: .68rem; }.sf-product-gateway a:hover small { color: #fff; }
.sf-section-link { color: #ca4b00; font-size: .78rem; font-weight: 900; text-decoration: none; }.sf-light-link { display: inline-block; margin-top: 24px; color: #ffbf45; }
.sf-connected-home { position: relative; overflow: hidden; color: #17181d; background: linear-gradient(145deg,#fff3e6,#ffd8b4); }.sf-connected-home > .sf-network-background { opacity: .35; }.sf-connected-home-grid { position: relative; z-index: 1; display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(50px,8vw,110px); align-items: center; }.sf-connected-home figure { position: relative; padding: 20px; margin: 0; border-radius: 32px; background: #fff; box-shadow: 0 30px 80px rgba(89,46,9,.18); }.sf-connected-home figure > img { width: 100%; border-radius: 20px; }.sf-connected-home h2 { color: #17181d; }.sf-connected-home h2 em { display: block; }.sf-connected-home h3 { margin: 12px 0 22px; color: #ca4b00; font-size: 1.35rem; letter-spacing: -.02em; }.sf-list-title { display: block; margin-top: 24px; }.sf-benefit-list { display: grid; gap: 12px; padding: 0; margin: 17px 0 30px; list-style: none; }.sf-benefit-list li { position: relative; padding-left: 30px; color: #383d46; font-size: .85rem; font-weight: 750; }.sf-benefit-list li::before { position: absolute; top: .35em; left: 0; display: grid; place-items: center; width: 18px; height: 18px; border-radius: 50%; color: #fff; background: #f56f00; content: "✓"; font-size: .62rem; }
.sf-image-signal { position: absolute; width: 84px; height: 84px; border: 4px solid rgba(245,111,0,.62); border-right-color: transparent; border-bottom-color: transparent; border-radius: 50%; animation: sf-signal-pulse 2.6s ease-out infinite; }.sf-signal-a { top: 34%; left: 18%; }.sf-signal-b { right: 14%; bottom: 21%; animation-delay: -1.3s; }
.sf-coverage-v3 { background: #fff; }.sf-coverage-v3 .sf-section-heading h2 em { display: block; }.sf-coverage-city-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 14px; }.sf-coverage-city-grid article { display: flex; flex-direction: column; min-height: 240px; padding: 26px; border: 1px solid rgba(23,24,29,.1); border-top: 5px solid #f56f00; border-radius: 20px; background: #f7f8fa; box-shadow: 0 14px 36px rgba(23,24,29,.06); transition: .25s ease; }.sf-coverage-city-grid article:nth-child(even) { color: #fff; background: linear-gradient(145deg,#17181d,#30323a); border-top-color: #ffb21a; }.sf-coverage-city-grid article:hover { transform: translateY(-7px); box-shadow: 0 22px 48px rgba(23,24,29,.14); }.sf-coverage-city-grid span { color: #f56f00; font-size: .68rem; font-weight: 900; }.sf-coverage-city-grid strong { margin-top: auto; font-size: 1.15rem; line-height: 1.15; }.sf-coverage-city-grid small { margin-top: 10px; color: #6b717a; font-size: .67rem; }.sf-coverage-city-grid article:nth-child(even) small { color: #cdd0d6; }.sf-coverage-city-grid a { margin-top: 24px; color: #f56f00; font-size: .72rem; font-weight: 900; text-decoration: none; }.sf-coverage-city-grid-large { grid-template-columns: repeat(3,1fr); }.sf-coverage-city-grid-large article { min-height: 290px; }.sf-coverage-page { background: linear-gradient(180deg,#fff,#fff1e4); }
.sf-tv-teaser { position: relative; overflow: hidden; color: #fff; background: radial-gradient(circle at 75% 20%,rgba(25,151,255,.24),transparent 30%),linear-gradient(135deg,#0d223c,#0a4f89 55%,#112134); }.sf-tv-teaser > .sf-network-background { opacity: .55; }.sf-tv-teaser .sf-app-grid { position: relative; z-index: 1; }.sf-tv-teaser h2 { color: #fff; }.sf-tv-teaser p { color: #e4eef8; }.sf-tv-logo-white { position: relative; justify-self: center; width: min(100%,520px); padding: 28px; border-radius: 30px; background: #fff; box-shadow: 0 30px 85px rgba(0,0,0,.3); }.sf-tv-logo-white::after { position: absolute; inset: 14px; border: 1px solid rgba(0,77,146,.12); border-radius: 22px; content: ""; pointer-events: none; }.sf-tv-logo-white > img { width: 100%; border-radius: 18px; filter: brightness(1.16) contrast(1.08) saturate(1.18); }.sf-large-tv-logo { width: min(100%,560px); }
.sf-page-hero-v3 { position: relative; overflow: hidden; padding: 120px 0; color: #fff; background: radial-gradient(circle at 78% 18%,rgba(245,111,0,.3),transparent 30%),linear-gradient(135deg,#111218,#2c170b); }.sf-page-hero-v3 > .sf-container { position: relative; z-index: 1; }.sf-page-hero-v3 h1 { max-width: 1050px; margin-bottom: 24px; font-size: clamp(3rem,7vw,6.4rem); }.sf-page-hero-v3 h1 em { display: block; color: #ff9a1f; font-style: normal; }.sf-page-hero-v3 p { max-width: 760px; color: #d8dbe1; font-size: 1.05rem; }.sf-page-hero-v3 .sf-button { margin-top: 16px; }.sf-page-hero-v3 .sf-store-buttons { margin-top: 28px; }
.sf-tv-white-section { position: relative; overflow: hidden; background: #fff; }.sf-tv-white-section > .sf-network-background { opacity: .18; }.sf-tv-page-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }.sf-tv-page-grid h2 { color: #17181d; }.sf-connected-home-page { background: #fff; }
.sf-support-card-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }.sf-support-card-grid > a { display: flex; flex-direction: column; min-height: 290px; padding: 30px; border: 1px solid rgba(23,24,29,.11); border-radius: 22px; color: #17181d; background: #fff; text-decoration: none; box-shadow: 0 16px 40px rgba(23,24,29,.07); transition: .25s ease; }.sf-support-card-grid > a:hover { color: #fff; background: #f56f00; transform: translateY(-7px); }.sf-support-card-grid .sf-featured-support-card { color: #fff; background: linear-gradient(145deg,#ca4b00,#f56f00); }.sf-support-big-icon { display: grid; place-items: center; width: 58px; height: 58px; margin-bottom: auto; border-radius: 18px; color: #fff; background: #17181d; font-size: 1.6rem; font-weight: 900; }.sf-support-big-icon img { width: 30px; filter: invert(1); }.sf-support-card-grid strong { margin-top: 54px; font-size: 1.15rem; }.sf-support-card-grid p { margin: 8px 0 0; color: #656b75; font-size: .78rem; }.sf-support-card-grid > a:hover p, .sf-support-card-grid .sf-featured-support-card p { color: #fff; }
.sf-footer-actions { padding: 40px 0; background: #fff; }.sf-footer-action-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }.sf-footer-action-grid > a { display: flex; align-items: center; gap: 18px; min-height: 125px; padding: 22px; border: 1px solid rgba(23,24,29,.1); border-radius: 20px; color: #17181d; background: #f7f8fa; text-decoration: none; transition: .25s ease; }.sf-footer-action-grid > a:nth-child(2) { color: #fff; background: linear-gradient(145deg,#ca4b00,#f56f00); }.sf-footer-action-grid > a:hover { transform: translateY(-5px); box-shadow: 0 18px 42px rgba(23,24,29,.12); }.sf-footer-action-icon { display: grid; place-items: center; flex: 0 0 54px; width: 54px; height: 54px; border-radius: 17px; color: #fff; background: #f56f00; font-size: 1.5rem; font-weight: 950; }.sf-footer-action-grid > a:nth-child(2) .sf-footer-action-icon { color: #17181d; background: #fff; }.sf-support-icon { background: #25d366; }.sf-support-icon img { width: 29px; filter: invert(1); }.sf-footer-action-grid a > div { display: grid; }.sf-footer-action-grid strong { font-size: .95rem; }.sf-footer-action-grid small { color: #656b75; font-size: .68rem; }.sf-footer-action-grid > a:nth-child(2) small { color: #fff; }
.sf-tech-footer { padding-top: 74px; }.sf-tech-footer .sf-footer-grid { grid-template-columns: 1.35fr repeat(3,1fr); }.sf-footer-logo-card { display: inline-flex; width: 230px; padding: 12px 16px; border-radius: 16px; background: #fff; }.sf-footer-logo-card .sf-brand, .sf-footer-logo-card .custom-logo-link { width: 100%; }.sf-footer-logo-card img { width: 100%; height: auto; }.sf-tech-footer .sf-footer-brand p { max-width: 350px; margin-top: 22px; color: #b9bdc6; font-size: .77rem; }.sf-tech-footer .sf-footer-grid > div:not(.sf-footer-brand) { display: grid; align-content: start; gap: 10px; }.sf-tech-footer .sf-footer-grid > div > h2 { margin-bottom: 12px; color: #fff; }.sf-tech-footer a { color: #ced1d8; font-size: .73rem; text-decoration: none; }.sf-tech-footer li { margin-bottom: 9px; }.sf-social-buttons { display: flex; gap: 10px; margin-top: 22px; }.sf-social-buttons a { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 14px; }.sf-social-buttons img { width: 21px; height: 21px; object-fit: contain; filter: invert(1); }.sf-instagram-social { background: linear-gradient(135deg,#feda75,#d62976 50%,#4f5bd5); }.sf-facebook-social { background: #1877f2; }
.sf-floating-whatsapp-v3 { display: flex; align-items: center; gap: 10px; padding: 9px 18px 9px 9px; border: 1px solid rgba(255,255,255,.7); border-radius: 999px; color: #fff; background: #138f3d; box-shadow: 0 18px 48px rgba(0,0,0,.28); font-size: .76rem; font-weight: 900; text-decoration: none; animation: sf-whatsapp-pulse 3s ease-in-out infinite; }.sf-floating-whatsapp-v3::before { display: none; }.sf-floating-whatsapp-v3 img { width: 40px; height: 40px; object-fit: contain; }.sf-final-v3 { position: relative; }.sf-final-v3 > .sf-network-background { opacity: .55; }.sf-final-v3 > .sf-container { position: relative; z-index: 1; }
[data-sf-reveal].sf-reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }[data-sf-reveal].sf-reveal.is-visible { opacity: 1; transform: none; }
@keyframes sf-tech-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@keyframes sf-signal-pulse { 0% { opacity: .18; transform: scale(.72); } 70% { opacity: .7; } 100% { opacity: 0; transform: scale(1.28); } }
@keyframes sf-data-flow { 0% { transform: translate(-8vw,5vh); } 50% { transform: translate(52vw,-10vh); } 100% { transform: translate(108vw,8vh); } }
@keyframes sf-fiber-glow { 0%,100% { opacity: .25; } 50% { opacity: 1; } }
@keyframes sf-whatsapp-pulse { 0%,100% { box-shadow: 0 18px 48px rgba(0,0,0,.28),0 0 0 0 rgba(37,211,102,.35); } 50% { box-shadow: 0 18px 48px rgba(0,0,0,.28),0 0 0 12px rgba(37,211,102,0); } }

@media (max-width: 1100px) {
  .sf-coverage-city-grid { grid-template-columns: repeat(3,1fr); }.sf-support-card-grid { grid-template-columns: repeat(2,1fr); }.sf-tech-footer .sf-footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }.sf-tech-footer .sf-footer-grid > div:last-child { grid-column: 2 / 4; }.sf-hero-v3 .sf-hero-grid { min-height: 820px; }
}
@media (max-width: 820px) {
  .sf-product-gateway { margin-top: 0; }.sf-product-gateway-grid { grid-template-columns: 1fr 1fr; border-radius: 0; }.sf-product-gateway a:nth-child(2) { border-right: 0; }.sf-product-gateway a:nth-child(-n+2) { border-bottom: 1px solid rgba(23,24,29,.09); }.sf-connected-home-grid, .sf-tv-page-grid { grid-template-columns: 1fr; }.sf-coverage-city-grid { grid-template-columns: 1fr 1fr; }.sf-footer-action-grid { grid-template-columns: 1fr; }.sf-hero-v3 .sf-hero-grid { min-height: auto; }.sf-tech-topbar .sf-container > span { display: none; }.sf-tv-logo-white { width: min(100%,620px); }
}
@media (max-width: 560px) {
  .sf-hero-v3 .sf-hero-copy h1 { font-size: 2.72rem; }.sf-hero-copy h1 .sf-hero-title-line:nth-child(1), .sf-hero-copy h1 .sf-hero-title-line:nth-child(2) { white-space: nowrap; }.sf-client-hero-button { width: 100%; }.sf-product-gateway-grid { grid-template-columns: 1fr; }.sf-product-gateway a { min-height: 125px; border-right: 0 !important; border-bottom: 1px solid rgba(23,24,29,.09); }.sf-coverage-city-grid, .sf-support-card-grid { grid-template-columns: 1fr; }.sf-coverage-city-grid article { min-height: 190px; }.sf-connected-home figure { padding: 10px; border-radius: 22px; }.sf-connected-home h2 em, .sf-coverage-v3 h2 em { display: inline; }.sf-tv-logo-white { padding: 12px; border-radius: 22px; }.sf-page-hero-v3 { padding: 86px 0; }.sf-page-hero-v3 h1 { font-size: 3.35rem; }.sf-tech-footer .sf-footer-grid { grid-template-columns: 1fr; }.sf-tech-footer .sf-footer-grid > div:last-child { grid-column: auto; }.sf-floating-whatsapp-v3 { right: 12px; bottom: 12px; padding: 7px; }.sf-floating-whatsapp-v3 span { display: none; }.sf-floating-whatsapp-v3 img { width: 44px; height: 44px; }.sf-footer-action-grid > a { min-height: 110px; }
}
@media (prefers-reduced-motion: reduce) {
  .sf-router-node, .sf-wifi-wave, .sf-data-packet, .sf-fiber-path, .sf-tech-chip, .sf-floating-whatsapp-v3 { animation: none !important; }
  [data-sf-reveal].sf-reveal { opacity: 1; transform: none; transition: none; }
}

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

@media print {
  .sf-topbar, .sf-header, .sf-floating-whatsapp, .sf-footer, .sf-button { display: none !important; }
  body { color: #000; background: #fff; }
}

/* Visual system v2 — high-contrast, colorful and conversion focused. */
:root {
  --sf-orange: #f56f00;
  --sf-orange-deep: #ca4b00;
  --sf-amber: #ffb21a;
  --sf-ink: #17181d;
  --sf-ink-2: #24262d;
  --sf-muted: #505661;
  --sf-cream: #f5f6f8;
  --sf-line: rgba(23, 24, 29, .13);
}
body { color: var(--sf-ink); background: var(--sf-cream); }
p { color: var(--sf-muted); }
h1, h2, h3 { color: inherit; }
h2 em { color: var(--sf-orange); font-style: normal; }
.sf-topbar { color: #fff; background: linear-gradient(90deg, #17181d 0 34%, #873300 100%); }
.sf-topbar a { color: #fff; }
.sf-header { background: rgba(255,255,255,.96); box-shadow: 0 8px 30px rgba(23,24,29,.06); }
.sf-primary-nav a { color: var(--sf-ink); }
.sf-button { border-color: var(--sf-orange-deep); background: linear-gradient(135deg, var(--sf-orange-deep), var(--sf-orange)); box-shadow: 0 12px 28px rgba(202,75,0,.25); }
.sf-button:hover, .sf-button:focus-visible { box-shadow: 0 18px 36px rgba(202,75,0,.32); }
.sf-hero { background: radial-gradient(circle at 84% 20%, rgba(245,111,0,.28), transparent 28%), linear-gradient(118deg, #0f1014 0%, #17181d 50%, #321708 100%); }
.sf-hero-copy > p { color: #d7d9df; }
.sf-hero-visual > img { height: 80%; border: 5px solid rgba(255,255,255,.9); border-radius: 36px; box-shadow: 0 36px 90px rgba(0,0,0,.48); }
.sf-hero-visual::after { border-radius: 0 0 32px 32px; }
.sf-promo-chip { border-color: rgba(255,255,255,.24); background: linear-gradient(145deg, rgba(34,36,43,.98), rgba(10,11,14,.96)); }
.sf-promo-chip small { color: #d7d9df; }.sf-promo-chip span { color: var(--sf-amber); }
.sf-signal-strip { background: linear-gradient(90deg, var(--sf-orange-deep), var(--sf-orange), var(--sf-amber)); box-shadow: 0 14px 34px rgba(202,75,0,.22); }
.sf-plans-section { background: linear-gradient(180deg, #fff 0%, #f6f7fa 100%); }
.sf-section-heading h2 { color: var(--sf-ink); }.sf-section-heading h2 em { display: block; }
.sf-plan-card { color: var(--sf-ink); background: #fff; border-color: rgba(23,24,29,.12); border-top: 5px solid var(--sf-orange); box-shadow: 0 18px 45px rgba(23,24,29,.08); }
.sf-plan-card:not(.sf-plan-featured) .sf-plan-speed strong, .sf-plan-card:not(.sf-plan-featured) .sf-price { color: var(--sf-ink); }
.sf-plan-featured { color: #fff; background: linear-gradient(145deg, #e75c00 0%, #ff8500 62%, #d84a00 100%); border-color: #d95000; box-shadow: 0 28px 70px rgba(202,75,0,.32); }
.sf-plan-featured .sf-plan-fit, .sf-plan-featured li, .sf-plan-featured .sf-price-after, .sf-plan-featured .sf-promo-small { color: #fff; }
.sf-plan-featured .sf-plan-speed span { color: #fff2c8; }
.sf-plan-featured .sf-button { color: var(--sf-ink); background: #fff; border-color: #fff; box-shadow: 0 12px 30px rgba(95,31,0,.2); }
.sf-plan-badge { color: #17181d; background: #ffe15a; }
.sf-dark-section { background: radial-gradient(circle at 85% 15%, rgba(245,111,0,.25), transparent 30%), linear-gradient(135deg, #15161b, #24262d 70%, #32180b); }
.sf-dark-section .sf-section-heading h2, .sf-dark-section h3 { color: #fff; }
.sf-dark-section .sf-section-heading h2 em { color: var(--sf-amber); }
.sf-heading-light p, .sf-dark-section > .sf-container > .sf-section-heading > p { color: #d3d6dd; }
.sf-feature-grid { gap: 16px; border: 0; background: transparent; }
.sf-feature-grid article { color: var(--sf-ink); background: #fff; border-top: 5px solid var(--sf-orange); border-radius: 18px; box-shadow: 0 18px 45px rgba(0,0,0,.22); }
.sf-feature-grid article:nth-child(even) { border-top-color: var(--sf-amber); }
.sf-feature-grid article > span { display: grid; place-items: center; width: 42px; height: 42px; color: #fff; background: var(--sf-orange); border-radius: 50%; }
.sf-feature-grid h3 { color: var(--sf-ink); }.sf-feature-grid p { color: var(--sf-muted); }
.sf-coverage { background: linear-gradient(145deg, #fff5eb, #ffe4ca); }
.sf-coverage h2 { color: var(--sf-ink); }.sf-coverage h2 em { display: block; }
.sf-city-cards a { border-color: rgba(255,255,255,.24); background: linear-gradient(135deg, var(--sf-orange-deep), var(--sf-orange)); box-shadow: 0 20px 50px rgba(202,75,0,.2); }
.sf-city-cards a:nth-child(2) { background: linear-gradient(135deg, #17181d, #30323a); box-shadow: 0 20px 50px rgba(23,24,29,.2); }
.sf-city-cards small { color: #fff; }.sf-city-cards span { color: #fff2c8; }
.sf-app-section { color: #fff; background: radial-gradient(circle at 20% 50%, rgba(245,111,0,.3), transparent 32%), linear-gradient(135deg, #121318, #24262d); }
.sf-app-grid .sf-kicker { color: var(--sf-amber); }.sf-app-grid h2 { color: #fff; }.sf-app-grid h2 em { display: block; color: var(--sf-amber); }.sf-app-grid p { color: #d7dae0; }
.sf-phone { border-color: #fff; background: linear-gradient(155deg, #ff8a00, #ca4b00); box-shadow: 0 35px 90px rgba(0,0,0,.4); }.sf-phone > span, .sf-phone > small { color: #fff; }.sf-phone > i { color: var(--sf-orange-deep); background: #fff; }
.sf-store-buttons { align-items: center; gap: 16px; }
.sf-store-buttons a { display: block; min-width: 0; padding: 0; border: 0; background: transparent; box-shadow: 0 14px 30px rgba(0,0,0,.28); transition: transform .2s ease; }
.sf-store-buttons a:hover { transform: translateY(-3px); }.sf-store-buttons img { width: auto; height: 56px; border-radius: 9px; object-fit: contain; }
.sf-tv-showcase { position: relative; justify-self: center; width: min(100%, 520px); min-height: 0; padding: 16px; border: 1px solid rgba(255,255,255,.16); border-radius: 32px; background: linear-gradient(145deg, rgba(255,255,255,.1), rgba(255,255,255,.03)); box-shadow: 0 30px 80px rgba(0,0,0,.35); }
.sf-tv-showcase > img { width: 100%; aspect-ratio: 1; border-radius: 22px; object-fit: cover; }
.sf-tv-showcase > div { position: absolute; right: 34px; bottom: 34px; left: 34px; display: grid; padding: 18px 20px; border: 1px solid rgba(255,255,255,.18); border-radius: 16px; color: #fff; background: rgba(12,13,17,.84); backdrop-filter: blur(14px); }
.sf-tv-showcase strong { font-size: 1rem; }.sf-tv-showcase span { color: #d7dae0; font-size: .72rem; }
.sf-channels-section { color: #fff; background: radial-gradient(circle at 15% 20%, rgba(34,174,255,.24), transparent 30%), linear-gradient(135deg, #062b55, #074b87 60%, #10213a); }
.sf-channel-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(55px, 8vw, 110px); align-items: center; }
.sf-channel-copy { display: flex; flex-direction: column; align-items: flex-start; }.sf-channel-mark { width: min(100%, 440px); height: auto; margin-bottom: 48px; }
.sf-channels-section .sf-kicker { color: #67c7ff; }.sf-channels-section h2 { color: #fff; }.sf-channels-section h2 em { display: block; color: var(--sf-amber); }.sf-channels-section p { color: #e1effc; }.sf-channel-copy > small { max-width: 500px; margin-top: 18px; color: #b7d4eb; font-size: .69rem; }
.sf-channel-grid figure { padding: 18px; margin: 0; border-radius: 28px; background: #fff; box-shadow: 0 32px 80px rgba(0,0,0,.32); }.sf-channel-grid figure > img { width: 100%; max-height: 680px; border-radius: 18px; object-fit: contain; }.sf-channel-grid figcaption { padding: 12px 8px 2px; color: #5b626d; font-size: .68rem; text-align: center; }
.sf-testimonials { background: linear-gradient(180deg, #fff 0%, #fff4e8 100%); }.sf-testimonials h2 em { display: block; }
.sf-quote-grid blockquote { color: var(--sf-ink); background: #fff; border-top: 5px solid var(--sf-orange); box-shadow: 0 16px 42px rgba(60,35,15,.08); }.sf-quote-grid blockquote > p { color: var(--sf-ink); }
.sf-help { background: #fff; }.sf-help h2 em { display: block; }
.sf-shortcut { color: var(--sf-ink); background: #fff7ef; border: 1px solid rgba(202,75,0,.16); border-top: 5px solid var(--sf-orange); box-shadow: 0 12px 34px rgba(23,24,29,.06); }
.sf-shortcut:nth-child(even) { background: #f4f5f8; border-top-color: var(--sf-ink); }
.sf-shortcut:hover { color: #fff; background: var(--sf-orange); }.sf-shortcut:hover > span, .sf-shortcut:hover small { color: #fff; }
.sf-faq-section { background: linear-gradient(145deg, #fff4e7, #ffdcb9); }.sf-faq-section h2 { color: var(--sf-ink); }.sf-faq-section h2 em { display: block; }
.sf-faq-list details { color: var(--sf-ink); background: #fff; border-color: rgba(23,24,29,.12); box-shadow: 0 10px 25px rgba(80,42,10,.05); }.sf-faq-list p { color: var(--sf-muted); }
.sf-final-cta { background: radial-gradient(circle at 50% -30%, rgba(255,255,255,.25), transparent 45%), linear-gradient(135deg, var(--sf-orange-deep), var(--sf-orange) 55%, #ff9200); }
.sf-final-cta h2 { color: #fff; }.sf-final-cta h2 em { color: #fff2af; }.sf-final-cta p { color: #fff; }.sf-final-cta > .sf-container > span { color: #fff; }
.sf-button-light { color: var(--sf-orange-deep); background: #fff; border-color: #fff; }
.sf-footer { color: #d0d3da; background: #111217; }.sf-footer-brand p, .sf-footer a { color: #d0d3da; }.sf-footer h2 { color: #fff; }
.sf-page-hero h1, .sf-local-hero h1, .sf-page-hero h2, .sf-local-hero h2 { color: #fff; }
.sf-editor-section, .sf-content { color: var(--sf-ink); background: #fff; }

@media (max-width: 820px) {
  .sf-hero-visual > img { height: 86%; border-radius: 30px; }
  .sf-feature-grid { gap: 12px; }
  .sf-store-buttons img { height: 52px; }
  .sf-channel-grid { grid-template-columns: 1fr; }.sf-channel-copy { align-items: center; text-align: center; }.sf-channel-mark { margin-bottom: 24px; }.sf-channel-grid figure { width: min(100%, 680px); margin-inline: auto; }
}
@media (max-width: 560px) {
  .sf-section-heading h2 em, .sf-coverage h2 em, .sf-app-grid h2 em, .sf-channels-section h2 em, .sf-help h2 em, .sf-faq-section h2 em, .sf-testimonials h2 em { display: inline; }
  .sf-feature-grid article { min-height: 210px; }
  .sf-store-buttons { display: grid; grid-template-columns: 1fr 1fr; }
  .sf-store-buttons a { min-width: 0; }.sf-store-buttons img { width: 100%; height: auto; }
  .sf-tv-showcase { padding: 10px; border-radius: 24px; }.sf-tv-showcase > div { right: 22px; bottom: 22px; left: 22px; }
  .sf-channel-mark { width: 100%; }.sf-channel-grid figure { padding: 10px; border-radius: 20px; }
  .sf-final-cta h2 { font-size: 2.8rem; }
}

/* Accessibility and production hardening. */
:root { --sf-orange: #f36b00; --sf-orange-deep: #c44700; }
.sf-button { color: #17181d; border-color: #e65b00; background: linear-gradient(135deg,#ff8a00,#ef6400); box-shadow: 0 14px 32px rgba(239,100,0,.32); }
.sf-button:hover, .sf-button:focus-visible { color: #111217; background: linear-gradient(135deg,#ff9f18,#ff7200); box-shadow: 0 18px 38px rgba(239,100,0,.38); }
.sf-button-light, .sf-final-cta .sf-button-light { color: #8f3000; border-color: #fff; background: #fff; }
.sf-plan-featured { color: #17181d; background: linear-gradient(145deg,#ff9a12,#f36b00 62%,#e45a00); border-color: #d94e00; }
.sf-plan-featured .sf-plan-fit, .sf-plan-featured li, .sf-plan-featured .sf-price-after, .sf-plan-featured .sf-promo-small, .sf-plan-featured .sf-plan-speed span, .sf-plan-featured .sf-price { color: #17181d; }
.sf-final-cta { color: #17181d; background: radial-gradient(circle at 50% -30%,rgba(255,255,255,.28),transparent 45%),linear-gradient(135deg,#f57a0a,#ff970f 55%,#ed6200); }
.sf-final-cta h2, .sf-final-cta h2 em, .sf-final-cta p, .sf-final-cta > .sf-container > span { color: #17181d; }
.sf-product-gateway a:hover, .sf-support-card-grid > a:hover, .sf-support-card-grid .sf-featured-support-card, .sf-footer-action-grid > a:nth-child(2) { color: #17181d; background: linear-gradient(145deg,#ff9210,#ef6400); }
.sf-product-gateway a:hover span, .sf-product-gateway a:hover small, .sf-support-card-grid > a:hover p, .sf-support-card-grid .sf-featured-support-card p, .sf-footer-action-grid > a:nth-child(2) small { color: #17181d; }
.sf-section-link, .sf-connected-home h3, .sf-coverage-city-grid span, .sf-coverage-city-grid a, .sf-kicker { color: #a83b00; }
.sf-benefit-list li::before, .sf-footer-action-icon, .sf-feature-grid article > span { background: #bd4300; }
.sf-floating-whatsapp-v3 { background: #087333; }
.sf-dark-section .sf-kicker, .sf-tv-teaser .sf-kicker, .sf-page-hero-v3 .sf-kicker, .sf-channels-section .sf-kicker { color: #ffbf45; }.sf-final-cta .sf-kicker { color: #632100; }
.sf-promo-after { padding-top: 7px; margin-top: 7px; border-top: 1px solid rgba(255,255,255,.16); color: #fff !important; font-weight: 800; }
.sf-local-links a { color: #a83b00; font-weight: 850; }
@media (max-width: 820px) {
  html:not(.sf-js) .sf-header-inner { flex-wrap: wrap; }
  html:not(.sf-js) .sf-menu-toggle { display: none; }
  html:not(.sf-js) .sf-primary-nav { position: static; display: block; flex-basis: 100%; padding: 0 0 18px; box-shadow: none; }
  .sf-js .sf-primary-nav { display: none; }
  .sf-js .sf-primary-nav.is-open { display: block; }
}

/* Consent layer is shown only when a confirmed GTM ID is configured. */
.sf-consent { position: fixed; z-index: 120; right: 20px; bottom: 96px; display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 22px; align-items: center; width: min(calc(100% - 40px), 760px); padding: 20px 22px; border: 1px solid rgba(255,255,255,.16); border-radius: 20px; color: #fff; background: rgba(17,18,23,.97); box-shadow: 0 24px 70px rgba(0,0,0,.34); backdrop-filter: blur(16px); }.sf-consent[hidden] { display: none; }.sf-consent strong { color: #fff; }.sf-consent p { margin: 5px 0 0; color: #d3d6dd; font-size: .72rem; }.sf-consent-actions { display: flex; gap: 9px; }.sf-consent button { min-height: 42px; padding: 9px 15px; border: 1px solid rgba(255,255,255,.28); border-radius: 999px; color: #fff; background: transparent; font: inherit; font-size: .68rem; font-weight: 850; cursor: pointer; }.sf-consent .sf-consent-accept { border-color: #ff8a00; color: #17181d; background: #ff8a00; }
@media (max-width: 700px) { .sf-consent { right: 14px; bottom: 80px; grid-template-columns: 1fr; width: calc(100% - 28px); padding: 18px; }.sf-consent-actions { display: grid; grid-template-columns: 1fr 1fr; }.sf-consent button { width: 100%; } }

/* Production hotfix 1.3.1 — clean Claro-inspired hierarchy, vivid orange and no brown cast. */
:root {
  --sf-orange: #ff7200;
  --sf-orange-deep: #e45100;
  --sf-amber: #ffb21a;
  --sf-ink: #12151b;
  --sf-ink-2: #20242c;
  --sf-muted: #555d69;
  --sf-cream: #f7f8fa;
  --sf-line: rgba(18, 21, 27, .12);
  --sf-container: 1220px;
}
body { color: var(--sf-ink); background: #fff; }
.sf-section { padding: clamp(68px, 8vw, 112px) 0; }
.sf-topbar { background: linear-gradient(90deg, #14171d 0 68%, #e95b00 100%); }
.sf-header { background: rgba(255, 255, 255, .98); border-bottom-color: rgba(18, 21, 27, .08); }
.sf-header-inner { min-height: 80px; }
.sf-brand, .custom-logo-link { width: 196px; }
.sf-button { color: #15171c; border-color: #ec5b00; background: linear-gradient(135deg, #ff951c, #ff7200); box-shadow: 0 12px 28px rgba(255, 114, 0, .28); }
.sf-button:hover, .sf-button:focus-visible { color: #111318; background: linear-gradient(135deg, #ffad3d, #ff7a00); box-shadow: 0 16px 34px rgba(255, 114, 0, .34); }

.sf-hero,
.sf-hero-v3 {
  min-height: 0;
  color: var(--sf-ink);
  background:
    radial-gradient(circle at 83% 18%, rgba(255, 114, 0, .22), transparent 24%),
    linear-gradient(116deg, #ffffff 0 58%, #fff3e8 58% 100%);
}
.sf-hero::before {
  opacity: .75;
  background-image: linear-gradient(rgba(18,21,27,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(18,21,27,.035) 1px, transparent 1px);
}
.sf-hero::after { right: -15vw; bottom: -55%; border-color: rgba(255, 114, 0, .14); }
.sf-hero-glow { top: 2%; left: 46%; background: rgba(255, 114, 0, .13); filter: blur(90px); }
.sf-hero-v3 .sf-hero-grid,
.sf-hero-grid { min-height: 690px; padding-block: 48px 70px; gap: clamp(34px, 5vw, 72px); }
.sf-hero-v3 .sf-hero-copy h1 { max-width: 690px; margin-bottom: 22px; color: var(--sf-ink); font-size: clamp(3.35rem, 5.2vw, 5.35rem); }
.sf-hero-copy h1 em { color: var(--sf-orange-deep); background: none; -webkit-text-fill-color: currentColor; }
.sf-hero-copy > p { max-width: 610px; color: #4d5662; font-size: clamp(1rem, 1.35vw, 1.15rem); }
.sf-hero-actions { gap: 14px; margin-top: 28px; }
.sf-client-hero-button { color: var(--sf-ink); background: #fff; border-color: rgba(18, 21, 27, .14); box-shadow: 0 12px 28px rgba(18, 21, 27, .1); }
.sf-client-hero-button:hover { color: var(--sf-ink); background: #fff7ef; }
.sf-client-hero-button > span { color: #fff; background: var(--sf-orange-deep); }
.sf-client-hero-button:hover > span { color: #fff; background: var(--sf-orange); }
.sf-client-hero-button small, .sf-client-hero-button:hover small { color: #68717e; }
.sf-proof-row { margin-top: 30px; }
.sf-proof-row li { color: #5b6470; background: rgba(255,255,255,.78); border-color: rgba(18, 21, 27, .13); }
.sf-proof-row strong { color: var(--sf-ink); }
.sf-hero-visual { min-height: 520px; }
.sf-hero-visual > img { right: 0; width: min(100%, 540px); height: 82%; border: 7px solid #fff; border-radius: 34px; box-shadow: 0 30px 72px rgba(18, 21, 27, .25); }
.sf-hero-visual::after { width: min(100%, 540px); height: 30%; border-radius: 0 0 27px 27px; background: linear-gradient(transparent, rgba(18,21,27,.6)); }
.sf-speed-orbit { border-color: rgba(255,114,0,.28); }
.sf-promo-chip { top: 8%; left: -5%; min-width: 200px; border-color: rgba(255,255,255,.18); background: rgba(18,21,27,.94); }
.sf-promo-after { color: #fff !important; }
.sf-product-gateway { margin-top: -34px; }
.sf-product-gateway-grid { box-shadow: 0 22px 54px rgba(18,21,27,.13); }
.sf-product-gateway a { min-height: 150px; }
.sf-product-gateway a:hover { color: #15171c; background: linear-gradient(145deg, #ff9a24, #ff7200); }
.sf-product-gateway a:hover span, .sf-product-gateway a:hover small { color: #15171c; }

.sf-plan-featured { color: #15171c; background: linear-gradient(145deg, #ff9f28, #ff7200 64%, #ef5d00); }
.sf-connected-home { background: linear-gradient(135deg, #fff9f3, #ffe9d3); }
.sf-faq-section { background: linear-gradient(145deg, #f7f8fa, #fff2e6); }
.sf-final-cta { background: linear-gradient(135deg, #ff9b24, #ff7200 58%, #ef5b00); }
.sf-page-hero-v3 { background: radial-gradient(circle at 78% 18%, rgba(255,114,0,.34), transparent 30%), linear-gradient(135deg,#11141a,#232832); }
.sf-page-hero-v3 h1 em { color: #ff8b18; }

@media (max-width: 1100px) {
  .sf-hero-v3 .sf-hero-copy h1 { font-size: clamp(3rem, 5.6vw, 4.6rem); }
  .sf-hero-v3 .sf-hero-grid { min-height: 650px; }
  .sf-nav-list { gap: 17px; }
  .sf-nav-list a { font-size: .71rem; }
}
@media (max-width: 820px) {
  .sf-hero, .sf-hero-v3 { background: linear-gradient(180deg, #fff 0 62%, #fff1e4 62% 100%); }
  .sf-hero-v3 .sf-hero-grid, .sf-hero-grid { grid-template-columns: 1fr; min-height: 0; padding-block: 58px 46px; }
  .sf-hero-copy { text-align: center; }
  .sf-hero-v3 .sf-hero-copy h1, .sf-hero-copy > p { margin-inline: auto; }
  .sf-hero-actions, .sf-proof-row { justify-content: center; }
  .sf-hero-visual { min-height: 470px; }
  .sf-hero-visual > img { right: 50%; width: min(92%, 560px); transform: translateX(50%); }
  .sf-hero-visual::after { right: 50%; width: min(92%, 560px); transform: translateX(50%); }
  .sf-promo-chip { left: 4%; }
  .sf-product-gateway { margin-top: 0; }
}
@media (max-width: 560px) {
  .sf-header-inner { min-height: 72px; }
  .sf-brand, .custom-logo-link { width: 166px; }
  .sf-hero-v3 .sf-hero-copy h1 { font-size: 2.8rem; }
  .sf-hero-title-line, .sf-hero-copy h1 .sf-hero-title-line:nth-child(1), .sf-hero-copy h1 .sf-hero-title-line:nth-child(2) { white-space: normal; }
  .sf-hero-actions { align-items: stretch; }
  .sf-client-hero-button { width: 100%; text-align: left; }
  .sf-hero-visual { min-height: 390px; }
  .sf-hero-visual > img { height: 78%; border-width: 5px; border-radius: 26px; }
  .sf-promo-chip { top: 2%; left: 0; min-width: 166px; padding: 16px; }
  .sf-tech-chip { display: none; }
  .sf-section { padding: 70px 0; }
}
