@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:wght@400;500;600;700;800&family=Inter:wght@400;500;600&display=swap');

:root {
  --c-bg: #0d1117;
  --c-surface: #161b22;
  --c-card: #1c2330;
  --c-border: #2a3441;
  --c-primary: #2563eb;
  --c-primary-dark: #1d4ed8;
  --c-primary-glow: rgba(37, 99, 235, 0.25);
  --c-accent: #38bdf8;
  --c-accent-glow: rgba(56, 189, 248, 0.2);
  --c-gold: #f59e0b;
  --c-gold-glow: rgba(245, 158, 11, 0.2);
  --c-success: #10b981;
  --c-text: #e8edf3;
  --c-text-muted: #8b96a5;
  --c-text-dim: #5a6675;
  --nav-h: 72px;
  --r-xs: 4px;
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-2xl: 40px;
  --sp-1: 8px;
  --sp-2: 16px;
  --sp-3: 24px;
  --sp-4: 32px;
  --sp-5: 48px;
  --sp-6: 64px;
  --sp-7: 96px;
  --sp-8: 128px;
  --sh-card: 0 1px 3px rgba(0,0,0,0.4), 0 4px 16px rgba(0,0,0,0.3), 0 0 0 1px rgba(255,255,255,0.04);
  --sh-card-hover: 0 2px 8px rgba(0,0,0,0.5), 0 12px 40px rgba(0,0,0,0.4), 0 0 0 1px rgba(37,99,235,0.3), 0 0 30px rgba(37,99,235,0.08);
  --sh-btn: 0 2px 8px rgba(37,99,235,0.4), 0 0 0 1px rgba(37,99,235,0.2);
  --sh-btn-hover: 0 4px 20px rgba(37,99,235,0.6), 0 0 40px rgba(37,99,235,0.2);
  --sh-sm: 0 1px 4px rgba(0,0,0,0.3), 0 0 0 1px rgba(255,255,255,0.03);
  --font-head: 'Bricolage Grotesque', sans-serif;
  --font-body: 'Inter', sans-serif;
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--c-bg);
  color: var(--c-text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--c-accent);
  transition: color 0.2s ease;
}

a:hover {
  color: var(--c-text);
}


.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--c-primary);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 50px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: var(--sh-btn);
  line-height: 1.4;
}

.btn-primary:hover {
  background: var(--c-primary-dark);
  box-shadow: var(--sh-btn-hover);
  transform: translateY(-1px);
  color: #fff;
}

.btn-primary.btn-lg {
  font-size: 1rem;
  padding: 14px 32px;
}

.btn-primary.btn-full {
  width: 100%;
  justify-content: center;
  font-size: 1rem;
  padding: 14px 24px;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--c-text);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 50px;
  text-decoration: none;
  border: 1px solid var(--c-border);
  cursor: pointer;
  transition: all 0.25s ease;
  line-height: 1.4;
}

.btn-secondary:hover {
  border-color: var(--c-primary);
  color: var(--c-accent);
  background: rgba(37, 99, 235, 0.08);
  transform: translateY(-1px);
}

.btn-secondary.btn-lg {
  font-size: 1rem;
  padding: 14px 32px;
}


.hdr {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: var(--c-bg);
  border-bottom: 1px solid var(--c-border);
  transition: box-shadow 0.3s ease;
  display: flex;
  align-items: center;
}

.hdr.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(37, 99, 235, 0.1);
}

.hdr-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--sp-3);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
}

.hdr-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.hdr-logo img {
  height: 36px;
  width: auto;
}

.hdr-logo span {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--c-text);
  letter-spacing: -0.02em;
  text-decoration: none;
}

.hdr-nav {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
}

.hdr-nav a {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--c-text-muted);
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 50px;
  transition: all 0.25s ease;
  white-space: nowrap;
  border: 1px solid transparent;
}

.hdr-nav a:hover {
  color: var(--c-text);
  background: rgba(255, 255, 255, 0.06);
}

.hdr-nav a.active {
  color: var(--c-text);
  background: rgba(37, 99, 235, 0.2);
  border-color: rgba(37, 99, 235, 0.3);
}

.hdr-cta {
  flex-shrink: 0;
}

.hdr-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--c-text);
  font-size: 1.25rem;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-sm);
  transition: background 0.2s ease;
}

.hdr-hamburger:hover {
  background: rgba(255, 255, 255, 0.06);
}


