:root {
  --blue-950: #061c36;
  --blue-900: #073b78;
  --blue-800: #0a4b92;
  --blue-100: #eaf3ff;
  --orange: #ee6d15;
  --orange-dark: #c9500a;
  --green: #1fa855;
  --ink: #142033;
  --muted: #5f6d7d;
  --line: #dce4ed;
  --surface: #ffffff;
  --surface-soft: #f5f8fc;
  --radius: 20px;
  --shadow: 0 18px 50px rgba(8, 36, 70, .12);
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; }
img { max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.skip-link { position: fixed; top: 10px; left: 10px; z-index: 999; padding: 10px 14px; color: #fff; background: var(--blue-950); border-radius: 10px; transform: translateY(-150%); }
.skip-link:focus { transform: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .92);
  border-bottom: 1px solid rgba(220, 228, 237, .85);
  backdrop-filter: blur(12px);
}
.nav-wrap { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; }
.brand-mark { width: 42px; height: 42px; display: grid; place-items: center; color: #fff; font-weight: 900; font-style: italic; letter-spacing: -.05em; background: linear-gradient(145deg, var(--blue-800), var(--blue-950)); border-radius: 12px; box-shadow: inset -8px -8px 18px rgba(0, 0, 0, .12); }
.brand-copy { display: grid; line-height: 1.1; }
.brand-copy strong { color: var(--blue-900); font-size: 1rem; letter-spacing: .03em; }
.brand-copy small { margin-top: 4px; color: var(--orange-dark); font-size: .72rem; font-weight: 750; letter-spacing: .06em; text-transform: uppercase; }
.main-nav { display: flex; align-items: center; gap: 26px; }
.main-nav > a:not(.button) { position: relative; color: #364456; font-size: .94rem; font-weight: 700; text-decoration: none; }
.main-nav > a:not(.button)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 2px; background: var(--orange); transition: right .2s ease; }
.main-nav > a:not(.button):hover::after, .main-nav > a:not(.button):focus-visible::after { right: 0; }
.menu-button { display: none; width: 44px; height: 44px; padding: 10px; border: 0; border-radius: 10px; background: var(--surface-soft); cursor: pointer; }
.menu-button span { width: 22px; height: 2px; display: block; margin: 4px auto; background: var(--blue-950); border-radius: 999px; transition: transform .2s ease, opacity .2s ease; }

.button { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; padding: 12px 20px; color: #fff; background: linear-gradient(135deg, var(--orange), var(--orange-dark)); border: 0; border-radius: 12px; box-shadow: 0 12px 24px rgba(210, 82, 10, .2); font-weight: 800; text-decoration: none; transition: transform .2s ease, box-shadow .2s ease, filter .2s ease; }
.button:hover { transform: translateY(-2px); box-shadow: 0 16px 30px rgba(210, 82, 10, .25); filter: saturate(1.05); }
.button:active { transform: translateY(0); }
.button svg { width: 20px; height: 20px; fill: currentColor; }
.button-small { min-height: 42px; padding: 9px 15px; font-size: .9rem; }
.button-light { color: var(--blue-950); background: #fff; box-shadow: 0 12px 28px rgba(0, 0, 0, .16); }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--blue-900); font-weight: 800; text-decoration: none; }
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }

.hero { position: relative; overflow: hidden; padding: clamp(64px, 8vw, 108px) 0 76px; background: radial-gradient(circle at 88% 2%, #d8eaff 0, transparent 33%), linear-gradient(180deg, #fff 0%, #f6f9fd 100%); }
.hero::before { content: ""; position: absolute; left: -120px; bottom: -180px; width: 360px; height: 360px; background: radial-gradient(circle, rgba(238, 109, 21, .12), transparent 67%); pointer-events: none; }
.hero-grid { display: grid; grid-template-columns: .88fr 1.12fr; align-items: center; gap: clamp(34px, 6vw, 76px); }
.eyebrow { margin: 0 0 14px; color: var(--orange-dark); font-size: .8rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.eyebrow span { margin-right: 7px; font-size: .65em; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.15; text-wrap: balance; }
h1 { max-width: 700px; margin-bottom: 22px; color: var(--blue-950); font-size: clamp(2.5rem, 5vw, 4.8rem); letter-spacing: -.045em; }
h2 { margin-bottom: 18px; color: var(--blue-950); font-size: clamp(2rem, 3.4vw, 3.25rem); letter-spacing: -.035em; }
h3 { margin-bottom: 10px; color: var(--blue-950); font-size: 1.18rem; }
.hero-lead { max-width: 640px; margin-bottom: 28px; color: var(--muted); font-size: clamp(1.02rem, 1.4vw, 1.18rem); }
.hero-actions { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.hero-points { display: flex; gap: 10px 18px; flex-wrap: wrap; margin: 28px 0 0; padding: 0; color: #415063; list-style: none; font-size: .9rem; font-weight: 700; }
.hero-points span { margin-right: 5px; color: var(--green); }
.hero-media { position: relative; min-width: 0; display: grid; gap: 14px; align-self: center; }
.hero-media picture { display: block; overflow: hidden; padding: 8px; line-height: 0; background: #fff; border: 1px solid rgba(220, 228, 237, .9); border-radius: 28px; box-shadow: var(--shadow); }
.hero-media img { width: 100%; height: auto; aspect-ratio: auto; object-fit: contain; border-radius: 20px; }
.media-card { position: static; justify-self: end; width: max-content; max-width: 100%; display: flex; align-items: center; gap: 12px; padding: 13px 16px; background: rgba(255, 255, 255, .96); border: 1px solid rgba(220, 228, 237, .85); border-radius: 14px; box-shadow: 0 14px 36px rgba(8, 36, 70, .13); }
.media-icon { width: 38px; height: 38px; display: grid; place-items: center; color: #fff; background: var(--orange); border-radius: 10px; font-size: 1.25rem; }
.media-card span:last-child { display: grid; line-height: 1.2; }
.media-card small { color: var(--muted); }
.media-card strong { color: var(--blue-950); }

.trust-bar { border-block: 1px solid var(--line); background: #fff; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-grid > div { padding: 24px 28px; border-right: 1px solid var(--line); }
.trust-grid > div:first-child { padding-left: 0; }
.trust-grid > div:last-child { padding-right: 0; border-right: 0; }
.trust-grid strong, .trust-grid span { display: block; }
.trust-grid strong { color: var(--blue-950); }
.trust-grid span { color: var(--muted); font-size: .88rem; }

.section { padding: clamp(74px, 9vw, 116px) 0; content-visibility: auto; contain-intrinsic-size: 800px; }
.section-tint { background: var(--surface-soft); }
.section-heading { display: grid; grid-template-columns: 1.1fr .9fr; align-items: end; gap: 40px; margin-bottom: 42px; }
.section-heading h2 { margin-bottom: 0; }
.section-heading > p { max-width: 520px; margin: 0 0 7px; color: var(--muted); }
.card-grid { display: grid; gap: 18px; }
.services-grid { grid-template-columns: repeat(4, 1fr); }
.service-card { min-height: 260px; padding: 28px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 12px 32px rgba(8, 36, 70, .055); transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
.service-card:hover { transform: translateY(-5px); border-color: #c2d5ea; box-shadow: 0 18px 42px rgba(8, 36, 70, .1); }
.service-icon { width: 50px; height: 50px; display: grid; place-items: center; margin-bottom: 24px; background: var(--blue-100); border-radius: 14px; font-size: 1.35rem; }
.service-card p { margin-bottom: 0; color: var(--muted); font-size: .94rem; }

.product-layout { display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: clamp(42px, 8vw, 100px); }
.product-copy > p:not(.eyebrow) { margin-bottom: 28px; color: var(--muted); }
.category-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.category-grid div { min-height: 96px; display: flex; align-items: center; gap: 16px; padding: 20px; background: #fff; border: 1px solid var(--line); border-radius: 16px; }
.category-grid span { color: var(--orange); font-size: .78rem; font-weight: 900; }
.category-grid strong { color: var(--blue-950); }

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(44px, 8vw, 110px); }
.about-copy > p { color: var(--muted); font-size: 1.04rem; }
.contact-person { display: inline-flex; align-items: center; gap: 14px; margin-top: 16px; padding: 14px 18px; background: var(--surface-soft); border: 1px solid var(--line); border-radius: 14px; }
.avatar { width: 44px; height: 44px; display: grid; place-items: center; color: #fff; background: var(--blue-900); border-radius: 50%; font-weight: 900; }
.contact-person > span:last-child { display: grid; line-height: 1.25; }
.contact-person small { color: var(--muted); }
.contact-person strong { color: var(--blue-950); }

.section-dark { position: relative; overflow: hidden; color: #fff; background: linear-gradient(140deg, var(--blue-950), var(--blue-900)); }
.section-dark::after { content: ""; position: absolute; right: -90px; top: -160px; width: 420px; height: 420px; border: 80px solid rgba(255, 255, 255, .045); border-radius: 50%; pointer-events: none; }
.section-dark h2 { color: #fff; }
.eyebrow-light { color: #ffb784; }
.location-grid { position: relative; z-index: 1; display: grid; grid-template-columns: .95fr 1.05fr; align-items: center; gap: clamp(40px, 8vw, 96px); }
.location-grid address { margin: 0 0 28px; color: #d9e7f6; font-style: normal; font-size: 1.06rem; }
.location-grid address strong { color: #fff; }
.location-actions { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.phone-link { color: #fff; font-weight: 800; text-decoration: none; }
.phone-link:hover { text-decoration: underline; }
.map-placeholder { min-height: 320px; display: grid; place-items: center; align-content: center; padding: 36px; text-align: center; background: rgba(255, 255, 255, .09); border: 1px dashed rgba(255, 255, 255, .38); border-radius: 24px; }
.map-placeholder .pin { width: 62px; height: 62px; display: grid; place-items: center; margin-bottom: 18px; color: var(--blue-950); background: #fff; border-radius: 18px; font-size: 1.8rem; }
.map-placeholder strong { font-size: 1.15rem; }
.map-placeholder p { max-width: 350px; margin: 8px 0 0; color: #c5d8ec; }

.faq-wrap { max-width: 920px; }
.faq-heading { grid-template-columns: 1fr; margin-bottom: 28px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; padding: 24px 48px 24px 0; color: var(--blue-950); font-weight: 850; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 4px; top: 19px; width: 32px; height: 32px; display: grid; place-items: center; color: var(--blue-900); background: var(--blue-100); border-radius: 9px; font-size: 1.2rem; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { max-width: 760px; padding: 0 48px 24px 0; margin: 0; color: var(--muted); }

.cta-section { padding: 0 0 clamp(74px, 9vw, 116px); }
.cta-box { display: flex; align-items: center; justify-content: space-between; gap: 32px; padding: clamp(34px, 5vw, 58px); color: #fff; background: linear-gradient(135deg, var(--orange), var(--orange-dark)); border-radius: 28px; box-shadow: 0 24px 58px rgba(210, 82, 10, .24); }
.cta-box h2 { max-width: 700px; margin: 0; color: #fff; }
.cta-box .eyebrow { margin-bottom: 10px; color: #ffe0ca; }
.cta-box .button-light { flex: none; }

.site-footer { padding: 64px 0 26px; color: #c3d0df; background: #071727; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 50px; padding-bottom: 42px; }
.brand-footer .brand-copy strong { color: #fff; }
.footer-grid > div:first-child p { max-width: 360px; }
.footer-grid strong { color: #fff; }
.footer-grid p { margin: 14px 0 0; font-size: .93rem; }
.footer-grid a { text-decoration: none; }
.footer-grid a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 24px; border-top: 1px solid rgba(255, 255, 255, .12); font-size: .85rem; }
.footer-bottom a { color: #fff; text-decoration: none; }

.floating-wa { position: fixed; right: 22px; bottom: 22px; z-index: 90; min-height: 52px; display: inline-flex; align-items: center; gap: 9px; padding: 12px 16px; color: #fff; background: var(--green); border: 3px solid #fff; border-radius: 999px; box-shadow: 0 14px 30px rgba(10, 80, 40, .3); font-size: .9rem; font-weight: 850; text-decoration: none; transition: transform .2s ease; }
.floating-wa:hover { transform: translateY(-3px); }
.floating-wa svg { width: 23px; height: 23px; fill: currentColor; }

:focus-visible { outline: 3px solid #ffaf70; outline-offset: 3px; }

@media (max-width: 980px) {
  .menu-button { display: block; }
  .main-nav { position: absolute; top: calc(100% + 1px); left: 0; right: 0; display: none; align-items: stretch; gap: 0; padding: 12px 20px 20px; background: #fff; border-bottom: 1px solid var(--line); box-shadow: 0 18px 30px rgba(8, 36, 70, .1); }
  .main-nav.is-open { display: grid; }
  .main-nav > a:not(.button) { padding: 13px 4px; border-bottom: 1px solid var(--line); }
  .main-nav > a:not(.button)::after { display: none; }
  .main-nav .button { margin-top: 12px; }
  .menu-button[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-button[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 760px; }
  .hero-media { max-width: 760px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .product-layout, .about-grid, .location-grid { grid-template-columns: 1fr; }
  .product-copy { max-width: 720px; }
}

@media (max-width: 720px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .nav-wrap { min-height: 68px; }
  .brand-mark { width: 38px; height: 38px; }
  .brand-copy strong { font-size: .9rem; }
  .brand-copy small { font-size: .64rem; }
  .hero { padding-top: 54px; }
  h1 { font-size: clamp(2.35rem, 12vw, 3.5rem); }
  .media-card { justify-self: stretch; width: 100%; max-width: 100%; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid > div { padding: 18px 16px; border-bottom: 1px solid var(--line); }
  .trust-grid > div:nth-child(2) { border-right: 0; }
  .trust-grid > div:nth-child(3), .trust-grid > div:nth-child(4) { border-bottom: 0; }
  .trust-grid > div:first-child { padding-left: 0; }
  .trust-grid > div:nth-child(3) { padding-left: 0; }
  .section-heading { grid-template-columns: 1fr; gap: 16px; }
  .services-grid, .category-grid { grid-template-columns: 1fr; }
  .service-card { min-height: auto; }
  .cta-box { align-items: flex-start; flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .floating-wa { right: 14px; bottom: 14px; width: 52px; justify-content: center; padding: 0; }
  .floating-wa span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
}

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