/* ============================================
   KOLTORI v3 — Light Editorial
   Palette: Ivory × Deep Navy × Electric Blue × Gold
   Fonts: Cormorant Garamond + Plus Jakarta Sans
============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=DM+Mono:wght@400;500&display=swap');

/* ─── Variables ─── */
:root {
  --ivory:       #faf7f2;
  --ivory-2:     #f3efe8;
  --ivory-3:     #ece7de;
  --white:       #ffffff;
  --navy:        #0c1b3a;
  --navy-mid:    #162444;
  --navy-light:  #1e3260;
  --blue:        #1757ff;
  --blue-light:  #4a7fff;
  --blue-pale:   #e8efff;
  --gold:        #d4891a;
  --gold-light:  #f0a835;
  --gold-pale:   #fef3e2;
  --green:       #0f9966;
  --green-pale:  #e3f7f0;
  --red:         #e8394d;
  --ink:         #1a1a2e;
  --ink-2:       #3d3d5a;
  --ink-3:       #7a7a94;
  --ink-4:       #b0b0c4;
  --border:      rgba(12,27,58,0.1);
  --border-2:    rgba(12,27,58,0.06);
  --radius:      10px;
  --radius-lg:   18px;
  --radius-xl:   28px;
  --shadow-sm:   0 2px 12px rgba(12,27,58,0.08);
  --shadow-md:   0 8px 32px rgba(12,27,58,0.12);
  --shadow-lg:   0 20px 60px rgba(12,27,58,0.16);
  --shadow-blue: 0 8px 32px rgba(23,87,255,0.25);
  --t:           0.3s ease;
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--ivory);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a  { color: var(--blue); text-decoration: none; transition: color var(--t); }
a:hover { color: var(--navy); }
ul { list-style: none; }

/* ─── Typography ─── */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.15;
  color: var(--navy);
}
h1 { font-size: clamp(3rem, 6vw, 5.2rem); font-weight: 700; letter-spacing: -1px; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 700; letter-spacing: -0.5px; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.75rem); font-weight: 600; }
h4 { font-size: 1.15rem; font-weight: 600; }
p  { color: var(--ink-2); font-size: 17px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: '';
  width: 22px; height: 1.5px;
  background: var(--blue);
  display: inline-block;
  border-radius: 2px;
}

.blue-bar {
  width: 44px; height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--blue-light));
  border-radius: 4px;
  margin: 14px 0 32px;
}

/* ─── Layout ─── */
.container { max-width: 1220px; margin: 0 auto; padding: 0 32px; }
section { padding: 110px 0; }

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 28px;
  border-radius: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all var(--t);
  text-decoration: none;
}
.btn-primary {
  background: var(--navy);
  color: #fff;
  box-shadow: var(--shadow-md);
}
.btn-primary:hover {
  background: var(--navy-light);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.btn-blue {
  background: var(--blue);
  color: #fff;
  box-shadow: var(--shadow-blue);
}
.btn-blue:hover {
  background: var(--blue-light);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(23,87,255,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--navy);
  background: var(--navy);
  color: #fff;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #fff;
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(212,137,26,0.4);
  color: #fff;
}

/* ============================================
   NAVBAR
============================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 22px 0;
  transition: all var(--t);
}
.navbar.scrolled {
  background: rgba(250,247,242,0.96);
  backdrop-filter: blur(20px);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.5px;
}
.nav-logo span { color: var(--blue); }

.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-2);
  transition: color var(--t);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: var(--blue);
  border-radius: 2px;
  transition: width var(--t);
}
.nav-links a:hover { color: var(--navy); }
.nav-links a:hover::after { width: 100%; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--t);
}

/* ============================================
   HERO
============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 140px 0 80px;
  background: var(--white);
}

/* Diagonal split background */
.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 48%;
  height: 100%;
  background: linear-gradient(160deg, var(--blue-pale) 0%, #dde9ff 50%, var(--ivory-2) 100%);
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0% 100%);
  z-index: 0;
}

