/*
Theme Name:  Q2Team
Theme URI:   https://q2team.com
Author:      Q2Team FZE
Author URI:  https://q2team.com
Description: Official theme for Q2Team — The Digital Spine of Eurasian Trade. INSTC Digital Freight Corridor Platform.
Version:     1.0.0
Requires at least: 6.0
Tested up to:      6.7
License:     Proprietary
Text Domain: q2team
*/

/* ═══════════════════════════════════════════════════════
   DESIGN TOKENS
═══════════════════════════════════════════════════════ */
:root {
  --bg:       #020C1A;
  --card:     #06172A;
  --elevated: #0D2035;
  --gold:     #B8860B;
  --gold-l:   #D4A820;
  --gold-xl:  #F0C040;
  --teal:     #3DB8AC;
  --blue:     #4FA8E8;
  --purp:     #9B7BE8;
  --green:    #22C55E;
  --text:     #D8E4F0;
  --sec:      #6A8AAA;
  --muted:    #2C4A62;
  --border:   rgba(180,130,10,.18);
  --border-h: rgba(180,130,10,.55);
  --radius:   14px;
  --radius-s: 8px;
}

/* ═══════════════════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
  font-size: 16px;
}
a { color: var(--gold-l); text-decoration: none; transition: color .2s; }
a:hover { color: var(--gold-xl); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

/* ═══════════════════════════════════════════════════════
   TYPOGRAPHY
═══════════════════════════════════════════════════════ */
.disp, h1.disp, h2.disp, h3.disp {
  font-family: 'Cormorant Garamond', Georgia, serif;
}
h1, h2, h3, h4 { color: var(--text); line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 700; }
h3 { font-size: 1.1rem; font-weight: 700; }
p  { color: var(--sec); line-height: 1.8; }

