/* ══════════════════════════════════════════════════════
   TEKNOREKA VENTURE — STYLES
   Palette: cobalt blue / white / black
   Type:    Manrope (display) + Inter (body)
══════════════════════════════════════════════════════ */

:root {
  /* Brand */
  --brand:           #2049E0;
  --brand-dark:      #1734B8;
  --brand-darker:    #102488;
  --brand-light:     #4B6EFF;
  --brand-lighter:   #5A7BFF;
  --brand-glow:      #5A7BFF;
  --brand-tint:      #E8EEFF;
  --brand-tint-2:    #F0F4FF;

  /* Surface */
  --bg:              #FFFFFF;
  --bg-soft:         #F8F8FA;
  --bg-cream:        #F5F5F7;
  --bg-dark:         #0A0E1A;
  --bg-darker:       #050810;

  /* Text */
  --text:            #0F0F1A;
  --text-2:          #2A2A40;
  --text-muted:      #5C6275;
  --text-light:      #8B92A8;
  --text-faint:      #B0B7CC;
  --text-on-dark:    #FFFFFF;
  --text-on-dark-2:  #C0C7DC;

  /* Lines */
  --border:          #ECEEF5;
  --border-2:        #E2E5F0;
  --border-dark:     #1A1F2E;

  /* Effects */
  --shadow-sm:       0 2px 6px rgba(15,15,26,.04);
  --shadow:          0 8px 24px rgba(15,15,26,.06);
  --shadow-lg:       0 24px 60px rgba(15,15,26,.10);
  --shadow-xl:       0 40px 80px rgba(15,15,26,.12);
  --shadow-blue:     0 12px 28px rgba(32,73,224,.30);
  --shadow-blue-lg:  0 20px 50px rgba(32,73,224,.35);

  /* Type */
  --font-display:    'Manrope', system-ui, -apple-system, sans-serif;
  --font-body:       'Inter', system-ui, -apple-system, sans-serif;

  /* Radius */
  --r-sm: 8px;
  --r:    14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-pill: 999px;
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; }

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

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--text);
  margin: 0;
}

a { color: var(--brand); text-decoration: none; transition: color .25s ease; }
a:hover { color: var(--brand-dark); }

img, svg { max-width: 100%; display: block; }

button { font-family: inherit; cursor: pointer; }

::selection { background: var(--brand); color: #fff; }

::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--bg-cream); }
::-webkit-scrollbar-thumb { background: var(--border-2); border-radius: 10px; border: 2px solid var(--bg-cream); }
::-webkit-scrollbar-thumb:hover { background: var(--text-light); }

/* ─── COMMON ─── */
.container { max-width: 1240px; }

.kicker {
  display: inline-block;
  font-family: var(--font-display);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--brand);
  padding: 6px 14px;
  background: var(--brand-tint);
  border-radius: var(--r-pill);
  margin-bottom: 20px;
}

.kicker-inverse {
  color: #B7C6FF;
  background: rgba(91,123,255,.12);
  border: 1px solid rgba(91,123,255,.22);
}

