:root {
  --navy-950: #05082c;
  --navy-900: #090b46;
  --navy-800: #101457;
  --cyan: #18d6e4;
  --cyan-soft: #7cecf3;
  --blue: #1c7cff;
  --violet: #8b43f6;
  --magenta: #d734f0;
  --white: #f8fbff;
  --muted: #aeb9d9;
  --card: rgba(14, 20, 72, .76);
  --line: rgba(134, 218, 255, .17);
  --success: #3ee7aa;
  --radius-lg: 28px;
  --radius-md: 18px;
  --shadow: 0 24px 80px rgba(1, 3, 28, .36);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 86px; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--white);
  background: var(--navy-950);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 10% 20%, rgba(28, 124, 255, .18), transparent 28rem),
    radial-gradient(circle at 90% 42%, rgba(139, 67, 246, .16), transparent 32rem),
    linear-gradient(180deg, #080c3a 0%, #05082c 42%, #07082f 100%);
}
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
img { max-width: 100%; display: block; }
.container { width: min(1180px, calc(100% - 32px)); margin-inline: auto; }
.skip-link { position: fixed; left: 1rem; top: -4rem; z-index: 100; background: white; color: #05082c; padding: .7rem 1rem; border-radius: 10px; }
.skip-link:focus { top: 1rem; }

.site-header { position: sticky; top: 0; z-index: 40; border-bottom: 1px solid transparent; background: rgba(5, 8, 44, .72); backdrop-filter: blur(18px); }
.header-inner { min-height: 92px; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.brand { display: flex; align-items: center; gap: .7rem; padding: .3rem 0; }
.brand img { width: 70px; height: 70px; object-fit: contain; border-radius: 50%; filter: saturate(1.12) contrast(1.06); box-shadow: 0 0 28px rgba(14, 152, 255, .14); }
.brand-word { position: relative; display: flex; align-items: baseline; padding-bottom: .88rem; font-size: 1.45rem; line-height: 1; letter-spacing: -.04em; }
.brand-word b { color: white; }
.brand-word strong { color: var(--cyan); }
.brand-word small { position: absolute; left: 0; bottom: 0; width: max-content; color: #91a3cf; font-size: .55rem; line-height: 1; letter-spacing: .08em; text-transform: uppercase; font-weight: 700; }
.main-nav { display: flex; align-items: center; gap: 1.35rem; font-size: .9rem; font-weight: 700; }
.main-nav a { color: #dce5ff; transition: color .2s ease; }
.main-nav a:hover, .main-nav a:focus-visible { color: var(--cyan); }
.nav-cta { padding: .68rem 1rem; border: 1px solid rgba(24, 214, 228, .45); border-radius: 999px; background: rgba(24, 214, 228, .1); }
.menu-button { display: none; border: 0; background: transparent; color: white; font-size: 1.55rem; padding: .5rem; }

.hero { position: relative; min-height: 690px; display: grid; align-items: center; overflow: hidden; border-bottom: 1px solid var(--line); }
.hero::after { content: ""; position: absolute; inset: auto 0 0; height: 150px; background: linear-gradient(transparent, var(--navy-950)); pointer-events: none; }
.hero-media { position: absolute; inset: 0; z-index: -1; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 62% center; opacity: .82; }
.hero-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5, 8, 44, .98) 4%, rgba(5, 8, 44, .86) 39%, rgba(5, 8, 44, .12) 72%), linear-gradient(0deg, rgba(5, 8, 44, .68), transparent 40%); }
.hero-content { position: relative; z-index: 1; max-width: 620px; padding: 8rem 0 7rem; }
.eyebrow { display: inline-flex; align-items: center; gap: .55rem; color: var(--cyan-soft); text-transform: uppercase; font-size: .78rem; letter-spacing: .16em; font-weight: 800; }
.eyebrow::before { content: ""; width: 25px; height: 2px; background: linear-gradient(90deg, var(--violet), var(--cyan)); }
h1, h2, h3 { margin: 0; line-height: 1.08; letter-spacing: -.035em; }
h1 { margin-top: 1.1rem; font-size: clamp(3rem, 7vw, 6.3rem); max-width: 9ch; }
.gradient-text { color: var(--cyan); background: linear-gradient(95deg, #fff 4%, #4be7ed 58%, #a073ff); background-clip: text; -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero-copy { max-width: 54ch; color: #c7d3f4; font-size: clamp(1.06rem, 2vw, 1.2rem); margin: 1.5rem 0 2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; }
.button { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; gap: .6rem; padding: .8rem 1.25rem; border-radius: 999px; border: 1px solid transparent; font-weight: 800; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: linear-gradient(100deg, var(--cyan), var(--blue) 58%, var(--violet)); color: #04082d; box-shadow: 0 14px 40px rgba(35, 194, 239, .25); }
.button-secondary { border-color: rgba(255,255,255,.22); background: rgba(8, 12, 59, .55); }
.hero-proof { display: flex; flex-wrap: wrap; gap: 1.2rem; margin-top: 2.1rem; color: #dce6ff; font-size: .9rem; }
.hero-proof span { display: flex; align-items: center; gap: .45rem; }
.hero-proof i { width: 8px; height: 8px; border-radius: 50%; background: var(--success); box-shadow: 0 0 12px var(--success); }

.section { padding: 7rem 0; }
.section.alt { background: linear-gradient(180deg, rgba(14, 20, 72, .38), rgba(5,8,44,.25)); border-block: 1px solid var(--line); }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 2rem; margin-bottom: 2.6rem; }
.section-heading h2 { font-size: clamp(2.25rem, 5vw, 4.3rem); margin-top: .7rem; max-width: 13ch; }
.section-heading p { max-width: 52ch; color: var(--muted); margin: 0; }

.category-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: .9rem; }
.category-card { position: relative; min-height: 190px; overflow: hidden; display: flex; flex-direction: column; justify-content: end; padding: 1.25rem; border: 1px solid var(--line); border-radius: var(--radius-md); background: linear-gradient(145deg, rgba(25, 35, 105, .78), rgba(8, 11, 52, .9)); box-shadow: var(--shadow); }
.category-card::before { content: attr(data-symbol); position: absolute; top: .8rem; right: 1rem; font-weight: 900; font-size: 3.5rem; color: rgba(98, 225, 255, .12); }
.category-card:nth-child(even)::before { color: rgba(174, 92, 255, .17); }
.category-card strong { font-size: 1.12rem; }
.category-card span { color: var(--muted); font-size: .88rem; margin-top: .35rem; }
.category-card:hover { border-color: rgba(24, 214, 228, .5); }

.catalog-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 1.6rem; }
.search-wrap { position: relative; flex: 1; max-width: 440px; }
.search-wrap span { position: absolute; left: 1rem; top: 50%; transform: translateY(-50%); color: var(--cyan); }
.search-wrap input { width: 100%; min-height: 50px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.055); color: white; padding: 0 1rem 0 2.9rem; outline: none; }
.search-wrap input:focus { border-color: var(--cyan); box-shadow: 0 0 0 4px rgba(24, 214, 228, .1); }
.filter-row { display: flex; gap: .55rem; overflow-x: auto; padding-bottom: .35rem; scrollbar-width: thin; }
.filter-chip { white-space: nowrap; border: 1px solid var(--line); border-radius: 999px; background: transparent; color: #cbd6f4; padding: .62rem .9rem; cursor: pointer; }
.filter-chip.active { background: var(--cyan); color: #06103b; border-color: var(--cyan); font-weight: 800; }
#results-label { display: block; color: var(--muted); font-size: .88rem; margin-bottom: .9rem; }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.product-card { display: flex; min-height: 610px; flex-direction: column; padding: 1.15rem; border: 1px solid var(--line); border-radius: var(--radius-md); background: linear-gradient(150deg, rgba(19, 28, 91, .86), rgba(8, 11, 50, .94)); box-shadow: 0 18px 48px rgba(1, 3, 28, .24); transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease; }
.product-card:hover { transform: translateY(-5px); border-color: rgba(24,214,228,.38); box-shadow: 0 28px 70px rgba(1,3,28,.38); }
.product-top, .product-bottom { display: flex; align-items: center; justify-content: space-between; gap: .7rem; }
.category-tag, .product-badge { font-size: .74rem; text-transform: uppercase; letter-spacing: .08em; font-weight: 800; }
.category-tag { color: var(--cyan-soft); }
.product-badge { color: #e4d6ff; padding: .27rem .55rem; border: 1px solid rgba(168, 105, 255, .28); border-radius: 999px; }
.product-image { position: relative; overflow: hidden; aspect-ratio: 1.45 / 1; margin: 1rem 0 1.2rem; border-radius: 16px; background: #080d3d; border: 1px solid rgba(75, 221, 238, .18); }
.product-image::after { content: ""; position: absolute; inset: auto 0 0; height: 35%; background: linear-gradient(transparent, rgba(5,8,44,.38)); pointer-events: none; }
.product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.product-card:hover .product-image img { transform: scale(1.045); }
.visual-badges { position: absolute; z-index: 2; left: .65rem; right: .65rem; bottom: .65rem; display: flex; align-items: center; justify-content: center; gap: .38rem; padding: .48rem; border: 1px solid rgba(255,255,255,.15); border-radius: 12px; background: rgba(3, 7, 43, .82); backdrop-filter: blur(12px); box-shadow: 0 8px 24px rgba(1,3,28,.35); }
.visual-badges img { width: 31px; height: 25px; object-fit: contain; transform: none !important; }
.visual-badges span { min-height: 26px; display: inline-grid; place-items: center; padding: .2rem .42rem; border-radius: 7px; color: #eef4ff; background: rgba(255,255,255,.09); font-size: .66rem; font-weight: 850; line-height: 1; }
.platform-badges img:nth-child(2) { width: 42px; filter: brightness(2.1); }
.platform-badges img:nth-child(4) { width: 43px; }
.procedure-badges span { min-width: 49px; background: white; color: #0a1344; }
.procedure-badges .brand-dian, .procedure-badges .brand-sura { padding: .18rem .35rem; }
.procedure-badges .brand-dian img, .procedure-badges .brand-sura img { width: 48px; height: 22px; }
.service-badges span { color: var(--cyan-soft); border: 1px solid rgba(24,214,228,.17); background: rgba(24,214,228,.1); }
.product-card h3 { font-size: 1.35rem; }
.product-card p { color: var(--muted); font-size: .92rem; }
.product-card ul { list-style: none; padding: 0; margin: .2rem 0 1.1rem; color: #d7e1fa; font-size: .86rem; }
.product-card li { position: relative; padding-left: 1.1rem; margin: .35rem 0; }
.product-card li::before { content: "•"; color: var(--cyan); position: absolute; left: 0; }
.availability { margin-top: auto; display: flex; align-items: center; gap: .45rem; color: #bdebd9; font-size: .83rem; }
.availability span { width: 7px; height: 7px; background: var(--success); border-radius: 50%; }
.product-bottom { padding-top: 1rem; margin-top: .9rem; border-top: 1px solid var(--line); }
.product-bottom strong { font-size: .95rem; }
.mini-cta { padding: .6rem .8rem; border-radius: 10px; background: rgba(24, 214, 228, .11); color: var(--cyan-soft); font-weight: 800; font-size: .85rem; }
.empty-state { grid-column: 1/-1; min-height: 220px; display: grid; place-content: center; text-align: center; gap: .4rem; border: 1px dashed var(--line); border-radius: var(--radius-md); color: var(--muted); }

.streaming-spotlight { position: relative; z-index: 2; padding: 1.5rem 0 7rem; background: linear-gradient(180deg, var(--navy-950), rgba(9, 12, 59, .78)); }
.streaming-stage { position: relative; display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; padding: clamp(2rem, 5vw, 4.5rem); overflow: hidden; border: 1px solid rgba(63, 215, 255, .28); border-radius: 34px; background: linear-gradient(135deg, rgba(12, 25, 92, .96), rgba(20, 14, 83, .93) 55%, rgba(66, 17, 112, .78)); box-shadow: 0 35px 100px rgba(1, 3, 28, .48), inset 0 1px rgba(255,255,255,.07); }
.streaming-stage::before { content: ""; position: absolute; width: 420px; height: 420px; right: -150px; top: -190px; border-radius: 50%; background: rgba(24, 214, 228, .14); filter: blur(20px); pointer-events: none; }
.streaming-copy { position: relative; z-index: 1; }
.streaming-copy h2 { font-size: clamp(2.7rem, 5.3vw, 5.3rem); margin: .75rem 0 1.25rem; max-width: 9ch; }
.streaming-lead { max-width: 48ch; color: #c9d5f5; font-size: 1.08rem; }
.streaming-points { display: flex; flex-wrap: wrap; gap: .55rem .9rem; margin: 1.45rem 0 1.8rem; color: #e1e8ff; font-size: .88rem; font-weight: 700; }
.streaming-points span { padding: .42rem .65rem; border-radius: 999px; background: rgba(24, 214, 228, .09); border: 1px solid rgba(24, 214, 228, .15); }
.streaming-actions { display: flex; align-items: center; flex-wrap: wrap; gap: .8rem 1rem; }
.streaming-actions small { max-width: 20ch; color: #9cadd4; line-height: 1.35; }
.streaming-note { font-size: .74rem; line-height: 1.5; color: #8896bd !important; margin: 1.4rem 0 0; }
.streaming-showcase { position: relative; z-index: 1; padding: 1.15rem; border: 1px solid rgba(255,255,255,.11); border-radius: 24px; background: rgba(3, 7, 43, .55); box-shadow: 0 20px 70px rgba(1,3,28,.3); }
.showcase-head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .3rem .35rem 1rem; }
.showcase-head span { font-size: 1.1rem; font-weight: 850; }
.showcase-head b { color: var(--cyan-soft); font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; }
.platform-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: .65rem; }
.platform { min-height: 108px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .65rem; padding: 1rem; border: 1px solid rgba(255,255,255,.1); border-radius: 17px; background: linear-gradient(150deg, rgba(22, 32, 101, .76), rgba(8, 11, 54, .86)); transition: transform .2s ease, border-color .2s ease; }
.platform:hover { transform: translateY(-3px); border-color: rgba(24,214,228,.38); }
.platform img { width: 48px; height: 38px; object-fit: contain; }
.platform img[alt="Disney+"] { width: 62px; filter: brightness(2.3) saturate(1.2); }
.platform img[alt="HBO Max"] { width: 68px; }
.platform span { color: #eef2ff; font-size: .82rem; font-weight: 800; }
.platform.wide { grid-column: span 3; min-height: 86px; flex-direction: row; }
.platform-more { display: grid; gap: .2rem; text-align: center; background: linear-gradient(100deg, rgba(24,214,228,.13), rgba(139,67,246,.2)); }
.platform-more strong { color: var(--cyan-soft); font-size: 1rem; }
.platform-more span { color: #b7c4e5; font-weight: 600; }
.showcase-cta { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-top: .75rem; padding: 1rem 1.1rem; border-radius: 16px; background: linear-gradient(100deg, rgba(24, 214, 228, .15), rgba(139, 67, 246, .18)); border: 1px solid rgba(92, 226, 240, .18); }
.showcase-cta span { display: grid; }
.showcase-cta small { color: #aeb9d9; }
.showcase-cta strong { color: var(--cyan-soft); font-size: .84rem; }

.service-spotlight { padding: 1.5rem 0 6rem; background: linear-gradient(180deg, rgba(9,12,59,.78), rgba(5,8,44,.98)); }
.service-stage { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4.6rem); align-items: center; padding: clamp(1.1rem, 3vw, 2rem); border: 1px solid rgba(24,214,228,.24); border-radius: 32px; background: linear-gradient(135deg, rgba(13,27,90,.96), rgba(24,16,86,.92)); box-shadow: 0 30px 90px rgba(1,3,28,.42); }
.service-visual { min-height: 480px; overflow: hidden; border-radius: 24px; border: 1px solid rgba(255,255,255,.12); box-shadow: 0 24px 60px rgba(1,3,28,.35); }
.service-visual img { width: 100%; height: 100%; min-height: 480px; object-fit: cover; }
.service-copy { padding: 1.2rem 1.5rem 1.2rem 0; }
.service-copy h2 { margin: .8rem 0 1.1rem; font-size: clamp(2.4rem, 4.5vw, 4.5rem); }
.service-copy > p { color: #c9d5f5; font-size: 1.05rem; }
.service-list { display: grid; gap: .65rem; margin: 1.5rem 0 1.8rem; }
.service-list span { display: flex; align-items: center; gap: .8rem; padding: .75rem .85rem; border: 1px solid rgba(24,214,228,.14); border-radius: 12px; background: rgba(4,8,48,.4); color: #e2e9ff; }
.service-list b { color: var(--cyan); font-size: .78rem; letter-spacing: .08em; }
.service-copy small { display: block; margin-top: .8rem; color: #9eadd1; }

.benefit-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.benefit { padding: 1.35rem; border-top: 2px solid var(--cyan); background: rgba(12, 17, 67, .58); border-radius: 0 0 16px 16px; }
.benefit:nth-child(even) { border-color: var(--violet); }
.benefit b { display: block; font-size: 1.05rem; }
.benefit p { color: var(--muted); font-size: .88rem; margin-bottom: 0; }

.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.testimonial { margin: 0; padding: 1.6rem; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--card); }
.testimonial .stars { color: #5ee8ef; letter-spacing: .08em; }
.testimonial p { font-size: 1.05rem; min-height: 5.2rem; }
.testimonial footer { display: grid; }
.testimonial footer span { color: var(--muted); font-size: .83rem; }

.faq-list { max-width: 860px; margin: 0 auto; }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { cursor: pointer; list-style: none; display: flex; justify-content: space-between; gap: 1rem; padding: 1.25rem 0; font-weight: 800; }
.faq-list summary::after { content: "+"; color: var(--cyan); font-size: 1.4rem; }
.faq-list details[open] summary::after { content: "–"; }
.faq-list details p { color: var(--muted); margin-top: 0; padding: 0 2rem 1.2rem 0; }

.contact-card { display: grid; grid-template-columns: .9fr 1.1fr; gap: 2.5rem; padding: clamp(1.5rem, 5vw, 4rem); border-radius: var(--radius-lg); background: linear-gradient(125deg, #123177, #0e155a 46%, #351369); box-shadow: var(--shadow); }
.contact-card h2 { font-size: clamp(2.5rem, 5vw, 4.8rem); margin: .7rem 0 1rem; }
.contact-card p { color: #c8d4f3; }
.contact-meta { display: grid; gap: .7rem; margin-top: 2rem; }
.contact-meta strong { color: var(--cyan-soft); }
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; padding: 1.25rem; border-radius: 20px; background: rgba(4, 7, 42, .48); border: 1px solid rgba(255,255,255,.12); }
.field { display: grid; gap: .4rem; }
.field.full { grid-column: 1/-1; }
.field label { font-size: .84rem; font-weight: 750; }
.field input, .field select, .field textarea { width: 100%; border: 1px solid rgba(255,255,255,.17); background: rgba(255,255,255,.07); color: white; border-radius: 12px; padding: .82rem; outline: none; }
.field option { color: #070b37; }
.field textarea { min-height: 110px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(24,214,228,.12); }
.contact-form .button { grid-column: 1/-1; border: 0; cursor: pointer; }

.site-footer { padding: 4rem 0 2rem; border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 2rem; }
.footer-brand img { width: 190px; border-radius: 12px; }
.footer-brand p { max-width: 36ch; color: var(--muted); font-size: .88rem; }
.footer-column strong { display: block; margin-bottom: .85rem; }
.footer-column a, .footer-column button { display: block; color: var(--muted); margin: .45rem 0; background: none; border: 0; padding: 0; cursor: pointer; text-align: left; }
.footer-column a:hover, .footer-column button:hover { color: var(--cyan); }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; margin-top: 3rem; padding-top: 1.25rem; border-top: 1px solid var(--line); color: #8490b7; font-size: .78rem; }
.whatsapp-float { position: fixed; z-index: 35; right: 18px; bottom: 18px; width: 58px; height: 58px; display: grid; place-items: center; border-radius: 50%; color: white; background: #20c86a; box-shadow: 0 15px 40px rgba(5, 8, 44, .45); font-size: 1.5rem; font-weight: 900; }
.whatsapp-float img { width: 31px; height: 31px; object-fit: contain; }
.whatsapp-float::after { content: "WhatsApp"; position: absolute; right: 68px; padding: .45rem .65rem; border-radius: 8px; background: white; color: #071035; font-size: .76rem; opacity: 0; transform: translateX(8px); pointer-events: none; transition: .2s ease; }
.whatsapp-float:hover::after { opacity: 1; transform: none; }

dialog { width: min(680px, calc(100% - 32px)); max-height: 82vh; overflow: auto; border: 1px solid var(--line); border-radius: 22px; background: #0c1249; color: white; padding: 1.7rem; box-shadow: var(--shadow); }
dialog::backdrop { background: rgba(2, 4, 27, .78); backdrop-filter: blur(5px); }
.dialog-head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.dialog-head h2 { font-size: 1.8rem; }
.dialog-close { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line); background: rgba(255,255,255,.06); color: white; cursor: pointer; }
dialog p, dialog li { color: var(--muted); }

:focus-visible { outline: 3px solid var(--cyan); outline-offset: 3px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; } }

@media (max-width: 980px) {
  .category-grid { grid-template-columns: repeat(3, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .streaming-stage, .service-stage, .contact-card { grid-template-columns: 1fr; }
  .service-copy { padding: 1rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .container { width: min(100% - 24px, 1180px); }
  .menu-button { display: block; }
  .main-nav { position: absolute; top: 92px; left: 12px; right: 12px; display: none; align-items: stretch; flex-direction: column; gap: .2rem; padding: 1rem; border: 1px solid var(--line); border-radius: 16px; background: rgba(7, 11, 54, .98); box-shadow: var(--shadow); }
  .main-nav.open { display: flex; }
  .main-nav a { padding: .75rem; }
  .hero { min-height: 760px; align-items: end; }
  .hero-media img { object-position: 70% center; }
  .hero-media::after { background: linear-gradient(0deg, rgba(5, 8, 44, .99) 10%, rgba(5, 8, 44, .65) 64%, rgba(5,8,44,.18)), linear-gradient(90deg, rgba(5, 8, 44, .72), transparent); }
  .hero-content { padding: 20rem 0 5.5rem; }
  h1 { font-size: clamp(3rem, 16vw, 4.7rem); }
  .section { padding: 5rem 0; }
  .streaming-spotlight { padding: 1rem 0 5rem; }
  .streaming-stage { padding: 1.35rem; border-radius: 24px; }
  .service-stage { padding: 1rem; border-radius: 24px; }
  .service-visual, .service-visual img { min-height: 340px; }
  .streaming-copy h2 { max-width: 11ch; }
  .section-heading { align-items: start; flex-direction: column; margin-bottom: 2rem; }
  .category-grid { grid-template-columns: 1fr 1fr; }
  .catalog-toolbar { align-items: stretch; flex-direction: column; }
  .search-wrap { max-width: none; }
  .product-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .product-card { min-height: 430px; }
  .contact-form { grid-template-columns: 1fr; }
  .field, .field.full, .contact-form .button { grid-column: 1; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
}

@media (max-width: 440px) {
  .brand { gap: .45rem; }
  .brand img { width: 58px; height: 58px; }
  .brand-word { font-size: 1.12rem; padding-bottom: .72rem; }
  .brand-word small { font-size: .42rem; letter-spacing: .05em; }
  .hero-actions .button { width: 100%; }
  .hero-proof { flex-direction: column; gap: .55rem; }
  .category-grid, .benefit-grid { grid-template-columns: 1fr; }
  .platform-grid { grid-template-columns: repeat(2, 1fr); }
  .platform.wide { grid-column: span 2; }
  .platform { min-height: 96px; }
  .showcase-head, .showcase-cta { align-items: flex-start; flex-direction: column; }
  .category-card { min-height: 145px; }
}