/* Subtle dot grid */
.hero-dots {
  position: absolute;
  top: 0; right: 0;
  width: 48%;
  height: 100%;
  background-image: radial-gradient(circle, rgba(23,87,255,0.12) 1px, transparent 1px);
  background-size: 28px 28px;
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0% 100%);
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 55% 1fr;
  align-items: center;
  gap: 60px;
}

/* Floating label */
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-pale);
  border: 1px solid rgba(23,87,255,0.2);
  border-radius: 50px;
  padding: 7px 16px 7px 10px;
  margin-bottom: 28px;
}
.hero-tag .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--blue);
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink {
  0%,100% { opacity:1; } 50% { opacity:0.3; }
}
.hero-tag span {
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
  font-family: 'DM Mono', monospace;
  letter-spacing: 0.5px;
}

.hero-title {
  font-size: clamp(3.2rem, 6vw, 5.6rem);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -2px;
  margin-bottom: 26px;
}
.hero-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--blue);
}
.hero-desc {
  font-size: 18px;
  color: var(--ink-2);
  max-width: 500px;
  margin-bottom: 40px;
  line-height: 1.75;
  font-weight: 400;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 52px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.proof-avatars { display: flex; }
.proof-avatars span {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 2px solid var(--white);
  background: var(--blue-pale);
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin-left: -10px;
  box-shadow: var(--shadow-sm);
}
.proof-avatars span:first-child { margin-left: 0; }
.proof-text strong { display: block; font-size: 15px; color: var(--navy); font-weight: 700; }
.proof-text small  { font-size: 13px; color: var(--ink-3); }

/* Hero right — metric cards */
.hero-metrics { display: flex; flex-direction: column; gap: 16px; }

.metric-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px 26px;
  box-shadow: var(--shadow-sm);
  transition: all var(--t);
  position: relative;
  overflow: hidden;
}
.metric-card:hover {
  border-color: rgba(23,87,255,0.25);
  box-shadow: var(--shadow-md);
  transform: translateX(-4px);
}
.metric-card::before {
  content: '';
  position: absolute;
  left: 0; top: 20%; bottom: 20%;
  width: 3px;
  border-radius: 3px;
  background: var(--blue);
  transition: top var(--t), bottom var(--t);
}
.metric-card:hover::before { top: 0; bottom: 0; }

.mc-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 8px; }
.mc-label { font-size: 12px; font-weight: 600; color: var(--ink-3); text-transform: uppercase; letter-spacing: 1px; font-family: 'DM Mono', monospace; }
.mc-badge {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 20px;
}
.mc-badge.up   { background: var(--green-pale); color: var(--green); }
.mc-badge.down { background: #fde8eb; color: var(--red); }
.mc-badge.info { background: var(--blue-pale); color: var(--blue); }
.mc-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 4px;
}
.mc-sub { font-size: 13px; color: var(--ink-3); font-weight: 500; }
.mc-bar {
  height: 4px;
  background: var(--ivory-3);
  border-radius: 4px;
  margin-top: 14px;
  overflow: hidden;
}
.mc-fill {
  height: 100%;
  border-radius: 4px;
  animation: grow 1.8s ease forwards;
}
@keyframes grow { from { width: 0 !important; } }
.mc-fill.blue  { background: linear-gradient(90deg, var(--blue), var(--blue-light)); }
.mc-fill.green { background: linear-gradient(90deg, var(--green), #34d399); }
.mc-fill.gold  { background: linear-gradient(90deg, var(--gold), var(--gold-light)); }

/* ============================================
   LOGOS STRIP
============================================ */
.logos-strip {
  padding: 52px 0;
  background: var(--ivory-2);
  border-top: 1px solid var(--border-2);
  border-bottom: 1px solid var(--border-2);
}
.logos-strip .container {
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
  justify-content: center;
}
.ls-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink-4);
  white-space: nowrap;
  font-family: 'DM Mono', monospace;
}
.logo-names { display: flex; gap: 44px; flex-wrap: wrap; justify-content: center; align-items: center; }
.logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ink-4);
  letter-spacing: 0.5px;
  transition: color var(--t);
}
.logo-name:hover { color: var(--navy); }