.section-label {
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.gold-text {
  background: linear-gradient(95deg, #997308 0%, var(--gold-xl) 40%, #D4A017 65%, #8B6914 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 5s linear infinite;
}

/* ═══════════════════════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════════════════════ */
@keyframes shimmer   { 0%{background-position:-200% center;} 100%{background-position:200% center;} }
@keyframes fadeup    { from{opacity:0;transform:translateY(24px);} to{opacity:1;transform:translateY(0);} }
@keyframes drawln    { to{stroke-dashoffset:0;} }
@keyframes fadeln    { from{opacity:0;} to{opacity:1;} }
@keyframes bgdrift   { from{background-position:0 0;} to{background-position:0 -40px;} }
@keyframes scrollhint{ 0%,100%{transform:translateX(-50%) translateY(0);} 55%{transform:translateX(-50%) translateY(8px);} }

.fadeup  { opacity:0; animation:fadeup .65s ease forwards; }
.fadeup1 { opacity:0; animation:fadeup .65s .12s ease forwards; }
.fadeup2 { opacity:0; animation:fadeup .65s .24s ease forwards; }
.fadeup3 { opacity:0; animation:fadeup .65s .38s ease forwards; }
.fadeup4 { opacity:0; animation:fadeup .65s .52s ease forwards; }

/* ═══════════════════════════════════════════════════════
   LAYOUT
═══════════════════════════════════════════════════════ */
.container { max-width: 1100px; margin: 0 auto; padding: 0 28px; }
.section   { padding: 96px 0; }
.section-sm{ padding: 64px 0; }
.section-dark { background: #030F1E; border-top: 1px solid rgba(180,130,10,.1); border-bottom: 1px solid rgba(180,130,10,.1); }
.text-center { text-align: center; }
.rule { height:1px; background:linear-gradient(90deg,transparent,rgba(180,130,10,.22),transparent); }

/* ═══════════════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════════════ */
.btn-primary, .btn-primary:visited {
  display: inline-block;
  background: linear-gradient(135deg, #9A7209, var(--gold-l));
  color: var(--bg) !important;
  border: none;
  padding: 14px 32px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 13px;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  letter-spacing: .09em;
  text-transform: uppercase;
  transition: transform .2s, box-shadow .2s;
  text-decoration: none;
  -webkit-text-fill-color: var(--bg);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(180,130,10,.5); }

.btn-ghost, .btn-ghost:visited {
  display: inline-block;
  background: transparent;
  color: var(--gold-l);
  border: 1.5px solid rgba(180,130,10,.45);
  padding: 14px 32px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 13px;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  letter-spacing: .09em;
  text-transform: uppercase;
  transition: all .2s;
  text-decoration: none;
}
.btn-ghost:hover { background: rgba(180,130,10,.1); border-color: var(--gold); transform: translateY(-2px); }

/* ═══════════════════════════════════════════════════════
   BADGE
═══════════════════════════════════════════════════════ */
.badge {
  display: inline-block;
  background: rgba(180,130,10,.12);
  color: var(--gold-l);
  border: 1px solid rgba(180,130,10,.4);
  border-radius: 4px;
  padding: 3px 11px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.badge-teal  { background:rgba(61,184,172,.12); color:var(--teal); border-color:rgba(61,184,172,.4); }
.badge-blue  { background:rgba(79,168,232,.12); color:var(--blue); border-color:rgba(79,168,232,.4); }
.badge-purp  { background:rgba(155,123,232,.12);color:var(--purp); border-color:rgba(155,123,232,.4); }
.badge-green { background:rgba(34,197,94,.12);  color:var(--green);border-color:rgba(34,197,94,.4); }

/* ═══════════════════════════════════════════════════════
   CARDS
═══════════════════════════════════════════════════════ */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: transform .28s, border-color .28s, box-shadow .28s;
}
.card:hover {
  transform: translateY(-6px);
  border-color: var(--border-h);
  box-shadow: 0 22px 55px rgba(0,0,0,.55);
}
.card-flat {
  background: var(--card);
  border: 1px solid rgba(180,130,10,.14);
  border-radius: var(--radius);
}

/* ═══════════════════════════════════════════════════════
   HEADER / NAVIGATION
═══════════════════════════════════════════════════════ */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
  background: rgba(2,12,26,.93);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(180,130,10,.14);
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-wordmark {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 21px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: .13em;
  line-height: 1;
  -webkit-text-fill-color: var(--text);
}
.nav-primary {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-primary a {
  color: var(--sec);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: .03em;
  transition: color .18s;
  text-decoration: none;
}
.nav-primary a:hover,
.nav-primary a.current-menu-item,
.nav-primary a[aria-current="page"] { color: var(--gold-l); }
.nav-cta { margin-left: 8px; }

/* Mobile menu */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-direction: column;
  gap: 5px;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all .3s;
}
.mobile-nav {
  display: none;
  position: fixed;
  top: 64px; left: 0; right: 0;
  background: rgba(2,12,26,.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 24px 28px;
  z-index: 999;
  flex-direction: column;
  gap: 0;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: var(--sec);
  font-size: 15px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(180,130,10,.08);
  letter-spacing: .03em;
}
.mobile-nav a:hover { color: var(--gold-l); }
.mobile-nav .btn-primary { margin-top: 20px; text-align: center; }

/* ═══════════════════════════════════════════════════════
   PAGE WRAPPER
═══════════════════════════════════════════════════════ */
#page { padding-top: 64px; }

/* ═══════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse 75% 55% at 50% -5%, rgba(180,130,10,.09) 0%, transparent 65%);
}
.hero-bg-dots {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(180,130,10,.045) 1px, transparent 1px);
  background-size: 28px 28px;
  animation: bgdrift 18s linear infinite;
}
.hero-inner {
  display: flex;
  gap: 64px;
  align-items: center;
  padding: 80px 0;
  width: 100%;
}
.hero-text { flex: 0 0 50%; }
.hero-text h1 { font-size: clamp(2.2rem, 4.5vw, 3.5rem); margin-bottom: 24px; }
.hero-text p  { font-size: 17px; max-width: 460px; margin-bottom: 36px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 52px; }
.hero-stats { display: flex; gap: 36px; flex-wrap: wrap; }
.hero-stat-val { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 24px; font-weight: 700; color: var(--gold-l); line-height: 1.1; }
.hero-stat-lbl { font-size: 11px; color: var(--sec); margin-top: 4px; letter-spacing: .04em; }
.hero-map-wrap { flex: 1; min-width: 0; }
.scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  color: var(--muted);
  font-size: 24px;
  animation: scrollhint 2.2s ease-in-out infinite;
}

/* ═══════════════════════════════════════════════════════
   STAT BAR
═══════════════════════════════════════════════════════ */
.stat-bar {
  background: #030F1E;
  border-top: 1px solid rgba(180,130,10,.12);
  border-bottom: 1px solid rgba(180,130,10,.12);
  padding: 26px 0;
}
.stat-bar-inner {
  display: flex;
  justify-content: space-around;
  gap: 24px;
  flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-item-val { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 26px; font-weight: 700; color: var(--gold); }
.stat-item-lbl { font-size: 11px; color: var(--sec); margin-top: 3px; max-width: 140px; line-height: 1.4; }

/* ═══════════════════════════════════════════════════════
   SERVICES GRID
═══════════════════════════════════════════════════════ */
.services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.service-card  { padding: 34px 30px; }
.service-icon  { font-size: 30px; margin-bottom: 18px; }
.service-title { font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 10px; }
.service-body  { font-size: 14px; line-height: 1.75; }

/* ═══════════════════════════════════════════════════════
   HOW IT WORKS
═══════════════════════════════════════════════════════ */
.steps-grid { display: flex; gap: 80px; align-items: flex-start; }
.steps-intro { flex: 0 0 330px; }
.steps-list  { flex: 1; }
.step { display: flex; gap: 22px; align-items: flex-start; padding: 32px 0; }
.step + .step { border-top: 1px solid rgba(180,130,10,.1); }
.step-num {
  flex-shrink: 0;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', Georgia, serif;
  color: var(--gold);
  font-size: 16px;
  font-weight: 700;
}
.step-title { color: var(--text); font-weight: 700; font-size: 16px; margin-bottom: 8px; }
.step-desc  { color: var(--sec); font-size: 14px; line-height: 1.75; }

/* ═══════════════════════════════════════════════════════
   VALUE GRID
═══════════════════════════════════════════════════════ */
.value-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.value-card { padding: 28px 26px; display: flex; gap: 18px; }
.value-bar  { width: 3px; flex-shrink: 0; background: linear-gradient(180deg, var(--gold), rgba(180,130,10,.15)); border-radius: 2px; }
.value-title{ color: var(--text); font-weight: 700; margin-bottom: 8px; font-size: 15px; }
.value-desc { font-size: 13.5px; line-height: 1.75; }

/* ═══════════════════════════════════════════════════════
   PARTNERS BAR
═══════════════════════════════════════════════════════ */
.partners-bar { padding: 56px 0; }
.partners-inner { display: flex; gap: 52px; justify-content: center; align-items: center; flex-wrap: wrap; }
.partner-name { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 22px; font-weight: 700; letter-spacing: .1em; }
.partner-sub  { font-size: 11px; color: var(--sec); margin-top: 3px; letter-spacing: .04em; }

/* ═══════════════════════════════════════════════════════
   CTA SECTION
═══════════════════════════════════════════════════════ */
.cta-section { text-align: center; }
.cta-section h2 { max-width: 580px; margin: 0 auto 20px; }
.cta-section p  { max-width: 500px; margin: 0 auto 36px; font-size: 16px; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ═══════════════════════════════════════════════════════
   SOLUTIONS TABS
═══════════════════════════════════════════════════════ */
.tab-strip {
  display: flex;
  justify-content: center;
  gap: 4px;
  border-bottom: 1px solid rgba(180,130,10,.15);
  padding-bottom: 0;
  margin-bottom: 0;
}
.tab-btn {
  padding: 12px 24px;
  background: transparent;
  border: 1px solid transparent;
  border-bottom: 2px solid transparent;
  border-radius: 5px 5px 0 0;
  color: var(--sec);
  font-size: 13px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  letter-spacing: .05em;
  text-transform: uppercase;
  transition: all .2s;
  margin-bottom: -1px;
  white-space: nowrap;
}
.tab-btn.active {
  color: var(--gold);
  background: rgba(180,130,10,.1);
  border-bottom-color: var(--gold);
}
.tab-panel { display: none; }
.tab-panel.active { display: block; }
.sol-split { display: flex; gap: 64px; align-items: flex-start; padding: 64px 0; }
.sol-intro  { flex: 0 0 38%; }
.sol-intro h2 { margin: 16px 0; }
.sol-intro p  { font-size: 15px; line-height: 1.8; margin-bottom: 36px; }
.sol-cta-box { padding: 26px 24px; background: rgba(180,130,10,.07); border: 1px solid rgba(180,130,10,.22); border-radius: 12px; margin-top: 36px; }
.sol-cta-box h4 { color: var(--gold-l); font-size: 14px; margin-bottom: 8px; }
.sol-cta-box p  { font-size: 13px; line-height: 1.65; margin-bottom: 18px; }
.sol-cta-box .btn-primary { width: 100%; text-align: center; }
.sol-features { flex: 1; display: flex; flex-direction: column; gap: 18px; }
.feat-card { padding: 22px 24px; display: flex; gap: 18px; }
.feat-bar  { width: 2.5px; flex-shrink: 0; border-radius: 2px; }
.feat-title{ color: var(--text); font-weight: 700; margin-bottom: 6px; font-size: 15px; }
.feat-desc { font-size: 13.5px; line-height: 1.7; color: var(--sec); }

/* ═══════════════════════════════════════════════════════
   CORRIDOR PAGE
═══════════════════════════════════════════════════════ */
.corr-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.corr-card { padding: 32px 28px; }
.corr-name { font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 5px; }
.corr-route{ color: var(--sec); font-size: 12px; letter-spacing: .03em; margin-bottom: 16px; }
.corr-desc { font-size: 13.5px; line-height: 1.75; margin-bottom: 24px; }
.corr-stats{ display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.corr-stat { padding: 12px 14px; background: rgba(255,255,255,.03); border-radius: 8px; border: 1px solid rgba(255,255,255,.06); }
.corr-stat-lbl { color: var(--muted); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 4px; }
.corr-stat-val { font-weight: 700; font-size: 14px; }
.crossing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.crossing-card { padding: 22px 20px; }
.crossing-head { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 10px; gap: 8px; }
.crossing-name { color: var(--text); font-weight: 700; font-size: 14px; }
.crossing-ctry { color: var(--sec); font-size: 11px; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; margin-bottom: 10px; }
.crossing-desc { color: var(--muted); font-size: 12.5px; line-height: 1.7; }

/* ═══════════════════════════════════════════════════════
   PLATFORM PAGE
═══════════════════════════════════════════════════════ */
.platform-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.platform-card { padding: 30px 26px; }
.platform-icon { font-size: 32px; margin-bottom: 18px; }
.platform-title{ color: var(--text); font-weight: 700; font-size: 15px; margin-bottom: 10px; }
.platform-desc { font-size: 13.5px; line-height: 1.7; }
.arch-split { display: flex; gap: 72px; align-items: flex-start; flex-wrap: wrap; }
.arch-text  { flex: 0 0 42%; min-width: 280px; }
.arch-text h2 { margin-bottom: 20px; }
.arch-text p  { font-size: 15px; line-height: 1.8; margin-bottom: 18px; }
.arch-layers{ flex: 1; min-width: 260px; }
.layer-item { display: flex; gap: 18px; align-items: flex-start; margin-bottom: 26px; }
.layer-dot  { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; margin-top: 5px; }
.layer-label{ font-weight: 700; font-size: 13px; margin-bottom: 5px; }
.layer-desc { font-size: 13.5px; line-height: 1.7; color: var(--sec); }
.api-grid   { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.api-card   { padding: 24px 20px; text-align: left; }
.api-name   { font-weight: 700; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 10px; }
.api-desc   { font-size: 13px; line-height: 1.7; color: var(--sec); }

/* ═══════════════════════════════════════════════════════
   ABOUT PAGE
═══════════════════════════════════════════════════════ */
.about-split { display: flex; gap: 80px; align-items: flex-start; }
.about-main  { flex: 1; }
.about-main h2 { margin-bottom: 22px; }
.about-main p  { font-size: 15px; line-height: 1.85; margin-bottom: 20px; }
.about-sidebar { flex: 0 0 360px; display: flex; flex-direction: column; gap: 18px; }
.sidebar-card  { padding: 22px 20px; border-radius: 12px; }
.sidebar-card h4 { color: var(--gold); font-weight: 700; margin-bottom: 7px; font-size: 14px; }
.sidebar-card p  { font-size: 13px; line-height: 1.7; margin: 0; }
.jv-split { display: flex; gap: 28px; justify-content: center; flex-wrap: wrap; }
.jv-card  { flex: 0 0 440px; max-width: 100%; padding: 40px 36px; }
.jv-name  { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 26px; font-weight: 700; letter-spacing: .1em; margin-bottom: 5px; }
.jv-tag   { font-size: 11px; color: var(--sec); letter-spacing: .12em; text-transform: uppercase; margin-bottom: 28px; display: block; }
.jv-item  { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 13px; }
.jv-dot   { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; margin-top: 7px; }
.jv-item span { color: var(--sec); font-size: 14px; line-height: 1.5; }
.offices-row { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; }
.office-card { flex: 0 0 300px; max-width: 100%; padding: 32px 28px; }
.office-city { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 26px; font-weight: 700; margin-bottom: 4px; }
.office-ctry { font-size: 11px; color: var(--sec); letter-spacing: .07em; text-transform: uppercase; margin-bottom: 20px; display: block; }
.office-addr { color: var(--muted); font-size: 13px; margin-bottom: 18px; line-height: 1.6; white-space: pre-line; }
.office-note { font-size: 13px; line-height: 1.7; color: var(--sec); }

/* ═══════════════════════════════════════════════════════
   CONTACT PAGE
═══════════════════════════════════════════════════════ */
.contact-split { display: flex; gap: 60px; }
.contact-form-wrap { flex: 1; }
.contact-form-box { background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 40px 36px; }
.contact-form-box h3 { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 24px; margin-bottom: 28px; }
.form-row   { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { margin-bottom: 16px; }
.form-label { display: block; color: var(--sec); font-size: 11px; font-weight: 600; letter-spacing: .07em; text-transform: uppercase; margin-bottom: 8px; }
.form-input, .form-select, .form-textarea {
  width: 100%;
  background: rgba(13,32,53,.9);
  border: 1px solid rgba(180,130,10,.22);
  border-radius: var(--radius-s);
  padding: 14px 16px;
  color: var(--text);
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color .2s;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--gold); }
.form-input::placeholder, .form-textarea::placeholder { color: var(--muted); }
.form-select option { background: var(--card); }
.form-textarea { resize: vertical; }
.form-submit { width: 100%; padding: 15px; font-size: 14px; }
.form-note { color: var(--muted); font-size: 12px; text-align: center; margin-top: 14px; }
.form-success { display: none; text-align: center; padding: 64px 40px; background: var(--card); border: 1px solid rgba(180,130,10,.3); border-radius: 16px; }
.form-success h3 { font-family: 'Cormorant Garamond', Georgia, serif; color: var(--gold); font-size: 26px; margin: 16px 0 14px; }
.form-success p { max-width: 380px; margin: 0 auto; }
.contact-info { flex: 0 0 290px; display: flex; flex-direction: column; gap: 18px; }
.info-card { padding: 24px 22px; background: var(--card); border: 1px solid var(--border); border-radius: 12px; }
.info-icon  { font-size: 22px; margin-bottom: 12px; display: block; }
.info-title { color: var(--gold-l); font-weight: 700; font-size: 14px; margin-bottom: 10px; display: block; }
.info-body  { color: var(--sec); font-size: 13px; line-height: 1.9; white-space: pre-line; }
.info-email-group { margin-bottom: 12px; }
.info-email-lbl { color: var(--muted); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 2px; display: block; }
.info-email-val { color: var(--gold-l); font-size: 13px; }
.info-cta { padding: 24px 22px; background: rgba(180,130,10,.07); border: 1px solid rgba(180,130,10,.28); border-radius: 12px; }
.info-cta h4 { color: var(--gold); font-weight: 700; font-size: 14px; margin-bottom: 8px; }
.info-cta p  { font-size: 13px; line-height: 1.7; margin-bottom: 14px; }
.info-cta-link { color: var(--gold-l); font-size: 12px; font-weight: 700; letter-spacing: .07em; cursor: pointer; text-transform: uppercase; }

/* ═══════════════════════════════════════════════════════
   PAGE HERO (inner pages)
═══════════════════════════════════════════════════════ */
.page-hero {
  padding: 80px 0;
  text-align: center;
  background: radial-gradient(ellipse 65% 45% at 50% 0%, rgba(180,130,10,.07) 0%, transparent 70%);
}
.page-hero h1 { margin: 0 auto 16px; max-width: 700px; }
.page-hero p  { max-width: 540px; margin: 0 auto; font-size: 16px; line-height: 1.75; }

/* ═══════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════ */
#site-footer {
  background: #010A16;
  border-top: 1px solid rgba(180,130,10,.14);
  padding: 68px 0 32px;
}
.footer-grid { display: flex; gap: 64px; margin-bottom: 56px; }
.footer-brand { flex: 0 0 220px; }
.footer-brand p { color: var(--sec); font-size: 13px; line-height: 1.75; margin-top: 16px; max-width: 200px; }
.footer-socials { display: flex; gap: 10px; margin-top: 22px; }
.footer-social {
  width: 34px; height: 34px;
  border-radius: 7px;
  border: 1px solid rgba(180,130,10,.24);
  display: flex; align-items: center; justify-content: center;
  color: var(--sec); font-size: 11px; font-weight: 700;
  cursor: pointer; transition: border-color .2s;
  text-decoration: none;
}
.footer-social:hover { border-color: var(--gold); color: var(--gold-l); }
.footer-cols { display: flex; flex: 1; gap: 48px; flex-wrap: wrap; }
.footer-col  { flex: 1 1 140px; }
.footer-col h4 { color: var(--text); font-weight: 700; font-size: 13px; letter-spacing: .07em; margin-bottom: 18px; }
.footer-col ul li { margin-bottom: 11px; }
.footer-col ul li a { color: var(--sec); font-size: 13px; transition: color .18s; }
.footer-col ul li a:hover { color: var(--gold-l); }
.footer-contact { flex: 1 1 180px; }
.footer-contact h4 { color: var(--text); font-weight: 700; font-size: 13px; letter-spacing: .07em; margin-bottom: 18px; }
.fc-region { margin-bottom: 16px; }
.fc-region-lbl { color: var(--gold-l); font-weight: 700; font-size: 10px; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 4px; display: block; }
.fc-region-body { color: var(--sec); font-size: 13px; line-height: 1.9; }
.footer-email { color: var(--gold-l); font-size: 13px; margin-top: 8px; display: block; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.footer-copy  { color: var(--muted); font-size: 12px; }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { color: var(--muted); font-size: 12px; }
.footer-legal a:hover { color: var(--sec); }

/* ═══════════════════════════════════════════════════════
   SVG MAP
═══════════════════════════════════════════════════════ */
.map-wrap { border-radius: 16px; overflow: hidden; }
.map-wrap svg { display: block; width: 100%; height: auto; }

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════ */
@media (max-width: 960px) {
  .platform-grid { grid-template-columns: 1fr 1fr; }
  .api-grid      { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 820px) {
  .hero-inner    { flex-direction: column; padding: 60px 0; }
  .hero-text     { flex: none; }
  .hero-map-wrap { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .steps-grid    { flex-direction: column; gap: 48px; }
  .steps-intro   { flex: none; }
  .value-grid    { grid-template-columns: 1fr; }
  .sol-split     { flex-direction: column; }
  .sol-intro     { flex: none; }
  .corr-grid     { grid-template-columns: 1fr; }
  .arch-split    { flex-direction: column; }
  .arch-text     { flex: none; }
  .about-split   { flex-direction: column; }
  .about-sidebar { flex: none; }
  .contact-split { flex-direction: column; }
  .footer-grid   { flex-direction: column; gap: 40px; }
  .crossing-grid { grid-template-columns: 1fr 1fr; }
  .nav-primary   { display: none; }
  .nav-cta       { display: none; }
  .menu-toggle   { display: flex; }
}
@media (max-width: 560px) {
  .platform-grid { grid-template-columns: 1fr; }
  .api-grid      { grid-template-columns: 1fr; }
  .crossing-grid { grid-template-columns: 1fr; }
  .form-row      { grid-template-columns: 1fr; }
  .tab-strip     { flex-wrap: wrap; }
}