.mob-tabbar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--c-surface);
  border-top: 1px solid var(--c-border);
  padding: 8px 0 max(8px, env(safe-area-inset-bottom));
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
}

.mob-tabbar .mob-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex: 1;
  text-decoration: none;
  color: var(--c-text-muted);
  font-size: 0.65rem;
  font-weight: 500;
  padding: 4px 8px;
  border-radius: var(--r-sm);
  transition: all 0.2s ease;
  min-height: 44px;
  justify-content: center;
}

.mob-tabbar .mob-tab i {
  font-size: 1.1rem;
}

.mob-tabbar .mob-tab.active {
  color: var(--c-accent);
}

.mob-tabbar .mob-tab:hover {
  color: var(--c-text);
  background: rgba(255, 255, 255, 0.04);
}


.sec {
  padding: var(--sp-7) 0;
}

.sec-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--sp-3);
}

.sec-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--sp-6);
}

.sec-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: var(--sp-2);
  padding: 4px 12px;
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid rgba(56, 189, 248, 0.2);
  border-radius: 50px;
}

.sec-title {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--c-text);
  margin-bottom: var(--sp-2);
}

.sec-desc {
  font-size: 1.05rem;
  color: var(--c-text-muted);
  line-height: 1.7;
}


.sec-hero {
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--sp-7) var(--sp-3) var(--sp-6);
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(37, 99, 235, 0.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 80% 80%, rgba(56, 189, 248, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37, 99, 235, 0.15);
  border: 1px solid rgba(37, 99, 235, 0.3);
  color: var(--c-accent);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: var(--sp-3);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--c-text);
  margin-bottom: var(--sp-3);
  max-width: 900px;
}

.hero-accent {
  background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--c-text-muted);
  max-width: 640px;
  line-height: 1.7;
  margin-bottom: var(--sp-4);
}

.hero-actions {
  display: flex;
  gap: var(--sp-2);
  flex-wrap: wrap;
  margin-bottom: var(--sp-6);
}


.hero-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  padding: var(--sp-3) var(--sp-4);
  max-width: 900px;
  position: relative;
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex: 1;
  position: relative;
  text-align: center;
}

.step-ico {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--c-card);
  border: 1px solid var(--c-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-text-muted);
  font-size: 1.1rem;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.step-item.active .step-ico {
  background: var(--c-primary);
  border-color: var(--c-primary);
  color: #fff;
  box-shadow: 0 0 20px var(--c-primary-glow);
}

.step-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--c-text-muted);
  line-height: 1.3;
  max-width: 100px;
}

.step-item.active .step-label {
  color: var(--c-text);
}

.step-connector {
  position: absolute;
  top: 24px;
  left: calc(50% + 24px);
  right: calc(-50% + 24px);
  height: 1px;
  background: var(--c-border);
}

.step-connector.last {
  display: none;
}


.dash-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--sp-3);
  align-items: start;
}


.crd {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  padding: var(--sp-4);
  box-shadow: var(--sh-card);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.crd::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.02) 0%, transparent 60%);
  pointer-events: none;
  border-radius: inherit;
}

.crd:hover {
  box-shadow: var(--sh-card-hover);
  transform: translateY(-2px);
  border-color: rgba(37, 99, 235, 0.2);
}

.crd-lg {
  grid-column: span 7;
}

.crd-md {
  grid-column: span 5;
}

.crd-sm {
  grid-column: span 3;
}

.crd-wide {
  grid-column: span 12;
  display: flex;
  gap: var(--sp-4);
  align-items: center;
}

.crd-wide-content {
  flex: 1;
}

.crd-wide-img {
  width: 320px;
  flex-shrink: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
}

.crd-accent {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.15) 0%, rgba(56, 189, 248, 0.08) 100%);
  border-color: rgba(37, 99, 235, 0.3);
}

.crd-header {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  margin-bottom: var(--sp-3);
}

.crd-ico {
  width: 44px;
  height: 44px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.crd-ico-blue {
  background: rgba(37, 99, 235, 0.2);
  color: var(--c-accent);
  box-shadow: 0 0 12px rgba(37, 99, 235, 0.2);
}

.crd-ico-cyan {
  background: rgba(56, 189, 248, 0.15);
  color: var(--c-accent);
  box-shadow: 0 0 12px rgba(56, 189, 248, 0.15);
}

.crd-ico-gold {
  background: rgba(245, 158, 11, 0.15);
  color: var(--c-gold);
  box-shadow: 0 0 12px rgba(245, 158, 11, 0.15);
}

.crd-badge {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-text-muted);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--c-border);
  padding: 3px 10px;
  border-radius: 50px;
}