/* ============================================
   ABOUT
============================================ */
.about {
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.about-blob {
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(23,87,255,0.05) 0%, transparent 70%);
  top: -200px; right: -200px;
  pointer-events: none;
}
.about .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 90px;
  position: relative;
}
.about-img {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: visible;
}
.about-img img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}
.about-chip {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--navy);
  color: #fff;
  padding: 20px 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  line-height: 1.25;
}
.about-chip .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem;
  font-weight: 700;
  display: block;
  color: var(--gold-light);
}
.about-chip .sub { font-size: 12px; font-weight: 600; opacity: 0.7; text-transform: uppercase; letter-spacing: 1px; }

.about-list { display: flex; flex-direction: column; gap: 18px; margin: 26px 0 38px; }
.aitem { display: flex; gap: 14px; align-items: flex-start; }
.aitem-icon {
  width: 32px; height: 32px;
  background: var(--blue-pale);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px;
}
.aitem-icon i { color: var(--blue); font-size: 0.85rem; }
.aitem p { font-size: 16px; margin: 0; line-height: 1.6; }

/* ============================================
   SERVICES
============================================ */
.services {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.services-blob {
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(23,87,255,0.18) 0%, transparent 65%);
  bottom: -300px; right: -200px;
  pointer-events: none;
}
.services-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 36px 36px;
}
.services .container { position: relative; z-index: 1; }
.services-hd { max-width: 600px; margin-bottom: 60px; }
.services-hd .eyebrow { color: var(--blue-light); }
.services-hd .eyebrow::before { background: var(--blue-light); }
.services-hd h2 { color: #fff; }
.services-hd p { color: rgba(255,255,255,0.6); }
.services-hd .blue-bar { background: linear-gradient(90deg, var(--blue-light), rgba(74,127,255,0.3)); }

.srv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.srv-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  transition: all var(--t);
  position: relative;
  overflow: hidden;
}
.srv-card:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(23,87,255,0.5);
  transform: translateY(-5px);
  box-shadow: 0 16px 50px rgba(0,0,0,0.3);
}
.srv-n {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 2px;
  margin-bottom: 20px;
}
.srv-icon-box {
  width: 52px; height: 52px;
  background: rgba(23,87,255,0.2);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  transition: background var(--t);
}
.srv-card:hover .srv-icon-box { background: rgba(23,87,255,0.4); }
.srv-icon-box i { color: var(--blue-light); font-size: 1.3rem; }
.srv-card h3 { font-size: 1.2rem; color: #fff; margin-bottom: 12px; }
.srv-card p  { font-size: 15px; color: rgba(255,255,255,0.55); }
.srv-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--blue-light);
  font-size: 14px;
  font-weight: 700;
  margin-top: 20px;
  opacity: 0;
  transform: translateX(-8px);
  transition: all var(--t);
}
.srv-card:hover .srv-link { opacity: 1; transform: translateX(0); }

/* ============================================
   HOW IT WORKS
============================================ */
.how {
  background: var(--ivory);
  position: relative;
}
.how-diagonal {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: var(--white);
  clip-path: polygon(0 60%, 100% 0, 100% 100%, 0 100%);
}
.how .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.how-visual { position: relative; }
.how-img-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.how-img-wrap img { width: 100%; height: 560px; object-fit: cover; }
.how-float {
  position: absolute;
  top: 32px; right: -28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 18px 24px;
  box-shadow: var(--shadow-md);
}
.how-float .hf-val { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 700; color: var(--green); }
.how-float .hf-lab { font-size: 12px; color: var(--ink-3); font-weight: 600; margin-top: 2px; }

