:root {
  --ink: #071923;
  --navy: #061a25;
  --navy-2: #0b2b37;
  --green: #0a8f4a;
  --green-bright: #20b967;
  --red: #ef2538;
  --cream: #f5f7f4;
  --white: #ffffff;
  --line: #dfe7e2;
  --muted: #617078;
  --shadow: 0 22px 70px rgba(4, 28, 37, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--white); color: var(--ink); font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }

.site-header { position: sticky; z-index: 50; top: 0; background: rgba(255, 255, 255, 0.96); border-bottom: 1px solid rgba(6, 26, 37, 0.08); backdrop-filter: blur(18px); }
.header-inner { min-height: 92px; display: flex; align-items: center; gap: 30px; }
.brand { flex: 0 0 auto; width: 260px; }
.brand img { width: 100%; height: 70px; object-fit: contain; }
.desktop-nav { margin-left: auto; display: flex; align-items: center; gap: 30px; }
.desktop-nav a { position: relative; padding: 34px 0; color: #314149; font-size: 14px; font-weight: 720; }
.desktop-nav a::after { content: ""; position: absolute; right: 0; bottom: 24px; left: 0; height: 2px; background: var(--green); transform: scaleX(0); transform-origin: left; transition: transform .2s ease; }
.desktop-nav a:hover::after, .desktop-nav a:focus-visible::after { transform: scaleX(1); }
.button { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; border: 0; border-radius: 8px; padding: 13px 19px; font-size: 14px; font-weight: 800; line-height: 1; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--red); color: var(--white); box-shadow: 0 14px 30px rgba(239, 37, 56, 0.23); }
.button-primary:hover { background: #d91428; box-shadow: 0 18px 36px rgba(239, 37, 56, 0.3); }
.button-ghost { color: var(--white); border: 1px solid rgba(255, 255, 255, 0.28); background: rgba(255, 255, 255, 0.07); }
.button-light { background: var(--white); color: var(--ink); }
.header-cta { min-height: 44px; background: var(--green); color: white; border-radius: 7px; padding-inline: 17px; }
.mobile-menu { display: none; margin-left: auto; position: relative; }
.mobile-menu summary { width: 46px; height: 46px; display: grid; place-content: center; gap: 5px; cursor: pointer; border-radius: 8px; background: var(--navy); list-style: none; }
.mobile-menu summary::-webkit-details-marker { display: none; }
.mobile-menu summary i { width: 22px; height: 2px; display: block; background: white; }
.mobile-menu nav { position: absolute; top: 54px; right: 0; width: min(310px, calc(100vw - 40px)); padding: 12px; border: 1px solid var(--line); border-radius: 12px; background: white; box-shadow: var(--shadow); }
.mobile-menu nav a { display: block; padding: 13px 14px; border-radius: 7px; font-weight: 700; }
.mobile-menu nav a:hover { background: var(--cream); color: var(--green); }

.hero { position: relative; overflow: hidden; color: white; background: radial-gradient(circle at 78% 12%, rgba(30, 179, 98, .18), transparent 30%), linear-gradient(118deg, #03131d 2%, #082632 58%, #063325 125%); padding: 86px 0 0; }
.hero::before { content: ""; position: absolute; width: 520px; height: 520px; top: -220px; right: -170px; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; box-shadow: 0 0 0 80px rgba(255,255,255,.018), 0 0 0 160px rgba(255,255,255,.012); }
.hero-grid-pattern { position: absolute; inset: 0; opacity: .14; background-image: linear-gradient(rgba(255,255,255,.09) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.09) 1px, transparent 1px); background-size: 48px 48px; mask-image: linear-gradient(90deg, transparent, black 60%, black); }
.hero-layout { position: relative; z-index: 1; display: grid; grid-template-columns: 1.06fr .94fr; gap: 70px; align-items: center; padding-bottom: 92px; }
.eyebrow { margin: 0 0 17px; display: flex; align-items: center; gap: 10px; color: var(--green); font-size: 12px; font-weight: 850; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow > span { width: 29px; height: 2px; background: currentColor; }
.eyebrow.light { color: #6ddf9d; }
.hero h1 { max-width: 720px; margin: 0; font-size: clamp(54px, 5.25vw, 78px); line-height: .98; letter-spacing: -.055em; font-weight: 770; }
.hero h1 em { color: var(--green-bright); font-style: normal; }
.hero-lead { max-width: 650px; margin: 27px 0 0; color: #c7d7dc; font-size: 18px; line-height: 1.72; }
.hero-actions { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 12px; }
.hero-trust { margin-top: 36px; display: flex; align-items: center; gap: 13px; }
.hero-trust p { margin: 0; color: #aebfc5; font-size: 12px; line-height: 1.5; }
.hero-trust strong { color: white; font-size: 13px; }
.avatars { display: flex; }
.avatars span { width: 34px; height: 34px; display: grid; place-items: center; margin-left: -7px; border: 2px solid #0a2631; border-radius: 50%; background: #163a47; color: white; font-size: 10px; font-weight: 800; }
.avatars span:first-child { margin-left: 0; background: transparent; }
.avatars span:nth-child(2) { background: var(--green); }
.avatars .avatar-k { overflow: hidden; }
.avatars .avatar-k img { width: 100%; height: 100%; object-fit: contain; }
.hero-console { position: relative; min-height: 430px; padding: 20px; overflow: hidden; border: 1px solid rgba(255,255,255,.14); border-radius: 24px; background: linear-gradient(145deg, rgba(255,255,255,.09), rgba(255,255,255,.025)); box-shadow: 0 40px 80px rgba(0,0,0,.28); backdrop-filter: blur(12px); }
.console-topbar { display: flex; align-items: center; justify-content: space-between; color: #dce9ec; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; }
.console-topbar span { display: flex; align-items: center; gap: 8px; }
.console-topbar i { width: 8px; height: 8px; border-radius: 50%; background: var(--green-bright); box-shadow: 0 0 18px var(--green-bright); }
.console-topbar small { padding: 6px 9px; border-radius: 99px; background: rgba(32,185,103,.13); color: #6de6a1; font-weight: 800; }
.console-orbit { position: relative; height: 285px; display: grid; place-items: center; }
.orbit { position: absolute; border: 1px solid rgba(255,255,255,.15); border-radius: 50%; }
.orbit-one { width: 210px; height: 210px; }
.orbit-two { width: 310px; height: 150px; transform: rotate(-18deg); }
.console-logo { position: relative; z-index: 2; width: 112px; height: 112px; display: grid; place-items: center; border-radius: 28px; box-shadow: 0 20px 50px rgba(0,0,0,.35), 0 0 0 10px rgba(255,255,255,.04); }
.console-logo img { width: 100%; height: 100%; object-fit: contain; }
.node { position: absolute; z-index: 3; width: 50px; height: 50px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.18); border-radius: 15px; background: #123743; color: white; font-size: 10px; font-weight: 900; box-shadow: 0 13px 30px rgba(0,0,0,.28); }
.node-ai { top: 38px; left: 54px; color: #7ae8a8; }
.node-code { right: 48px; top: 75px; color: #ff8491; }
.node-solar { right: 83px; bottom: 27px; color: #f9cc54; }
.console-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.console-metrics div { padding: 13px; border-radius: 12px; background: rgba(255,255,255,.055); }
.console-metrics span, .console-metrics strong { display: block; }
.console-metrics span { color: #8ca7b0; font-size: 10px; text-transform: uppercase; }
.console-metrics strong { margin-top: 5px; color: white; font-size: 19px; }
.hero-stats { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(4, 1fr); border-radius: 18px 18px 0 0; background: white; color: var(--ink); box-shadow: 0 -8px 40px rgba(0,0,0,.12); }
.hero-stats div { padding: 25px 28px; display: flex; align-items: center; gap: 14px; border-right: 1px solid var(--line); }
.hero-stats div:last-child { border-right: 0; }
.hero-stats strong { color: var(--green); font-size: 31px; line-height: 1; letter-spacing: -.04em; }
.hero-stats sup { font-size: 15px; }
.hero-stats span { color: var(--muted); font-size: 11px; font-weight: 700; line-height: 1.3; text-transform: uppercase; letter-spacing: .05em; }

.section { padding: 104px 0; }
.video-section { position: relative; overflow: hidden; color: white; background: radial-gradient(circle at 85% 10%, rgba(32,185,103,.16), transparent 28%), var(--navy); }
.video-section::before { content: ""; position: absolute; width: 440px; height: 440px; left: -260px; bottom: -280px; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; box-shadow: 0 0 0 75px rgba(255,255,255,.018), 0 0 0 150px rgba(255,255,255,.012); }
.video-layout { position: relative; z-index: 1; display: grid; grid-template-columns: .72fr 1.28fr; gap: 64px; align-items: center; }
.video-copy h2 { margin: 0; color: white; font-size: clamp(40px, 4vw, 58px); line-height: 1.05; letter-spacing: -.045em; }
.video-copy > p:not(.eyebrow) { margin: 22px 0 29px; color: #b9cbd1; font-size: 16px; line-height: 1.75; }
.video-frame { overflow: hidden; border: 1px solid rgba(255,255,255,.16); border-radius: 20px; background: #020b10; box-shadow: 0 35px 75px rgba(0,0,0,.35); }
.video-frame video { width: 100%; aspect-ratio: 16 / 9; display: block; background: #000; object-fit: cover; }
.section-heading h2 { margin: 0; max-width: 720px; color: var(--ink); font-size: clamp(38px, 4vw, 56px); line-height: 1.07; letter-spacing: -.042em; }
.section-heading p { color: var(--muted); font-size: 16px; line-height: 1.7; }
.split-heading { display: grid; grid-template-columns: 1.25fr .75fr; gap: 90px; align-items: end; margin-bottom: 44px; }
.split-heading > div:last-child > p { margin: 0 0 16px; }
.text-link { color: var(--green); font-size: 14px; font-weight: 800; }
.text-link span, .service-card a span, .product-copy a span { display: inline-block; margin-left: 6px; transition: transform .2s ease; }
.text-link:hover span, .service-card a:hover span, .product-copy a:hover span { transform: translateX(4px); }
.services-preview { background: #fbfcfb; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.service-card { position: relative; min-height: 280px; display: flex; flex-direction: column; padding: 26px; overflow: hidden; border: 1px solid var(--line); border-radius: 16px; background: white; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.service-card::after { content: ""; position: absolute; right: -34px; bottom: -45px; width: 120px; height: 120px; border: 1px solid rgba(10,143,74,.12); border-radius: 50%; }
.service-card:hover { transform: translateY(-5px); border-color: rgba(10,143,74,.35); box-shadow: var(--shadow); }
.card-topline { display: flex; align-items: start; justify-content: space-between; }
.card-topline > span { color: #bac6c0; font-size: 12px; font-weight: 800; letter-spacing: .1em; }
.service-icon { width: 54px; height: 54px; }
.service-card h3 { margin: 24px 0 10px; font-size: 20px; line-height: 1.2; letter-spacing: -.02em; }
.service-card p { margin: 0 0 22px; color: var(--muted); font-size: 14px; line-height: 1.65; }
.service-card a { margin-top: auto; color: var(--green); font-size: 13px; font-weight: 800; }

.products-section { background: var(--cream); }
.centered-heading { max-width: 800px; margin: 0 auto 46px; text-align: center; }
.centered-heading .eyebrow { justify-content: center; }
.centered-heading h2 { margin-inline: auto; }
.centered-heading > p:last-child { max-width: 580px; margin: 17px auto 0; }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.product-card { overflow: hidden; border: 1px solid var(--line); border-radius: 17px; background: white; transition: transform .25s ease, box-shadow .25s ease; }
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.product-visual { position: relative; width: 100%; aspect-ratio: 2 / 3; overflow: hidden; background: linear-gradient(145deg, #e8eeeb, #f9fbfa); }
.product-visual::before { content: ""; position: absolute; inset: 24px; border: 1px solid rgba(6,26,37,.08); border-radius: 50%; }
.product-visual img { width: 100%; height: 100%; position: relative; z-index: 1; object-fit: contain; object-position: center; transition: transform .4s ease; }
.product-card:hover .product-visual img { transform: scale(1.035); }
.product-badge { position: absolute; z-index: 2; top: 14px; left: 14px; padding: 7px 10px; border-radius: 99px; background: rgba(6,26,37,.88); color: white; font-size: 9px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; backdrop-filter: blur(8px); }
.product-poster-button { display: block; padding: 0; border: 0; color: inherit; cursor: zoom-in; }
.product-poster-button:focus-visible { outline: 4px solid rgba(10,143,74,.35); outline-offset: -4px; }
.zoom-hint { position: absolute; z-index: 3; right: 14px; bottom: 14px; padding: 7px 10px; border-radius: 99px; background: rgba(255,255,255,.92); color: var(--ink); box-shadow: 0 8px 20px rgba(0,0,0,.16); font-size: 10px; font-weight: 850; opacity: 0; transform: translateY(5px); transition: opacity .2s ease, transform .2s ease; }
.product-poster-button:hover .zoom-hint, .product-poster-button:focus-visible .zoom-hint { opacity: 1; transform: translateY(0); }
.product-spec-visual { display: flex; flex-direction: column; justify-content: center; padding: 64px 34px 34px; color: white; background: radial-gradient(circle at 82% 15%, rgba(32,185,103,.38), transparent 27%), linear-gradient(145deg, #03131d, #0a5137); }
.product-spec-visual::before { border-color: rgba(255,255,255,.11); }
.product-spec-visual > small, .product-spec-visual > strong, .product-spec-visual > span, .product-spec-visual > div { position: relative; z-index: 1; }
.product-spec-visual > small { color: #75e3a5; font-size: 13px; font-weight: 900; letter-spacing: .18em; }
.product-spec-visual > strong { margin-top: 8px; font-size: clamp(90px, 10vw, 142px); line-height: .85; letter-spacing: -.08em; }
.product-spec-visual > span { margin-top: 15px; font-size: 24px; font-weight: 850; line-height: 1.16; text-transform: uppercase; }
.product-spec-visual > div { margin-top: 30px; display: grid; grid-template-columns: auto 1fr; gap: 6px 14px; padding: 18px; border: 1px solid rgba(255,255,255,.14); border-radius: 14px; background: rgba(255,255,255,.07); }
.product-spec-visual b { color: #75e3a5; font-size: 18px; }
.product-spec-visual em { align-self: center; color: #d5e6df; font-size: 11px; font-style: normal; }
.product-copy { padding: 21px; }
.product-copy h3 { min-height: 48px; margin: 0 0 9px; font-size: 18px; line-height: 1.3; }
.product-copy p { min-height: 66px; margin: 0 0 17px; color: var(--muted); font-size: 13px; line-height: 1.65; }
.product-copy a { color: var(--green); font-size: 13px; font-weight: 850; }
.gallery-note { margin: 22px 0 0; color: var(--muted); text-align: center; font-size: 12px; }
.poster-dialog { width: min(760px, calc(100% - 32px)); max-height: calc(100vh - 32px); padding: 0; overflow: visible; border: 0; border-radius: 18px; background: transparent; box-shadow: 0 30px 90px rgba(0,0,0,.45); }
.poster-dialog::backdrop { background: rgba(2,14,20,.82); backdrop-filter: blur(6px); }
.poster-dialog img { width: 100%; max-height: calc(100vh - 32px); object-fit: contain; border-radius: 18px; background: white; }
.poster-dialog-close { position: absolute; z-index: 2; top: 10px; right: 10px; width: 42px; height: 42px; display: grid; place-items: center; padding: 0; border: 0; border-radius: 50%; background: rgba(3,19,29,.88); color: white; font-size: 28px; line-height: 1; cursor: pointer; }

.why-section { padding: 0; background: var(--navy); color: white; }
.why-layout { display: grid; grid-template-columns: 1fr 1fr; min-height: 680px; }
.why-visual { position: relative; display: grid; place-items: center; overflow: hidden; background: linear-gradient(140deg, #0a8f4a, #064d30); }
.why-visual::before, .why-visual::after { content: ""; position: absolute; border: 1px solid rgba(255,255,255,.15); border-radius: 50%; }
.why-visual::before { width: 480px; height: 480px; }
.why-visual::after { width: 330px; height: 330px; }
.visual-mark { position: relative; z-index: 2; width: 280px; filter: drop-shadow(20px 28px 0 rgba(2,51,31,.35)); }
.visual-mark img { width: 100%; height: auto; }
.visual-chip { position: absolute; z-index: 3; padding: 16px 20px; border: 1px solid rgba(255,255,255,.24); border-radius: 13px; background: rgba(3,32,24,.6); backdrop-filter: blur(9px); }
.visual-chip strong, .visual-chip span { display: block; }
.visual-chip strong { font-size: 26px; }
.visual-chip span { color: #aee3c4; font-size: 11px; text-transform: uppercase; }
.chip-one { left: 9%; bottom: 12%; }
.chip-two { top: 12%; right: 8%; }
.why-copy { padding: 90px 70px; align-self: center; }
.why-copy h2 { max-width: 570px; margin: 0; color: white; font-size: clamp(42px, 4vw, 58px); line-height: 1.05; letter-spacing: -.045em; }
.why-copy > p:not(.eyebrow) { max-width: 570px; margin: 23px 0 0; color: #b9cbd1; line-height: 1.75; }
.check-list { margin: 31px 0 34px; padding: 0; display: grid; gap: 18px; list-style: none; }
.check-list li { display: flex; align-items: flex-start; gap: 14px; }
.check-list li > span { flex: 0 0 27px; width: 27px; height: 27px; display: grid; place-items: center; border-radius: 50%; background: rgba(32,185,103,.15); color: #69e29c; font-size: 12px; }
.check-list strong, .check-list small { display: block; }
.check-list strong { margin-bottom: 4px; font-size: 14px; }
.check-list small { color: #91aab2; font-size: 12px; line-height: 1.5; }

.cta-section { padding: 85px 0; background: white; }
.cta-card { position: relative; overflow: hidden; display: grid; grid-template-columns: 1.25fr .75fr; gap: 70px; align-items: center; padding: 58px 62px; border-radius: 22px; background: linear-gradient(115deg, #082c38, #07221d); color: white; }
.cta-card::after { content: ""; position: absolute; right: 31%; bottom: -125px; width: 330px; height: 330px; background: url("assets/kentech-k.png") center / contain no-repeat; opacity: .07; }
.cta-card h2 { position: relative; z-index: 1; max-width: 720px; margin: 0; font-size: clamp(38px, 4vw, 54px); line-height: 1.05; letter-spacing: -.04em; }
.cta-card > div:last-child { position: relative; z-index: 1; }
.cta-card > div:last-child p { margin: 0 0 20px; color: #b7cbd1; font-size: 14px; line-height: 1.7; }

.page-hero { position: relative; overflow: hidden; padding: 92px 0; color: white; background: radial-gradient(circle at 85% 10%, rgba(32,185,103,.2), transparent 30%), linear-gradient(118deg, #03131d, #07382b); }
.page-hero::after { content: ""; position: absolute; right: 3%; bottom: -115px; width: 360px; height: 360px; background: url("assets/kentech-k.png") center / contain no-repeat; opacity: .09; }
.page-hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.25fr .75fr; gap: 80px; align-items: end; }
.page-hero h1 { max-width: 780px; margin: 0; font-size: clamp(48px, 5.5vw, 72px); line-height: 1.02; letter-spacing: -.05em; }
.page-hero-inner > p { max-width: 470px; margin: 0 0 8px; color: #bed0d6; font-size: 16px; line-height: 1.75; }
.detail-service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.detail-service-card { min-height: 300px; display: flex; flex-direction: column; padding: 28px; border: 1px solid var(--line); border-radius: 17px; background: white; transition: transform .25s ease, box-shadow .25s ease; }
.detail-service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.detail-service-card > div { display: flex; justify-content: space-between; align-items: flex-start; }
.detail-service-card > div > span { color: #b7c3bd; font-size: 12px; font-weight: 850; }
.detail-service-card > small { margin-top: 21px; color: var(--green); font-size: 9px; font-weight: 850; letter-spacing: .12em; }
.detail-service-card h2 { margin: 8px 0 11px; font-size: 22px; line-height: 1.2; letter-spacing: -.025em; }
.detail-service-card p { margin: 0 0 24px; color: var(--muted); font-size: 14px; line-height: 1.7; }
.detail-service-card a { margin-top: auto; color: var(--green); font-size: 13px; font-weight: 850; }
.compact-cta { padding-top: 10px; }
.method-section { background: var(--navy); color: white; }
.method-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 100px; align-items: center; }
.method-section .section-heading h2 { color: white; }
.method-section .section-heading > p:last-child { margin-top: 22px; color: #9cb1b8; }
.method-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.14); }
.method-list li { display: grid; grid-template-columns: 70px 1fr; gap: 22px; padding: 26px 0; border-bottom: 1px solid rgba(255,255,255,.14); }
.method-list li > span { color: #65db97; font-size: 12px; font-weight: 850; letter-spacing: .1em; }
.method-list strong { font-size: 20px; }
.method-list p { margin: 7px 0 0; color: #9cb1b8; font-size: 13px; line-height: 1.65; }
.contact-section { background: var(--cream); }
.contact-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 20px; align-items: stretch; }
.contact-info-card, .quote-form, .map-card { border: 1px solid var(--line); border-radius: 20px; background: white; box-shadow: 0 18px 55px rgba(4,28,37,.08); }
.contact-info-card { padding: 42px; }
.contact-info-card h2 { margin: 0; font-size: 41px; line-height: 1.08; letter-spacing: -.04em; }
.contact-info-card > p:not(.eyebrow) { margin: 18px 0 28px; color: var(--muted); line-height: 1.7; }
.contact-lines { display: grid; gap: 11px; margin-bottom: 28px; }
.contact-lines > a, .contact-lines > div { display: flex; align-items: center; gap: 14px; padding: 14px; border-radius: 11px; background: var(--cream); }
.contact-lines img { width: 38px; height: 38px; }
.contact-lines small, .contact-lines strong { display: block; }
.contact-lines small { color: var(--muted); font-size: 10px; text-transform: uppercase; letter-spacing: .08em; }
.contact-lines strong { margin-top: 3px; font-size: 13px; }
.quote-form { padding: 42px; }
.form-heading { margin-bottom: 25px; }
.form-heading h2 { margin: 0; font-size: 37px; line-height: 1.1; letter-spacing: -.04em; }
.form-heading > p:last-child { margin: 10px 0 0; color: var(--muted); font-size: 12px; }
.quote-form label { display: grid; gap: 8px; margin-bottom: 15px; color: #293a42; font-size: 12px; font-weight: 750; }
.quote-form input, .quote-form select, .quote-form textarea { width: 100%; border: 1px solid #d4dfda; border-radius: 9px; padding: 13px 14px; outline: none; background: #fbfcfb; color: var(--ink); font-size: 14px; font-weight: 500; transition: border-color .2s ease, box-shadow .2s ease; }
.quote-form textarea { resize: vertical; min-height: 132px; }
.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(10,143,74,.1); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.quote-form .button { min-width: 210px; cursor: pointer; }
.form-status { margin: 14px 0 0; color: var(--green); font-size: 12px; font-weight: 700; }
.map-section { margin-top: 70px; }
.map-heading { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 24px; }
.map-heading h2 { margin: 0; font-size: 36px; letter-spacing: -.035em; }
.map-heading > div:last-child p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.7; }
.map-heading strong { color: var(--ink); }
.map-card { min-height: 460px; overflow: hidden; }
.map-card iframe { width: 100%; height: 100%; min-height: 530px; border: 0; filter: saturate(.7) contrast(1.04); }

.site-footer { position: relative; padding: 67px 0 22px; background: #03131d; color: #a6bbc2; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .7fr .9fr 1fr; gap: 60px; }
.footer-brand > img { width: 260px; height: 88px; object-fit: contain; padding: 7px; border-radius: 8px; background: white; }
.footer-brand > p { max-width: 340px; margin: 20px 0; font-size: 13px; line-height: 1.7; }
.footer-grid h3 { margin: 8px 0 19px; color: white; font-size: 13px; text-transform: uppercase; letter-spacing: .1em; }
.footer-grid > div:not(.footer-brand) > a, .footer-grid > div:not(.footer-brand) > span { display: block; margin: 0 0 11px; font-size: 13px; }
.footer-grid a:hover { color: #65dc98; }
.social-links { display: flex; flex-wrap: wrap; gap: 8px; }
.social-links a { width: 34px; height: 34px; display: grid; place-items: center; overflow: hidden; border-radius: 50%; background: white; transition: transform .2s ease; }
.social-links a:hover { transform: translateY(-3px); }
.social-links img { width: 100%; height: 100%; }
.footer-contact a:first-of-type { color: white; font-weight: 750; }
.footer-bottom { margin-top: 55px; padding-top: 20px; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid rgba(255,255,255,.1); color: #718b94; font-size: 11px; text-transform: uppercase; letter-spacing: .08em; }
.whatsapp-float { position: fixed; z-index: 49; right: 22px; bottom: 22px; display: flex; align-items: center; gap: 9px; padding: 8px 13px 8px 8px; border-radius: 99px; background: #1aa756; color: white; box-shadow: 0 13px 35px rgba(0,0,0,.22); font-size: 12px; font-weight: 800; }
.whatsapp-float img { width: 34px; height: 34px; }
.desktop-nav a.is-active { color: var(--green); }
.desktop-nav a.is-active::after { transform: scaleX(1); }
.mobile-menu nav a.is-active { background: var(--cream); color: var(--green); }
.skip-link { position: fixed; z-index: 100; top: 8px; left: 8px; transform: translateY(-140%); padding: 10px 14px; border-radius: 7px; background: white; color: var(--ink); font-weight: 800; box-shadow: var(--shadow); }
.skip-link:focus { transform: translateY(0); }

@media (max-width: 1100px) {
  .brand { width: 220px; }
  .desktop-nav { gap: 20px; }
  .desktop-nav a { font-size: 13px; }
  .hero-layout { gap: 40px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .why-copy { padding: 70px 42px; }
  .footer-grid { gap: 35px; }
}

@media (max-width: 900px) {
  .desktop-nav, .header-cta { display: none; }
  .mobile-menu { display: block; }
  .hero { padding-top: 66px; }
  .hero-layout { grid-template-columns: 1fr; }
  .hero-copy { max-width: 760px; }
  .hero-console { width: 100%; max-width: 590px; margin: 0 auto; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .hero-stats div:nth-child(2) { border-right: 0; }
  .hero-stats div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .video-layout { grid-template-columns: 1fr; gap: 38px; }
  .video-copy { max-width: 700px; }
  .split-heading { grid-template-columns: 1fr; gap: 24px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .why-layout { grid-template-columns: 1fr; }
  .why-visual { min-height: 520px; }
  .cta-card { grid-template-columns: 1fr; gap: 26px; padding: 48px 42px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .page-hero-inner { grid-template-columns: 1fr; gap: 24px; }
  .detail-service-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-layout { grid-template-columns: 1fr; }
  .method-layout { grid-template-columns: 1fr; gap: 50px; }
}

@media (max-width: 600px) {
  .container { width: min(100% - 28px, 1180px); }
  .header-inner { min-height: 78px; }
  .brand { width: 190px; }
  .brand img { height: 60px; }
  .hero-layout { padding-bottom: 62px; }
  .hero h1 { font-size: 50px; }
  .hero-lead { font-size: 16px; }
  .hero-actions .button { width: 100%; }
  .hero-console { min-height: 390px; }
  .console-orbit { height: 250px; }
  .orbit-two { width: 265px; }
  .node-ai { left: 25px; }
  .node-code { right: 20px; }
  .hero-stats div { padding: 20px 16px; align-items: flex-start; flex-direction: column; gap: 7px; }
  .section { padding: 78px 0; }
  .video-copy .button { width: 100%; }
  .video-frame { border-radius: 14px; }
  .service-grid, .product-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 250px; }
  .product-visual { aspect-ratio: 2 / 3; }
  .product-spec-visual { padding-inline: 28px; }
  .why-visual { min-height: 410px; }
  .visual-mark { width: 205px; }
  .why-copy { padding: 64px 8px; }
  .cta-section { padding: 60px 0; }
  .cta-card { padding: 38px 25px; }
  .footer-grid { grid-template-columns: 1fr; }
  .detail-service-grid { grid-template-columns: 1fr; }
  .contact-info-card { padding: 30px 23px; }
  .quote-form { padding: 30px 23px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .map-heading { align-items: flex-start; flex-direction: column; gap: 18px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 8px; }
  .whatsapp-float span { display: none; }
  .whatsapp-float { padding: 7px; }
}

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