/* ============================================================
   StreamKube – Site Styles  v3
   Dark Financial Theme · Deep Navy / Electric Blue
   ============================================================ */

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

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --c-bg:        #05080f;
  --c-surface:   #090e1c;
  --c-surface-2: #0e1624;
  --c-border:    rgba(90,120,200,0.14);
  --c-border-h:  rgba(90,120,200,0.32);

  /* Primary accent — electric blue */
  --c-accent:    #4f8ef7;
  --c-accent-2:  #6366f1;

  /* Third accent — gold/amber (financial warmth) */
  --c-gold:      #e8a44a;
  --c-gold-dim:  rgba(232,164,74,0.12);
  --c-gold-border: rgba(232,164,74,0.25);

  --c-heading:   #eef2ff;
  --c-body:      #c8d4e8;
  --c-subtle:    #8496b4;
  --c-muted:     #506280;

  --c-danger:    #ef4444;
  --c-success:   #10b981;

  --font-d: 'Plus Jakarta Sans', sans-serif;
  --font-b: 'Inter', sans-serif;
  --r:    8px;
  --r-lg: 14px;
  --t:    0.22s ease;
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--c-bg);
  color: var(--c-body);
  font-family: var(--font-b);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1,h2,h3,h4 { font-family: var(--font-d); color: var(--c-heading); line-height: 1.18; }
a { color: var(--c-accent); text-decoration: none; transition: color var(--t); }
a:hover { color: #93c5fd; }

.sec    { padding: 84px 0; }
.sec-lg { padding: 104px 0; }

.label-tag {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-d);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--c-gold);
  background: var(--c-gold-dim);
  border: 1px solid var(--c-gold-border);
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.sec-title {
  font-size: clamp(1.55rem, 2.8vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.018em;
  margin-bottom: 12px;
}
.sec-sub {
  font-size: 0.97rem;
  color: var(--c-subtle);
  line-height: 1.75;
  max-width: 560px;
}
.rule-line {
  width: 40px; height: 2px;
  background: linear-gradient(90deg, var(--c-gold), var(--c-accent));
  border-radius: 2px;
  margin: 28px auto 0;
}

/* ── Buttons ───────────────────────────────────────────────── */
.btn-primary-sk {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, #3b7de8 0%, #5b5fea 100%);
  color: #fff; border: none; border-radius: var(--r);
  font-family: var(--font-d); font-weight: 700; font-size: 0.92rem;
  padding: 12px 28px; cursor: pointer; white-space: nowrap;
  transition: opacity var(--t), transform var(--t), box-shadow var(--t);
  letter-spacing: 0.01em;
}
.btn-primary-sk:hover { opacity: 0.88; transform: translateY(-1px); box-shadow: 0 8px 28px rgba(79,142,247,0.38); color: #fff; }
.btn-primary-sk:active { transform: none; }

.btn-ghost-sk {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--c-body);
  border: 1px solid rgba(99,130,210,0.25);
  border-radius: var(--r); font-family: var(--font-d);
  font-weight: 600; font-size: 0.9rem; padding: 11px 26px;
  cursor: pointer; white-space: nowrap;
  transition: border-color var(--t), color var(--t), background var(--t);
}
.btn-ghost-sk:hover { border-color: var(--c-accent); color: var(--c-heading); background: rgba(79,142,247,0.05); }

/* ══════════════════════════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════════════════════════ */
.sk-nav {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(6,9,26,0.88);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--c-border);
}
.sk-nav .inner {
  display: flex; align-items: center; height: 64px;
  gap: 32px; padding: 0 24px; max-width: 1200px; margin: 0 auto;
}
.sk-nav .brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-d); font-weight: 800; font-size: 1.25rem;
  color: var(--c-heading); letter-spacing: -0.02em; flex-shrink: 0;
}
.brand-icon {
  width: 30px; height: 30px;
  background: linear-gradient(135deg, var(--c-accent), var(--c-accent-2));
  border-radius: 7px; display: flex; align-items: center; justify-content: center;
}
.sk-nav .nav-links {
  display: flex; align-items: center; gap: 2px;
  margin-left: auto; list-style: none; padding: 0;
}
.sk-nav .nav-links a {
  color: var(--c-subtle); font-size: 0.88rem; font-weight: 500;
  padding: 6px 12px; border-radius: var(--r);
  transition: color var(--t), background var(--t);
}
.sk-nav .nav-links a:hover { color: var(--c-heading); background: rgba(255,255,255,0.04); }
.sk-nav .nav-cta { margin-left: 10px; flex-shrink: 0; }
.sk-nav .tog {
  display: none; background: transparent;
  border: 1px solid var(--c-border); border-radius: var(--r);
  padding: 7px 10px; cursor: pointer; color: var(--c-body);
  margin-left: auto; align-items: center;
}