.crd-title {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--c-text);
  line-height: 1.3;
  margin-bottom: var(--sp-2);
  letter-spacing: -0.02em;
}

.crd-txt {
  font-size: 0.9rem;
  color: var(--c-text-muted);
  line-height: 1.65;
  margin-bottom: var(--sp-2);
}

.crd-txt:last-child {
  margin-bottom: 0;
}

.crd-img-wrap {
  margin-top: var(--sp-3);
  border-radius: var(--r-lg);
  overflow: hidden;
  height: 200px;
}

.crd-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.crd:hover .crd-img {
  transform: scale(1.03);
}

.crd-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--c-accent);
  text-decoration: none;
  margin-top: var(--sp-3);
  transition: all 0.2s ease;
}

.crd-link:hover {
  gap: 10px;
  color: var(--c-text);
}


.lang-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: var(--sp-3);
}

.lpill {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--c-border);
  border-radius: 50px;
  padding: 4px 12px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--c-text-muted);
  transition: all 0.2s ease;
}

.lpill:hover {
  border-color: var(--c-primary);
  color: var(--c-text);
  background: rgba(37, 99, 235, 0.1);
}


.sec-how {
  background: var(--c-surface);
}

.how-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: var(--sp-3);
  align-items: start;
}

.how-crd {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  padding: var(--sp-4);
  box-shadow: var(--sh-card);
  transition: all 0.3s ease;
}

.how-crd:hover {
  box-shadow: var(--sh-card-hover);
  transform: translateY(-3px);
  border-color: rgba(37, 99, 235, 0.25);
}

.how-num {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 800;
  color: rgba(37, 99, 235, 0.2);
  line-height: 1;
  margin-bottom: var(--sp-2);
  letter-spacing: -0.05em;
}

.how-ico {
  width: 52px;
  height: 52px;
  background: rgba(37, 99, 235, 0.15);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-accent);
  font-size: 1.3rem;
  margin-bottom: var(--sp-3);
  box-shadow: 0 0 16px rgba(37, 99, 235, 0.15);
}

.how-title {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: var(--sp-2);
  letter-spacing: -0.02em;
}

.how-txt {
  font-size: 0.9rem;
  color: var(--c-text-muted);
  line-height: 1.65;
  margin-bottom: var(--sp-3);
}

.how-detail {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.how-detail span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--c-text-muted);
}

.how-detail span i {
  color: var(--c-success);
  font-size: 0.75rem;
  flex-shrink: 0;
}

.how-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-text-dim);
  font-size: 1.2rem;
  padding-top: 80px;
}


.sector-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--sp-2);
  margin-bottom: var(--sp-5);
}

.sector-crd {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: var(--sp-3) var(--sp-2);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: var(--sh-sm);
}

.sector-crd:hover {
  border-color: rgba(37, 99, 235, 0.4);
  background: rgba(37, 99, 235, 0.08);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.15);
}

.sector-ico {
  width: 48px;
  height: 48px;
  background: rgba(37, 99, 235, 0.12);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-accent);
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.sector-crd:hover .sector-ico {
  background: var(--c-primary);
  box-shadow: 0 0 20px var(--c-primary-glow);
  color: #fff;
}

.sector-name {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--c-text-muted);
  line-height: 1.3;
  transition: color 0.2s ease;
}

.sector-crd:hover .sector-name {
  color: var(--c-text);
}

.sectors-cta {
  text-align: center;
}


.feat-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-6);
  align-items: center;
}

.feat-layout-rev {
  direction: rtl;
}

.feat-layout-rev > * {
  direction: ltr;
}

.feat-img-frame {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.feat-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.feat-img-frame:hover .feat-img {
  transform: scale(1.03);
}

.feat-img-badge {
  position: absolute;
  bottom: var(--sp-3);
  left: var(--sp-3);
  right: var(--sp-3);
  background: rgba(13, 17, 23, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r-md);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--c-text);
  font-size: 0.85rem;
  font-weight: 500;
}

.feat-img-badge i {
  color: var(--c-accent);
}