.step-list { margin-top: 36px; display: flex; flex-direction: column; gap: 0; }
.step-row {
  display: flex;
  gap: 22px;
  padding: 26px 0;
  border-bottom: 1px solid var(--border-2);
  transition: all var(--t);
  cursor: default;
}
.step-row:last-child { border-bottom: none; }
.step-row:hover .step-n { background: var(--navy); color: #fff; border-color: var(--navy); }
.step-n {
  width: 44px; height: 44px;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'DM Mono', monospace;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-3);
  flex-shrink: 0;
  transition: all var(--t);
}
.step-body h4 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.05rem; margin-bottom: 6px; color: var(--navy); }
.step-body p  { font-size: 15px; margin: 0; }

/* ============================================
   STATS
============================================ */
.stats-sec {
  background: var(--white);
  padding: 100px 0;
}
.stats-inner {
  background: var(--navy);
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
}
.stats-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(23,87,255,0.15) 1px, transparent 1px);
  background-size: 30px 30px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  z-index: 1;
}
.stat-cell {
  padding: 56px 40px;
  border-right: 1px solid rgba(255,255,255,0.07);
  text-align: center;
  transition: background var(--t);
}
.stat-cell:last-child { border-right: none; }
.stat-cell:hover { background: rgba(255,255,255,0.04); }
.stat-icon { font-size: 1.3rem; color: var(--blue-light); margin-bottom: 16px; }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-num .suf { font-size: 2rem; }
.stat-label { font-size: 14px; color: rgba(255,255,255,0.5); font-weight: 500; }

/* ============================================
   FEATURES
============================================ */
.features {
  background: var(--ivory-2);
  padding: 110px 0;
}
.feat-top { text-align: center; max-width: 600px; margin: 0 auto 64px; }
.feat-top .blue-bar { margin: 14px auto 32px; }
.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.feat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  transition: all var(--t);
  position: relative;
  overflow: hidden;
}
.feat-card:hover {
  border-color: rgba(23,87,255,0.2);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}
.feat-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--blue-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t);
  border-radius: 0 0 3px 3px;
}
.feat-card:hover::after { transform: scaleX(1); }
.feat-num {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: var(--ink-4);
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.feat-icon-box {
  width: 50px; height: 50px;
  background: var(--gold-pale);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  transition: background var(--t);
}
.feat-card:hover .feat-icon-box { background: var(--blue-pale); }
.feat-card:hover .feat-icon-box i { color: var(--blue); }
.feat-icon-box i { color: var(--gold); font-size: 1.2rem; transition: color var(--t); }
.feat-card h4 { margin-bottom: 10px; font-family: 'Plus Jakarta Sans', sans-serif; }
.feat-card p  { font-size: 15px; }

/* ============================================
   TESTIMONIALS
============================================ */
.testimonials { background: var(--white); }
.test-top { text-align: center; margin-bottom: 60px; }
.test-top .blue-bar { margin: 14px auto 32px; }
.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.test-card {
  background: var(--ivory);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  transition: all var(--t);
  position: relative;
}
.test-card:hover {
  background: var(--white);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.test-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  line-height: 0.8;
  color: var(--blue);
  opacity: 0.2;
  margin-bottom: -8px;
}
.stars { color: var(--gold); font-size: 13px; margin: 10px 0 16px; }
.test-text { font-size: 16px; color: var(--ink-2); line-height: 1.8; margin-bottom: 24px; }
.test-author { display: flex; align-items: center; gap: 14px; }
.test-ava {
  width: 46px; height: 46px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--border);
  background: var(--ivory-3);
  flex-shrink: 0;
}
.test-ava img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.test-name { font-size: 15px; font-weight: 700; color: var(--navy); }
.test-role { font-size: 12px; color: var(--blue); font-family: 'DM Mono', monospace; }