@media (max-width: 991px) {
  .sk-nav .tog { display: flex; }
  .sk-nav .nav-links, .sk-nav .nav-cta { display: none; }
  .sk-nav .inner { flex-wrap: wrap; height: auto; padding: 12px 20px; }
  .sk-nav .nav-links.open {
    display: flex; flex-direction: column;
    width: 100%; padding: 6px 0 10px; gap: 2px;
  }
  .sk-nav .nav-links.open a { display: block; padding: 9px 10px; }
  .sk-nav .nav-cta.open { display: block; width: 100%; padding-bottom: 10px; }
  .sk-nav .nav-cta.open .btn-primary-sk { width: 100%; justify-content: center; }
}

.hero {
  position: relative; overflow: hidden;
  padding: 72px 0;
  display: flex; align-items: center;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 60% at 75% 10%, rgba(79,142,247,0.10) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 5%  85%, rgba(232,164,74,0.07) 0%, transparent 55%),
    radial-gradient(ellipse 35% 45% at 95% 80%, rgba(99,102,241,0.07) 0%, transparent 50%),
    linear-gradient(165deg, #05080f 0%, #07101e 55%, #060815 100%);
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(79,142,247,0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79,142,247,0.032) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 90% 85% at 50% 45%, #000 20%, transparent 100%);
}
.hero .container { position: relative; z-index: 1; max-width: 1280px; margin: 0 auto; padding: 0 40px; }
.hero-inner {
  display: grid;
  grid-template-columns: 480px 1fr;
  gap: 56px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-d); font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.13em; text-transform: uppercase; color: var(--c-gold);
  margin-bottom: 22px; animation: fadeUp 0.5s ease both;
}
.hero-eyebrow::before {
  content: ''; width: 24px; height: 2px;
  background: var(--c-gold); border-radius: 2px; flex-shrink: 0;
}
.hero-h1 {
  font-size: clamp(1.95rem, 3.4vw, 2.9rem);
  font-weight: 800; line-height: 1.18; letter-spacing: -0.022em;
  margin-bottom: 20px; animation: fadeUp 0.5s 0.08s ease both;
}
.hero-h1 .grad {
  background: linear-gradient(105deg, var(--c-gold) 0%, var(--c-accent) 55%, #818cf8 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-sub {
  font-size: 0.98rem; color: var(--c-subtle); line-height: 1.82;
  max-width: 460px; margin-bottom: 34px;
  animation: fadeUp 0.5s 0.16s ease both;
}
.hero-btns {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-bottom: 44px; animation: fadeUp 0.5s 0.24s ease both;
}
.hero-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--c-border); border-radius: var(--r-lg);
  background: rgba(11,16,34,0.75); backdrop-filter: blur(14px);
  overflow: hidden; animation: fadeUp 0.5s 0.32s ease both;
}
.hero-stat { padding: 15px 18px; border-right: 1px solid var(--c-border); }
.hero-stat:last-child { border-right: none; }
.stat-val {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--c-gold);
  line-height: 1;
  margin-bottom: 5px;
  white-space: nowrap;
  letter-spacing: -0.01em;
}
.stat-lbl {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  color: var(--c-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.35;
}

/* ── Right panel ── */
.hero-right {
  animation: fadeUp 0.5s 0.2s ease both;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* ambient glow behind image */
.hero-right::before {
  content: '';
  position: absolute;
  inset: -40px;
  background: radial-gradient(ellipse 80% 70% at 50% 50%,
    rgba(79,142,247,0.12) 0%, transparent 65%);
  pointer-events: none;
}

.risk-panel {
  position: relative;
  width: 100%;
  border: 1px solid rgba(79,142,247,0.18);
  border-radius: 12px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.04),
    0 24px 64px rgba(0,0,0,0.6),
    0 0 48px rgba(79,142,247,0.10);
}

.risk-panel img {
  width: 100%;
  height: auto;
  display: block;
  filter: brightness(0.93) saturate(1.08);
}
.rp-header {
  background: var(--c-surface-2); border-bottom: 1px solid var(--c-border);
  padding: 13px 16px; display: flex; align-items: center; gap: 8px;
}
.rp-dots { display: flex; gap: 5px; }
.rp-dot { width: 9px; height: 9px; border-radius: 50%; background: rgba(99,130,210,0.18); }
.rp-dot.r { background: #ef4444; opacity: 0.75; }
.rp-dot.a { background: #f59e0b; opacity: 0.75; }
.rp-dot.g { background: #10b981; opacity: 0.75; }
.rp-bar-title {
  font-family: var(--font-d); font-size: 0.68rem; font-weight: 700;
  color: var(--c-muted); letter-spacing: 0.08em; text-transform: uppercase; margin-left: 4px;
}
.rp-live {
  margin-left: auto; display: flex; align-items: center; gap: 5px;
  font-size: 0.65rem; font-weight: 700; color: var(--c-success);
  font-family: var(--font-d); text-transform: uppercase; letter-spacing: 0.08em;
}
.rp-live::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--c-success); animation: pulse-g 1.8s infinite; flex-shrink: 0;
}
@keyframes pulse-g {
  0%   { box-shadow: 0 0 0 0 rgba(16,185,129,0.55); }
  70%  { box-shadow: 0 0 0 6px rgba(16,185,129,0); }
  100% { box-shadow: 0 0 0 0 rgba(16,185,129,0); }
}

.rp-body { padding: 16px; display: flex; flex-direction: column; gap: 10px; }
.rp-section-title {
  font-family: var(--font-d); font-size: 0.62rem; font-weight: 700;
  color: var(--c-muted); text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: 4px;
}
.rp-metric {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 12px;
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--c-border); border-radius: var(--r);
}
.rp-m-label { font-size: 0.76rem; color: var(--c-subtle); font-weight: 500; flex: 1.2; }
.rp-m-bar { flex: 2; height: 4px; background: rgba(255,255,255,0.06); border-radius: 3px; overflow: hidden; }
.rp-m-fill { height: 100%; border-radius: 3px; }
.f-blue  { background: linear-gradient(90deg, var(--c-accent), #818cf8); }
.f-green { background: var(--c-success); }
.f-amber { background: #f59e0b; }
.f-red   { background: var(--c-danger); }
.rp-m-val {
  font-family: var(--font-d); font-size: 0.77rem; font-weight: 700;
  color: var(--c-heading); min-width: 42px; text-align: right;
}

.rp-alert {
  display: flex; align-items: flex-start; gap: 9px;
  padding: 9px 11px; border-radius: var(--r); border: 1px solid;
  font-size: 0.74rem; line-height: 1.5;
}
.rp-alert.d { background: rgba(239,68,68,0.07); border-color: rgba(239,68,68,0.2); }
.rp-alert.w { background: rgba(245,158,11,0.07); border-color: rgba(245,158,11,0.2); }
.rp-alert.o { background: rgba(16,185,129,0.07); border-color: rgba(16,185,129,0.18); }
.rp-a-dot { width: 6px; height: 6px; border-radius: 50%; margin-top: 4px; flex-shrink: 0; }
.rp-alert.d .rp-a-dot { background: var(--c-danger); animation: pulse 1.4s infinite; }
.rp-alert.w .rp-a-dot { background: #f59e0b; }
.rp-alert.o .rp-a-dot { background: var(--c-success); }
.rp-a-text strong { display: block; font-weight: 700; margin-bottom: 1px; font-size: 0.75rem; }
.rp-alert.d .rp-a-text strong { color: #fca5a5; }
.rp-alert.w .rp-a-text strong { color: #fcd34d; }
.rp-alert.o .rp-a-text strong { color: #6ee7b7; }
.rp-a-text span { color: var(--c-subtle); }

.rp-footer {
  border-top: 1px solid var(--c-border); padding: 11px 16px;
  display: flex; align-items: center; justify-content: space-between;
}
.rp-f-time { font-size: 0.65rem; color: var(--c-muted); font-family: var(--font-d); letter-spacing: 0.06em; }
.rp-f-badge {
  font-size: 0.62rem; font-weight: 700; font-family: var(--font-d);
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--c-accent); background: rgba(79,142,247,0.1);
  border: 1px solid rgba(79,142,247,0.2); padding: 2px 8px; border-radius: 999px;
}

@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero { padding: 52px 0; }
}
@media (max-width: 600px) {
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .hero-stat:nth-child(2) { border-right: none; }
  .hero-stat:nth-child(1), .hero-stat:nth-child(2) { border-bottom: 1px solid var(--c-border); }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn-primary-sk, .hero-btns .btn-ghost-sk { width: 100%; justify-content: center; }
}

/* ══════════════════════════════════════════════════════════════
   PROBLEM
══════════════════════════════════════════════════════════════ */
.sec-problem {
  background: var(--c-surface);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}
.prob-grid {
  display: grid; grid-template-columns: 340px 1fr;
  gap: 60px; align-items: start;
}
@media (max-width: 860px) { .prob-grid { grid-template-columns: 1fr; gap: 32px; } }
.prob-left .sec-sub { margin-top: 10px; }

.prob-list { list-style: none; padding: 0; margin: 0; }
.prob-list li {
  display: flex; align-items: flex-start; gap: 13px;
  padding: 13px 0; border-bottom: 1px solid var(--c-border);
  font-size: 0.93rem; color: var(--c-body); line-height: 1.65;
}
.prob-list li:last-child { border-bottom: none; }
.prob-icon {
  width: 19px; height: 19px; min-width: 19px;
  border-radius: 50%; background: rgba(239,68,68,0.1);
  border: 1px solid rgba(239,68,68,0.22);
  display: flex; align-items: center; justify-content: center; margin-top: 2px;
}
.prob-icon svg { width: 9px; height: 9px; }
.prob-list li strong { color: var(--c-heading); }
.prob-callout {
  margin-top: 24px; padding: 18px 20px;
  background: rgba(232,164,74,0.04);
  border: 1px solid rgba(232,164,74,0.12);
  border-left: 3px solid var(--c-gold);
  border-radius: var(--r); font-size: 0.91rem; color: var(--c-body); line-height: 1.75;
}
.prob-callout strong { color: var(--c-heading); }

/* ══════════════════════════════════════════════════════════════
   FEATURES
══════════════════════════════════════════════════════════════ */
.sec-features { background: var(--c-bg); }
.features-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 18px; margin-top: 44px;
}
@media (max-width: 860px) { .features-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .features-grid { grid-template-columns: 1fr; } }

.feat-card {
  background: var(--c-surface); border: 1px solid var(--c-border);
  border-radius: var(--r-lg); padding: 26px 22px;
  position: relative; overflow: hidden;
  transition: border-color var(--t), transform var(--t), box-shadow var(--t);
}
.feat-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--c-gold), var(--c-accent));
  opacity: 0; transition: opacity var(--t);
}
.feat-card:hover { border-color: var(--c-border-h); transform: translateY(-3px); box-shadow: 0 12px 36px rgba(0,0,0,0.3); }
.feat-card:hover::after { opacity: 1; }

.feat-icon {
  width: 42px; height: 42px; border-radius: 10px;
  background: rgba(79,142,247,0.1); border: 1px solid rgba(79,142,247,0.18);
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.feat-icon svg { width: 19px; height: 19px; color: var(--c-accent); }
.feat-title {
  font-family: var(--font-d); font-size: 0.94rem; font-weight: 700;
  color: var(--c-heading); margin-bottom: 7px;
}
.feat-desc { font-size: 0.86rem; color: var(--c-subtle); line-height: 1.72; }

/* ══════════════════════════════════════════════════════════════
   SCENARIOS
══════════════════════════════════════════════════════════════ */
.sec-scenarios {
  background: var(--c-surface);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}
.scenarios-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 18px; margin-top: 44px;
}
@media (max-width: 860px) { .scenarios-grid { grid-template-columns: 1fr; } }

.sc-card {
  background: var(--c-bg); border: 1px solid var(--c-border);
  border-radius: var(--r-lg); padding: 30px 24px;
  transition: border-color var(--t);
}
.sc-card:hover { border-color: var(--c-border-h); }
.sc-num {
  font-family: var(--font-d); font-size: 2.4rem; font-weight: 800;
  color: rgba(232,164,74,0.15); line-height: 1; margin-bottom: 12px; letter-spacing: -0.04em;
}
.sc-title {
  font-family: var(--font-d); font-size: 0.98rem; font-weight: 700;
  color: var(--c-heading); margin-bottom: 9px; line-height: 1.35;
}
.sc-desc { font-size: 0.87rem; color: var(--c-subtle); line-height: 1.78; margin-bottom: 18px; }
.sc-alert {
  display: flex; align-items: center; gap: 7px;
  font-size: 0.75rem; font-weight: 700; color: var(--c-gold);
  font-family: var(--font-d); letter-spacing: 0.04em; text-transform: uppercase;
}
.sc-alert::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--c-gold); animation: pulse-gold 1.8s infinite; flex-shrink: 0;
}
@keyframes pulse-gold {
  0%   { box-shadow: 0 0 0 0 rgba(232,164,74,0.6); }
  70%  { box-shadow: 0 0 0 7px rgba(232,164,74,0); }
  100% { box-shadow: 0 0 0 0 rgba(232,164,74,0); }
}

