
:root {
  --ink: #122028;
  --ink-soft: #33434b;
  --muted: #64727a;
  --surface: #ffffff;
  --surface-soft: #f4f7f4;
  --surface-green: #f2f9ed;
  --line: #dfe7df;
  --brand: #63bd24;
  --brand-dark: #438d13;
  --brand-ink: #24470f;
  --shadow-sm: 0 10px 30px rgba(18, 32, 40, .07);
  --shadow-md: 0 22px 60px rgba(18, 32, 40, .11);
  --radius-sm: 14px;
  --radius: 22px;
  --radius-lg: 34px;
  --container: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; color-scheme: light; }
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;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; }
a { color: var(--brand-dark); text-decoration-thickness: .08em; text-underline-offset: .18em; }
a:hover { color: var(--brand-ink); }
button, input, textarea, select { font: inherit; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.skip-link { position: fixed; left: 12px; top: -70px; z-index: 9999; background: var(--ink); color: white; padding: 11px 16px; border-radius: 10px; transition: top .2s; }
.skip-link:focus { top: 12px; }
.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; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 1000; background: rgba(255,255,255,.94); border-bottom: 1px solid rgba(223,231,223,.9); backdrop-filter: blur(14px); }
.header-inner { min-height: 82px; display: flex; align-items: center; gap: 30px; }
.brand { display: flex; align-items: center; flex-shrink: 0; text-decoration: none; }
.brand img { width: 205px; display: block; }
.main-nav { margin-left: auto; display: flex; align-items: center; gap: 7px; }
.main-nav a { color: var(--ink-soft); text-decoration: none; font-weight: 650; font-size: .94rem; padding: 10px 12px; border-radius: 12px; }
.main-nav a:hover, .main-nav a[aria-current="page"] { color: var(--ink); background: var(--surface-soft); }
.header-contact { display: inline-flex; align-items: center; gap: 8px; background: var(--ink); color: white !important; padding: 11px 16px !important; }
.header-contact:hover { background: #263942 !important; }
.lang-menu { position: relative; }
.lang-toggle { border: 1px solid var(--line); background: white; color: var(--ink); border-radius: 12px; padding: 9px 11px; cursor: pointer; font-weight: 700; }
.lang-list { position: absolute; right: 0; top: calc(100% + 10px); min-width: 170px; background: white; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow-sm); padding: 7px; display: none; }
.lang-menu[data-open="true"] .lang-list { display: grid; }
.lang-list a { padding: 9px 11px; border-radius: 9px; text-decoration: none; color: var(--ink-soft); }
.lang-list a:hover, .lang-list a[aria-current="true"] { background: var(--surface-soft); color: var(--ink); }
.nav-toggle { display: none; margin-left: auto; border: 1px solid var(--line); background: white; color: var(--ink); border-radius: 12px; width: 46px; height: 46px; cursor: pointer; }
.nav-toggle span, .nav-toggle::before, .nav-toggle::after { content: ""; display: block; width: 21px; height: 2px; background: currentColor; margin: 5px auto; transition: transform .2s, opacity .2s; }

