:root {
  color-scheme: dark;
  --ink: #090a11;
  --surface: #11131d;
  --surface-2: #171a25;
  --line: rgba(255, 255, 255, 0.09);
  --text: #f7f5fb;
  --muted: #a4a2b0;
  --violet: #9f82ff;
  --orange: #ff9357;
  --cyan: #61d8d0;
  --blue: #65a9ff;
  --radius-lg: 34px;
  --radius-md: 24px;
  --content: 1680px;
  --page-inset: clamp(28px, 5vw, 96px);
  --header-inset: clamp(20px, 3vw, 56px);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 118px; }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 78% 8%, rgba(90, 216, 208, 0.08), transparent 28rem),
    radial-gradient(circle at 9% 28%, rgba(159, 130, 255, 0.08), transparent 24rem),
    var(--ink);
  color: var(--text);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.service-page-individuals {
  background:
    radial-gradient(ellipse clamp(36rem, 68vw, 76rem) clamp(30rem, 54vw, 60rem) at 105% 8%, rgba(255, 147, 87, .13), transparent 72%),
    radial-gradient(ellipse clamp(32rem, 58vw, 66rem) clamp(38rem, 64vw, 74rem) at -8% 72%, rgba(255, 147, 87, .055), transparent 74%),
    linear-gradient(180deg, rgba(255, 147, 87, .022), rgba(9, 10, 17, 0) 42%, rgba(255, 147, 87, .018)),
    var(--ink);
}

body.service-page-businesses {
  background:
    radial-gradient(ellipse clamp(36rem, 68vw, 76rem) clamp(30rem, 54vw, 60rem) at 105% 8%, rgba(97, 216, 208, .115), transparent 72%),
    radial-gradient(ellipse clamp(32rem, 58vw, 66rem) clamp(38rem, 64vw, 74rem) at -8% 72%, rgba(97, 216, 208, .05), transparent 74%),
    linear-gradient(180deg, rgba(97, 216, 208, .018), rgba(9, 10, 17, 0) 42%, rgba(97, 216, 208, .016)),
    var(--ink);
}

a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
button, input, textarea, select { font: inherit; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 100; left: 1rem; top: -5rem; padding: .8rem 1rem; background: white; color: black; border-radius: 12px; }
.skip-link:focus { top: 1rem; }

.page-orbit { position: fixed; pointer-events: none; z-index: -1; border-radius: 999px; filter: blur(10px); opacity: .6; }
.page-orbit-one { width: 26rem; height: 26rem; right: -15rem; top: 25rem; border: 1px solid rgba(97, 216, 208, .17); }
.page-orbit-two { width: 34rem; height: 34rem; left: -26rem; top: 65rem; border: 1px solid rgba(159, 130, 255, .16); }

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  width: calc(100% - var(--header-inset));
  min-height: 78px;
  margin: 18px auto 0;
  padding: 0 18px 0 22px;
  display: grid;
  grid-template-columns: minmax(170px, 1fr) auto minmax(170px, 1fr);
  align-items: center;
  gap: clamp(18px, 2vw, 34px);
  background: rgba(9, 10, 17, .42);
  border: 1px solid rgba(255, 255, 255, .055);
  border-radius: 20px;
  backdrop-filter: blur(14px);
  transition: background .25s ease, border-color .25s ease, backdrop-filter .25s ease, box-shadow .25s ease;
}
.site-header.is-scrolled { background: rgba(9, 10, 17, .84); border-color: var(--line); backdrop-filter: blur(20px); box-shadow: 0 16px 48px rgba(0, 0, 0, .22); }
.brand { display: inline-flex; align-items: center; gap: 12px; white-space: nowrap; }
.brand-logo { display: block; width: 150px; height: auto; object-fit: contain; }
.main-navigation { display: flex; align-items: center; justify-content: center; gap: clamp(18px, 1.65vw, 32px); color: var(--muted); font-size: .84rem; }
.main-navigation a { position: relative; padding: 12px 0; transition: color .2s ease; }
.main-navigation .mobile-contact-link, .main-navigation .mobile-language-link { display: none; }
.main-navigation a:hover, .main-navigation a:focus-visible, .main-navigation a.is-active { color: white; }
.main-navigation a.is-active::after { content: ""; position: absolute; left: 0; right: 0; bottom: 4px; height: 2px; background: var(--violet); border-radius: 10px; }
.header-actions { display: flex; align-items: center; justify-self: end; gap: 14px; }
.header-contact-button { white-space: nowrap; }
.language-link { min-width: 44px; min-height: 44px; display: inline-grid; place-items: center; color: var(--muted); font-weight: 800; font-size: .78rem; padding: 8px; }
.menu-toggle { display: none; background: none; border: 0; color: white; padding: 8px; }
.menu-toggle > span:not(.sr-only) { display: block; width: 22px; height: 2px; margin: 4px 0; background: currentColor; }