/* ══════════════════════════════════════════════════════════════
   DEPLOYMENT
══════════════════════════════════════════════════════════════ */
.sec-deploy { background: var(--c-bg); }
.deploy-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 22px; margin-top: 44px;
}
@media (max-width: 680px) { .deploy-grid { grid-template-columns: 1fr; } }

.deploy-card {
  background: var(--c-surface); border: 1px solid var(--c-border);
  border-radius: var(--r-lg); padding: 34px 28px;
  transition: border-color var(--t), box-shadow var(--t);
}
.deploy-card:hover { border-color: var(--c-border-h); box-shadow: 0 8px 32px rgba(0,0,0,0.28); }
.deploy-card.featured {
  border-color: rgba(79,142,247,0.28);
  background: linear-gradient(145deg, rgba(79,142,247,0.05), rgba(99,102,241,0.04));
}
.deploy-badge {
  display: inline-block; font-family: var(--font-d); font-size: 0.66rem;
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em;
  padding: 3px 11px; border-radius: 999px; margin-bottom: 16px;
}
.db-saas   { background: rgba(79,142,247,0.1); color: var(--c-accent); border: 1px solid rgba(79,142,247,0.2); }
.db-onprem { background: rgba(99,102,241,0.1); color: #a5b4fc;       border: 1px solid rgba(99,102,241,0.2); }
.deploy-title { font-size: 1.25rem; font-weight: 800; margin-bottom: 6px; }
.deploy-sub   { font-size: 0.87rem; color: var(--c-subtle); margin-bottom: 22px; line-height: 1.7; }
.deploy-list  { list-style: none; padding: 0; margin: 0; }
.deploy-list li {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 8px 0; font-size: 0.89rem; color: var(--c-body);
  border-bottom: 1px solid var(--c-border); line-height: 1.55;
}
.deploy-list li:last-child { border-bottom: none; }
.ck1 { color: var(--c-accent); flex-shrink: 0; margin-top: 2px; }
.ck2 { color: #a5b4fc; flex-shrink: 0; margin-top: 2px; }

/* ══════════════════════════════════════════════════════════════
   INTEGRATION
══════════════════════════════════════════════════════════════ */
.sec-integration {
  background: var(--c-surface);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}
.int-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
@media (max-width: 800px) { .int-layout { grid-template-columns: 1fr; gap: 36px; } }
.int-left .sec-sub { margin-top: 10px; }
.int-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 560px) { .int-grid { grid-template-columns: 1fr; } }

.int-item {
  background: var(--c-bg); border: 1px solid var(--c-border);
  border-radius: var(--r); padding: 14px 16px;
  display: flex; align-items: flex-start; gap: 12px;
  transition: border-color var(--t);
}
.int-item:hover { border-color: var(--c-border-h); }
.int-icon-w {
  width: 30px; height: 30px; min-width: 30px;
  border-radius: 7px; background: rgba(16,185,129,0.1);
  border: 1px solid rgba(16,185,129,0.18);
  display: flex; align-items: center; justify-content: center;
}
.int-icon-w svg { width: 13px; height: 13px; color: var(--c-success); }
.int-item strong {
  display: block; font-family: var(--font-d); font-size: 0.8rem;
  font-weight: 700; color: var(--c-heading); margin-bottom: 2px; line-height: 1.3;
}
.int-item span { font-size: 0.86rem; color: var(--c-subtle); line-height: 1.55; }

/* ══════════════════════════════════════════════════════════════
   CTA
══════════════════════════════════════════════════════════════ */
.sec-cta {
  background: var(--c-bg); position: relative;
  overflow: hidden; padding: 108px 0; text-align: center;
}
.sec-cta::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 75% 70% at 50% 55%, rgba(79,142,247,0.08) 0%, transparent 70%);
}
.sec-cta .container { position: relative; z-index: 1; }
.cta-title {
  font-size: clamp(1.7rem, 3.6vw, 2.75rem);
  font-weight: 800; letter-spacing: -0.025em; margin-bottom: 12px;
}
.cta-sub {
  font-size: 0.97rem; color: var(--c-subtle); line-height: 1.78;
  max-width: 420px; margin: 0 auto 34px;
}

