:root {
    --orange: #f58220;
    --orange-deep: #df6711;
    --amber: #ffb347;
    --ink: #171717;
    --ink-2: #242424;
    --muted: #6b6b6b;
    --soft: #fafafa;
    --warm: #fff8f2;
    --line: #e9e6e3;
    --white: #fff;
    --green: #1b5b41;
    --shadow-sm: 0 10px 28px rgba(30, 24, 19, .07);
    --shadow-md: 0 24px 70px rgba(35, 26, 18, .12);
    --shadow-orange: 0 16px 40px rgba(245, 130, 32, .28);
    --radius-sm: 14px;
    --radius: 24px;
    --radius-lg: 38px;
    --container: min(1320px, calc(100% - 56px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body { margin: 0; overflow-x: hidden; color: var(--ink); background: var(--soft); font-family: "DM Sans", Arial, sans-serif; -webkit-font-smoothing: antialiased; }
body.modal-open { overflow: hidden; }
body.menu-open { overflow: hidden; }
::selection { color: var(--white); background: var(--orange); }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; }
svg { width: 1em; height: 1em; stroke-width: 1.8; }
.container { width: var(--container); margin-inline: auto; }
.section { position: relative; padding: 120px 0; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; top: 12px; left: 12px; z-index: 9999; padding: 12px 18px; border-radius: 12px; background: #fff; color: #111; transform: translateY(-140%); }
.skip-link:focus { transform: none; }

.page-loader { position: fixed; inset: 0; z-index: 9998; display: grid; place-items: center; background: #181818; transition: opacity .55s ease, visibility .55s ease; }
.page-loader.loaded { opacity: 0; visibility: hidden; }
.loader-hex { width: 70px; aspect-ratio: 1; padding: 4px; background: linear-gradient(135deg, var(--orange), var(--amber)); clip-path: polygon(25% 6.7%,75% 6.7%,100% 50%,75% 93.3%,25% 93.3%,0 50%); animation: loader-spin 1.4s cubic-bezier(.7, 0, .3, 1) infinite; }
.loader-hex span { display: block; width: 100%; height: 100%; background: #181818; clip-path: inherit; }
@keyframes loader-spin { to { transform: rotate(360deg); } }
.scroll-progress { position: fixed; inset: 0 auto auto 0; z-index: 999; width: 0; height: 3px; background: linear-gradient(90deg, var(--orange), var(--amber)); box-shadow: 0 0 14px rgba(245,130,32,.6); }

.section-kicker { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 18px; color: var(--orange-deep); font-family: "Manrope", sans-serif; font-size: 12px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.section-kicker:before { content: ""; width: 30px; height: 1px; background: currentColor; }
.section-kicker.light { color: #ffc28d; }
.section-title { margin: 0; font-family: "Manrope", sans-serif; font-size: clamp(40px, 4.5vw, 72px); font-weight: 700; line-height: 1.04; letter-spacing: -.055em; }
.section-title span { color: var(--orange); }
.section-title.light { color: var(--white); }
.section-heading { margin-bottom: 58px; }
.section-heading.centered { max-width: 760px; margin-inline: auto; text-align: center; }
.section-heading.centered .section-kicker { justify-content: center; }
.section-heading.centered .section-kicker:after { content: ""; width: 30px; height: 1px; background: currentColor; }
.section-heading p, .split-heading > p { margin: 22px 0 0; color: var(--muted); font-size: 17px; line-height: 1.75; }
.split-heading { display: flex; align-items: end; justify-content: space-between; gap: 60px; }
.split-heading > p { max-width: 500px; margin-bottom: 8px; }

.button { display: inline-flex; min-height: 54px; align-items: center; justify-content: center; gap: 10px; padding: 0 23px; border: 1px solid transparent; border-radius: 999px; font-family: "Manrope", sans-serif; font-size: 13px; font-weight: 700; cursor: pointer; transition: transform .3s ease, box-shadow .3s ease, color .3s ease, background .3s ease, border-color .3s ease; }
.button svg { width: 17px; height: 17px; transition: transform .3s ease; }
.button:hover svg { transform: translateX(3px); }
.button-primary { color: #fff; background: linear-gradient(135deg, var(--orange), #ff963d); box-shadow: var(--shadow-orange); }
.button-primary:hover { transform: translateY(-2px); box-shadow: 0 20px 48px rgba(245, 130, 32, .38); }
.button-glass { color: #fff; border-color: rgba(255,255,255,.38); background: rgba(255,255,255,.09); backdrop-filter: blur(14px); }
.button-glass:hover { background: rgba(255,255,255,.17); }
.button-outline { color: var(--ink); border-color: #d8d3cf; background: #fff; box-shadow: var(--shadow-sm); }
.button-outline:hover { color: var(--orange-deep); border-color: var(--orange); transform: translateY(-2px); }
.button-dark { color: #fff; background: var(--ink); box-shadow: 0 15px 36px rgba(0,0,0,.17); }
.button-dark:hover { background: var(--orange); transform: translateY(-2px); }
.button-white { color: var(--ink); background: #fff; box-shadow: 0 15px 38px rgba(0,0,0,.16); }
.button-white:hover { color: var(--orange-deep); transform: translateY(-2px); }
.button-ghost-light { color: #fff; border-color: rgba(255,255,255,.4); background: transparent; }
.button-ghost-light:hover { background: rgba(255,255,255,.12); }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--ink); font-family: "Manrope", sans-serif; font-size: 14px; font-weight: 800; border-bottom: 1px solid currentColor; padding-bottom: 5px; }
.text-link:hover { color: var(--orange); }

.site-header { position: fixed; inset: 0 0 auto; z-index: 100; height: 92px; color: #fff; transition: height .35s ease, background .35s ease, color .35s ease, box-shadow .35s ease; }
.site-header.scrolled { height: 78px; color: var(--ink); background: rgba(255,255,255,.92); box-shadow: 0 8px 34px rgba(20,20,20,.07); backdrop-filter: blur(18px); }
.nav-shell { height: 100%; display: flex; align-items: center; gap: 24px; }
.brand { flex: 0 0 auto; display: flex; width: 230px; height: 58px; align-items: center; padding: 8px 12px; border: 1px solid rgba(255,255,255,.3); border-radius: 15px; background: rgba(255,255,255,.9); box-shadow: 0 9px 30px rgba(0,0,0,.09); }
.site-header.scrolled .brand { height: 52px; border-color: #ece6df; box-shadow: none; }
.brand img { width: 100%; height: 100%; object-fit: contain; object-position: left center; }
.main-nav { display: flex; flex: 1; align-items: center; justify-content: center; gap: clamp(16px, 1.75vw, 30px); }
.main-nav > a, .nav-dropdown > button { position: relative; display: inline-flex; align-items: center; gap: 5px; padding: 29px 0; border: 0; color: inherit; background: transparent; font-size: 13px; font-weight: 600; cursor: pointer; white-space: nowrap; }
.main-nav > a:after, .nav-dropdown > button:after { content: ""; position: absolute; bottom: 21px; left: 0; width: 0; height: 2px; border-radius: 2px; background: var(--orange); transition: width .25s ease; }
.main-nav > a:hover:after, .main-nav > a.active:after, .nav-dropdown:hover > button:after { width: 100%; }
.main-nav > a.active { color: var(--orange); }
.nav-dropdown > button svg { width: 13px; }
.mega-menu { position: fixed; top: 84px; left: 50%; display: grid; width: min(960px, calc(100% - 56px)); grid-template-columns: .82fr 1.18fr; visibility: hidden; overflow: hidden; border: 1px solid rgba(255,255,255,.8); border-radius: 24px; background: rgba(255,255,255,.97); box-shadow: var(--shadow-md); color: var(--ink); opacity: 0; transform: translate(-50%, -8px); transition: .28s ease; backdrop-filter: blur(20px); }
.nav-dropdown:hover .mega-menu, .nav-dropdown:focus-within .mega-menu { visibility: visible; opacity: 1; transform: translate(-50%, 0); }
.mega-intro { padding: 34px; color: #fff; background: linear-gradient(145deg, #1b1b1b, #29231e); }
.micro-label { color: #ffc18b; font-size: 10px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.mega-intro h3 { margin: 14px 0 12px; font-family: "Manrope", sans-serif; font-size: 28px; line-height: 1.15; letter-spacing: -.04em; }
.mega-intro p { margin: 0 0 24px; color: #bbb6b1; font-size: 13px; line-height: 1.65; }
.mega-intro a { display: inline-flex; align-items: center; gap: 8px; color: #ffc18b; font-size: 13px; font-weight: 700; }
.mega-links { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; padding: 24px; }
.mega-links a { display: flex; align-items: center; gap: 13px; padding: 15px; border-radius: 15px; transition: background .2s ease, transform .2s ease; }
.mega-links a:hover { background: var(--warm); transform: translateX(3px); }
.mega-links > a > svg { flex: 0 0 auto; width: 22px; height: 22px; color: var(--orange); }
.mega-links b, .mega-links small { display: block; }
.mega-links b { margin-bottom: 3px; font-size: 13px; }
.mega-links small { color: var(--muted); font-size: 11px; }
.nav-actions { display: flex; flex: 0 0 auto; align-items: center; gap: 9px; }
.nav-login { display: inline-flex; min-height: 46px; align-items: center; justify-content: center; gap: 8px; padding: 0 17px; border: 1px solid rgba(255,255,255,.32); border-radius: 999px; color: #fff; background: rgba(255,255,255,.09); font-family: "Manrope",sans-serif; font-size: 12px; font-weight: 700; white-space: nowrap; backdrop-filter: blur(13px); transition: transform .25s ease, border-color .25s ease, background .25s ease, box-shadow .25s ease; }
.nav-login svg { width: 16px; height: 16px; color: var(--amber); }
.nav-login:hover { border-color: rgba(255,255,255,.62); background: rgba(255,255,255,.17); transform: translateY(-2px); }
.site-header.scrolled .nav-login { color: var(--ink); border-color: #e7dfd7; background: #fff; box-shadow: var(--shadow-sm); }
.site-header.scrolled .nav-login svg { color: var(--orange); }
.site-header.scrolled .nav-login:hover { color: var(--orange-deep); border-color: rgba(245,130,32,.45); }
.nav-quote { min-height: 48px; flex: 0 0 auto; padding: 0 20px; }
.menu-toggle { display: none; }

.hero { position: relative; min-height: 940px; overflow: hidden; color: #fff; background: #141414; }
.hero-bg { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10,10,10,.97) 0%, rgba(10,10,10,.8) 38%, rgba(10,10,10,.18) 72%, rgba(10,10,10,.34) 100%), linear-gradient(0deg, rgba(12,12,12,.76), transparent 55%), url("../images/prokleen-hero-2026.webp") center 43% / cover no-repeat; transform: scale(1.02); }
.hero-noise { position: absolute; inset: 0; opacity: .13; background-image: radial-gradient(rgba(255,255,255,.8) .6px, transparent .6px); background-size: 7px 7px; mask-image: linear-gradient(90deg,#000,transparent 70%); }
.hero:after { content: ""; position: absolute; top: -30%; right: -18%; width: 780px; height: 780px; border-radius: 50%; background: radial-gradient(circle, rgba(245,130,32,.34), transparent 66%); filter: blur(12px); }
.hero-orbit { position: absolute; z-index: 1; border: 1px solid rgba(255,179,71,.27); border-radius: 50%; }
.orbit-one { top: 160px; right: -150px; width: 720px; height: 720px; }
.orbit-two { top: 255px; right: -55px; width: 520px; height: 520px; }
.hero-grid { position: relative; z-index: 3; display: grid; min-height: 820px; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 45px; padding-top: 125px; }
.hero-copy { max-width: 720px; }
.hero-badge { display: inline-flex; align-items: center; gap: 10px; padding: 8px 13px 8px 9px; border: 1px solid rgba(255,255,255,.21); border-radius: 999px; color: #eee; background: rgba(255,255,255,.08); font-size: 11px; font-weight: 600; letter-spacing: .04em; backdrop-filter: blur(12px); text-transform: uppercase; }
.pulse { position: relative; width: 8px; height: 8px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 5px rgba(245,130,32,.18); }
.pulse:after { content: ""; position: absolute; inset: -5px; border: 1px solid var(--orange); border-radius: 50%; animation: pulse 2s ease-out infinite; }
@keyframes pulse { 0% { opacity: 1; transform: scale(.7); } 100% { opacity: 0; transform: scale(1.8); } }
.hero h1 { margin: 26px 0 24px; font-family: "Manrope", sans-serif; font-size: clamp(56px, 6vw, 92px); font-weight: 700; line-height: .98; letter-spacing: -.065em; }
.hero h1 span { color: var(--orange); text-shadow: 0 5px 34px rgba(245,130,32,.25); }
.hero-copy > p { max-width: 690px; margin: 0; color: rgba(255,255,255,.72); font-size: 17px; line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 34px; }
.hero-trust { display: flex; align-items: center; gap: 14px; margin-top: 32px; }
.avatar-stack { display: flex; }
.avatar-stack span { display: grid; width: 34px; height: 34px; place-items: center; margin-left: -8px; border: 2px solid #252525; border-radius: 50%; color: #fff; background: linear-gradient(145deg,#f79a4b,#a94809); font-size: 10px; font-weight: 800; }
.avatar-stack span:first-child { margin-left: 0; }
.avatar-stack span:nth-child(2) { background: linear-gradient(145deg,#a8a8a8,#3b3b3b); }
.avatar-stack span:nth-child(3) { background: #fff; color: #111; }
.hero-trust b, .hero-trust span { display: block; }
.hero-trust b { font-size: 12px; }
.hero-trust div:last-child span { margin-top: 4px; color: rgba(255,255,255,.52); font-size: 10px; }

.hero-visual { position: relative; min-height: 610px; align-self: end; }
.visual-ring { position: absolute; top: 45px; right: -35px; width: 545px; height: 545px; border: 2px solid rgba(255,255,255,.37); border-radius: 50%; box-shadow: inset 0 0 0 24px rgba(245,130,32,.06), 0 0 0 1px rgba(245,130,32,.25); }
.visual-ring:before { content: ""; position: absolute; inset: 36px; border: 1px dashed rgba(255,179,71,.33); border-radius: inherit; animation: spin 30s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.hex { position: absolute; z-index: 2; overflow: hidden; padding: 5px; background: linear-gradient(135deg, #fff, var(--orange)); clip-path: polygon(25% 4%,75% 4%,98% 50%,75% 96%,25% 96%,2% 50%); filter: drop-shadow(0 24px 28px rgba(0,0,0,.36)); transition: transform .5s cubic-bezier(.2,.8,.2,1); }
.hex:hover { transform: translateY(-8px) scale(1.02); }
.hex img { width: 100%; height: 100%; object-fit: cover; clip-path: inherit; }
.hex-main { top: 110px; right: 130px; width: 330px; height: 365px; }
.hex-top { top: 10px; right: 8px; width: 250px; height: 275px; }
.hex-side { top: 245px; right: -48px; width: 245px; height: 270px; }
.hex-bottom { top: 385px; right: 108px; width: 230px; height: 255px; }
.floating-card { position: absolute; z-index: 5; display: flex; align-items: center; gap: 11px; min-width: 182px; padding: 13px 16px; border: 1px solid rgba(255,255,255,.3); border-radius: 17px; background: rgba(25,25,25,.62); box-shadow: 0 18px 40px rgba(0,0,0,.2); backdrop-filter: blur(16px); animation: float 4.5s ease-in-out infinite; }
.float-a { top: 180px; left: 15px; }
.float-b { right: -20px; bottom: 55px; animation-delay: -2.1s; }
@keyframes float { 50% { transform: translateY(-9px); } }
.float-icon { display: grid; width: 36px; height: 36px; flex: 0 0 auto; place-items: center; border-radius: 10px; color: #fff; background: linear-gradient(145deg,var(--orange),var(--amber)); }
.floating-card b, .floating-card small { display: block; }
.floating-card b { font-size: 11px; }
.floating-card small { margin-top: 3px; color: rgba(255,255,255,.56); font-size: 9px; }
.hero-proof { position: absolute; z-index: 6; right: 0; bottom: 50px; left: 0; display: grid; grid-template-columns: repeat(4, 1fr); overflow: hidden; border: 1px solid rgba(255,255,255,.34); border-radius: 24px; background: rgba(255,255,255,.91); box-shadow: 0 18px 48px rgba(0,0,0,.2); color: var(--ink); backdrop-filter: blur(18px); }
.hero-proof article { display: flex; min-height: 86px; align-items: center; gap: 14px; padding: 17px 28px; border-right: 1px solid #e5e0dc; }
.hero-proof article:last-child { border-right: 0; }
.hero-proof > article > svg { width: 28px; height: 28px; color: var(--orange); }
.hero-proof b, .hero-proof span { display: block; }
.hero-proof b { font-family: "Manrope", sans-serif; font-size: 13px; }
.hero-proof span { margin-top: 4px; color: var(--muted); font-size: 10px; }
.hero-curve { position: absolute; z-index: 4; right: -2%; bottom: -58px; width: 42%; height: 120px; border-top: 5px solid var(--orange); border-radius: 50% 0 0 0; background: var(--soft); transform: rotate(-2deg); }

.strip-section { padding: 28px 0; background: #fff; }
.trusted-shell { display: flex; align-items: center; gap: 48px; }
.trusted-title { flex: 0 0 180px; padding-right: 30px; border-right: 1px solid var(--line); }
.trusted-title span, .trusted-title b { display: block; }
.trusted-title span { margin-bottom: 4px; color: var(--orange); font-size: 11px; font-weight: 700; }
.trusted-title b { font-family: "Manrope", sans-serif; font-size: 16px; }
.logo-marquee { overflow: hidden; flex: 1; mask-image: linear-gradient(90deg,transparent,#000 8%,#000 92%,transparent); }
.logo-track { display: flex; width: max-content; align-items: center; gap: 70px; animation: marquee 30s linear infinite; }
.logo-track span { color: #4a4a4a; font-family: "Manrope", sans-serif; font-size: 17px; font-weight: 800; letter-spacing: -.04em; white-space: nowrap; filter: grayscale(1); }
@keyframes marquee { to { transform: translateX(-50%); } }

.about { background: var(--soft); }
.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 100px; }
.about-media { position: relative; min-height: 650px; }
.about-media:before { content: ""; position: absolute; top: 10%; left: -22px; width: 120px; height: 120px; border-radius: 35px; background: linear-gradient(145deg,var(--orange),var(--amber)); transform: rotate(14deg); }
.about-media > img { position: absolute; inset: 0 0 0 44px; width: calc(100% - 44px); height: 100%; border-radius: 38px 120px 38px 38px; object-fit: cover; object-position: center; box-shadow: var(--shadow-md); }
.experience-seal { position: absolute; z-index: 2; right: -35px; bottom: 52px; display: grid; width: 170px; height: 170px; place-content: center; border: 8px solid #fff; border-radius: 50%; color: #fff; background: linear-gradient(145deg,#1c1c1c,#38312c); box-shadow: var(--shadow-md); text-align: center; }
.experience-seal b { color: var(--orange); font-family: "Manrope",sans-serif; font-size: 48px; line-height: 1; }
.experience-seal span { max-width: 95px; margin: 7px auto 0; font-size: 11px; line-height: 1.35; }
.media-note { position: absolute; z-index: 3; bottom: 35px; left: 0; display: flex; align-items: center; gap: 12px; min-width: 260px; padding: 15px 18px; border: 1px solid rgba(255,255,255,.8); border-radius: 18px; background: rgba(255,255,255,.9); box-shadow: var(--shadow-md); backdrop-filter: blur(12px); }
.media-note > svg { width: 30px; height: 30px; color: var(--orange); }
.media-note b, .media-note small { display: block; }
.media-note b { font-size: 12px; }
.media-note small { margin-top: 3px; color: var(--muted); font-size: 9px; }
.about-content { padding-left: 10px; }
.about-content .lead { margin: 28px 0; color: var(--muted); font-size: 18px; line-height: 1.8; }
.about-tabs { display: flex; gap: 4px; width: fit-content; padding: 5px; border: 1px solid var(--line); border-radius: 999px; background: #fff; }
.about-tabs button { padding: 10px 18px; border: 0; border-radius: 999px; background: transparent; color: var(--muted); font-size: 12px; font-weight: 700; cursor: pointer; }
.about-tabs button.active { color: #fff; background: var(--ink); }
.tab-panels { min-height: 150px; margin-top: 24px; }
.tab-panel { display: none; }
.tab-panel.active { display: block; animation: tab-in .35s ease both; }
@keyframes tab-in { from { opacity: 0; transform: translateY(5px); } }
.tab-panel h3 { max-width: 540px; margin: 0 0 10px; font-family: "Manrope",sans-serif; font-size: 21px; line-height: 1.4; }
.tab-panel p { max-width: 600px; margin: 0; color: var(--muted); line-height: 1.7; }
.about-points { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 24px 0 32px; }
.about-points span { display: flex; align-items: center; gap: 9px; font-size: 13px; font-weight: 600; }
.about-points svg { width: 18px; height: 18px; padding: 3px; border-radius: 50%; color: #fff; background: var(--orange); }

.services { overflow: hidden; background: #fff; }
.services:before { content: ""; position: absolute; top: -240px; left: -240px; width: 500px; height: 500px; border: 1px solid rgba(245,130,32,.14); border-radius: 50%; box-shadow: 0 0 0 40px rgba(245,130,32,.02), 0 0 0 80px rgba(245,130,32,.015); }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.service-card { overflow: hidden; border: 1px solid #ece9e5; border-radius: 24px; background: #fff; box-shadow: var(--shadow-sm); transition: transform .38s cubic-bezier(.2,.8,.2,1), box-shadow .38s ease, border-color .38s ease; }
.service-card:hover { border-color: rgba(245,130,32,.42); box-shadow: var(--shadow-md); transform: translateY(-8px); }
.service-image { position: relative; height: 205px; overflow: hidden; background: #eee; }
.service-image:after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg,rgba(0,0,0,.38),transparent 60%); }
.service-image img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.75); transition: transform .7s ease, filter .4s ease; }
.service-card:hover img { transform: scale(1.07); filter: saturate(1); }
.service-number { position: absolute; z-index: 2; right: 16px; bottom: 13px; color: rgba(255,255,255,.92); font-family: "Manrope",sans-serif; font-size: 12px; font-weight: 800; letter-spacing: .1em; }
.service-body { position: relative; padding: 30px 24px 25px; }
.service-icon { position: absolute; top: -29px; left: 22px; display: grid; width: 58px; height: 58px; place-items: center; border: 5px solid #fff; border-radius: 17px; color: #fff; background: linear-gradient(145deg,var(--orange),#ff9a45); box-shadow: 0 10px 24px rgba(245,130,32,.25); }
.service-icon svg { width: 23px; height: 23px; }
.service-body h3 { margin: 11px 0 11px; font-family: "Manrope",sans-serif; font-size: 17px; letter-spacing: -.025em; }
.service-body p { min-height: 66px; margin: 0 0 18px; color: var(--muted); font-size: 12px; line-height: 1.7; }
.service-body a { display: inline-flex; align-items: center; gap: 7px; color: var(--orange-deep); font-size: 11px; font-weight: 800; }
.service-body a svg { width: 14px; }
.service-extra { display: none; }
.service-grid.expanded .service-extra { display: block; animation: reveal-card .45s ease both; }
@keyframes reveal-card { from { opacity: 0; transform: translateY(15px); } }
.center-action { display: flex; justify-content: center; margin-top: 42px; }

.why { position: relative; overflow: hidden; padding: 120px 0; color: #fff; background: #151515; }
.why-bg { position: absolute; inset: 0; opacity: .34; background: linear-gradient(90deg,#111 0%,rgba(17,17,17,.96) 32%,rgba(17,17,17,.7)), url("../images/prokleen-project-2026.webp") center / cover; }
.why:after { content: ""; position: absolute; top: -85%; right: -17%; width: 900px; height: 900px; border: 2px solid rgba(245,130,32,.34); border-radius: 50%; box-shadow: 0 0 0 60px rgba(245,130,32,.025), 0 0 0 120px rgba(245,130,32,.02); }
.why-grid { position: relative; z-index: 2; display: grid; grid-template-columns: .76fr 1.24fr; align-items: center; gap: 80px; }
.why-copy > p { max-width: 510px; margin: 24px 0 32px; color: rgba(255,255,255,.62); line-height: 1.75; }
.why-list { display: grid; gap: 13px; }
.why-list span { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.85); font-size: 13px; }
.why-list svg { width: 18px; height: 18px; color: var(--orange); fill: rgba(245,130,32,.08); }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; }
.stats-grid article { position: relative; min-height: 245px; padding: 28px 22px; overflow: hidden; border: 1px solid rgba(255,255,255,.2); border-radius: 22px; background: rgba(255,255,255,.055); backdrop-filter: blur(12px); transition: transform .3s ease, border-color .3s ease, background .3s ease; }
.stats-grid article:hover { border-color: rgba(245,130,32,.75); background: rgba(245,130,32,.1); transform: translateY(-6px); }
.stats-grid article > svg { width: 38px; height: 38px; color: var(--orange); }
.stats-grid article > b { display: block; margin: 40px 0 12px; color: var(--orange); font-family: "Manrope",sans-serif; font-size: 42px; line-height: 1; letter-spacing: -.05em; }
.stats-grid article p { margin: 0; color: #fff; font-size: 12px; font-weight: 600; line-height: 1.45; }
.stats-grid .stat-wide { display: flex; min-height: auto; grid-column: 1 / -1; align-items: center; gap: 22px; padding-block: 22px; }
.stats-grid .stat-wide > b { margin: 0; white-space: nowrap; }
.stats-grid .stat-wide p { color: rgba(255,255,255,.65); font-weight: 400; }

.industries { background: var(--soft); }
.industry-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.industry-card { position: relative; height: 265px; overflow: hidden; border-radius: 24px; background: #222; box-shadow: var(--shadow-sm); }
.industry-card:after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg,rgba(0,0,0,.87),rgba(0,0,0,.04) 70%); }
.industry-card > img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.72); transition: transform .65s ease, filter .4s ease; }
.industry-card:hover > img { transform: scale(1.08); filter: saturate(1); }
.industry-card > div { position: absolute; z-index: 2; right: 20px; bottom: 20px; left: 20px; display: flex; align-items: center; gap: 13px; color: #fff; }
.industry-card > div > span { display: grid; width: 44px; height: 44px; flex: 0 0 auto; place-items: center; border-radius: 13px; background: var(--orange); }
.industry-card > div > span svg { width: 21px; }
.industry-card h3 { margin: 0; font-family: "Manrope",sans-serif; font-size: 14px; }
.industry-arrow { width: 17px; margin-left: auto; color: rgba(255,255,255,.65); transition: transform .3s ease; }
.industry-card:hover .industry-arrow { transform: translate(3px,-3px); color: var(--orange); }

.smart-fm { overflow: hidden; background: #fff; }
.smart-fm:before { content: ""; position: absolute; top: 50%; right: -10%; width: 50%; height: 90%; border-radius: 50%; background: radial-gradient(circle,rgba(245,130,32,.13),transparent 65%); transform: translateY(-50%); }
.smart-grid { display: grid; grid-template-columns: .7fr 1.3fr; align-items: center; gap: 70px; }
.smart-copy > p { margin: 26px 0; color: var(--muted); line-height: 1.75; }
.smart-features { display: grid; grid-template-columns: 1fr 1fr; gap: 11px; margin: 0 0 34px; }
.smart-features span { display: flex; align-items: center; gap: 9px; font-size: 12px; font-weight: 600; }
.smart-features svg { width: 17px; color: var(--orange); }
.dashboard-wrap { position: relative; padding: 150px 0 38px; }
.smart-context-photo { position: absolute; z-index: 4; top: 0; right: 26px; left: 26px; height: 186px; overflow: hidden; margin: 0; border: 7px solid #fff; border-radius: 25px; background: #202020; box-shadow: 0 22px 55px rgba(28,19,12,.22); }
.smart-context-photo:after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg,rgba(8,8,8,.05),rgba(8,8,8,.12) 45%,rgba(8,8,8,.78)); }
.smart-context-photo > img { width: 100%; height: 100%; object-fit: cover; object-position: center 42%; }
.smart-context-photo figcaption { position: absolute; z-index: 2; right: 20px; bottom: 18px; display: flex; align-items: center; gap: 11px; color: #fff; }
.smart-context-photo figcaption > svg { width: 30px; height: 30px; padding: 7px; border-radius: 10px; color: #fff; background: var(--orange); }
.smart-context-photo figcaption b, .smart-context-photo figcaption small { display: block; }
.smart-context-photo figcaption b { font-family: "Manrope",sans-serif; font-size: 12px; }
.smart-context-photo figcaption small { margin-top: 3px; color: rgba(255,255,255,.67); font-size: 8px; }
.dashboard-glow { position: absolute; inset: 10% 3% 0; border-radius: 50%; background: rgba(245,130,32,.23); filter: blur(80px); }
.dashboard-window { position: relative; z-index: 2; display: grid; min-height: 560px; grid-template-columns: 145px 1fr; overflow: hidden; border: 8px solid #202020; border-radius: 28px; background: #f5f6f8; box-shadow: 0 42px 80px rgba(30,20,10,.24); }
.dash-sidebar { padding: 24px 14px; color: #aaa; background: #171717; }
.dash-sidebar > img { width: 100%; height: 38px; margin-bottom: 30px; object-fit: contain; filter: brightness(0) invert(1); opacity: .75; }
.dash-sidebar > span { display: flex; align-items: center; gap: 8px; margin-bottom: 7px; padding: 10px; border-radius: 9px; font-size: 9px; }
.dash-sidebar > span svg { width: 15px; }
.dash-sidebar > span.active { color: #fff; background: linear-gradient(135deg,var(--orange),#ff9740); }
.dash-main { min-width: 0; padding: 24px; }
.dash-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.dash-head small, .dash-head b { display: block; }
.dash-head small { margin-bottom: 3px; color: #8c8e93; font-size: 8px; }
.dash-head b { font-size: 13px; }
.dash-head > span { display: flex; gap: 12px; color: #777; }
.dash-stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; }
.dash-stats article { padding: 13px; border: 1px solid #eaebed; border-radius: 12px; background: #fff; }
.dash-stats span, .dash-stats b, .dash-stats small { display: block; }
.dash-stats span { color: #919399; font-size: 7px; }
.dash-stats b { margin: 6px 0 4px; font-size: 16px; }
.dash-stats small { font-size: 7px; }
.dash-stats .up { color: #339763; }
.dash-stats .down { color: var(--orange); }
.dash-panels { display: grid; grid-template-columns: 1.35fr .65fr; gap: 12px; margin-top: 12px; }
.chart-panel, .donut-panel, .task-panel { padding: 15px; border: 1px solid #e8e9eb; border-radius: 13px; background: #fff; }
.panel-title { display: flex; align-items: center; justify-content: space-between; font-size: 8px; }
.panel-title span { color: #999; }
.line-chart { position: relative; height: 115px; margin-top: 15px; border-bottom: 1px solid #eee; background: repeating-linear-gradient(0deg,transparent 0,transparent 28px,#f0f1f2 29px); }
.line-chart span { position: absolute; z-index: 2; left: var(--x); top: var(--y); width: 6px; height: 6px; border: 2px solid #fff; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 2px var(--orange); }
.line-chart i { position: absolute; inset: 15% 0 0; opacity: .75; background: linear-gradient(90deg,var(--orange),var(--amber)); clip-path: polygon(0 76%,14% 63%,28% 68%,42% 42%,56% 50%,70% 25%,84% 35%,100% 12%,100% 16%,84% 40%,70% 30%,56% 55%,42% 47%,28% 73%,14% 68%,0 81%); }
.chart-labels { display: flex; justify-content: space-between; margin-top: 7px; color: #aaa; font-size: 6px; }
.donut-panel { display: flex; flex-direction: column; }
.donut { display: grid; width: 112px; aspect-ratio: 1; place-items: center; margin: 25px auto 17px; border-radius: 50%; background: conic-gradient(var(--orange) 0 42%,#252525 42% 73%,#ffd5af 73%); }
.donut:before { content: ""; width: 65%; height: 65%; border-radius: 50%; background: #fff; }
.donut > span { position: absolute; text-align: center; font-size: 12px; font-weight: 800; }
.donut small { display: block; color: #999; font-size: 6px; font-weight: 400; }
.legend { display: flex; justify-content: center; gap: 7px; color: #777; font-size: 5px; }
.legend span { display: flex; align-items: center; gap: 3px; }
.legend i { width: 5px; height: 5px; border-radius: 50%; background: var(--orange); }
.legend span:nth-child(2) i { background: #252525; }
.legend span:nth-child(3) i { background: #ffd5af; }
.task-panel { margin-top: 12px; }
.panel-title a { color: var(--orange); }
.task-row { display: grid; grid-template-columns: 30px 1fr 1fr auto; align-items: center; gap: 8px; margin-top: 10px; padding-top: 10px; border-top: 1px solid #f0f0f0; font-size: 7px; }
.task-ico { display: grid; width: 28px; height: 28px; place-items: center; border-radius: 8px; color: var(--orange); background: #fff1e5; }
.task-row small { color: #999; }
.task-row em { padding: 4px 6px; border-radius: 999px; color: var(--orange); background: #fff1e5; font-style: normal; }
.task-row em.done { color: #278b58; background: #e7f7ee; }
.dashboard-base { position: absolute; z-index: 1; right: 4%; bottom: 0; left: 4%; height: 55px; border-radius: 0 0 80px 80px; background: linear-gradient(180deg,#ddd,#888); box-shadow: 0 20px 30px rgba(0,0,0,.18); transform: perspective(400px) rotateX(60deg); }

.projects { background: var(--soft); }
.project-filters { display: flex; flex-wrap: wrap; gap: 6px; padding: 5px; border: 1px solid var(--line); border-radius: 999px; background: #fff; }
.project-filters button { padding: 10px 15px; border: 0; border-radius: 999px; background: transparent; color: var(--muted); font-size: 11px; font-weight: 700; cursor: pointer; }
.project-filters button.active { color: #fff; background: var(--ink); }
.project-grid { display: grid; grid-auto-rows: 250px; grid-template-columns: repeat(4,1fr); gap: 18px; }
.project-card { position: relative; overflow: hidden; border-radius: 24px; background: #222; box-shadow: var(--shadow-sm); transition: opacity .3s ease, transform .3s ease; }
.project-card.filtered-out { display: none; }
.project-tall { grid-row: span 2; }
.project-wide { grid-column: span 2; }
.project-card > img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.2,.8,.2,1); }
.project-card:hover > img { transform: scale(1.07); }
.project-card:after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg,rgba(0,0,0,.9),transparent 70%); }
.project-overlay { position: absolute; z-index: 2; right: 20px; bottom: 20px; left: 20px; color: #fff; }
.project-overlay span { color: #ffc28d; font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.project-overlay h3 { margin: 7px 0 4px; font-family: "Manrope",sans-serif; font-size: 18px; }
.project-overlay p { margin: 0; color: rgba(255,255,255,.57); font-size: 10px; }
.project-overlay a { position: absolute; right: 0; bottom: 0; display: grid; width: 42px; height: 42px; place-items: center; border-radius: 50%; color: #fff; background: var(--orange); transform: translateY(65px); transition: transform .35s ease; }
.project-card:hover .project-overlay a { transform: none; }

.process { overflow: hidden; background: #fff; }
.process-track { position: relative; display: grid; grid-template-columns: repeat(6,1fr); gap: 20px; }
.process-track:before { content: ""; position: absolute; top: 58px; right: 8%; left: 8%; height: 1px; background: linear-gradient(90deg,var(--orange),var(--amber)); }
.process-step { position: relative; text-align: center; }
.process-step > span { position: absolute; top: 37px; left: calc(50% + 29px); color: var(--orange); font-size: 9px; font-weight: 800; letter-spacing: .1em; }
.process-icon { position: relative; z-index: 2; display: grid; width: 78px; height: 78px; place-items: center; margin: 20px auto 23px; border: 1px solid #eaded3; border-radius: 24px; color: var(--orange); background: #fff; box-shadow: var(--shadow-sm); transform: rotate(45deg); transition: .35s ease; }
.process-icon svg { width: 26px; height: 26px; transform: rotate(-45deg); }
.process-step:hover .process-icon { color: #fff; border-color: var(--orange); background: var(--orange); transform: translateY(-6px) rotate(45deg); }
.process-step h3 { margin: 0 0 10px; font-family: "Manrope",sans-serif; font-size: 14px; }
.process-step p { margin: 0; color: var(--muted); font-size: 10px; line-height: 1.6; }

.testimonials { overflow: hidden; color: #fff; background: #191919; }
.testimonials:before { content: ""; position: absolute; top: -45%; left: -10%; width: 620px; height: 620px; border-radius: 50%; background: radial-gradient(circle,rgba(245,130,32,.18),transparent 65%); }
.testimonial-grid { position: relative; display: grid; grid-template-columns: .65fr 1.35fr; align-items: center; gap: 80px; }
.testimonial-intro > p { max-width: 450px; margin: 24px 0; color: rgba(255,255,255,.58); line-height: 1.7; }
.testimonial-controls { display: flex; gap: 8px; margin-top: 28px; }
.testimonial-controls button { display: grid; width: 48px; height: 48px; place-items: center; border: 1px solid rgba(255,255,255,.22); border-radius: 50%; color: #fff; background: transparent; cursor: pointer; transition: .25s ease; }
.testimonial-controls button:hover { border-color: var(--orange); background: var(--orange); }
.testimonial-viewport { overflow: hidden; }
.testimonial-track { display: flex; transition: transform .6s cubic-bezier(.2,.8,.2,1); }
.testimonial-card { min-width: 100%; min-height: 430px; padding: 48px; border: 1px solid rgba(255,255,255,.14); border-radius: 32px; background: rgba(255,255,255,.07); backdrop-filter: blur(14px); }
.quote-mark { height: 58px; color: var(--orange); font-family: Georgia,serif; font-size: 88px; line-height: .8; }
.stars { margin: 10px 0 24px; color: var(--amber); font-size: 13px; letter-spacing: 5px; }
.testimonial-card blockquote { max-width: 780px; margin: 0; font-family: "Manrope",sans-serif; font-size: clamp(22px,2.3vw,34px); font-weight: 500; line-height: 1.48; letter-spacing: -.035em; }
.reviewer { display: flex; align-items: center; gap: 13px; margin-top: 38px; }
.reviewer > span { display: grid; width: 46px; height: 46px; place-items: center; border-radius: 50%; color: #fff; background: linear-gradient(145deg,var(--orange),#8a3900); font-weight: 800; }
.reviewer b, .reviewer small { display: block; }
.reviewer b { font-size: 12px; }
.reviewer small { margin-top: 4px; color: rgba(255,255,255,.5); font-size: 9px; }

.certifications { background: var(--soft); }
.cert-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.cert-card { position: relative; min-height: 290px; overflow: hidden; padding: 34px; border: 1px solid var(--line); border-radius: 26px; background: #fff; box-shadow: var(--shadow-sm); transition: transform .35s ease, border-color .35s ease; }
.cert-card:hover { border-color: rgba(245,130,32,.5); transform: translateY(-6px); }
.cert-card > span { display: grid; width: 60px; height: 60px; place-items: center; border-radius: 19px; color: var(--orange); background: var(--warm); }
.cert-card > span svg { width: 28px; height: 28px; }
.cert-card h3 { margin: 42px 0 12px; font-family: "Manrope",sans-serif; font-size: 18px; }
.cert-card p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.7; }
.cert-mark { position: absolute; right: -16px; bottom: -16px; width: 90px; height: 90px; padding: 26px; border-radius: 50%; color: rgba(245,130,32,.18); background: var(--warm); }

.sustainability { position: relative; overflow: hidden; padding: 110px 0; color: #fff; background: linear-gradient(135deg,#123c2d,#1e694a); }
.sustainability:before { content: ""; position: absolute; inset: 0; opacity: .14; background-image: radial-gradient(rgba(255,255,255,.7) 1px,transparent 1px); background-size: 18px 18px; mask-image: linear-gradient(90deg,transparent,#000); }
.sustainability-orb { position: absolute; right: -180px; bottom: -300px; width: 700px; height: 700px; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; box-shadow: 0 0 0 60px rgba(255,255,255,.025),0 0 0 120px rgba(255,255,255,.018); }
.sustainability-grid { position: relative; z-index: 2; display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: 90px; }
.sustainability-copy > p { max-width: 540px; margin: 26px 0 32px; color: rgba(255,255,255,.66); line-height: 1.75; }
.sustainability-visual { display: grid; gap: 15px; }
.sustainability-photo { position: relative; height: 300px; overflow: hidden; margin: 0; border: 1px solid rgba(255,255,255,.22); border-radius: 28px; background: #163b2d; box-shadow: 0 28px 60px rgba(4,25,17,.3); }
.sustainability-photo:after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg,rgba(9,37,27,.82),transparent 58%); }
.sustainability-photo > img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform .8s cubic-bezier(.2,.8,.2,1); }
.sustainability-photo:hover > img { transform: scale(1.035); }
.sustainability-photo figcaption { position: absolute; z-index: 2; right: 24px; bottom: 22px; left: 24px; display: flex; align-items: center; gap: 12px; }
.sustainability-photo figcaption > svg { width: 38px; height: 38px; padding: 9px; border-radius: 12px; color: #164d36; background: #b9f1cf; }
.sustainability-photo figcaption b, .sustainability-photo figcaption small { display: block; }
.sustainability-photo figcaption b { font-family: "Manrope",sans-serif; font-size: 13px; }
.sustainability-photo figcaption small { margin-top: 3px; color: rgba(255,255,255,.65); font-size: 9px; }
.sustainability-cards { display: grid; grid-template-columns: repeat(5,1fr); gap: 10px; }
.sustainability-cards article { display: grid; min-height: 115px; align-content: space-between; padding: 18px; border: 1px solid rgba(255,255,255,.2); border-radius: 18px; background: rgba(255,255,255,.08); backdrop-filter: blur(12px); transition: transform .3s ease, background .3s ease; }
.sustainability-cards article:nth-child(4), .sustainability-cards article:nth-child(5) { grid-column: span 1; }
.sustainability-cards article:hover { background: rgba(255,255,255,.14); transform: translateY(-5px); }
.sustainability-cards svg { width: 34px; height: 34px; color: #a7e9c7; }
.sustainability-cards span { font-family: "Manrope",sans-serif; font-size: 12px; font-weight: 700; }

.faq { background: #fff; }
.faq-grid { display: grid; grid-template-columns: .78fr 1.22fr; align-items: start; gap: 100px; }
.faq-intro { position: sticky; top: 120px; }
.faq-intro > p { max-width: 480px; margin: 24px 0 30px; color: var(--muted); line-height: 1.75; }
.faq-list { display: grid; gap: 10px; }
.faq-item { border: 1px solid var(--line); border-radius: 19px; background: var(--soft); transition: border-color .3s ease, background .3s ease; }
.faq-item.open { border-color: rgba(245,130,32,.42); background: var(--warm); }
.faq-item > button { display: grid; width: 100%; grid-template-columns: 34px 1fr 22px; align-items: center; gap: 14px; padding: 21px 23px; border: 0; background: transparent; text-align: left; cursor: pointer; }
.faq-item > button span { color: var(--orange); font-size: 9px; font-weight: 800; letter-spacing: .1em; }
.faq-item > button b { font-family: "Manrope",sans-serif; font-size: 14px; }
.faq-item > button svg { width: 19px; transition: transform .3s ease; }
.faq-item.open > button svg { color: var(--orange); transform: rotate(45deg); }
.faq-item > div { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .35s ease; }
.faq-item.open > div { grid-template-rows: 1fr; }
.faq-item > div p { min-height: 0; overflow: hidden; margin: 0; padding: 0 78px 0 71px; color: var(--muted); font-size: 12px; line-height: 1.75; transition: padding .35s ease; }
.faq-item.open > div p { padding-bottom: 24px; }

.cta-section { position: relative; overflow: hidden; padding: 110px 0; color: #fff; background: #d75f0a; }
.cta-bg { position: absolute; inset: 0; background: linear-gradient(90deg,rgba(209,88,2,.97) 0%,rgba(245,130,32,.9) 52%,rgba(225,97,5,.58)), url("../images/prokleen-hero-2026.webp") center 55% / cover; }
.cta-section:after { content: ""; position: absolute; top: -360px; right: -230px; width: 700px; height: 700px; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; box-shadow: 0 0 0 70px rgba(255,255,255,.03),0 0 0 140px rgba(255,255,255,.02); }
.cta-content { position: relative; z-index: 2; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 34px; }
.cta-icon { display: grid; width: 82px; height: 82px; place-items: center; border: 1px solid rgba(255,255,255,.4); border-radius: 25px; background: rgba(255,255,255,.15); backdrop-filter: blur(12px); transform: rotate(45deg); }
.cta-icon svg { width: 34px; height: 34px; transform: rotate(-45deg); }
.cta-content h2 { margin: 0; font-family: "Manrope",sans-serif; font-size: clamp(42px,4.3vw,68px); line-height: 1.04; letter-spacing: -.055em; }
.cta-content p { max-width: 680px; margin: 18px 0 0; color: rgba(255,255,255,.79); line-height: 1.7; }
.cta-actions { display: grid; justify-items: stretch; gap: 10px; }
.whatsapp-link { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 5px; color: #fff; font-size: 11px; font-weight: 700; }
.whatsapp-link svg { width: 16px; }

footer { position: relative; overflow: hidden; padding: 90px 0 0; color: #fff; background: #171717; }
.footer-pattern { position: absolute; right: -120px; bottom: -210px; width: 620px; height: 620px; opacity: .08; background-image: radial-gradient(circle at center,transparent 30%,var(--orange) 31%,transparent 32%); background-size: 40px 40px; transform: rotate(18deg); }
.footer-top { position: relative; display: grid; grid-template-columns: 1.5fr .7fr .9fr .8fr 1.3fr; gap: 50px; padding-bottom: 62px; }
.footer-brand img { width: 260px; height: 54px; object-fit: contain; object-position: left; filter: brightness(0) invert(1); opacity: .82; }
.footer-brand p { max-width: 310px; margin: 24px 0; color: #8e8e8e; font-size: 12px; line-height: 1.75; }
.social-links { display: flex; gap: 8px; }
.social-links a { display: grid; width: 36px; height: 36px; place-items: center; border: 1px solid #3a3a3a; border-radius: 50%; color: #bbb; font-size: 10px; font-weight: 700; transition: .25s ease; }
.social-links a:hover { border-color: var(--orange); color: #fff; background: var(--orange); }
.footer-top h3 { margin: 4px 0 24px; font-family: "Manrope",sans-serif; font-size: 13px; }
.footer-links { display: flex; flex-direction: column; align-items: flex-start; }
.footer-links a { margin-bottom: 12px; color: #8e8e8e; font-size: 11px; transition: color .2s ease, transform .2s ease; }
.footer-links a:hover { color: var(--orange); transform: translateX(3px); }
.footer-contact a { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 15px; color: #a1a1a1; font-size: 10px; line-height: 1.55; }
.footer-contact a > svg { width: 16px; height: 16px; flex: 0 0 auto; color: var(--orange); }
.footer-mid { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 40px; padding: 32px 0; border-top: 1px solid #303030; }
.footer-mid h3 { margin: 0 0 6px; font-family: "Manrope",sans-serif; font-size: 17px; }
.footer-mid p { margin: 0; color: #777; font-size: 10px; }
.newsletter { display: flex; width: min(410px,100%); overflow: hidden; border: 1px solid #3b3b3b; border-radius: 999px; background: #222; }
.newsletter input { flex: 1; min-width: 0; height: 50px; padding: 0 20px; border: 0; outline: 0; color: #fff; background: transparent; font-size: 11px; }
.newsletter button { display: grid; width: 50px; flex: 0 0 auto; place-items: center; margin: 4px; border: 0; border-radius: 50%; color: #fff; background: var(--orange); cursor: pointer; }
.footer-bottom { position: relative; display: flex; min-height: 75px; align-items: center; justify-content: space-between; border-top: 1px solid #303030; color: #6e6e6e; font-size: 9px; }
.footer-bottom > div { display: flex; align-items: center; gap: 24px; }
.footer-bottom a { display: inline-flex; align-items: center; gap: 5px; }

.whatsapp-float { position: fixed; z-index: 70; right: 22px; bottom: 25px; display: flex; height: 50px; align-items: center; gap: 8px; padding: 0 16px; border-radius: 999px; color: #fff; background: #1fa855; box-shadow: 0 14px 35px rgba(31,168,85,.36); font-size: 11px; font-weight: 700; transition: transform .25s ease; }
.whatsapp-float:hover { transform: translateY(-4px); }
.back-to-top { position: fixed; z-index: 69; right: 30px; bottom: 88px; display: grid; width: 40px; height: 40px; visibility: hidden; place-items: center; border: 0; border-radius: 50%; color: #fff; background: var(--ink); box-shadow: var(--shadow-sm); opacity: 0; cursor: pointer; transform: translateY(10px); transition: .3s ease; }
.back-to-top.visible { visibility: visible; opacity: 1; transform: none; }

.cookie-banner { position: fixed; z-index: 120; right: 24px; bottom: 24px; left: 24px; display: flex; max-width: 900px; align-items: center; justify-content: space-between; gap: 24px; margin-inline: auto; padding: 18px 20px; border: 1px solid #eee2d9; border-radius: 20px; background: rgba(255,255,255,.96); box-shadow: 0 24px 70px rgba(0,0,0,.2); opacity: 0; pointer-events: none; transform: translateY(25px); transition: .4s ease; backdrop-filter: blur(16px); }
.cookie-banner.visible { opacity: 1; pointer-events: auto; transform: none; }
.cookie-banner > div { display: flex; align-items: center; gap: 13px; }
.cookie-banner > div > svg { width: 25px; height: 25px; color: var(--orange); }
.cookie-banner p { margin: 0; }
.cookie-banner p b, .cookie-banner p span { display: block; }
.cookie-banner p b { font-size: 12px; }
.cookie-banner p span { margin-top: 4px; color: var(--muted); font-size: 10px; }
.cookie-banner .button { min-height: 40px; padding: 0 17px; font-size: 10px; }
.cookie-settings { border: 0; color: var(--muted); background: transparent; font-size: 10px; font-weight: 700; cursor: pointer; }

.modal { position: fixed; inset: 0; z-index: 200; display: grid; visibility: hidden; place-items: center; padding: 24px; opacity: 0; transition: .3s ease; }
.modal.open { visibility: visible; opacity: 1; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(10,10,10,.76); backdrop-filter: blur(8px); }
.modal-card { position: relative; z-index: 2; display: grid; width: min(1000px,100%); max-height: calc(100vh - 48px); grid-template-columns: .75fr 1.25fr; overflow: auto; border-radius: 30px; background: #fff; box-shadow: 0 35px 100px rgba(0,0,0,.4); transform: translateY(18px) scale(.98); transition: transform .35s cubic-bezier(.2,.8,.2,1); }
.modal.open .modal-card { transform: none; }
.modal-close { position: absolute; z-index: 3; top: 18px; right: 18px; display: grid; width: 38px; height: 38px; place-items: center; border: 0; border-radius: 50%; color: #fff; background: var(--ink); cursor: pointer; }
.modal-copy { padding: 52px 42px; color: #fff; background: linear-gradient(145deg,#1b1b1b,#302820); }
.modal-icon { display: grid; width: 62px; height: 62px; place-items: center; margin-bottom: 38px; border-radius: 18px; color: #fff; background: linear-gradient(145deg,var(--orange),var(--amber)); }
.modal-icon svg { width: 28px; height: 28px; }
.modal-copy h2 { margin: 0; font-family: "Manrope",sans-serif; font-size: 36px; line-height: 1.1; letter-spacing: -.045em; }
.modal-copy > p { margin: 20px 0 28px; color: #aaa; font-size: 13px; line-height: 1.7; }
.modal-benefits { display: grid; gap: 10px; }
.modal-benefits span { display: flex; align-items: center; gap: 8px; color: #ddd; font-size: 11px; }
.modal-benefits svg { width: 16px; height: 16px; padding: 3px; border-radius: 50%; color: #fff; background: var(--orange); }
.quote-form { display: grid; grid-template-columns: 1fr 1fr; gap: 17px; padding: 58px 45px 42px; }
.quote-form label { display: grid; gap: 8px; color: #333; font-size: 10px; font-weight: 700; }
.quote-form input, .quote-form select, .quote-form textarea { width: 100%; border: 1px solid #e3dfdc; border-radius: 12px; outline: 0; background: #fbfaf9; font-size: 12px; font-weight: 400; transition: border-color .2s ease, box-shadow .2s ease; }
.quote-form input, .quote-form select { height: 48px; padding: 0 13px; }
.quote-form textarea { padding: 13px; resize: vertical; }
.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(245,130,32,.12); }
.quote-form .full { grid-column: 1 / -1; }
.form-status { min-height: 18px; margin: -5px 0 0; color: #238254; font-size: 10px; text-align: center; }

.reveal { will-change: transform, opacity; }
@media (prefers-reduced-motion: no-preference) { .reveal:not(.is-visible) { opacity: 0; transform: translateY(28px); } .reveal.is-visible { opacity: 1; transform: none; transition: opacity .75s ease, transform .75s cubic-bezier(.2,.8,.2,1); } }

@media (max-width: 1200px) {
    :root { --container: min(1120px, calc(100% - 44px)); }
    .main-nav { gap: 15px; }
    .main-nav > a, .nav-dropdown > button { font-size: 11px; }
    .brand { width: 190px; }
    .nav-actions { gap: 7px; }
    .nav-login { padding-inline: 13px; }
    .nav-quote { padding-inline: 15px; }
    .hero-grid { grid-template-columns: 1fr 1fr; }
    .hero-visual { transform: scale(.9); transform-origin: right center; }
    .service-grid { grid-template-columns: repeat(3,1fr); }
    .why-grid { gap: 45px; }
    .stats-grid article { min-height: 225px; }
    .industry-grid { grid-template-columns: repeat(3,1fr); }
    .smart-grid { grid-template-columns: .65fr 1.35fr; gap: 35px; }
    .dashboard-window { min-height: 500px; grid-template-columns: 125px 1fr; }
    .dash-main { padding: 17px; }
    .process-track { gap: 10px; }
    .footer-top { grid-template-columns: 1.4fr repeat(3,.75fr) 1.2fr; gap: 25px; }
}

@media (max-width: 1024px) {
    .section { padding: 95px 0; }
    .site-header { height: 82px; }
    .brand { width: 205px; height: 54px; }
    .menu-toggle { display: grid; width: 46px; height: 46px; place-content: center; flex: 0 0 auto; gap: 5px; margin-left: 0; border: 1px solid rgba(255,255,255,.25); border-radius: 14px; background: rgba(255,255,255,.12); cursor: pointer; }
    .site-header.scrolled .menu-toggle { border-color: #e8e4e0; background: var(--warm); }
    .menu-toggle span { display: block; width: 21px; height: 2px; border-radius: 2px; background: currentColor; transition: .25s ease; }
    .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
    .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    .nav-quote { display: none; }
    .nav-actions { margin-left: auto; }
    .nav-login { min-height: 44px; padding-inline: 15px; }
    .main-nav { position: fixed; inset: 82px 0 0; display: flex; visibility: hidden; flex-direction: column; align-items: stretch; justify-content: flex-start; gap: 0; padding: 28px 28px 50px; overflow-y: auto; background: rgba(20,20,20,.98); color: #fff; opacity: 0; transform: translateX(100%); transition: .35s cubic-bezier(.2,.8,.2,1); }
    .site-header.scrolled .main-nav { top: 78px; }
    .main-nav.open { visibility: visible; opacity: 1; transform: none; }
    .main-nav > a, .nav-dropdown > button { width: 100%; justify-content: space-between; padding: 17px 5px; border-bottom: 1px solid #333; font-family: "Manrope",sans-serif; font-size: 18px; }
    .main-nav > a:after, .nav-dropdown > button:after { display: none; }
    .mega-menu { position: static; display: none; width: 100%; grid-template-columns: 1fr; margin-top: 10px; border: 0; opacity: 1; transform: none; }
    .nav-dropdown.open .mega-menu { display: grid; visibility: visible; }
    .mega-intro { display: none; }
    .hero { min-height: 1100px; }
    .hero-grid { min-height: auto; grid-template-columns: 1fr; padding-top: 160px; text-align: center; }
    .hero-copy { margin-inline: auto; }
    .hero-copy > p { margin-inline: auto; }
    .hero-actions, .hero-trust { justify-content: center; }
    .hero-visual { width: min(700px,100%); min-height: 520px; margin: 0 auto; transform: scale(.88); transform-origin: center top; }
    .hero-proof { bottom: 35px; }
    .hero-proof article { padding-inline: 18px; }
    .trusted-shell { gap: 25px; }
    .about-grid { grid-template-columns: 1fr; gap: 75px; }
    .about-media { width: min(650px,100%); min-height: 600px; margin-inline: auto; }
    .about-content { max-width: 760px; padding: 0; }
    .why-grid { grid-template-columns: 1fr; }
    .why-copy { max-width: 760px; }
    .smart-grid { grid-template-columns: 1fr; }
    .smart-copy { max-width: 720px; }
    .dashboard-wrap { width: min(850px,100%); margin-inline: auto; }
    .project-grid { grid-template-columns: repeat(3,1fr); }
    .project-wide { grid-column: span 2; }
    .process-track { grid-template-columns: repeat(3,1fr); gap: 45px 20px; }
    .process-track:before { display: none; }
    .testimonial-grid { grid-template-columns: 1fr; gap: 45px; }
    .testimonial-intro { max-width: 720px; }
    .cert-grid { grid-template-columns: 1fr 1fr; }
    .sustainability-grid { grid-template-columns: 1fr; }
    .faq-grid { grid-template-columns: 1fr; gap: 55px; }
    .faq-intro { position: static; }
    .cta-content { grid-template-columns: auto 1fr; }
    .cta-actions { grid-column: 2; grid-template-columns: auto auto; justify-content: flex-start; }
    .whatsapp-link { grid-column: 1 / -1; justify-content: flex-start; }
    .footer-top { grid-template-columns: 1.5fr repeat(3,1fr); }
    .footer-contact { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; padding-top: 28px; border-top: 1px solid #303030; }
    .footer-contact h3 { grid-column: 1 / -1; margin-bottom: 0; }
}

@media (max-width: 760px) {
    :root { --container: calc(100% - 32px); --radius: 20px; }
    .section { padding: 78px 0; }
    .section-title { font-size: clamp(38px,11vw,56px); }
    .section-heading { margin-bottom: 38px; }
    .split-heading { align-items: flex-start; flex-direction: column; gap: 5px; }
    .site-header { height: 76px; }
    .site-header.scrolled { height: 70px; }
    .brand { width: 180px; height: 48px; border-radius: 12px; }
    .nav-shell { gap: 10px; }
    .nav-login { min-height: 42px; padding-inline: 12px; font-size: 11px; }
    .menu-toggle { width: 42px; height: 42px; }
    .main-nav { top: 76px; }
    .site-header.scrolled .main-nav { top: 70px; }
    .mega-links { grid-template-columns: 1fr; }
    .hero { min-height: 1060px; }
    .hero-bg { background-position: 58% center; }
    .hero-grid { padding-top: 130px; }
    .hero h1 { font-size: clamp(49px,14vw,68px); }
    .hero-copy > p { font-size: 14px; }
    .hero-actions { flex-direction: column; align-items: stretch; padding-inline: 15px; }
    .hero-visual { left: 50%; width: 660px; min-height: 460px; margin-left: -330px; transform: scale(.72); }
    .floating-card { display: none; }
    .hero-proof { bottom: 28px; grid-template-columns: 1fr 1fr; }
    .hero-proof article { min-height: 66px; padding: 11px 13px; }
    .hero-proof article:nth-child(2) { border-right: 0; }
    .hero-proof article:nth-child(-n+2) { border-bottom: 1px solid #e5e0dc; }
    .hero-proof > article > svg { width: 21px; height: 21px; }
    .hero-proof b { font-size: 11px; }
    .hero-proof span { font-size: 8px; }
    .hero-curve { display: none; }
    .trusted-shell { align-items: flex-start; flex-direction: column; }
    .trusted-title { border-right: 0; }
    .logo-marquee { width: 100%; }
    .logo-track { gap: 45px; }
    .about-grid { gap: 55px; }
    .about-media { min-height: 490px; }
    .about-media > img { left: 10px; width: calc(100% - 10px); border-radius: 28px 80px 28px 28px; }
    .experience-seal { right: -8px; bottom: 36px; width: 135px; height: 135px; }
    .experience-seal b { font-size: 38px; }
    .media-note { bottom: 20px; min-width: 220px; }
    .about-tabs { width: 100%; }
    .about-tabs button { flex: 1; padding-inline: 10px; }
    .about-points { grid-template-columns: 1fr; }
    .service-grid { grid-template-columns: 1fr; }
    .service-card { display: grid; grid-template-columns: 140px 1fr; }
    .service-card.service-extra { display: none; }
    .service-grid.expanded .service-card.service-extra { display: grid; }
    .service-image { height: 100%; min-height: 230px; }
    .service-body { padding: 26px 20px; }
    .service-icon { top: 17px; left: -28px; width: 51px; height: 51px; }
    .service-body h3 { margin-top: 55px; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .stats-grid article { min-height: 190px; padding: 22px; }
    .stats-grid article > b { margin-top: 26px; font-size: 35px; }
    .industry-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .industry-card { height: 210px; border-radius: 18px; }
    .industry-card > div { right: 13px; bottom: 14px; left: 13px; gap: 9px; }
    .industry-card > div > span { width: 37px; height: 37px; border-radius: 11px; }
    .industry-card h3 { font-size: 11px; }
    .industry-arrow { display: none; }
    .smart-features { grid-template-columns: 1fr; }
    .dashboard-wrap { width: 760px; margin-left: calc((100% - 760px) / 2); transform: scale(.58); transform-origin: center top; margin-bottom: -285px; }
    .project-filters { width: 100%; overflow-x: auto; flex-wrap: nowrap; border-radius: 15px; }
    .project-filters button { white-space: nowrap; }
    .project-grid { grid-auto-rows: 260px; grid-template-columns: 1fr; }
    .project-card, .project-tall, .project-wide { grid-row: span 1; grid-column: span 1; }
    .process-track { grid-template-columns: 1fr 1fr; gap: 42px 18px; }
    .testimonial-card { min-height: 470px; padding: 33px 26px; }
    .testimonial-card blockquote { font-size: 23px; }
    .cert-grid { grid-template-columns: 1fr; }
    .cert-card { min-height: 235px; }
    .cert-card h3 { margin-top: 28px; }
    .sustainability-cards { grid-template-columns: 1fr 1fr; }
    .sustainability-cards article { min-height: 145px; }
    .faq-item > button { padding: 19px 17px; grid-template-columns: 26px 1fr 18px; gap: 9px; }
    .faq-item > button b { font-size: 12px; }
    .faq-item > div p { padding-right: 44px; padding-left: 52px; }
    .cta-content { grid-template-columns: 1fr; }
    .cta-icon { width: 66px; height: 66px; }
    .cta-actions { grid-column: 1; grid-template-columns: 1fr; }
    .whatsapp-link { justify-content: center; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 42px 25px; }
    .footer-brand { grid-column: 1 / -1; }
    .footer-contact { grid-template-columns: 1fr 1fr; }
    .footer-contact h3 { grid-column: 1 / -1; }
    .footer-mid { align-items: flex-start; flex-direction: column; }
    .newsletter { width: 100%; }
    .footer-bottom { align-items: flex-start; flex-direction: column; justify-content: center; gap: 12px; padding: 20px 0; }
    .footer-bottom > div { flex-wrap: wrap; gap: 13px; }
    .whatsapp-float { width: 50px; padding: 0; justify-content: center; }
    .whatsapp-float span { display: none; }
    .cookie-banner { align-items: flex-start; flex-direction: column; }
    .cookie-banner > div:last-child { width: 100%; justify-content: flex-end; }
    .modal-card { grid-template-columns: 1fr; }
    .modal-copy { padding: 40px 28px 30px; }
    .modal-icon { margin-bottom: 24px; }
    .quote-form { grid-template-columns: 1fr; padding: 32px 25px; }
    .quote-form .full { grid-column: 1; }
}

@media (max-width: 440px) {
    .brand { width: 162px; }
    .nav-login { width: 42px; padding: 0; }
    .nav-login span { display: none; }
    .hero-badge { font-size: 9px; }
    .hero h1 { font-size: 46px; }
    .hero-proof article { gap: 8px; }
    .service-card { grid-template-columns: 118px 1fr; }
    .service-body { padding-inline: 16px; }
    .stats-grid { grid-template-columns: 1fr; }
    .stats-grid .stat-wide { grid-column: 1; }
    .industry-grid { grid-template-columns: 1fr; }
    .industry-card { height: 225px; }
    .process-track { grid-template-columns: 1fr; }
    .process-step p { max-width: 270px; margin-inline: auto; }
    .sustainability-cards { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; }
    .footer-brand, .footer-contact { grid-column: 1; }
    .footer-contact { grid-template-columns: 1fr; }
    .footer-contact h3 { grid-column: 1; }
}

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