.button { display: inline-flex; align-items: center; justify-content: center; gap: 12px; min-height: 52px; padding: 0 22px; border-radius: 15px; background: var(--violet); color: #0a0910; font-weight: 800; font-size: .9rem; box-shadow: 0 14px 38px rgba(159, 130, 255, .2); transition: transform .2s ease, box-shadow .2s ease; }
.button:hover, .button:focus-visible { transform: translateY(-2px); box-shadow: 0 18px 45px rgba(159, 130, 255, .3); }
.button-small { min-height: 44px; padding: 0 17px; }
.button-light { background: white; color: #11121a; box-shadow: none; }
.text-link { display: inline-flex; gap: 9px; color: #d9d6e4; font-weight: 700; font-size: .9rem; }

.section-shell { width: min(calc(100% - var(--page-inset)), var(--content)); margin-inline: auto; }
.hero { min-height: 690px; padding: clamp(58px, 6vw, 88px) 0 80px; display: grid; grid-template-columns: minmax(0, .9fr) minmax(450px, 1.1fr); grid-template-rows: auto auto; align-items: start; column-gap: clamp(36px, 5vw, 72px); row-gap: clamp(38px, 4.5vw, 62px); }
.eyebrow, .section-label, .card-kicker { margin: 0 0 20px; color: var(--orange); font-size: .72rem; font-weight: 850; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow { display: flex; align-items: center; gap: 10px; }
.eyebrow span { width: 8px; height: 8px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 18px rgba(97, 216, 208, .8); }
h1, h2, h3, p { margin-top: 0; }
h1 { max-width: 760px; margin-bottom: 26px; font-size: clamp(3.15rem, 6.4vw, 6.4rem); line-height: .96; letter-spacing: -.065em; font-weight: 820; }
.hero-heading { grid-column: 1 / -1; max-width: 1180px; }
.hero-heading h1 { max-width: none; margin-bottom: 0; font-size: clamp(3.7rem, 5.8vw, 6rem); line-height: .95; letter-spacing: -.058em; text-wrap: balance; }
.hero-copy { min-height: 432px; align-self: start; padding-bottom: 16px; display: flex; flex-direction: column; }
.hero-lead { max-width: 540px; margin-bottom: 0; color: var(--muted); font-size: clamp(1rem, 1.4vw, 1.17rem); }
.hero-actions { margin-top: auto; display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.hero-actions .text-link { min-height: 52px; align-items: center; }
.trust-list { width: 100%; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px 16px; margin: 30px 0 0; padding: 0; list-style: none; color: #c1bfca; font-size: .78rem; }
.trust-list li { display: flex; align-items: flex-start; gap: 7px; line-height: 1.45; }
.trust-list li span { color: var(--cyan); }

.tech-mosaic { width: 100%; max-width: 760px; justify-self: end; display: grid; grid-template-columns: 1.04fr .82fr .94fr; grid-template-rows: 172px 150px 84px; gap: 13px; transform: rotate(1deg); }
.tech-tile, .mosaic-contact { margin: 0; overflow: hidden; border-radius: 45px; box-shadow: var(--shadow); }
.tech-tile { position: relative; background: var(--surface); }
.tech-tile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 62%, rgba(7, 8, 13, .2)); }
.tech-tile img { filter: saturate(.84) contrast(1.04); transition: transform .55s ease, filter .55s ease; }
.tech-tile:hover img { transform: scale(1.035); filter: saturate(.95) contrast(1.05); }
.tech-primary { grid-row: span 2; background: var(--violet); border-radius: 62px 62px 34px 62px; }
.tech-orange { background: var(--orange); border-radius: 62px 38px 62px 62px; }
.tech-blue { background: var(--blue); border-radius: 38px 62px 62px 38px; }
.tech-cyan { background: var(--cyan); border-radius: 62px 62px 38px 62px; }
.tech-support { background: var(--orange); border-radius: 42px 62px 42px 42px; }
.tech-primary img { object-position: 50% 48%; }
.tech-orange img { object-position: 50% 54%; }
.tech-blue img { object-position: 52% 50%; }
.tech-cyan img { object-position: 50% 48%; }
.tech-support img { object-position: 50% 58%; }
.mosaic-contact { grid-column: 1 / -1; padding: 0 18px; display: flex; justify-content: center; align-items: center; gap: 16px; background: linear-gradient(110deg, rgba(159,130,255,.92), rgba(101,169,255,.92) 52%, rgba(97,216,208,.9)); border: 1px solid rgba(255,255,255,.18); color: #090a11; font-size: clamp(1.28rem, 1.7vw, 1.52rem); line-height: 1; letter-spacing: .015em; font-weight: 880; transition: transform .22s ease, filter .22s ease, box-shadow .22s ease; }
.mosaic-contact b { flex: 0 0 auto; width: 40px; height: 40px; display: grid; place-items: center; background: rgba(9,10,17,.12); border: 1px solid rgba(9,10,17,.16); border-radius: 50%; font-size: 1.35rem; line-height: 1; transition: transform .22s ease; }
.mosaic-contact:hover { transform: translateY(-3px); filter: saturate(1.08) brightness(1.04); box-shadow: 0 28px 80px rgba(34, 31, 59, .38); }
.mosaic-contact:hover b { transform: translate(2px, -2px); }
.mosaic-contact:focus-visible { outline: 3px solid white; outline-offset: 4px; }

.audience-section, .services-section { padding: 110px 0; }
.section-heading { display: grid; grid-template-columns: minmax(0, 760px) auto; justify-content: space-between; align-items: end; gap: 30px; margin-bottom: 46px; }
.section-heading h2, .about-strip h2, .contact-band h2 { margin: 0; font-size: clamp(2.35rem, 4.6vw, 4.6rem); line-height: 1.02; letter-spacing: -.055em; }
.audience-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.audience-card { position: relative; min-height: 340px; padding: 42px; overflow: hidden; display: flex; flex-direction: column; background: linear-gradient(145deg, rgba(159, 130, 255, .14), rgba(17, 19, 29, .82)); border: 1px solid rgba(159, 130, 255, .24); border-radius: var(--radius-lg); cursor: pointer; }
.audience-card-alt { background: linear-gradient(145deg, rgba(97, 216, 208, .12), rgba(17, 19, 29, .82)); border-color: rgba(97, 216, 208, .22); }
.audience-card h3 { margin-bottom: 14px; font-size: 2.25rem; letter-spacing: -.04em; }
.audience-card > p:not(.card-kicker) { max-width: 510px; color: var(--muted); }
.audience-card-cta { margin-top: auto; padding-top: 30px; font-weight: 800; font-size: .86rem; }
.audience-card-cta > span { display: inline-block; color: var(--violet); margin-left: 8px; transition: transform .2s ease; }
.audience-card-alt .audience-card-cta > span { color: var(--cyan); }

.services-section { padding-top: 82px; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.service-card { min-height: 230px; padding: 30px; background: rgba(17, 19, 29, .68); border: 1px solid var(--line); border-radius: var(--radius-md); transition: transform .25s ease, border-color .25s ease, background .25s ease; }
.service-card:hover { transform: translateY(-5px); border-color: rgba(159, 130, 255, .32); background: rgba(23, 26, 37, .88); }
.service-card:nth-child(3n + 2):hover { border-color: rgba(255, 147, 87, .34); }
.service-card:nth-child(3n):hover { border-color: rgba(97, 216, 208, .32); }
.service-icon { display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; margin-bottom: 35px; border-radius: 14px; background: rgba(159, 130, 255, .14); color: var(--violet); }
.service-icon svg, .value-icon svg, .profile-icon svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.service-card:nth-child(3n + 2) .service-icon, .detail-card:nth-child(3n + 2) .service-icon { background: rgba(255,147,87,.14); color: var(--orange); }
.service-card:nth-child(3n) .service-icon, .detail-card:nth-child(3n) .service-icon { background: rgba(97,216,208,.13); color: var(--cyan); }
.service-card h3 { margin-bottom: 8px; font-size: 1.25rem; }
.service-card p { margin-bottom: 0; color: var(--muted); font-size: .9rem; }

.about-strip { margin-block: 60px 130px; padding: 64px; display: grid; grid-template-columns: 1.2fr .8fr; align-items: end; gap: 90px; background: #f3f0f8; color: #12131b; border-radius: var(--radius-lg); }
.about-strip .section-label { color: #795fd2; }
.about-strip > p { margin: 0; color: #54525d; font-size: 1.06rem; }
.contact-band { margin-bottom: 55px; padding: 62px; display: flex; align-items: center; justify-content: space-between; gap: 40px; background: linear-gradient(115deg, #8e70ef, #9f82ff 48%, #68d7d0); color: #0c0b12; border-radius: var(--radius-lg); }
.contact-band .section-label { color: rgba(12, 11, 18, .65); }
.contact-band h2 { max-width: 750px; }
.contact-band .button { min-width: 230px; min-height: 68px; padding-inline: 32px; gap: 16px; border-radius: 18px; font-size: 1.08rem; white-space: nowrap; }

.trusted-section { position: relative; margin-bottom: 70px; padding: 48px; overflow: hidden; background: radial-gradient(circle at 90% 0, rgba(97,216,208,.08), transparent 24rem), linear-gradient(145deg, rgba(18,20,30,.94), rgba(11,12,19,.9)); border: 1px solid var(--line); border-radius: var(--radius-lg); }
.trusted-section::before { content: ""; position: absolute; width: 260px; height: 260px; left: -170px; bottom: -180px; border: 1px solid rgba(159,130,255,.2); border-radius: 50%; pointer-events: none; }
.trusted-heading { position: relative; display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: end; gap: 35px; margin-bottom: 34px; }
.trusted-heading h2 { margin: 0; font-size: clamp(2.2rem, 4.4vw, 4.3rem); line-height: 1; letter-spacing: -.055em; }
.trusted-lead { max-width: 650px; margin: 18px 0 0; color: var(--muted); }
.trusted-carousel-controls { display: flex; gap: 9px; }
.trusted-carousel-controls button { width: 46px; height: 46px; display: grid; place-items: center; background: rgba(255,255,255,.045); color: white; border: 1px solid var(--line); border-radius: 15px; cursor: pointer; font-size: 1.1rem; transition: color .2s ease, border-color .2s ease, background .2s ease; }
.trusted-carousel-controls button:hover:not(:disabled), .trusted-carousel-controls button:focus-visible { color: var(--cyan); border-color: rgba(97,216,208,.38); background: rgba(97,216,208,.08); }
.trusted-carousel-controls button:focus-visible { outline: 2px solid var(--cyan); outline-offset: 3px; }
.trusted-carousel-controls button:disabled { opacity: .25; cursor: default; }
.trusted-section.is-static .trusted-carousel-controls { visibility: hidden; }
.trusted-carousel-track { position: relative; display: grid; grid-auto-flow: column; grid-auto-columns: minmax(240px, calc((100% - 28px) / 3)); gap: 14px; padding: 2px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-padding-inline: 2px; overscroll-behavior-inline: contain; scrollbar-width: none; touch-action: pan-x; -webkit-overflow-scrolling: touch; }
.trusted-carousel-track::-webkit-scrollbar { display: none; }
.trusted-carousel-track:focus-visible { outline: 2px solid rgba(159,130,255,.55); outline-offset: 5px; border-radius: 20px; }
.trusted-company-card { min-width: 0; min-height: 222px; padding: 16px; display: grid; grid-template-rows: 150px auto; gap: 16px; scroll-snap-align: start; scroll-snap-stop: always; background: rgba(8,9,15,.62); border: 1px solid var(--line); border-radius: 22px; transition: border-color .22s ease, background .22s ease, box-shadow .22s ease; }
.trusted-company-card:nth-child(3n + 2) { border-color: rgba(255,147,87,.16); }
.trusted-company-card:nth-child(3n) { border-color: rgba(97,216,208,.15); }
.trusted-company-card:hover { border-color: rgba(159,130,255,.4); background: rgba(18,20,30,.9); box-shadow: inset 0 0 0 1px rgba(159,130,255,.16); }
.trusted-company-card:nth-child(3n + 2):hover { border-color: rgba(255,147,87,.42); box-shadow: inset 0 0 0 1px rgba(255,147,87,.16); }
.trusted-company-card:nth-child(3n):hover { border-color: rgba(97,216,208,.4); box-shadow: inset 0 0 0 1px rgba(97,216,208,.15); }
.trusted-company-card:focus-visible { outline: 2px solid var(--violet); outline-offset: -2px; }
.trusted-logo-frame { position: relative; min-width: 0; min-height: 0; overflow: hidden; border-radius: 16px; }
.trusted-logo-frame-light { background: #f6f6f2; }
.trusted-logo-frame-dark { background: #020305; }
.trusted-logo-frame img { position: absolute; inset: 16px; width: calc(100% - 32px); height: calc(100% - 32px); object-fit: contain; }
.trusted-company-meta { min-width: 0; display: flex; align-items: center; justify-content: space-between; gap: 14px; color: #dedbe5; font-size: .82rem; }
.trusted-company-meta strong { min-width: 0; overflow: hidden; text-overflow: clip; white-space: normal; line-height: 1.3; }
.trusted-company-meta > span { flex: 0 0 auto; color: var(--violet); font-size: 1rem; transition: transform .2s ease; }
.trusted-company-card:nth-child(3n + 2) .trusted-company-meta > span { color: var(--orange); }
.trusted-company-card:nth-child(3n) .trusted-company-meta > span { color: var(--cyan); }
.trusted-company-card:is(:hover, :focus-visible) .trusted-company-meta > span { transform: translate(2px, -2px); }

.site-footer { width: min(calc(100% - var(--page-inset)), var(--content)); margin: 0 auto; padding: 32px 0 45px; display: grid; grid-template-columns: .8fr 1fr auto; align-items: center; gap: 28px; border-top: 1px solid var(--line); color: var(--muted); font-size: .75rem; }
.site-footer p { margin: 0; }
.brand-footer { color: white; }
.footer-meta { display: grid; gap: 3px; }
.footer-links { display: flex; align-items: center; justify-content: flex-end; gap: 18px; }
.footer-links a:hover, .footer-links a:focus-visible { color: white; }

.page-hero { min-height: 525px; padding: 130px 0 90px; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; }
.page-hero h1 { max-width: 1200px; }
.page-hero .hero-lead { max-width: 810px; }
.page-hero-compact { min-height: 430px; padding-bottom: 65px; }
.detail-section, .values-section, .faq-list, .legal-content, .privacy-content { padding-bottom: 125px; }
.detail-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; }
.detail-card { min-height: 245px; padding: 34px; background: linear-gradient(150deg, rgba(23,26,37,.82), rgba(12,13,21,.7)); border: 1px solid var(--line); border-radius: var(--radius-md); }
.detail-card:nth-child(4n + 2) { border-color: rgba(255,147,87,.18); }
.detail-card:nth-child(4n + 3) { border-color: rgba(97,216,208,.16); }
.detail-card h2 { margin-bottom: 10px; font-size: 1.55rem; letter-spacing: -.03em; }
.detail-card p { max-width: 530px; margin-bottom: 0; color: var(--muted); }
.information-note { margin-top: 22px; padding: 24px 28px; display: flex; align-items: flex-start; gap: 17px; background: rgba(159,130,255,.08); border: 1px solid rgba(159,130,255,.18); border-radius: 20px; }
.information-note > span { flex: 0 0 auto; width: 30px; height: 30px; display: grid; place-items: center; background: var(--violet); color: #101019; border-radius: 10px; font-weight: 900; }
.information-note p { margin: 2px 0 0; color: #c9c6d3; font-size: .9rem; }

.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }
.value-card { min-height: 300px; padding: 36px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); }
.value-icon { width: 48px; height: 48px; margin-bottom: 72px; display: inline-grid; place-items: center; color: var(--violet); background: rgba(159,130,255,.13); border-radius: 15px; }
.value-card:nth-child(2) .value-icon { color: var(--orange); background: rgba(255,147,87,.13); }
.value-card:nth-child(3) .value-icon { color: var(--cyan); background: rgba(97,216,208,.12); }
.value-card h2 { margin-bottom: 8px; font-size: 2rem; letter-spacing: -.04em; }
.value-card p { margin: 0; color: var(--muted); }
.experience-panel { margin-top: 18px; padding: 55px 62px; display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 62px; background: linear-gradient(120deg, #8e70ef, #a78aff 54%, #63d9d0); color: #111019; border-radius: var(--radius-lg); }
.experience-number { margin: 0; font-size: clamp(7rem, 15vw, 12rem); line-height: .75; letter-spacing: -.09em; font-weight: 900; }
.experience-panel .section-label { color: rgba(17,16,25,.6); }
.experience-panel h2 { margin: 0; font-size: clamp(2rem, 4vw, 4.2rem); line-height: 1; letter-spacing: -.055em; }

.contact-hero { min-height: 430px; padding-bottom: 58px; }
.contact-layout { padding-bottom: 125px; display: grid; grid-template-columns: minmax(0, 1.38fr) minmax(300px, .62fr); gap: 18px; align-items: start; }
.contact-form-panel, .contact-details { padding: 42px; background: rgba(17,19,29,.78); border: 1px solid var(--line); border-radius: var(--radius-lg); }
.form-message { margin: 0 0 24px; padding: 14px 16px; border-radius: 13px; font-size: .88rem; }
.form-message-success { background: rgba(97,216,208,.12); border: 1px solid rgba(97,216,208,.24); color: #bff6ef; }
.form-message-error { background: rgba(255,112,112,.1); border: 1px solid rgba(255,112,112,.22); color: #ffc6c6; }
.profile-choice { margin: 0 0 28px; padding: 0; border: 0; }
.profile-choice legend { margin-bottom: 10px; color: #d7d4df; font-size: .78rem; font-weight: 750; }
.profile-choice { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.profile-choice legend { grid-column: 1 / -1; }
.profile-choice label { position: relative; cursor: pointer; }
.profile-choice input { position: absolute; opacity: 0; }
.profile-choice label > span { min-height: 72px; padding: 15px 17px; display: flex; align-items: center; gap: 13px; background: #0d0f17; border: 1px solid var(--line); border-radius: 16px; font-weight: 750; transition: border-color .2s ease, background .2s ease; }
.profile-icon { flex: 0 0 auto; width: 34px; height: 34px; display: inline-grid; place-items: center; color: var(--violet); background: rgba(159,130,255,.12); border-radius: 11px; }
.profile-icon svg { width: 19px; height: 19px; }
.profile-choice label:nth-of-type(2) .profile-icon { color: var(--cyan); background: rgba(97,216,208,.11); }
.profile-choice input:checked + span { border-color: var(--violet); background: rgba(159,130,255,.11); }
.profile-choice input:focus-visible + span { outline: 2px solid white; outline-offset: 2px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 15px; }
.field { display: flex; flex-direction: column; gap: 8px; color: #d8d5e0; font-size: .78rem; font-weight: 700; }
.field-wide { grid-column: 1 / -1; }
.field input, .field textarea, .field select { width: 100%; border: 1px solid var(--line); border-radius: 13px; background: #0d0f17; color: white; outline: none; font-size: 1rem; font-weight: 500; }
.field input, .field select { min-height: 49px; padding: 0 14px; }
.field textarea { min-height: 150px; padding: 13px 14px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--violet); box-shadow: 0 0 0 3px rgba(159,130,255,.1); }
.field small, .field-invalid { color: #ffaaaa; }
.field.is-required > span::after { content: " *"; color: var(--orange); }
.privacy-check { margin: 24px 0; display: flex; align-items: flex-start; gap: 11px; color: var(--muted); font-size: .78rem; cursor: pointer; }
.privacy-check input { margin-top: 4px; accent-color: var(--violet); }
.privacy-check a { color: white; text-decoration: underline; text-underline-offset: 3px; }
.form-submit { border: 0; cursor: pointer; }
.honeypot { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.contact-details { position: sticky; top: 112px; }
.contact-details h2 { margin-bottom: 35px; font-size: 2rem; line-height: 1.08; letter-spacing: -.04em; }
.contact-details dl { margin: 0; display: grid; gap: 0; }
.contact-details dl > div { padding: 17px 0; border-top: 1px solid var(--line); }
.contact-details dt { color: var(--muted); font-size: .68rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.contact-details dd { margin: 4px 0 0; font-weight: 700; overflow-wrap: anywhere; }
.contact-note { margin: 25px 0 0; color: var(--muted); font-size: .78rem; }

.faq-list { max-width: 1180px; }
.faq-item { border-top: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-item summary { min-height: 92px; padding: 20px 0; overflow: hidden; display: grid; grid-template-columns: 45px minmax(0, 1fr) auto; align-items: center; gap: 18px; cursor: pointer; list-style: none; font-size: 1.12rem; font-weight: 780; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { content: ""; }
.faq-item summary > span { color: var(--violet); font-size: .72rem; }
.faq-item summary i { color: var(--cyan); font-size: 1.6rem; font-style: normal; transition: transform .2s ease; }
.faq-item[open] summary i { transform: rotate(45deg); }
.faq-item > p { margin: 0 60px 30px 63px; color: var(--muted); }
.legal-content { max-width: 1180px; }
.legal-content dl { margin: 0; }
.legal-content dl > div { padding: 25px 0; display: grid; grid-template-columns: 230px 1fr; gap: 30px; border-top: 1px solid var(--line); }
.legal-content dt { color: var(--muted); }
.legal-content dd { min-width: 0; margin: 0; font-weight: 700; overflow-wrap: anywhere; }
.legal-note { margin: 28px 0 0; padding: 18px 20px; color: #d8d5e0; background: rgba(159,130,255,.07); border: 1px solid rgba(159,130,255,.18); border-radius: 16px; font-size: .82rem; line-height: 1.65; }
.privacy-content { max-width: 1180px; }
.privacy-content article { padding: 28px 0; display: grid; grid-template-columns: 62px 1fr; gap: 28px; border-top: 1px solid var(--line); }
.privacy-content article > span { color: var(--violet); font-size: .75rem; font-weight: 850; }
.privacy-content article > div { min-width: 0; }
.privacy-content h2 { margin-bottom: 9px; font-size: 1.35rem; }
.privacy-content p { margin: 0; color: var(--muted); }
.privacy-content a { overflow-wrap: anywhere; word-break: break-word; }
.privacy-content p a, .legal-content a, .footer-meta a { color: inherit; text-decoration: underline; text-underline-offset: 3px; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.audience-card.reveal { transition: opacity .65s ease, transform .65s ease, border-color .25s ease, box-shadow .25s ease; }
.audience-card.reveal.is-visible:hover { transform: translateY(-5px); border-color: rgba(159, 130, 255, .48); box-shadow: 0 24px 70px rgba(0, 0, 0, .24); }
.audience-card-alt.reveal.is-visible:hover { border-color: rgba(97, 216, 208, .46); }
.audience-card:focus-visible { outline: 2px solid var(--violet); outline-offset: 4px; }
.audience-card-alt:focus-visible { outline-color: var(--cyan); }
.audience-card:is(:hover, :focus-visible) .audience-card-cta > span { transform: translateX(4px); }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; } .reveal, .audience-card.reveal.is-visible:hover, .trusted-company-card:hover { opacity: 1; transform: none; } }

@media (max-width: 1120px) {
  .site-header { grid-template-columns: auto auto 1fr; }
  .menu-toggle { width: 44px; height: 44px; display: block; padding: 11px; }
  .main-navigation { position: absolute; left: 0; right: 0; top: calc(100% + 8px); display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 16px; background: rgba(12,13,21,.97); border: 1px solid var(--line); border-radius: 20px; box-shadow: var(--shadow); }
  .main-navigation.is-open { display: flex; }
  .main-navigation a { padding: 13px 12px; }
  .main-navigation .mobile-contact-link { display: flex; align-items: center; justify-content: space-between; margin-top: 8px; padding: 13px 14px; border-radius: 13px; background: var(--violet); color: #0a0910; font-weight: 850; }
  .main-navigation .mobile-contact-link:is(:hover, :focus-visible, .is-active) { color: #0a0910; }
  .main-navigation a.is-active::after { display: none; }
  .header-actions { justify-self: end; }
}

@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; grid-template-rows: auto; padding-top: 70px; row-gap: 36px; }
  .hero-heading { grid-column: auto; max-width: 880px; }
  .hero-copy { min-height: 0; max-width: 820px; padding-bottom: 0; }
  .hero-actions { order: 1; margin-top: 30px; }
  .trust-list { order: 2; margin-top: 28px; }
  .tech-mosaic { max-width: 650px; width: 100%; justify-self: center; }
  .about-strip { grid-template-columns: 1fr; gap: 35px; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-details { position: static; }
  .value-grid { grid-template-columns: 1fr; }
  .experience-panel { grid-template-columns: 1fr; }
  .site-footer { grid-template-columns: 1fr 1fr; }
  .site-footer .brand { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  .site-header { width: calc(100% - 24px); min-height: 68px; margin-top: 10px; padding: 0 12px 0 16px; gap: 10px; }
  .brand-logo { width: 124px; }
  .header-actions { gap: 6px; }
  .language-link { padding: 8px; }
  .header-contact-button { min-height: 40px; padding-inline: 13px; }
  .section-shell, .site-footer { width: calc(100% - 28px); }
  .hero { min-height: auto; padding: 60px 0 58px; gap: 32px; }
  h1 { font-size: clamp(2.8rem, 14vw, 4.4rem); }
  .hero-heading h1 { font-size: clamp(2.6rem, 12.5vw, 4.1rem); line-height: .98; letter-spacing: -.052em; }
  .trust-list { grid-template-columns: 1fr; gap: 9px; }
  .tech-mosaic { grid-template-columns: 1fr 1fr; grid-template-rows: 170px 155px 118px 76px; gap: 9px; transform: none; }
  .tech-primary { grid-row: span 1; }
  .tech-tile { border-radius: 34px; }
  .tech-support { grid-column: 1 / -1; border-radius: 34px; }
  .mosaic-contact { grid-column: 1 / -1; padding: 0 12px; gap: 12px; font-size: 1.14rem; }
  .mosaic-contact b { width: 32px; height: 32px; font-size: 1.12rem; }
  .audience-section, .services-section { padding: 78px 0; }
  .section-heading { display: block; margin-bottom: 32px; }
  .audience-grid, .service-grid { grid-template-columns: 1fr; }
  .detail-grid, .form-grid { grid-template-columns: 1fr; }
  .audience-card { min-height: 320px; padding: 32px; }
  .page-hero { min-height: auto; padding: 92px 0 70px; }
  .page-hero-compact, .contact-hero { min-height: auto; padding-bottom: 64px; }
  .detail-section, .values-section, .faq-list, .legal-content, .privacy-content { padding-bottom: 88px; }
  .about-strip { margin-block: 35px 90px; padding: 36px 28px; }
  .contact-band { margin-bottom: 40px; padding: 38px 28px; display: block; }
  .contact-band .button { width: 100%; min-height: 60px; margin-top: 28px; }
  .trusted-section { margin-bottom: 40px; padding: 30px 22px; }
  .trusted-heading { grid-template-columns: 1fr; gap: 24px; margin-bottom: 28px; }
  .trusted-carousel-track { grid-auto-columns: minmax(244px, 78%); }
  .trusted-company-card { min-height: 218px; }
  .contact-form-panel, .contact-details { padding: 28px 22px; }
  .profile-choice { grid-template-columns: 1fr; }
  .experience-panel { padding: 42px 28px; gap: 35px; }
  .experience-number { font-size: 8rem; }
  .legal-content dl > div { grid-template-columns: 1fr; gap: 6px; }
  .privacy-content article { grid-template-columns: 35px 1fr; gap: 14px; }
  .faq-item summary { grid-template-columns: 32px minmax(0, 1fr) auto; gap: 10px; }
  .faq-item > p { margin-left: 42px; }
  .site-footer { grid-template-columns: 1fr; gap: 10px; }
  .site-footer .brand { grid-column: auto; margin-bottom: 12px; }
}

@media (max-width: 480px) {
  html { scroll-padding-top: 98px; }
  .site-header { grid-template-columns: auto 42px minmax(0, 1fr); padding-inline: 8px; gap: 4px; }
  .brand-logo { width: 96px; }
  .menu-toggle { width: 42px; height: 42px; padding: 10px; }
  .header-actions { min-width: 0; gap: 0; }
  .header-actions .language-link { display: none; }
  .header-contact-button { min-width: 0; min-height: 42px; padding: 0 10px; gap: 6px; font-size: .72rem; letter-spacing: -.01em; }
  .main-navigation .mobile-language-link { display: flex; align-items: center; min-height: 46px; margin-top: 5px; padding: 12px 14px; color: var(--muted); font-size: .78rem; font-weight: 800; }
  .trusted-section { padding: 28px 18px; border-radius: 28px; }
  .trusted-heading { gap: 20px; margin-bottom: 24px; }
  .trusted-heading h2 { font-size: clamp(2.05rem, 11.5vw, 3rem); }
  .trusted-carousel-track { grid-auto-columns: 100%; gap: 12px; padding-inline: 0; scroll-padding-inline: 0; }
  .trusted-company-card { width: 100%; min-height: 0; padding: 14px; grid-template-rows: clamp(132px, 45vw, 168px) minmax(44px, auto); gap: 12px; }
  .trusted-logo-frame img { inset: 14px; width: calc(100% - 28px); height: calc(100% - 28px); }
  .trusted-company-meta { align-items: center; }
  .contact-band .button, .form-submit { width: 100%; }
  .footer-links { justify-content: flex-start; flex-wrap: wrap; }
}

@media (max-width: 350px) {
  .brand-logo { width: 90px; }
  .header-contact-button { padding-inline: 8px; font-size: .69rem; }
}