.feat-content-col {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.feat-txt {
  font-size: 1rem;
  color: var(--c-text-muted);
  line-height: 1.75;
}

.feat-points {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feat-point {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--c-text-muted);
}

.feat-point i {
  color: var(--c-primary);
  font-size: 0.7rem;
  flex-shrink: 0;
}

.sec-feature-alt {
  background: var(--c-surface);
}


.sec-info-dash {
  background: linear-gradient(180deg, var(--c-surface) 0%, var(--c-bg) 100%);
}

.info-dash-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-3);
}

.info-crd {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: var(--sp-4);
  box-shadow: var(--sh-card);
  transition: all 0.3s ease;
}

.info-crd:hover {
  border-color: rgba(37, 99, 235, 0.3);
  transform: translateY(-2px);
  box-shadow: var(--sh-card-hover);
}

.info-ico {
  width: 44px;
  height: 44px;
  background: rgba(37, 99, 235, 0.15);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-accent);
  font-size: 1.1rem;
  margin-bottom: var(--sp-3);
}

.info-title {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: var(--sp-2);
}

.info-txt {
  font-size: 0.875rem;
  color: var(--c-text-muted);
  line-height: 1.65;
}


.sec-cta {
  background: var(--c-bg);
  padding: var(--sp-5) 0 var(--sp-7);
}

.cta-box {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-2xl);
  padding: var(--sp-6);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: var(--sp-5);
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(37, 99, 235, 0.1);
}

.cta-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 0% 50%, rgba(37, 99, 235, 0.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 100% 50%, rgba(56, 189, 248, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.cta-content {
  flex: 1;
  position: relative;
  z-index: 1;
}

.cta-title {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--c-text);
  margin-bottom: var(--sp-2);
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.cta-txt {
  font-size: 1rem;
  color: var(--c-text-muted);
  margin-bottom: var(--sp-4);
  line-height: 1.65;
}

.cta-actions {
  display: flex;
  gap: var(--sp-2);
  flex-wrap: wrap;
}

.cta-img-side {
  width: 340px;
  flex-shrink: 0;
  border-radius: var(--r-xl);
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.cta-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}


.sec-page-hero {
  padding: var(--sp-7) 0 var(--sp-5);
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.05) 0%, transparent 100%);
  border-bottom: 1px solid var(--c-border);
}

.page-hero-content {
  max-width: 800px;
}

.page-hero-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: var(--c-text);
  margin-bottom: var(--sp-3);
}

.page-hero-sub {
  font-size: 1.1rem;
  color: var(--c-text-muted);
  line-height: 1.7;
  max-width: 640px;
}


.approach-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-4);
}

.approach-item {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  padding: var(--sp-4);
  box-shadow: var(--sh-card);
  transition: all 0.3s ease;
  display: flex;
  gap: var(--sp-3);
}

.approach-item:hover {
  border-color: rgba(37, 99, 235, 0.3);
  transform: translateY(-2px);
  box-shadow: var(--sh-card-hover);
}

.approach-ico {
  width: 44px;
  height: 44px;
  background: rgba(37, 99, 235, 0.2);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-accent);
  font-size: 1rem;
  font-weight: 800;
  font-family: var(--font-head);
  flex-shrink: 0;
}

.approach-item h4 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 8px;
}

.approach-item p {
  font-size: 0.875rem;
  color: var(--c-text-muted);
  line-height: 1.65;
}


.svc-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: var(--sp-3) 0;
}

.svc-feat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--c-text-muted);
}

.svc-feat i {
  color: var(--c-success);
  font-size: 0.9rem;
  flex-shrink: 0;
}


.sector-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-3);
}

.sector-detail-crd {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  padding: var(--sp-4);
  box-shadow: var(--sh-card);
  transition: all 0.3s ease;
}

.sector-detail-crd:hover {
  border-color: rgba(37, 99, 235, 0.3);
  transform: translateY(-3px);
  box-shadow: var(--sh-card-hover);
}

.sector-detail-head {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  margin-bottom: var(--sp-3);
}

.sector-detail-head h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-text);
  line-height: 1.3;
}

.sector-detail-crd p {
  font-size: 0.875rem;
  color: var(--c-text-muted);
  line-height: 1.65;
  margin-bottom: var(--sp-3);
}

.sector-docs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.sdoc {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: var(--c-text-dim);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--c-border);
  border-radius: var(--r-sm);
  padding: 4px 10px;
}

.sdoc i {
  color: var(--c-primary);
  font-size: 0.7rem;
}