/* Hero */
.hero { position: relative; overflow: clip; padding: 96px 0 84px; background:
  radial-gradient(circle at 80% 15%, rgba(99,189,36,.18), transparent 31%),
  radial-gradient(circle at 6% 86%, rgba(99,189,36,.09), transparent 28%),
  linear-gradient(180deg, #fff 0%, #fbfdfb 100%); }
.hero::after { content: ""; position: absolute; inset: auto 0 0 auto; width: 44%; height: 70%; opacity: .32; background-image: radial-gradient(#748087 1.2px, transparent 1.2px); background-size: 22px 22px; mask-image: linear-gradient(to top left, #000, transparent 75%); pointer-events: none; }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0,1.12fr) minmax(350px,.88fr); gap: 72px; align-items: center; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 22px; color: var(--brand-ink); font-size: .83rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--brand); }
h1 { margin: 0; font-size: clamp(2.65rem, 6.2vw, 5.6rem); line-height: .98; letter-spacing: -.06em; max-width: 920px; }
h1 .accent { color: var(--brand-dark); }
.hero-lead { margin: 28px 0 0; max-width: 720px; font-size: clamp(1.08rem, 2vw, 1.3rem); line-height: 1.62; color: var(--ink-soft); }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.btn { display: inline-flex; justify-content: center; align-items: center; gap: 9px; min-height: 50px; padding: 12px 19px; border-radius: 13px; font-weight: 780; text-decoration: none; transition: transform .15s, background .15s, box-shadow .15s; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--brand); color: #12200b; box-shadow: 0 10px 24px rgba(99,189,36,.24); }
.btn-primary:hover { background: #70cc2b; color: #12200b; }
.btn-secondary { color: var(--ink); background: white; border: 1px solid var(--line); }
.btn-secondary:hover { color: var(--ink); box-shadow: var(--shadow-sm); }
.trust-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 34px; }
.trust-chip { display: inline-flex; align-items: center; gap: 8px; color: var(--ink-soft); background: rgba(255,255,255,.8); border: 1px solid var(--line); border-radius: 999px; padding: 8px 12px; font-size: .88rem; font-weight: 650; }
.trust-chip svg { width: 17px; height: 17px; color: var(--brand-dark); }
.hero-panel { position: relative; background: rgba(255,255,255,.94); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-md); }
.hero-panel::before { content: ""; position: absolute; inset: -12px 34px auto; height: 5px; border-radius: 999px; background: linear-gradient(90deg,var(--brand),#b7df99); }
.panel-heading { font-weight: 800; font-size: 1.08rem; margin: 0 0 18px; }
.signal-list { display: grid; gap: 13px; }
.signal { display: grid; grid-template-columns: 43px 1fr; gap: 13px; align-items: center; padding: 13px; border-radius: 15px; background: var(--surface-soft); }
.signal-icon { width: 43px; height: 43px; border-radius: 12px; display: grid; place-items: center; background: white; border: 1px solid var(--line); color: var(--brand-dark); }
.signal-icon svg { width: 23px; height: 23px; }
.signal strong { display: block; line-height: 1.25; }
.signal small { color: var(--muted); }
.availability { margin-top: 17px; padding-top: 17px; border-top: 1px solid var(--line); display: flex; align-items: center; gap: 10px; color: var(--ink-soft); font-size: .91rem; }
.status-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--brand); box-shadow: 0 0 0 5px rgba(99,189,36,.15); }

/* Sections */
.section { padding: 92px 0; }
.section-soft { background: var(--surface-soft); }
.section-dark { background: var(--ink); color: white; }
.section-green { background: var(--surface-green); }
.section-head { display: grid; grid-template-columns: minmax(0, .78fr) minmax(280px, .42fr); gap: 50px; align-items: end; margin-bottom: 44px; }
.kicker { color: var(--brand-dark); text-transform: uppercase; letter-spacing: .12em; font-weight: 850; font-size: .78rem; }
.section-dark .kicker { color: #9ad66c; }
h2 { margin: 10px 0 0; font-size: clamp(2rem, 4.4vw, 3.6rem); line-height: 1.07; letter-spacing: -.045em; }
.section-intro { color: var(--muted); margin: 0; font-size: 1.06rem; }
.section-dark .section-intro { color: #c1cbd0; }
h3 { line-height: 1.22; letter-spacing: -.025em; }
.audience-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 22px; }
.audience-card { position: relative; display: flex; flex-direction: column; min-height: 390px; padding: 34px; background: white; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.audience-card::after { content: ""; position: absolute; right: -55px; bottom: -75px; width: 220px; height: 220px; border-radius: 50%; background: rgba(99,189,36,.08); }
.audience-card .number { color: var(--brand-dark); font-size: .82rem; font-weight: 850; letter-spacing: .12em; }
.audience-card h3 { font-size: 1.75rem; margin: 17px 0 12px; }
.audience-card p { color: var(--muted); margin: 0; }
.audience-card ul { list-style: none; margin: 23px 0 29px; padding: 0; display: grid; gap: 9px; }
.audience-card li { display: flex; gap: 10px; color: var(--ink-soft); }
.audience-card li::before { content: "✓"; color: var(--brand-dark); font-weight: 900; }
.audience-card .text-link { margin-top: auto; position: relative; z-index: 1; font-weight: 800; text-decoration: none; }
.service-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 17px; }
.service-card { padding: 25px; background: white; border: 1px solid var(--line); border-radius: var(--radius-sm); transition: transform .18s, box-shadow .18s, border-color .18s; }
.service-card:hover { transform: translateY(-4px); border-color: #b9d9a1; box-shadow: var(--shadow-sm); }
.service-icon { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 14px; background: var(--surface-green); color: var(--brand-dark); }
.service-icon svg { width: 25px; height: 25px; }
.service-card h3 { margin: 20px 0 9px; font-size: 1.16rem; }
.service-card p { margin: 0; color: var(--muted); font-size: .95rem; }
.process-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 25px; counter-reset: step; }
.process-step { counter-increment: step; border-top: 2px solid #d7e4d0; padding-top: 22px; }
.process-step::before { content: "0" counter(step); color: var(--brand-dark); font-size: .83rem; font-weight: 900; letter-spacing: .1em; }
.process-step h3 { margin: 12px 0 8px; font-size: 1.15rem; }
.process-step p { margin: 0; color: var(--muted); font-size: .94rem; }
.split { display: grid; grid-template-columns: minmax(0,1fr) minmax(340px,.86fr); gap: 70px; align-items: center; }
.prose > *:first-child { margin-top: 0; }
.prose p { color: var(--ink-soft); }
.check-list { list-style: none; padding: 0; margin: 25px 0 0; display: grid; gap: 12px; }
.check-list li { display: grid; grid-template-columns: 23px 1fr; gap: 10px; }
.check-list li::before { content: "✓"; display: grid; place-items: center; width: 22px; height: 22px; border-radius: 50%; background: var(--brand); color: #15200f; font-size: .78rem; font-weight: 900; margin-top: 2px; }
.illustration { position: relative; min-height: 430px; border-radius: var(--radius-lg); background: linear-gradient(150deg,#17262d,#273a43); overflow: hidden; box-shadow: var(--shadow-md); }
.illustration::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px), linear-gradient(90deg,rgba(255,255,255,.055) 1px, transparent 1px); background-size: 32px 32px; mask-image: linear-gradient(135deg,#000,transparent 85%); }
.server-stack { position: absolute; left: 12%; bottom: 15%; width: 55%; display: grid; gap: 13px; }
.server { position: relative; height: 66px; border-radius: 14px; background: linear-gradient(180deg,#eef3f4,#cbd5d9); box-shadow: 0 15px 30px rgba(0,0,0,.25); }
.server::before { content: ""; position: absolute; left: 19px; top: 25px; width: 10px; height: 10px; border-radius: 50%; background: var(--brand); box-shadow: 23px 0 0 #86db48; }
.server::after { content: ""; position: absolute; right: 20px; top: 28px; width: 42%; height: 5px; border-radius: 9px; background: #7f919a; }
.cloud-ring { position: absolute; right: 7%; top: 13%; width: 43%; aspect-ratio: 1; border-radius: 50%; border: 22px solid rgba(99,189,36,.82); border-left-color: transparent; transform: rotate(-23deg); }
.oss-tags { position: absolute; right: 7%; bottom: 12%; display: flex; flex-wrap: wrap; width: 51%; gap: 8px; justify-content: flex-end; }
.oss-tags span { padding: 7px 10px; border-radius: 999px; background: rgba(255,255,255,.93); color: var(--ink); font-size: .78rem; font-weight: 750; box-shadow: 0 6px 15px rgba(0,0,0,.16); }
.metrics { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 16px; margin-top: 25px; }
.metric { padding: 20px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: white; }
.metric strong { display: block; font-size: 1.18rem; }
.metric span { color: var(--muted); font-size: .88rem; }
.dark-cards { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 18px; }
.dark-card { border: 1px solid #3b4d55; border-radius: var(--radius); padding: 28px; background: rgba(255,255,255,.04); }
.dark-card h3 { margin: 18px 0 9px; }
.dark-card p { color: #b8c4c9; margin: 0; }
.dark-icon { color: #9ad66c; }
.dark-icon svg { width: 28px; height: 28px; }

/* Inner pages */
.page-hero { padding: 82px 0 64px; background: linear-gradient(180deg,#f7faf7,#fff); border-bottom: 1px solid var(--line); }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; color: var(--muted); font-size: .86rem; margin-bottom: 24px; }
.breadcrumbs a { color: var(--muted); text-decoration: none; }
.breadcrumbs span[aria-hidden="true"] { color: #a6b0b5; }
.page-hero h1 { font-size: clamp(2.5rem,5vw,4.7rem); max-width: 950px; }
.page-hero .hero-lead { max-width: 780px; }
.page-layout { display: grid; grid-template-columns: minmax(0,1fr) 330px; gap: 64px; align-items: start; }
.content-block + .content-block { margin-top: 60px; }
.content-block h2 { font-size: clamp(1.75rem,3.4vw,2.75rem); }
.content-block h3 { margin-top: 28px; }
.content-block p, .content-block li { color: var(--ink-soft); }
.content-block ul { padding-left: 1.25rem; }
.sidebar { position: sticky; top: 112px; display: grid; gap: 17px; }
.side-card { border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; background: white; box-shadow: var(--shadow-sm); }
.side-card h2, .side-card h3 { margin: 0 0 10px; font-size: 1.12rem; }
.side-card p { color: var(--muted); font-size: .93rem; }
.side-links { display: grid; gap: 3px; }
.side-links a { display: flex; justify-content: space-between; padding: 9px 0; text-decoration: none; font-weight: 700; border-bottom: 1px solid var(--line); }
.side-links a:last-child { border-bottom: 0; }
.notice { border-left: 4px solid var(--brand); padding: 20px 22px; background: var(--surface-green); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }
.notice p { margin: 0; }
.feature-table { width: 100%; border-collapse: collapse; margin-top: 25px; }
.feature-table th, .feature-table td { padding: 15px 14px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.feature-table th { color: var(--ink); font-size: .9rem; background: var(--surface-soft); }
.feature-table td { color: var(--ink-soft); }
.feature-table tr:last-child td { border-bottom: 0; }
.contact-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 18px; }
.contact-card { padding: 25px; border: 1px solid var(--line); border-radius: var(--radius); background: white; }
.contact-card h3 { margin: 15px 0 7px; }
.contact-card p { margin: 0; color: var(--muted); }
.contact-card a { font-weight: 750; word-break: break-word; }
.map-embed { border-radius: var(--radius-lg); border: 1px solid var(--line); overflow: hidden; background: #fff; box-shadow: var(--shadow-sm); }
.map-embed iframe { display: block; width: 100%; height: 390px; border: 0; background: #edf2ed; }
.map-caption { padding: 16px 18px; border-top: 1px solid var(--line); background: #fff; text-align: center; line-height: 1.6; }
.map-caption a { color: var(--brand-dark); font-weight: 750; text-decoration: none; }
.map-caption a:hover { text-decoration: underline; }

/* FAQ and CTA */
.faq { max-width: 930px; margin: 0 auto; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { cursor: pointer; list-style: none; font-weight: 780; font-size: 1.06rem; padding: 20px 38px 20px 0; position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 6px; top: 17px; font-size: 1.45rem; color: var(--brand-dark); }
.faq details[open] summary::after { content: "−"; }
.faq details p { color: var(--muted); margin: -5px 0 22px; max-width: 800px; }
.cta { position: relative; overflow: hidden; border-radius: var(--radius-lg); background: var(--ink); color: white; padding: 56px; }
.cta::after { content: ""; position: absolute; width: 330px; height: 330px; border-radius: 50%; background: rgba(99,189,36,.18); right: -110px; top: -160px; }
.cta-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0,1fr) auto; align-items: center; gap: 40px; }
.cta h2 { margin: 0; max-width: 760px; }
.cta p { color: #c7d0d4; margin-bottom: 0; }
.cta .btn-primary { white-space: nowrap; }

/* Footer */
.site-footer { padding: 65px 0 30px; background: #0d181d; color: #d9e0e3; }
.footer-grid { display: grid; grid-template-columns: 1.35fr repeat(3,minmax(0,.65fr)); gap: 50px; }
.footer-logo { width: 215px; filter: brightness(0) invert(1); opacity: .94; }
.footer-about { color: #9fadb4; max-width: 420px; }
.footer-title { margin: 0 0 13px; color: white; font-size: .86rem; text-transform: uppercase; letter-spacing: .1em; }
.footer-links { display: grid; gap: 8px; }
.footer-links a { color: #bdc8cd; text-decoration: none; }
.footer-links a:hover { color: white; }
.footer-bottom { margin-top: 45px; padding-top: 23px; border-top: 1px solid #2b3a42; display: flex; justify-content: space-between; gap: 24px; color: #8f9da4; font-size: .86rem; }
.footer-bottom a { color: #aebbc1; }

@media (max-width: 1050px) {
  .main-nav { position: fixed; left: 20px; right: 20px; top: 92px; display: none; flex-direction: column; align-items: stretch; background: white; border: 1px solid var(--line); border-radius: 20px; box-shadow: var(--shadow-md); padding: 14px; }
  body.nav-open .main-nav { display: flex; }
  .main-nav a { padding: 12px 13px; }
  .lang-menu { margin-top: 5px; }
  .lang-toggle { width: 100%; text-align: left; }
  .lang-list { position: static; box-shadow: none; margin-top: 7px; }
  .nav-toggle { display: block; }
  body.nav-open .nav-toggle span { opacity: 0; }
  body.nav-open .nav-toggle::before { transform: translateY(7px) rotate(45deg); }
  body.nav-open .nav-toggle::after { transform: translateY(-7px) rotate(-45deg); }
  .hero-grid, .split { grid-template-columns: 1fr; }
  .hero-panel { max-width: 680px; }
  .service-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .page-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; grid-template-columns: repeat(2,minmax(0,1fr)); }
  .footer-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
}
@media (max-width: 760px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .header-inner { min-height: 70px; }
  .brand img { width: 166px; }
  .main-nav { top: 78px; left: 14px; right: 14px; }
  .hero { padding: 70px 0 60px; }
  .hero-grid { gap: 48px; }
  h1 { font-size: clamp(2.55rem,13vw,4rem); }
  .hero-panel { padding: 23px; border-radius: 25px; }
  .section { padding: 70px 0; }
  .section-head { grid-template-columns: 1fr; gap: 18px; margin-bottom: 32px; }
  .audience-grid, .service-grid, .process-grid, .dark-cards, .metrics, .contact-grid { grid-template-columns: 1fr; }
  .audience-card { min-height: auto; padding: 27px; }
  .illustration { min-height: 340px; }
  .page-hero { padding: 58px 0 50px; }
  .page-layout { gap: 44px; }
  .sidebar { grid-template-columns: 1fr; }
  .feature-table { display: block; overflow-x: auto; }
  .cta { padding: 36px 27px; }
  .cta-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-bottom { flex-direction: column; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; transition-duration: .01ms !important; }
}


/* Cookie consent */
.cookie-banner {
  position: fixed;
  z-index: 1200;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  padding: 1rem;
  border: 1px solid rgba(99, 189, 36, 0.28);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 55px rgba(15, 27, 35, 0.2);
  backdrop-filter: blur(12px);
}

.cookie-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.cookie-banner-copy {
  max-width: 760px;
}

.cookie-banner h2 {
  margin: 0 0 0.35rem;
  font-size: 1.15rem;
}

.cookie-banner p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.55;
}

.cookie-banner a {
  color: var(--brand-dark);
  font-weight: 700;
}

.cookie-banner-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 0.65rem;
}

.cookie-banner-actions .btn {
  min-height: 44px;
  white-space: nowrap;
}

.cookie-settings-button {
  position: fixed;
  z-index: 1100;
  bottom: 0.75rem;
  left: 0.75rem;
  padding: 0.55rem 0.8rem;
  border: 1px solid rgba(99, 189, 36, 0.35);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 8px 24px rgba(15, 27, 35, 0.14);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
}

.cookie-settings-button:hover,
.cookie-settings-button:focus-visible {
  border-color: var(--brand);
  color: var(--brand-dark);
}

@media (max-width: 760px) {
  .cookie-banner {
    right: 0.65rem;
    bottom: 0.65rem;
    left: 0.65rem;
    padding: 1rem;
    border-radius: 15px;
  }

  .cookie-banner-inner,
  .cookie-banner-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .cookie-banner-actions {
    width: 100%;
  }

  .cookie-banner-actions .btn {
    justify-content: center;
    width: 100%;
  }
}