.block-heading {
  font-size: clamp(2.1rem, 4.2vw, 3.4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.025em;
  margin-bottom: 18px;
  color: var(--text);
}

.text-highlight { color: var(--brand); }
.text-highlight-light { color: #B7C6FF; }
.text-light-muted { color: var(--text-on-dark-2); }

.block-sub {
  font-size: 1.075rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 540px;
  margin-bottom: 36px;
}

/* ─── BUTTONS ─── */
.btn {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .94rem;
  padding: 14px 26px;
  border-radius: var(--r-pill);
  border: none;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  letter-spacing: -.01em;
}

.btn-primary-blue {
  background: var(--brand);
  color: #fff;
  box-shadow: var(--shadow-blue);
}
.btn-primary-blue:hover {
  background: var(--brand-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-blue-lg);
}

.btn-outline-soft {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border-2);
}
.btn-outline-soft:hover {
  border-color: var(--brand);
  color: var(--brand);
  background: var(--brand-tint);
  transform: translateY(-2px);
}

.btn-hero { padding: 16px 30px; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }

.btn-arrow {
  display: inline-block;
  transition: transform .25s ease;
}
.btn:hover .btn-arrow,
.link-arrow:hover .btn-arrow { transform: translateX(4px); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .95rem;
  color: var(--brand);
  margin-top: 8px;
}

/* ─── ANNOUNCEMENT BAR ─── */
.announce-bar {
  background: var(--bg-dark);
  color: #fff;
  padding: 10px 0;
  font-size: .85rem;
  position: relative;
  z-index: 10;
}
.announce-bar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.announce-pill {
  background: var(--brand);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: .68rem;
  padding: 3px 8px;
  border-radius: var(--r-sm);
  letter-spacing: .08em;
}
.announce-text { color: var(--text-on-dark-2); }
.announce-link {
  color: #fff;
  font-weight: 600;
}
.announce-link:hover { color: var(--brand-lighter); }
.announce-link .arrow { transition: transform .25s ease; display: inline-block; }
.announce-link:hover .arrow { transform: translateX(3px); }

/* ─── NAVIGATION ─── */
.site-nav {
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid transparent;
  transition: background .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.site-nav.scrolled {
  background: rgba(255,255,255,.95);
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  font-family: var(--font-display);
}
.brand-logo {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 10px;
  object-fit: cover;
}
.brand-text {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--text);
}
.brand-accent { color: var(--brand); }

.nav-center { gap: 4px; }
.nav-center .nav-link {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .93rem;
  color: var(--text-2);
  padding: 8px 14px;
  border-radius: var(--r-sm);
  transition: color .2s ease, background .2s ease;
}
.nav-center .nav-link:hover {
  color: var(--brand);
  background: var(--brand-tint);
}

.nav-careers {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
}
.hiring-pill {
  background: var(--brand);
  color: #fff;
  font-size: .62rem;
  font-weight: 800;
  padding: 3px 7px;
  border-radius: var(--r-sm);
  letter-spacing: .08em;
}

.nav-cta-btn {
  padding: 10px 20px;
  font-size: .88rem;
}

.nav-burger {
  border: 1px solid var(--border-2);
  background: #fff;
  border-radius: var(--r-sm);
  padding: 8px 10px;
  display: none;
  flex-direction: column;
  gap: 4px;
}
.nav-burger:focus { box-shadow: none; outline: none; }
.burger-line {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
}

/* ─── HERO ─── */
.hero-section {
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #FAFBFF 0%, #FFFFFF 60%);
}

.hero-bg-dots {
  position: absolute;
  top: 0;
  right: -100px;
  width: 500px;
  height: 500px;
  background-image: radial-gradient(circle, #C6D2FF 1.2px, transparent 1.2px);
  background-size: 16px 16px;
  opacity: .5;
  pointer-events: none;
  z-index: 0;
}

.hero-section .container { position: relative; z-index: 1; }

.hero-headline {
  font-size: clamp(2.6rem, 5.5vw, 4.4rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -.035em;
  margin-bottom: 24px;
  color: var(--text);
}

.hero-sub {
  font-size: 1.15rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

.hero-microstats {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.micro-item .micro-num {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -.02em;
  line-height: 1;
}
.micro-item .micro-suffix { color: var(--brand); }
.micro-item .micro-label {
  font-size: .8rem;
  color: var(--text-muted);
  margin-top: 4px;
}
.micro-divider {
  width: 1px;
  height: 36px;
  background: var(--border-2);
}

.hero-visual-wrap {
  position: relative;
  width: 100%;
  max-width: 620px;
  margin-left: auto;
}
.hero-3d {
  width: 100%;
  height: auto;
}

/* Floating animations on SVG groups */
.float-slow   { animation: floatY 6s ease-in-out infinite; }
.float-medium { animation: floatY 4.5s ease-in-out infinite; }
.float-core   { animation: floatY 5s ease-in-out infinite; }
.float-bubble-1 { animation: floatY 5s ease-in-out infinite; }
.float-bubble-2 { animation: floatY 6s ease-in-out infinite -1s; }
.float-bubble-3 { animation: floatY 4s ease-in-out infinite -.5s; }
.float-card-1 { animation: floatY 5.5s ease-in-out infinite -1s; }
.float-card-2 { animation: floatY 6.2s ease-in-out infinite -.5s; }

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

.pulse-ring { animation: pulseRing 2.4s ease-in-out infinite; transform-origin: center; }
@keyframes pulseRing {
  0%   { transform: scale(1); opacity: .35; }
  50%  { transform: scale(1.18); opacity: .15; }
  100% { transform: scale(1); opacity: .35; }
}

.twinkle-1 { animation: twinkle 3s ease-in-out infinite; }
.twinkle-2 { animation: twinkle 3.6s ease-in-out infinite -1s; }
.twinkle-3 { animation: twinkle 2.8s ease-in-out infinite -.5s; }
@keyframes twinkle {
  0%, 100% { opacity: .3; transform: scale(1); }
  50%      { opacity: 1; transform: scale(1.4); }
}

/* ─── TRUSTED BY ─── */
.trusted-section {
  padding: 50px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: #fff;
}
.trusted-label {
  text-align: center;
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 28px;
}
.trusted-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 36px 56px;
}
.trust-item {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-light);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  letter-spacing: -.01em;
  transition: color .25s ease;
  filter: grayscale(1);
  opacity: .75;
}
.trust-item:hover { color: var(--text); opacity: 1; filter: grayscale(0); }
.trust-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: var(--brand-tint);
  color: var(--brand);
  border-radius: var(--r-sm);
  font-size: .75rem;
}

/* ─── FEATURE BLOCKS ─── */
.feature-block {
  padding: 110px 0;
  background: var(--bg);
  position: relative;
}
.feature-block-alt {
  background: var(--bg-cream);
}

.feature-illust {
  position: relative;
  padding: 20px;
}
.feature-illust > svg {
  width: 100%;
  height: auto;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 32px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.feat-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--brand-tint);
  border-radius: var(--r-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.feature-list h4 {
  font-size: 1.08rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text);
  letter-spacing: -.01em;
}
.feature-list p {
  font-size: .94rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

/* ─── PHONE SHOWCASE ─── */
.phone-showcase {
  padding: 120px 0 100px;
  background: var(--brand);
  background-image: radial-gradient(circle at 30% 20%, rgba(91,123,255,.6) 0%, transparent 50%),
                    radial-gradient(circle at 80% 80%, rgba(23,52,184,.6) 0%, transparent 50%);
  position: relative;
  overflow: hidden;
}
.phone-showcase::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.15) 1.5px, transparent 1.5px);
  background-size: 24px 24px;
  opacity: .3;
  pointer-events: none;
}
.phone-showcase .container { position: relative; z-index: 1; }