.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--sp-5);
  align-items: start;
}

.contact-frm-crd {
  padding: var(--sp-5);
}


.frm {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.frm-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.frm-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--c-text-muted);
  letter-spacing: 0.01em;
}

.frm-input {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: 12px 16px;
  color: var(--c-text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: all 0.25s ease;
  outline: none;
  width: 100%;
  line-height: 1.5;
}

.frm-input::placeholder {
  color: var(--c-text-dim);
}

.frm-input:focus {
  border-color: var(--c-primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
  background: rgba(37, 99, 235, 0.04);
}

.frm-input:hover:not(:focus) {
  border-color: rgba(255, 255, 255, 0.15);
}

.frm-textarea {
  resize: vertical;
  min-height: 140px;
}

.frm-check {
  flex-direction: row;
  align-items: flex-start;
  gap: var(--sp-2);
}

.frm-check-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--c-text-muted);
  cursor: pointer;
  line-height: 1.5;
}

.frm-check-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  accent-color: var(--c-primary);
  cursor: pointer;
  margin-top: 2px;
}

.frm-link {
  color: var(--c-accent);
  text-decoration: none;
  transition: color 0.2s ease;
}

.frm-link:hover {
  color: var(--c-text);
  text-decoration: underline;
}


.contact-info-stack {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.contact-info-crd {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: var(--sp-3);
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  box-shadow: var(--sh-sm);
  transition: all 0.25s ease;
}

.contact-info-crd:hover {
  border-color: rgba(37, 99, 235, 0.3);
  transform: translateX(4px);
}

.ci-ico {
  width: 40px;
  height: 40px;
  background: rgba(37, 99, 235, 0.15);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-accent);
  font-size: 1rem;
  flex-shrink: 0;
}

.ci-content h4 {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--c-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.ci-content p,
.ci-content a {
  font-size: 0.9rem;
  color: var(--c-text);
  text-decoration: none;
  line-height: 1.5;
  transition: color 0.2s ease;
}

.ci-content a:hover {
  color: var(--c-accent);
}


.map-wrap {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-card);
}

.map-header {
  padding: var(--sp-3) var(--sp-4);
  border-bottom: 1px solid var(--c-border);
}

.map-title {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 4px;
}

.map-title i {
  color: var(--c-primary);
}

.map-header p {
  font-size: 0.875rem;
  color: var(--c-text-muted);
}

.map-frame {
  height: 400px;
}

.map-frame iframe {
  display: block;
  filter: invert(0.9) hue-rotate(180deg) brightness(0.85) saturate(0.8);
}


.thanks-wrap {
  text-align: center;
  padding: var(--sp-7) var(--sp-3);
  max-width: 560px;
  margin: 0 auto;
}

.thanks-icon {
  font-size: 5rem;
  color: var(--c-success);
  margin-bottom: var(--sp-4);
  display: block;
  filter: drop-shadow(0 0 30px rgba(16, 185, 129, 0.4));
}

.thanks-title {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--c-text);
  margin-bottom: var(--sp-3);
  letter-spacing: -0.03em;
}

.thanks-txt {
  font-size: 1rem;
  color: var(--c-text-muted);
  line-height: 1.7;
  margin-bottom: var(--sp-5);
}


.legal-wrap {
  padding: var(--sp-7) var(--sp-3);
}

.legal-inner {
  max-width: 860px;
  margin: 0 auto;
}

.legal-head {
  margin-bottom: var(--sp-5);
  padding-bottom: var(--sp-4);
  border-bottom: 1px solid var(--c-border);
}

.legal-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--c-text);
  margin-bottom: var(--sp-2);
  letter-spacing: -0.04em;
}

.legal-meta {
  font-size: 0.875rem;
  color: var(--c-text-dim);
}

.legal-body {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.legal-body h2 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--c-text);
  padding-bottom: 8px;
  border-bottom: 1px solid var(--c-border);
  margin-top: var(--sp-2);
}

.legal-body p {
  font-size: 0.95rem;
  color: var(--c-text-muted);
  line-height: 1.75;
}

.legal-body a {
  color: var(--c-accent);
  text-decoration: none;
}

.legal-body a:hover {
  text-decoration: underline;
}

.legal-body strong {
  color: var(--c-text);
}

.legal-body code {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xs);
  padding: 2px 6px;
  font-size: 0.875rem;
  color: var(--c-accent);
}