/* ============================================
   BLOG
============================================ */
.blog { background: var(--ivory-2); }
.blog-hd {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 52px;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--t);
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
  border-color: rgba(23,87,255,0.15);
}
.blog-thumb { height: 210px; overflow: hidden; position: relative; }
.blog-thumb img { width: 100%; height: 100%; object-fit: cover; border-radius: 0; transition: transform 0.5s ease; }
.blog-card:hover .blog-thumb img { transform: scale(1.05); }
.blog-cat {
  position: absolute;
  bottom: 14px; left: 14px;
  background: var(--navy);
  color: #fff;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 4px;
}
.blog-body { padding: 26px 24px; flex: 1; display: flex; flex-direction: column; }
.blog-card h3 { font-size: 1.1rem; margin-bottom: 10px; line-height: 1.4; flex: 1; }
.blog-card p  { font-size: 14px; color: var(--ink-3); margin-bottom: 18px; }
.blog-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--ink-4);
  font-family: 'DM Mono', monospace;
}

/* ============================================
   CTA
============================================ */
.cta-sec {
  background: var(--navy);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-sec::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 70% at 30% 50%, rgba(23,87,255,0.25) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 80% 40%, rgba(212,137,26,0.1) 0%, transparent 55%);
}
.cta-diagonal {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(45deg, rgba(255,255,255,0.02) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(255,255,255,0.02) 25%, transparent 25%);
  background-size: 60px 60px;
}
.cta-sec .container { position: relative; z-index: 1; max-width: 700px; }
.cta-sec .eyebrow { color: rgba(255,255,255,0.5); justify-content: center; }
.cta-sec .eyebrow::before { background: rgba(255,255,255,0.5); }
.cta-sec h2 { color: #fff; margin-bottom: 18px; font-size: clamp(2rem, 4vw, 3.2rem); }
.cta-sec p  { color: rgba(255,255,255,0.65); font-size: 18px; margin-bottom: 44px; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============================================
   CONTACT
============================================ */
.contact-sec { background: var(--ivory); }
.contact-sec .container {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
}
.contact-info p { margin-bottom: 36px; }
.c-list { display: flex; flex-direction: column; gap: 18px; margin-top: 32px; }
.c-row { display: flex; gap: 14px; align-items: flex-start; }
.c-ico {
  width: 42px; height: 42px;
  background: var(--blue-pale);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.c-ico i { color: var(--blue); font-size: 0.95rem; }
.c-txt .c-lbl { font-size: 11px; font-weight: 700; color: var(--blue); text-transform: uppercase; letter-spacing: 1.5px; font-family: 'DM Mono', monospace; margin-bottom: 3px; display: block; }
.c-txt a, .c-txt p { font-size: 16px; color: var(--ink-2); margin: 0; }
.c-txt a:hover { color: var(--blue); }

.form-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 48px 44px;
  box-shadow: var(--shadow-md);
}
.form-box h3 { font-size: 1.7rem; margin-bottom: 8px; }
.form-box > p { font-size: 16px; color: var(--ink-3); margin-bottom: 34px; }

.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.fg { margin-bottom: 20px; }
.fg label { display: block; font-size: 13px; font-weight: 700; color: var(--ink-2); margin-bottom: 7px; letter-spacing: 0.2px; }
.fg input,
.fg select,
.fg textarea {
  width: 100%;
  background: var(--ivory);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 13px 16px;
  color: var(--ink);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  transition: border-color var(--t), background var(--t), box-shadow var(--t);
  outline: none;
}
.fg input::placeholder, .fg textarea::placeholder { color: var(--ink-4); }
.fg input:focus, .fg select:focus, .fg textarea:focus {
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(23,87,255,0.08);
}
.fg select option { background: var(--white); }
.fg textarea { resize: vertical; min-height: 130px; }
.f-check { display: flex; gap: 11px; margin-bottom: 26px; }
.f-check input[type="checkbox"] { width: 17px; height: 17px; accent-color: var(--blue); flex-shrink: 0; margin-top: 3px; }
.f-check label { font-size: 14px; color: var(--ink-3); }
.f-check a { color: var(--blue); }
.btn-submit { width: 100%; justify-content: center; padding: 16px 32px; font-size: 17px; }

/* ============================================
   FOOTER
============================================ */
.footer {
  background: var(--navy);
  padding: 80px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 60px;
}
.f-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  display: block;
  margin-bottom: 14px;
}
.f-logo span { color: var(--blue-light); }
.f-desc { font-size: 15px; color: rgba(255,255,255,0.45); margin-bottom: 28px; max-width: 280px; line-height: 1.7; }
.f-socials { display: flex; gap: 10px; }
.f-soc {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.45);
  font-size: 0.9rem;
  transition: all var(--t);
}
.f-soc:hover { border-color: var(--blue-light); color: var(--blue-light); background: rgba(23,87,255,0.12); }
.f-col h5 {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 22px;
}
.f-col ul { display: flex; flex-direction: column; gap: 11px; }
.f-col a { color: rgba(255,255,255,0.55); font-size: 15px; transition: color var(--t); }
.f-col a:hover { color: #fff; }
.f-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}
.f-bottom p { font-size: 13px; color: rgba(255,255,255,0.35); }
.f-legal { display: flex; gap: 24px; }
.f-legal a { font-size: 13px; color: rgba(255,255,255,0.35); transition: color var(--t); }
.f-legal a:hover { color: rgba(255,255,255,0.8); }