.text-white { color: #fff !important; }

.showcase-heading {
  margin-bottom: 64px;
}
.showcase-heading .block-sub {
  margin-left: auto;
  margin-right: auto;
}

/* Phone-showcase readability: overrides for high-contrast on blue bg */
.phone-showcase .block-heading { color: #FFFFFF; }
.phone-showcase .text-highlight-light {
  color: #FFFFFF;
  opacity: 0.78;
}
.phone-showcase .block-sub,
.phone-showcase .text-light-muted {
  color: rgba(255, 255, 255, 0.92) !important;
}
.phone-showcase .kicker-inverse {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.phones-row {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.phone-wrap {
  perspective: 1000px;
}

.phone-frame {
  width: 240px;
  height: 480px;
  background: #FFFFFF;
  border-radius: 36px;
  padding: 10px;
  box-shadow: 0 30px 70px rgba(0,0,0,.3), 0 0 0 6px #0F0F1A inset;
  position: relative;
  transition: transform .35s ease;
}
.phone-frame.phone-dark {
  background: #0F0F1A;
  box-shadow: 0 30px 70px rgba(0,0,0,.5), 0 0 0 6px #1A1A2E inset;
}

.phone-back .phone-frame {
  transform: scale(.92);
  opacity: .92;
}
.phone-back:hover .phone-frame { transform: scale(.94); }
.phone-center .phone-frame:hover { transform: translateY(-6px); }

.phone-notch {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 18px;
  background: #0F0F1A;
  border-radius: var(--r-pill);
  z-index: 2;
}

.phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  padding: 36px 18px 18px;
}
.phone-screen-light { background: #FFFFFF; }
.phone-screen-dark { background: #0F0F1A; }

.phone-time {
  font-family: var(--font-display);
  font-size: .72rem;
  font-weight: 700;
  color: var(--text);
  text-align: center;
  margin-bottom: 14px;
}
.phone-screen-dark .phone-time { color: #fff; }

.phone-content h3 {
  font-size: 1.3rem;
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 10px;
  letter-spacing: -.02em;
}
.phone-content p {
  font-size: .76rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 14px;
}
.phone-screen-dark .phone-content p { color: var(--text-on-dark-2); }

.phone-btn {
  background: var(--brand);
  color: #fff;
  border: none;
  border-radius: var(--r-pill);
  padding: 9px 16px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .78rem;
  box-shadow: var(--shadow-blue);
}
.phone-btn-blue { background: var(--brand); }

.phone-illust-mini {
  margin-top: 16px;
  background: var(--brand-tint);
  border-radius: var(--r);
  padding: 14px;
}

.phone-cubes {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  perspective: 600px;
}
.cube {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #4B6EFF, #1734B8);
  border-radius: 6px;
  transform: rotate(45deg);
  opacity: .85;
}
.cube-1 { animation: cubeFloat 3s ease-in-out infinite; }
.cube-2 { animation: cubeFloat 3.4s ease-in-out infinite -.5s; }
.cube-3 { animation: cubeFloat 3.8s ease-in-out infinite -1s; }
.cube-4 { animation: cubeFloat 3.2s ease-in-out infinite -1.5s; }
@keyframes cubeFloat {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50%      { transform: rotate(45deg) translateY(-6px); }
}

.mini-chart-card {
  background: var(--bg-cream);
  border-radius: var(--r);
  padding: 14px;
  margin-bottom: 14px;
}
.mini-title {
  font-family: var(--font-display);
  font-size: .68rem !important;
  font-weight: 600;
  color: var(--text-muted) !important;
  margin-bottom: 6px !important;
}
.mini-chart { margin-bottom: 8px; }
.mini-legend {
  font-size: .62rem;
  color: var(--text-muted);
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}
.legend-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  margin-right: 4px;
}
.legend-blue { background: var(--brand); }
.legend-lblue { background: #B7C6FF; }
.phone-content h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-top: 8px;
  margin-bottom: 6px;
}

/* ─── SERVICES ─── */
.services-section {
  padding: 110px 0;
  background: var(--bg);
}

.svc-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  height: 100%;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
  position: relative;
  overflow: hidden;
}
.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.svc-icon-wrap {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--brand-light), var(--brand-darker));
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  box-shadow: var(--shadow-blue);
}

.svc-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -.02em;
}
.svc-card p {
  font-size: .95rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 22px;
}

.svc-link {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .9rem;
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.svc-link:hover .btn-arrow { transform: translateX(4px); }

.svc-card-featured {
  background: linear-gradient(135deg, #0F0F1A 0%, #1A1F38 100%);
  border-color: transparent;
  color: #fff;
}
.svc-card-featured h3,
.svc-card-featured p { color: #fff; }
.svc-card-featured p { color: var(--text-on-dark-2); }
.svc-card-featured .svc-link { color: var(--brand-lighter); }
.svc-card-featured .svc-icon-wrap {
  background: var(--brand);
  box-shadow: 0 12px 28px rgba(91,123,255,.4);
}
.svc-badge {
  position: absolute;
  top: 22px;
  right: 22px;
  background: var(--brand);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: .65rem;
  padding: 4px 10px;
  border-radius: var(--r-pill);
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* ─── STATS BANNER ─── */
.stats-banner {
  padding: 70px 0;
  background: var(--bg-cream);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stat-big {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--text);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-big::after { content: '+'; color: var(--brand); }
.stat-big:has(span)::after { content: ''; }
.stat-label {
  font-size: .9rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ─── INDUSTRIES ─── */
.industries-section {
  padding: 110px 0;
  background: var(--bg);
}

.industry-card-pro {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px;
  height: 100%;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.industry-card-pro:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--brand-light);
}

.industry-illust {
  border-radius: var(--r);
  overflow: hidden;
  margin-bottom: 22px;
}
.industry-illust svg { width: 100%; height: auto; display: block; }

.industry-tag-pro {
  display: inline-block;
  font-family: var(--font-display);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--brand);
  background: var(--brand-tint);
  padding: 5px 12px;
  border-radius: var(--r-pill);
  margin-bottom: 12px;
}

.industry-card-pro h3 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -.02em;
}
.industry-card-pro p {
  font-size: .94rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 20px;
}

.industry-checks {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.industry-checks span {
  font-size: .85rem;
  color: var(--text-2);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}

/* ─── PROCESS ─── */
.process-section {
  padding: 110px 0;
  background: var(--bg-cream);
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
  padding-top: 30px;
}
.process-line {
  position: absolute;
  top: 56px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--brand-light), var(--brand-light), transparent);
  border-radius: 2px;
}

.process-step-pro {
  text-align: center;
  padding: 0 12px;
  position: relative;
  z-index: 1;
}
.step-dot {
  width: 56px;
  height: 56px;
  background: #fff;
  border: 2px solid var(--brand);
  color: var(--brand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  box-shadow: 0 0 0 6px rgba(32,73,224,.08);
  transition: background .3s ease, color .3s ease, transform .3s ease;
}
.process-step-pro:hover .step-dot {
  background: var(--brand);
  color: #fff;
  transform: scale(1.06);
}

.process-step-pro h4 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: -.01em;
}
.process-step-pro p {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

/* ─── TESTIMONIALS ─── */
.testimonial-section {
  padding: 110px 0;
  background: var(--bg);
}

.splide__pagination__page {
  background: var(--border-2);
  opacity: 1;
  width: 8px;
  height: 8px;
  transition: background .25s ease, width .25s ease;
}
.splide__pagination__page.is-active {
  background: var(--brand);
  width: 28px;
  border-radius: 4px;
  transform: none;
}

.splide__arrow {
  background: #fff;
  border: 1px solid var(--border-2);
  width: 44px;
  height: 44px;
  opacity: 1;
}
.splide__arrow:hover {
  background: var(--brand);
  border-color: var(--brand);
}
.splide__arrow svg { fill: var(--text); transition: fill .25s ease; }
.splide__arrow:hover svg { fill: #fff; }
.splide__arrow--prev { left: -22px; }
.splide__arrow--next { right: -22px; }

.testimonial-splide { padding-bottom: 36px; }

.testi-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px;
  height: 100%;
  transition: transform .3s ease, box-shadow .3s ease;
  margin: 4px;
}
.testi-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.testi-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 18px;
}

.testi-quote {
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 28px;
  font-weight: 500;
  letter-spacing: -.01em;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testi-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: .9rem;
  color: #fff;
  flex-shrink: 0;
}
.testi-avatar-1 { background: linear-gradient(135deg, #4B6EFF, #1734B8); }
.testi-avatar-2 { background: linear-gradient(135deg, #A78BFA, #7C3AED); }
.testi-avatar-3 { background: linear-gradient(135deg, #22C55E, #15803D); }
.testi-avatar-4 { background: linear-gradient(135deg, #FB923C, #EA580C); }

.testi-name {
  font-family: var(--font-display);
  font-size: .94rem;
  font-weight: 700;
  color: var(--text);
}
.testi-role {
  font-size: .78rem;
  color: var(--text-muted);
}

/* ─── DARK CTA ─── */
.dark-cta {
  padding: 130px 0;
  background: var(--bg-dark);
  background-image: radial-gradient(circle at 20% 30%, rgba(32,73,224,.5) 0%, transparent 45%),
                    radial-gradient(circle at 80% 70%, rgba(91,123,255,.35) 0%, transparent 45%);
  position: relative;
  overflow: hidden;
  color: #fff;
}
.dark-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.dark-cta .container { position: relative; z-index: 1; }

.dark-cta-heading {
  font-size: clamp(2.8rem, 6vw, 4.6rem);
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: 1;
  color: #fff;
  margin-bottom: 24px;
}
.dark-cta-sub {
  font-size: 1.1rem;
  color: var(--text-on-dark-2);
  margin: 0 auto 36px;
  max-width: 540px;
  line-height: 1.65;
}

.dark-cta-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  margin-top: 60px;
  flex-wrap: wrap;
  color: var(--text-on-dark-2);
  font-size: .92rem;
}
.dark-cta-stats strong {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  display: block;
  margin-bottom: 2px;
  letter-spacing: -.02em;
}

.dark-cta-cubes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.d-cube {
  position: absolute;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #4B6EFF, #1734B8);
  border-radius: 6px;
  opacity: .6;
  box-shadow: 0 0 30px rgba(91,123,255,.4);
}
.d-cube-1 { top: 12%;  left: 6%;  animation: cubeRotate 18s linear infinite; }
.d-cube-2 { top: 18%;  right: 8%; width: 28px; height: 28px; animation: cubeRotate 14s linear infinite reverse; }
.d-cube-3 { bottom: 14%; left: 9%; width: 32px; height: 32px; animation: cubeRotate 20s linear infinite; }
.d-cube-4 { bottom: 22%; right: 10%; animation: cubeRotate 16s linear infinite reverse; }
.d-cube-5 { top: 50%; left: 14%; width: 22px; height: 22px; animation: cubeRotate 12s linear infinite; }
.d-cube-6 { top: 60%; right: 16%; width: 36px; height: 36px; animation: cubeRotate 22s linear infinite reverse; }

@keyframes cubeRotate {
  0%   { transform: rotate(0deg) translateY(0); }
  50%  { transform: rotate(180deg) translateY(-20px); }
  100% { transform: rotate(360deg) translateY(0); }
}

/* ─── FOOTER ─── */
.site-footer {
  padding: 80px 0 32px;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.footer-brand { margin-bottom: 16px; }
.footer-tagline {
  color: var(--text-muted);
  font-size: .94rem;
  line-height: 1.65;
  max-width: 300px;
  margin-bottom: 22px;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.social-pill {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-cream);
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .25s ease, color .25s ease, transform .25s ease;
}
.social-pill:hover {
  background: var(--brand);
  color: #fff;
  transform: translateY(-2px);
}

.footer-title {
  font-family: var(--font-display);
  font-size: .92rem;
  font-weight: 800;
  margin-bottom: 18px;
  color: var(--text);
  letter-spacing: -.01em;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a {
  color: var(--text-muted);
  font-size: .92rem;
  transition: color .2s ease;
}
.footer-links a:hover { color: var(--brand); }

.footer-bottom {
  margin-top: 60px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .85rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom-right { display: inline-flex; gap: 24px; }
.footer-bottom-right a {
  color: var(--text-muted);
  transition: color .2s ease;
}
.footer-bottom-right a:hover { color: var(--brand); }

/* ═══════════════════════════
   DEMO MODAL
═══════════════════════════ */
.demo-modal .modal-dialog {
  max-width: 1080px;
}
.demo-modal .modal-content {
  border: none;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: #fff;
  position: relative;
}
.demo-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 5;
  background: var(--bg-cream);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  opacity: 1;
  padding: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z' fill='%230F0F1A'/%3E%3C/svg%3E");
}

.demo-form-side {
  padding: 50px 40px;
}
.modal-brand {
  margin-bottom: 28px;
}

.modal-headline {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -.025em;
  line-height: 1.15;
  margin-bottom: 12px;
  color: var(--text);
}
.modal-sub {
  font-size: .98rem;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.form-float {
  position: relative;
}
.form-float input,
.form-float textarea {
  width: 100%;
  padding: 22px 16px 8px;
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--text);
  background: #fff;
  border: 1.5px solid var(--border-2);
  border-radius: var(--r-sm);
  outline: none;
  transition: border-color .25s ease, box-shadow .25s ease;
  resize: vertical;
}
.form-float textarea { min-height: 90px; }
.form-float input:focus,
.form-float textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(32,73,224,.12);
}
.form-float label {
  position: absolute;
  top: 14px;
  left: 16px;
  font-size: .85rem;
  color: var(--text-light);
  pointer-events: none;
  transition: transform .2s ease, color .2s ease, font-size .2s ease;
  background: #fff;
  padding: 0 4px;
}
.form-float input:focus + label,
.form-float input:not(:placeholder-shown) + label,
.form-float textarea:focus + label,
.form-float textarea:not(:placeholder-shown) + label {
  top: -8px;
  font-size: .72rem;
  color: var(--brand);
  font-weight: 600;
}

.form-group-stack {
  margin-top: 22px;
}
.form-question {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .92rem;
  margin-bottom: 12px;
  color: var(--text);
}

.radio-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.radio-pill {
  position: relative;
  cursor: pointer;
}
.radio-pill input {
  position: absolute;
  opacity: 0;
}
.radio-pill span {
  display: inline-block;
  padding: 9px 16px;
  border: 1.5px solid var(--border-2);
  border-radius: var(--r-pill);
  font-size: .85rem;
  font-weight: 600;
  color: var(--text-2);
  background: #fff;
  transition: all .2s ease;
}
.radio-pill:hover span { border-color: var(--brand-light); color: var(--brand); }
.radio-pill input:checked + span {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}

.slider-block { position: relative; padding-top: 8px; padding-bottom: 18px; }
.budget-slider {
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  height: 6px;
  background: var(--border-2);
  border-radius: 3px;
  outline: none;
}
.budget-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  background: #fff;
  border: 3px solid var(--brand);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(32,73,224,.3);
  transition: transform .2s ease;
}
.budget-slider::-webkit-slider-thumb:hover { transform: scale(1.15); }
.budget-slider::-moz-range-thumb {
  width: 22px;
  height: 22px;
  background: #fff;
  border: 3px solid var(--brand);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(32,73,224,.3);
}

.slider-ticks {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  font-size: .68rem;
  color: var(--text-muted);
  font-weight: 500;
}
.slider-bubble {
  position: absolute;
  top: -10px;
  background: var(--text);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 6px;
  transform: translateX(-50%);
  transition: left .15s ease;
  white-space: nowrap;
}
.slider-bubble::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: var(--text);
}

.form-disclaimer {
  font-size: .76rem;
  color: var(--text-light);
  margin-top: 14px;
  text-align: center;
  margin-bottom: 0;
}

.demo-visual-side {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-darker) 100%);
  background-image:
    radial-gradient(circle at 30% 30%, rgba(91,123,255,.5) 0%, transparent 50%),
    linear-gradient(135deg, var(--brand) 0%, var(--brand-darker) 100%);
  position: relative;
  overflow: hidden;
}
.demo-visual-side::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.12) 1px, transparent 1px);
  background-size: 22px 22px;
}
.demo-visual-inner {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
}
.demo-visual-inner svg { width: 100%; height: auto; }

/* ════════════════ RESPONSIVE ════════════════ */
@media (max-width: 1199.98px) {
  .nav-center .nav-link { padding: 8px 10px; font-size: .88rem; }
}

@media (max-width: 991.98px) {
  .nav-burger { display: flex; }
  .navbar-collapse {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--border);
  }
  .nav-center { gap: 2px; flex-direction: column; align-items: flex-start; }
  .nav-center .nav-link { width: 100%; padding: 10px 12px; }
  .nav-cta-btn { width: 100%; justify-content: center; margin-top: 12px; }

  .hero-section { padding: 60px 0 80px; }
  .hero-visual-wrap { margin: 40px auto 0; max-width: 480px; }

  .feature-block { padding: 80px 0; }
  .phone-showcase { padding: 80px 0 70px; }

  .process-timeline { grid-template-columns: repeat(2, 1fr); gap: 40px 24px; }
  .process-line { display: none; }

  .dark-cta { padding: 90px 0; }
  .dark-cta-stats { gap: 24px; }
  .dark-cta-stats strong { font-size: 1.35rem; }

  .splide__arrow--prev { left: -10px; }
  .splide__arrow--next { right: -10px; }
}

@media (max-width: 767.98px) {
  .announce-bar { font-size: .78rem; padding: 8px 0; }
  .announce-bar .container { gap: 8px; }

  .hero-section { padding: 40px 0 60px; }
  .hero-headline { font-size: clamp(2.2rem, 8vw, 2.8rem); }
  .hero-sub { font-size: 1rem; }
  .hero-microstats { flex-wrap: wrap; gap: 16px; }
  .micro-divider { display: none; }
  .micro-item { flex: 1 1 30%; min-width: 90px; }
  .hero-bg-dots { width: 300px; height: 300px; right: -50px; }
  .btn-hero { padding: 14px 24px; font-size: .92rem; }

  .trusted-section { padding: 36px 0; }
  .trusted-logos { gap: 18px 28px; }
  .trust-item { font-size: .92rem; }

  .feature-block { padding: 64px 0; }
  .feature-list { gap: 18px; }
  .feature-list h4 { font-size: 1rem; }

  .phone-showcase { padding: 64px 0 56px; }
  .phones-row { flex-direction: column; gap: 18px; align-items: center; }
  .phone-back .phone-frame { transform: none; opacity: 1; }
  .phone-frame { width: 250px; height: 500px; }

  .services-section,
  .industries-section,
  .process-section,
  .testimonial-section { padding: 64px 0; }

  .stats-banner { padding: 48px 0; }
  .stat-big { font-size: 2.2rem; }
  .stat-label { font-size: .8rem; }

  .process-timeline { grid-template-columns: 1fr; gap: 36px; }

  .dark-cta { padding: 70px 0; }
  .dark-cta-heading { font-size: 2.4rem; }
  .dark-cta-stats { gap: 16px; flex-direction: column; }
  .d-cube { width: 24px !important; height: 24px !important; }

  .site-footer { padding: 56px 0 24px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 10px; }

  .demo-form-side { padding: 36px 24px; }
  .modal-headline { font-size: 1.5rem; }
  .demo-modal-close { top: 12px; right: 12px; }
  .radio-pill span { padding: 8px 13px; font-size: .8rem; }
}

@media (max-width: 480px) {
  .container { padding-left: 18px; padding-right: 18px; }
  .hero-headline { font-size: 2.2rem; }
  .block-heading { font-size: 1.9rem; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-microstats .micro-item { flex: 1 1 45%; }

  .svc-card, .industry-card-pro, .testi-card { padding: 24px 20px; }

  .modal-headline { font-size: 1.35rem; }
}

/* ─── PRINT ─── */
@media print {
  .announce-bar, .site-nav, .demo-modal, .dark-cta-cubes, .hero-bg-dots { display: none !important; }
  body { background: #fff; color: #000; }
}

/* ─── REDUCED MOTION ─── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}