.legal-body-alt .legal-intro-box {
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: var(--r-lg);
  padding: var(--sp-3) var(--sp-4);
}


.cookie-info-box {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: var(--sp-4);
}

.cookie-info-box h2 {
  border-bottom: none;
  padding-bottom: 0;
  margin-top: 0;
  margin-bottom: var(--sp-2);
}

.cookie-table-wrap {
  overflow-x: auto;
  border-radius: var(--r-lg);
  border: 1px solid var(--c-border);
}

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.cookie-table th {
  background: var(--c-surface);
  color: var(--c-text-muted);
  font-weight: 600;
  text-align: left;
  padding: 12px 16px;
  border-bottom: 1px solid var(--c-border);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.cookie-table td {
  padding: 12px 16px;
  border-bottom: 1px solid rgba(42, 52, 65, 0.5);
  color: var(--c-text-muted);
  line-height: 1.5;
}

.cookie-table tr:last-child td {
  border-bottom: none;
}

.cookie-table tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}


.ftr {
  background: var(--c-surface);
  border-top: 1px solid var(--c-border);
  margin-top: auto;
}

.ftr-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: var(--sp-7) var(--sp-3) var(--sp-5);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--sp-6);
}

.ftr-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: var(--sp-3);
}

.ftr-logo {
  height: 32px;
  width: auto;
}

.ftr-brand-name {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--c-text);
}

.ftr-tagline {
  font-size: 0.9rem;
  color: var(--c-text-muted);
  line-height: 1.65;
  margin-bottom: var(--sp-4);
  max-width: 360px;
}

.ftr-contact-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: var(--sp-5);
}

.ftr-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--c-text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.ftr-contact-item i {
  color: var(--c-primary);
  width: 16px;
  text-align: center;
  flex-shrink: 0;
}

.ftr-contact-item:hover {
  color: var(--c-text);
}

.ftr-cta-block {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  padding: var(--sp-4);
  max-width: 400px;
}

.ftr-cta-title {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: var(--sp-3);
}

.ftr-right {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
}

.ftr-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ftr-col-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-text-dim);
  margin-bottom: 4px;
}

.ftr-link {
  font-size: 0.875rem;
  color: var(--c-text-muted);
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0;
}

.ftr-link:hover {
  color: var(--c-text);
  padding-left: 6px;
}

.ftr-bottom {
  border-top: 1px solid var(--c-border);
}

.ftr-bottom-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: var(--sp-3) var(--sp-3);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-3);
  flex-wrap: wrap;
}

.ftr-legal {
  font-size: 0.75rem;
  color: var(--c-text-dim);
  line-height: 1.6;
}

.ftr-copy {
  font-size: 0.75rem;
  color: var(--c-text-dim);
}


.cookie-bell-wrap {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
}

.cookie-bell-btn {
  width: 52px;
  height: 52px;
  background: var(--c-primary);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.5), 0 0 0 1px rgba(37, 99, 235, 0.3);
  transition: all 0.25s ease;
  position: relative;
}

.cookie-bell-btn:hover {
  background: var(--c-primary-dark);
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 99, 235, 0.6);
}

.cookie-bell-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 14px;
  height: 14px;
  background: var(--c-gold);
  border-radius: 50%;
  border: 2px solid var(--c-bg);
  display: none;
}

.cookie-bell-badge.show {
  display: block;
}

.cookie-panel {
  position: absolute;
  bottom: calc(100% + 12px);
  right: 0;
  width: 340px;
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  padding: var(--sp-4);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.05);
  display: none;
  flex-direction: column;
  gap: var(--sp-3);
  animation: slideUp 0.25s ease;
}

.cookie-panel.open {
  display: flex;
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.cookie-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cookie-panel-title {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-text);
  display: flex;
  align-items: center;
  gap: 8px;
}

.cookie-panel-title i {
  color: var(--c-gold);
}

.cookie-panel-close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--c-text-muted);
  font-size: 1rem;
  padding: 4px;
  border-radius: var(--r-sm);
  transition: all 0.2s ease;
  min-width: 28px;
  min-height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cookie-panel-close:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--c-text);
}

.cookie-panel-txt {
  font-size: 0.85rem;
  color: var(--c-text-muted);
  line-height: 1.6;
}

.cookie-toggles {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-2);
  padding: 10px 0;
  border-bottom: 1px solid rgba(42, 52, 65, 0.6);
}