/* ============================================
   COOKIE
============================================ */
.cookie-bar {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(160px);
  z-index: 9999;
  width: calc(100% - 48px);
  max-width: 860px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 22px 30px;
  display: flex;
  align-items: center;
  gap: 22px;
  box-shadow: var(--shadow-lg);
  transition: transform 0.5s cubic-bezier(0.175,0.885,0.32,1.2);
}
.cookie-bar.show { transform: translateX(-50%) translateY(0); }
.ck-icon { font-size: 1.7rem; flex-shrink: 0; }
.ck-copy { flex: 1; }
.ck-copy strong { font-size: 15px; font-weight: 700; color: var(--navy); display: block; margin-bottom: 3px; }
.ck-copy small { font-size: 13px; color: var(--ink-3); }
.ck-copy a { color: var(--blue); font-size: 13px; }
.ck-actions { display: flex; gap: 10px; flex-shrink: 0; }
.ck-yes {
  background: var(--navy);
  color: #fff;
  border: none;
  padding: 10px 22px;
  border-radius: 7px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px; font-weight: 700;
  cursor: pointer;
  transition: all var(--t);
  white-space: nowrap;
}
.ck-yes:hover { background: var(--navy-light); }
.ck-no {
  background: transparent;
  color: var(--ink-3);
  border: 1.5px solid var(--border);
  padding: 10px 18px;
  border-radius: 7px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  cursor: pointer;
  transition: all var(--t);
  white-space: nowrap;
}
.ck-no:hover { border-color: var(--ink-2); color: var(--ink); }

/* ============================================
   MODAL
============================================ */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(12,27,58,0.55);
  backdrop-filter: blur(8px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t);
}
.overlay.on { opacity: 1; pointer-events: all; }
.modal {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 56px 52px;
  text-align: center;
  max-width: 460px;
  width: 90%;
  transform: scale(0.88) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.175,0.885,0.32,1.275);
  box-shadow: var(--shadow-lg);
}
.overlay.on .modal { transform: scale(1) translateY(0); }
.modal-ring {
  width: 72px; height: 72px;
  background: var(--green-pale);
  border: 2px solid var(--green);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 26px;
}
.modal-ring i { color: var(--green); font-size: 1.8rem; }
.modal h3 { font-size: 1.9rem; margin-bottom: 12px; }
.modal p  { color: var(--ink-2); font-size: 16px; margin-bottom: 32px; }
.btn-modal-ok {
  background: var(--navy);
  color: #fff;
  border: none;
  padding: 13px 36px;
  border-radius: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px; font-weight: 700;
  cursor: pointer;
  transition: all var(--t);
}
.btn-modal-ok:hover { background: var(--navy-light); }