/* ══════════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════════ */
.sk-footer {
  background: var(--c-surface);
  border-top: 1px solid var(--c-border);
  padding: 44px 0 26px;
}
.footer-top {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.5fr;
  gap: 36px; padding-bottom: 32px;
}
@media (max-width: 800px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-top { grid-template-columns: 1fr; } }
.footer-brand-name {
  font-family: var(--font-d); font-size: 1.1rem; font-weight: 800;
  color: var(--c-heading); margin-bottom: 6px;
}
.footer-tagline { font-size: 0.82rem; color: var(--c-subtle); line-height: 1.6; }
.footer-col-hd {
  font-family: var(--font-d); font-size: 0.68rem; font-weight: 700;
  color: var(--c-muted); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 12px;
}
.f-links { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.f-links a { font-size: 0.85rem; color: var(--c-subtle); }
.f-links a:hover { color: var(--c-heading); }
.footer-bottom {
  border-top: 1px solid var(--c-border); padding-top: 20px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 10px; font-size: 0.76rem; color: var(--c-muted);
}
.f-legal { display: flex; gap: 18px; }
.f-legal a { color: var(--c-muted); }
.f-legal a:hover { color: var(--c-subtle); }

/* ══════════════════════════════════════════════════════════════
   MODAL
══════════════════════════════════════════════════════════════ */
.sk-modal .modal-content {
  background: var(--c-surface-2); border: 1px solid var(--c-border);
  border-radius: var(--r-lg); color: var(--c-body);
}
.sk-modal .modal-header { border-bottom: 1px solid var(--c-border); padding: 20px 24px 16px; }
.sk-modal .modal-title {
  font-family: var(--font-d); font-weight: 800; font-size: 1.12rem; color: var(--c-heading);
}
.sk-modal .modal-sub { font-size: 0.78rem; color: var(--c-subtle); margin: 2px 0 0; }
.sk-modal .modal-body { padding: 22px 24px; }
.sk-modal .modal-footer { border-top: 1px solid var(--c-border); padding: 16px 24px; }
.sk-modal .btn-close { filter: invert(1) brightness(0.5); }

.modal-intro {
  font-size: 0.86rem; color: var(--c-subtle); line-height: 1.7; margin-bottom: 20px;
  padding: 12px 14px; background: rgba(79,142,247,0.05);
  border: 1px solid rgba(79,142,247,0.12); border-radius: var(--r);
}
.fg { margin-bottom: 14px; }
.fg label {
  display: block; font-size: 0.72rem; font-weight: 700;
  font-family: var(--font-d); text-transform: uppercase;
  letter-spacing: 0.07em; color: var(--c-subtle); margin-bottom: 5px;
}
.fg label .req { color: var(--c-danger); }
.fg-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 500px) { .fg-row { grid-template-columns: 1fr; } }
.fc {
  width: 100%; background: var(--c-bg); border: 1px solid var(--c-border);
  border-radius: var(--r); color: var(--c-body); font-family: var(--font-b);
  font-size: 0.89rem; padding: 9px 13px; outline: none;
  transition: border-color var(--t), box-shadow var(--t);
}
.fc::placeholder { color: rgba(95,120,152,0.5); }
.fc:focus { border-color: var(--c-accent); box-shadow: 0 0 0 3px rgba(79,142,247,0.12); }
.fc option { background: var(--c-surface-2); }

.form-success {
  display: none; text-align: center; padding: 26px 18px;
  background: rgba(16,185,129,0.06); border: 1px solid rgba(16,185,129,0.18); border-radius: var(--r);
}
.form-success svg { margin: 0 auto 10px; display: block; }
.form-success h4 {
  font-family: var(--font-d); font-weight: 800; font-size: 0.98rem;
  color: var(--c-heading); margin-bottom: 3px;
}
.form-success p { font-size: 0.83rem; color: var(--c-subtle); margin: 0; }

/* ══════════════════════════════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(79,142,247,0.55); }
  70%  { box-shadow: 0 0 0 7px rgba(79,142,247,0); }
  100% { box-shadow: 0 0 0 0 rgba(79,142,247,0); }
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}