.cookie-toggle-row:last-child {
  border-bottom: none;
}

.cookie-toggle-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.cookie-toggle-info strong {
  font-size: 0.875rem;
  color: var(--c-text);
  font-weight: 600;
}

.cookie-toggle-info span {
  font-size: 0.75rem;
  color: var(--c-text-muted);
}

.cookie-toggle {
  font-size: 0.7rem;
  color: var(--c-text-dim);
  white-space: nowrap;
}

.cookie-toggle-on {
  color: var(--c-success);
  font-weight: 600;
}

.toggle-switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  inset: 0;
  background: var(--c-border);
  border-radius: 50px;
  cursor: pointer;
  transition: 0.3s ease;
}

.toggle-slider::before {
  content: '';
  position: absolute;
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background: var(--c-text-muted);
  border-radius: 50%;
  transition: 0.3s ease;
}

.toggle-switch input:checked + .toggle-slider {
  background: var(--c-primary);
}

.toggle-switch input:checked + .toggle-slider::before {
  transform: translateX(20px);
  background: #fff;
}

.cookie-panel-actions {
  display: flex;
  gap: 10px;
}

.cookie-panel-actions .btn-primary,
.cookie-panel-actions .btn-secondary {
  flex: 1;
  justify-content: center;
  font-size: 0.8rem;
  padding: 9px 12px;
}

.cookie-panel-legal {
  font-size: 0.75rem;
  color: var(--c-text-dim);
  text-align: center;
}

.cookie-panel-legal a {
  color: var(--c-text-muted);
  text-decoration: none;
}

.cookie-panel-legal a:hover {
  color: var(--c-accent);
}


@media (max-width: 1100px) {
  .hdr-nav a {
    padding: 8px 12px;
    font-size: 0.8rem;
  }

  .sector-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .crd-lg { grid-column: span 7; }
  .crd-md { grid-column: span 5; }
  .crd-sm { grid-column: span 6; }
  .crd-wide { flex-direction: column; }
  .crd-wide-img { width: 100%; }
}

@media (max-width: 900px) {
  .hdr-nav,
  .hdr-cta { display: none; }
  .hdr-hamburger { display: flex; }

  .mob-tabbar {
    display: flex;
    justify-content: space-around;
  }

  main { padding-bottom: 80px; }

  .sec { padding: var(--sp-6) 0; }

  .dash-grid {
    grid-template-columns: 1fr;
  }

  .crd-lg,
  .crd-md,
  .crd-sm,
  .crd-wide {
    grid-column: span 1;
  }

  .crd-wide {
    flex-direction: column;
  }

  .crd-wide-img {
    width: 100%;
  }

  .how-grid {
    grid-template-columns: 1fr;
  }

  .how-arrow {
    display: none;
  }

  .feat-layout,
  .feat-layout-rev {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .feat-img {
    height: 280px;
  }

  .info-dash-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sector-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .cta-box {
    flex-direction: column;
  }

  .cta-img-side {
    width: 100%;
  }

  .ftr-inner {
    grid-template-columns: 1fr;
    gap: var(--sp-5);
  }

  .ftr-right {
    grid-template-columns: repeat(3, 1fr);
  }

  .approach-grid {
    grid-template-columns: 1fr;
  }

  .sector-detail-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero-steps {
    flex-direction: column;
    gap: var(--sp-2);
    padding: var(--sp-3);
  }

  .step-connector {
    display: none;
  }

  .step-item {
    flex-direction: row;
    text-align: left;
  }

  .step-label {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .hero-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .info-dash-grid {
    grid-template-columns: 1fr;
  }

  .sector-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sector-detail-grid {
    grid-template-columns: 1fr;
  }

  .ftr-right {
    grid-template-columns: repeat(2, 1fr);
  }

  .ftr-bottom-inner {
    flex-direction: column;
    text-align: center;
  }

  .cookie-bell-wrap {
    bottom: 90px;
    right: 16px;
  }

  .cookie-panel {
    width: calc(100vw - 32px);
    right: 0;
  }

  .cta-actions {
    flex-direction: column;
  }

  .cta-actions .btn-primary,
  .cta-actions .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .map-frame {
    height: 280px;
  }
}

@media (max-width: 400px) {
  .sec-inner {
    padding: 0 var(--sp-2);
  }

  .hero-steps {
    padding: var(--sp-2);
  }

  .ftr-right {
    grid-template-columns: 1fr;
  }
}