/* ============================================
   INNER PAGES
============================================ */
.pg-hero {
  background: var(--navy);
  padding: 160px 0 90px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.pg-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(23,87,255,0.2) 0%, transparent 60%);
}
.pg-hero .container { position: relative; z-index: 1; }
.pg-hero h1 { color: #fff; margin-bottom: 16px; }
.pg-hero p  { font-size: 18px; max-width: 560px; margin: 0 auto; color: rgba(255,255,255,0.65); }
.pg-hero .eyebrow { color: var(--blue-light); justify-content: center; margin-bottom: 20px; }
.pg-hero .eyebrow::before { background: var(--blue-light); }

.policy-pg { background: var(--white); padding: 100px 0; }
.policy-content { max-width: 800px; margin: 0 auto; }
.policy-content h2 { margin: 52px 0 18px; }
.policy-content h3 { margin: 34px 0 14px; }
.policy-content p  { font-size: 17px; margin-bottom: 18px; line-height: 1.85; }
.policy-content ul { padding-left: 0; margin-bottom: 18px; }
.policy-content li { font-size: 17px; margin-bottom: 10px; padding-left: 20px; position: relative; color: var(--ink-2); }
.policy-content li::before { content: '—'; position: absolute; left: 0; color: var(--blue); }
.policy-content a { color: var(--blue); }
.policy-updated {
  background: var(--blue-pale);
  border-left: 3px solid var(--blue);
  padding: 14px 22px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-bottom: 48px;
  font-family: 'DM Mono', monospace;
  font-size: 13px;
  color: var(--blue);
}

.contacts-pg { background: var(--ivory); padding: 100px 0; }
.contacts-pg .container { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; }

/* ============================================
   ANIMATIONS
============================================ */
.up { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.up.in { opacity: 1; transform: none; }
.up.d1 { transition-delay: 0.1s; }
.up.d2 { transition-delay: 0.2s; }
.up.d3 { transition-delay: 0.3s; }
.up.d4 { transition-delay: 0.4s; }

/* ============================================
   TICKER
============================================ */
.ticker-wrap {
  background: var(--ivory-3);
  border-top: 1px solid var(--border-2);
  border-bottom: 1px solid var(--border-2);
  padding: 12px 0;
  overflow: hidden;
}
.ticker-inner {
  display: flex;
  white-space: nowrap;
  animation: tick 35s linear infinite;
}
@keyframes tick { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.tick-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 28px;
  border-right: 1px solid var(--border);
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  color: var(--ink-3);
}
.tick-name  { font-weight: 500; color: var(--navy); }
.tick-up    { color: var(--green); }
.tick-down  { color: var(--red); }

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 1080px) {
  .hero .container,
  .about .container,
  .how .container,
  .contact-sec .container,
  .contacts-pg .container { grid-template-columns: 1fr; }
  .hero-metrics { display: none; }
  .hero::before, .hero-dots { display: none; }
  .srv-grid, .test-grid, .blog-grid, .feat-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stat-cell { border-bottom: 1px solid rgba(255,255,255,0.07); }
  .about-chip { right: 14px; }
}
@media (max-width: 680px) {
  section { padding: 80px 0; }
  .nav-links { display: none; }
  .navbar .btn { display: none; }
  .hamburger { display: flex; }
  .srv-grid, .test-grid, .blog-grid, .feat-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .f-row { grid-template-columns: 1fr; }
  .blog-hd { flex-direction: column; gap: 18px; }
  .footer-grid { grid-template-columns: 1fr; }
  .f-bottom { flex-direction: column; text-align: center; }
  .cookie-bar { flex-direction: column; text-align: center; }
  .form-box { padding: 32px 20px; }
}

/* ── Aliases for policy pages ── */
.pg-hero .eyebrow { color: rgba(255,255,255,0.6); justify-content: center; margin-bottom: 18px; }
.pg-hero .eyebrow::before { background: rgba(255,255,255,0.6); }
