/* ========== RESET & TOKENS ========== */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
:root {
  /* Brand — Clinovate */
  --navy: #0B1F3A;            /* Midnight Blue — primary */
  --navy-deep: #061429;        /* Darker navy for deep surfaces */
  --navy-700: #142a4d;
  --navy-500: #1f3b66;
  --cyan: #38BDF8;             /* Soft blue / cyan highlight */
  --cyan-bright: #00C2FF;
  --cyan-soft: #BAE6FD;

  /* Neutrals */
  --bg: #FFFFFF;
  --bg-soft: #F4F7FB;          /* Light grey-blue */
  --bg-tint: #EEF3FA;
  --surface: #FFFFFF;
  --line: #E2E8F0;
  --line-soft: #EDF2F7;
  --text: #0B1F3A;
  --muted: #64748B;
  --muted-2: #94A3B8;

  /* Tokens */
  --radius: 18px;
  --radius-sm: 10px;
  --radius-pill: 999px;
  --container: 1200px;
  --shadow-sm: 0 4px 16px rgba(11, 31, 58, 0.06);
  --shadow: 0 12px 40px rgba(11, 31, 58, 0.10);
  --shadow-lg: 0 24px 60px rgba(11, 31, 58, 0.16);
  --glow-cyan: 0 0 0 6px rgba(56, 189, 248, 0.18);
  --section-y: 120px;
}
body {
  font-family: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

h1,h2,h3,h4 { font-family: 'Manrope', sans-serif; font-weight: 700; letter-spacing: -.02em; line-height: 1.1; color: var(--navy); }

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 22px; border-radius: var(--radius-pill);
  font-weight: 600; font-size: 14px;
  transition: transform .2s ease, background .25s ease, color .25s ease, border-color .25s ease, box-shadow .25s ease;
  white-space: nowrap;
}
.btn-lg { padding: 16px 28px; font-size: 15px; }
.btn-primary {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-500) 100%);
  color: #fff;
  box-shadow: 0 8px 24px rgba(11, 31, 58, .25);
}
.btn-primary:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, var(--navy-500) 0%, var(--navy-700) 100%);
  box-shadow: 0 14px 32px rgba(11, 31, 58, .35), 0 0 0 4px rgba(56, 189, 248, .12);
}
.btn-ghost { color: var(--navy); border: 1px solid var(--line); background: var(--bg); }
.btn-ghost:hover { background: var(--bg-soft); border-color: var(--cyan); color: var(--navy); }
.btn-ghost-light { color: #fff; border: 1px solid rgba(255,255,255,.25); background: rgba(255,255,255,.06); }
.btn-ghost-light:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.5); }
.btn-outline { color: var(--navy); border: 1px solid var(--line); padding: 10px 18px; font-size: 13px; background: var(--bg); }
.btn-outline:hover { border-color: var(--navy); background: var(--navy); color: #fff; }
.arrow { transition: transform .2s ease; display: inline-block; }
.btn:hover .arrow { transform: translateX(3px); }
.play-icon {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--navy); color: var(--cyan);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 9px;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--navy);
  padding: 6px 14px; border: 1px solid var(--line); border-radius: var(--radius-pill);
  background: linear-gradient(180deg, #fff, var(--bg-tint));
}
.eyebrow.light { color: #cfe7ff; background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.18); }
.section-title { font-size: clamp(28px, 4vw, 48px); margin-top: 18px; }
.section-title.light { color: #fff; }
.section-lead { color: var(--muted); margin-top: 14px; max-width: 620px; font-size: 16px; }
.section-head { margin-bottom: 64px; }
.section-head.center { text-align: center; }
.section-head.center .section-lead { margin-left: auto; margin-right: auto; }
.section-head.split { display: flex; justify-content: space-between; align-items: end; gap: 24px; flex-wrap: wrap; }

.stars { color: #F5B800; letter-spacing: 2px; font-size: 14px; }

/* ========== HEADER ========== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: blur(18px);
  background: rgba(255,255,255,.78);
  border-bottom: 1px solid var(--line-soft);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; padding: 16px 24px; gap: 24px; }
.logo { display: inline-flex; align-items: center; gap: 12px; font-weight: 800; font-family: 'Manrope', sans-serif; font-size: 20px; color: var(--navy); }
.logo-mark {
  width: 36px; height: 36px; border-radius: 10px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-500) 60%, var(--cyan) 130%);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 18px rgba(11, 31, 58, .25), inset 0 0 0 1px rgba(255,255,255,.08);
}
.primary-nav { display: flex; gap: 32px; }
.primary-nav a { font-size: 14px; color: var(--muted); font-weight: 500; transition: color .2s ease; position: relative; }
.primary-nav a:hover { color: var(--navy); }
.primary-nav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -6px; height: 2px;
  background: var(--cyan); transition: right .25s ease;
}
.primary-nav a:hover::after { right: 0; }
.nav-actions { display: flex; align-items: center; gap: 14px; }
.icon-btn {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--line); background: var(--bg);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--navy); transition: all .2s ease;
}
.icon-btn:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
.menu-toggle { display: none; flex-direction: column; gap: 4px; padding: 8px; }
.menu-toggle span { width: 22px; height: 2px; background: var(--navy); display: block; }

/* ========== HERO ========== */
.hero {
  padding: 32px 0 90px; position: relative;
  background: linear-gradient(180deg, #ffffff 0%, var(--bg-soft) 100%);
  overflow: hidden;
}
.hero-glow {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(40% 35% at 80% 10%, rgba(56, 189, 248, 0.20), transparent 70%),
    radial-gradient(40% 35% at 0% 50%, rgba(56, 189, 248, 0.10), transparent 75%),
    radial-gradient(30% 25% at 60% 80%, rgba(11, 31, 58, 0.05), transparent 75%);
}
.hero-grid {
  position: relative;
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 56px; align-items: center;
}
.hero-copy { display: flex; flex-direction: column; align-items: flex-start; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--navy); font-weight: 600;
  padding: 8px 16px; border: 1px solid var(--line); border-radius: var(--radius-pill);
  background: rgba(255,255,255,.85); backdrop-filter: blur(8px);
  box-shadow: var(--shadow-sm);
}
.dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--cyan);
  box-shadow: 0 0 0 4px rgba(56,189,248,.22);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(56,189,248,.22); }
  50%      { box-shadow: 0 0 0 8px rgba(56,189,248,.08); }
}
.hero-title {
  font-size: clamp(32px, 4.2vw, 58px);
  line-height: 1.08;
  margin: 24px 0 22px;
  letter-spacing: -.025em;
  overflow-wrap: break-word;
}
.hl {
  background: linear-gradient(120deg, var(--cyan-bright) 0%, var(--navy-500) 70%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  font-style: italic; font-weight: 700;
}
.hero-sub { color: var(--muted); font-size: 17px; max-width: 540px; margin: 0 0 32px; line-height: 1.65; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }

.hero-trust { display: flex; align-items: center; gap: 16px; }
.trust-avatars { display: flex; }
.trust-avatars img {
  width: 40px; height: 40px; border-radius: 50%; object-fit: cover;
  border: 3px solid #fff; box-shadow: var(--shadow-sm);
  margin-left: -10px;
}
.trust-avatars img:first-child { margin-left: 0; }
.trust-meta .stars { font-size: 13px; }
.trust-meta .stars span { color: var(--navy); font-weight: 700; margin-left: 4px; }
.trust-meta small { display: block; font-size: 12px; color: var(--muted); margin-top: 2px; }

.hero-visual {
  position: relative;
}
.hero-image {
  position: relative; border-radius: 28px; overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  aspect-ratio: 4 / 5;
}
.hero-image img { width: 100%; height: 100%; object-fit: cover; }
.hero-image::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(11,31,58,.18) 100%);
  pointer-events: none;
}
.hero-stat-card {
  position: absolute; bottom: 24px; left: -24px;
  background: rgba(255,255,255,.95); backdrop-filter: blur(14px);
  padding: 18px 22px; border-radius: 16px; border: 1px solid var(--line);
  text-align: left; box-shadow: var(--shadow-lg);
  min-width: 200px;
}
.hero-stat-num { font-family: 'Manrope', sans-serif; font-size: 30px; font-weight: 800; color: var(--navy); }
.hero-stat-num span { font-size: 18px; color: var(--cyan-bright); font-weight: 700; }
.hero-stat-label { font-size: 12px; color: var(--muted); margin: 4px 0; }
.hero-badge {
  position: absolute; top: 24px; right: -16px;
  display: flex; align-items: center; gap: 12px;
  background: rgba(11,31,58,.95); color: #fff;
  backdrop-filter: blur(14px);
  padding: 14px 18px; border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow-lg);
}
.hero-badge strong { display: block; font-size: 13px; font-weight: 700; color: #fff; }
.hero-badge small { font-size: 11px; color: var(--cyan-soft); }
.badge-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--cyan); box-shadow: 0 0 12px var(--cyan);
  animation: pulse 2.4s ease-in-out infinite;
}

/* ========== PARTNERS / TRUSTED BY ========== */
.partners { padding: 64px 0; background: var(--bg); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.partners-title { text-align: center; color: var(--muted); font-size: 13px; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 32px; font-weight: 600; }
.logo-marquee { overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); }
.logo-track { display: flex; gap: 80px; width: max-content; animation: scroll 45s linear infinite; }
.brand {
  font-family: 'Manrope', sans-serif; font-size: 24px; font-weight: 700;
  color: var(--navy); opacity: .35; letter-spacing: -.01em;
  transition: opacity .2s, color .2s;
}
.brand:hover { opacity: 1; color: var(--cyan-bright); }
@keyframes scroll { from { transform: translateX(0) } to { transform: translateX(-50%) } }

/* ========== ABOUT ========== */
.about { padding: var(--section-y) 0; background: var(--bg); }
.about-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: center; }
.about-media { position: relative; }
.about-media img {
  border-radius: var(--radius); aspect-ratio: 5/6; object-fit: cover;
  box-shadow: var(--shadow-lg);
}
.about-floating {
  position: absolute; right: -20px; bottom: 40px;
  background: #fff; border: 1px solid var(--line); border-radius: 16px;
  padding: 20px 24px; box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 12px;
}
.about-floating::before {
  content: ""; width: 8px; height: 40px; border-radius: 4px;
  background: linear-gradient(180deg, var(--cyan) 0%, var(--navy) 100%);
}
.floating-num { font-family: 'Manrope', sans-serif; font-size: 28px; font-weight: 800; color: var(--navy); line-height: 1; }
.floating-label { font-size: 12px; color: var(--muted); margin-top: 4px; }
.stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 40px; }
.stat {
  padding: 24px; border: 1px solid var(--line); border-radius: var(--radius);
  background: linear-gradient(180deg, #fff, var(--bg-soft));
  transition: border-color .25s, transform .25s, box-shadow .25s;
}
.stat:hover { border-color: var(--cyan); transform: translateY(-3px); box-shadow: var(--shadow); }
.stat-num { font-family: 'Manrope', sans-serif; font-size: 38px; font-weight: 800; color: var(--navy); }
.stat-num::after { content: '+'; color: var(--cyan); }
.stat-label { color: var(--muted); font-size: 14px; margin-top: 6px; font-weight: 500; }

/* ========== SERVICES ========== */
.services {
  padding: var(--section-y) 0; background: var(--bg-soft);
  border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft);
  position: relative;
}
.services::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(50% 30% at 80% 0%, rgba(56,189,248,.10), transparent 70%);
}
.services .container { position: relative; }
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.service-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
  display: grid; grid-template-columns: 240px 1fr; gap: 0;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
  position: relative;
}
.service-card::after {
  content: ""; position: absolute; inset: 0; border-radius: var(--radius);
  box-shadow: 0 0 0 0 rgba(56, 189, 248, 0); transition: box-shadow .3s ease;
  pointer-events: none;
}
.service-card:hover {
  transform: translateY(-6px); border-color: var(--cyan);
  box-shadow: var(--shadow-lg);
}
.service-card:hover::after { box-shadow: 0 0 0 6px rgba(56,189,248,.10); }
.service-img { height: 100%; position: relative; overflow: hidden; }
.service-img img {
  width: 100%; height: 100%; object-fit: cover; min-height: 240px;
  transition: transform .6s ease;
}
.service-card:hover .service-img img { transform: scale(1.06); }
.service-tag {
  position: absolute; top: 14px; left: 14px;
  font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  padding: 6px 12px; border-radius: var(--radius-pill);
  background: rgba(11, 31, 58, .85); color: var(--cyan-soft);
  backdrop-filter: blur(8px);
}
.service-body { padding: 32px; display: flex; flex-direction: column; gap: 12px; }
.service-body h3 { font-size: 22px; }
.service-body p { color: var(--muted); font-size: 14px; }
.service-points { display: flex; flex-direction: column; gap: 6px; margin: 4px 0 8px; }
.service-points li {
  font-size: 13px; color: var(--navy); padding-left: 22px; position: relative;
}
.service-points li::before {
  content: ""; position: absolute; left: 0; top: 6px;
  width: 14px; height: 14px; border-radius: 50%;
  background: rgba(56,189,248,.18);
  background-image: linear-gradient(135deg, var(--cyan) 0%, var(--navy-500) 100%);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M3 8.5l3 3 7-7' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/></svg>") center/12px no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M3 8.5l3 3 7-7' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/></svg>") center/12px no-repeat;
}
.link-arrow { color: var(--navy); font-weight: 700; font-size: 14px; display: inline-flex; gap: 6px; align-items: center; margin-top: auto; }
.link-arrow span {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--navy); color: var(--cyan); font-size: 11px;
  transition: transform .25s ease, background .25s ease;
}
.link-arrow:hover span { transform: translate(3px, -3px); background: var(--cyan); color: var(--navy); }

/* ========== PROJECTS ========== */
.projects { padding: var(--section-y) 0; background: var(--bg); }
.projects-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 36px 32px; }
.project-card { display: flex; flex-direction: column; gap: 16px; cursor: pointer; }
.project-img {
  border-radius: var(--radius); overflow: hidden; aspect-ratio: 16/11;
  position: relative; box-shadow: var(--shadow-sm);
}
.project-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.project-card:hover .project-img img { transform: scale(1.05); }
.project-result {
  position: absolute; top: 18px; left: 18px;
  font-size: 12px; font-weight: 700; letter-spacing: .04em;
  padding: 8px 14px; border-radius: var(--radius-pill);
  background: rgba(255,255,255,.95); color: var(--navy);
  box-shadow: var(--shadow-sm);
}
.project-result::before {
  content: ""; display: inline-block; width: 6px; height: 6px; border-radius: 50%;
  background: var(--cyan); margin-right: 8px; vertical-align: middle;
}
.project-meta { font-size: 12px; color: var(--muted); letter-spacing: .04em; text-transform: uppercase; font-weight: 600; }
.project-card h3 { font-size: 24px; transition: color .2s ease; }
.project-card:hover h3 { color: var(--navy-500); }
.project-card p { color: var(--muted); font-size: 15px; }

/* ========== PROCESS ========== */
.process {
  padding: var(--section-y) 0;
  background: linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 100%);
  color: #fff;
  position: relative; overflow: hidden;
}
.process::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(40% 30% at 20% 0%, rgba(56,189,248,.18), transparent 70%),
    radial-gradient(40% 40% at 80% 100%, rgba(56,189,248,.10), transparent 70%);
  pointer-events: none;
}
.process .container { position: relative; }
.process .section-title { color: #fff; }
.process .section-lead { color: #aac0db; }
.process .eyebrow { color: var(--cyan); background: rgba(56,189,248,.10); border-color: rgba(56,189,248,.22); }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.process-step {
  padding: 36px 28px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,.05) 0%, rgba(255,255,255,.02) 100%);
  backdrop-filter: blur(10px);
  transition: transform .3s, border-color .3s, background .3s;
  position: relative; overflow: hidden;
}
.process-step::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  opacity: 0; transition: opacity .3s;
}
.process-step:hover { transform: translateY(-6px); border-color: rgba(56,189,248,.40); background: rgba(255,255,255,.06); }
.process-step:hover::before { opacity: 1; }
.process-num {
  font-family: 'Manrope', sans-serif; font-size: 14px; font-weight: 800;
  color: var(--cyan); margin-bottom: 18px; letter-spacing: .06em;
  display: inline-flex; align-items: center; gap: 10px;
}
.process-num::after {
  content: ""; width: 28px; height: 1px; background: var(--cyan); opacity: .5;
}
.process-step h3 { font-size: 22px; margin-bottom: 12px; color: #fff; }
.process-step p { color: #aac0db; font-size: 14px; line-height: 1.6; }

/* ========== TOOLS / CAPABILITIES MARQUEE ========== */
.tools-marquee {
  background: linear-gradient(90deg, var(--cyan) 0%, var(--cyan-bright) 50%, var(--cyan) 100%);
  color: var(--navy); padding: 26px 0; overflow: hidden;
}
.tools-track {
  display: flex; gap: 40px; width: max-content;
  animation: scroll 35s linear infinite;
  font-family: 'Manrope', sans-serif; font-size: clamp(28px, 4vw, 48px); font-weight: 800;
  letter-spacing: -.02em;
}
.tools-track .sep { font-size: clamp(20px, 3vw, 32px); display: inline-flex; align-items: center; opacity: .55; }

/* ========== TESTIMONIALS ========== */
.testimonials { padding: var(--section-y) 0; background: var(--bg-soft); }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  padding: 32px; border: 1px solid var(--line);
  border-radius: var(--radius); background: var(--surface);
  display: flex; flex-direction: column; gap: 18px;
  transition: transform .3s, border-color .3s, box-shadow .3s;
  position: relative;
}
.testimonial-card:hover { transform: translateY(-4px); border-color: var(--cyan); box-shadow: var(--shadow); }
.testimonial-card.featured {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
  border-color: var(--navy-500);
  color: #fff;
}
.testimonial-card.featured blockquote { color: #fff; }
.testimonial-card.featured figcaption strong { color: #fff; }
.testimonial-card.featured figcaption span { color: var(--cyan-soft); }
.testimonial-card blockquote { font-size: 16px; line-height: 1.65; color: var(--navy); flex: 1; font-weight: 500; }
.testimonial-card figcaption { display: flex; align-items: center; gap: 12px; padding-top: 6px; border-top: 1px solid var(--line-soft); margin-top: 4px; }
.testimonial-card.featured figcaption { border-top-color: rgba(255,255,255,.10); }
.testimonial-card figcaption img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; margin-top: 14px; }
.testimonial-card figcaption div { padding-top: 14px; }
.testimonial-card figcaption strong { display: block; font-size: 14px; color: var(--navy); font-weight: 700; }
.testimonial-card figcaption span { font-size: 12px; color: var(--muted); }

/* ========== CTA BLOCK ========== */
.cta-block {
  padding: 110px 0;
  background:
    radial-gradient(60% 40% at 80% 0%, rgba(56,189,248,.30), transparent 70%),
    radial-gradient(40% 50% at 0% 100%, rgba(56,189,248,.18), transparent 70%),
    linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 60%, var(--navy-700) 100%);
  color: #fff;
  position: relative; overflow: hidden;
}
.cta-block::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(60% 60% at 50% 50%, #000, transparent);
  pointer-events: none;
}
.cta-inner { display: flex; justify-content: space-between; align-items: center; gap: 48px; flex-wrap: wrap; position: relative; }
.cta-inner > div:first-child { max-width: 620px; }
.cta-block .section-title { color: #fff; }
.cta-sub { color: #aac0db; margin-top: 16px; font-size: 16px; max-width: 540px; }
.cta-actions { display: flex; flex-direction: column; gap: 12px; align-items: stretch; }
.cta-block .btn-primary {
  background: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-bright) 100%);
  color: var(--navy);
  box-shadow: 0 14px 32px rgba(56, 189, 248, .35);
}
.cta-block .btn-primary:hover {
  background: #fff;
  box-shadow: 0 18px 40px rgba(56, 189, 248, .50), 0 0 0 4px rgba(56,189,248,.20);
}

/* ========== INSIGHTS / BLOG ========== */
.blog { padding: var(--section-y) 0; background: var(--bg); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-bottom: 80px; }
.blog-card { display: flex; flex-direction: column; gap: 12px; cursor: pointer; }
.blog-img { border-radius: var(--radius); overflow: hidden; aspect-ratio: 16/10; box-shadow: var(--shadow-sm); }
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.blog-card:hover .blog-img img { transform: scale(1.05); }
.blog-card .tag {
  align-self: flex-start; font-size: 11px; padding: 5px 12px;
  border: 1px solid var(--line); border-radius: var(--radius-pill);
  color: var(--navy); text-transform: uppercase; letter-spacing: .1em; font-weight: 700;
  background: var(--bg-tint);
}
.blog-card h3 { font-size: 20px; transition: color .2s; }
.blog-card:hover h3 { color: var(--navy-500); }
.blog-card p { color: var(--muted); font-size: 14px; }
.blog-card .date { font-size: 12px; color: var(--muted-2); font-weight: 500; }

.newsletter {
  display: flex; justify-content: space-between; align-items: center;
  gap: 32px; padding: 44px;
  border-radius: var(--radius);
  background:
    radial-gradient(60% 50% at 100% 0%, rgba(56,189,248,.18), transparent 70%),
    linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: #fff; flex-wrap: wrap;
  border: 1px solid var(--navy-500);
  box-shadow: var(--shadow-lg);
}
.newsletter h3 { font-size: 24px; margin-bottom: 6px; color: #fff; }
.newsletter p { color: #aac0db; font-size: 14px; max-width: 460px; }
.newsletter-form { display: flex; gap: 10px; flex: 1; max-width: 480px; min-width: 280px; }
.newsletter-form input {
  flex: 1; padding: 14px 18px; border-radius: var(--radius-pill);
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18); color: #fff;
  font: inherit; outline: none;
  transition: border-color .2s, background .2s;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,.5); }
.newsletter-form input:focus { border-color: var(--cyan); background: rgba(255,255,255,.12); }
.newsletter .btn-primary {
  background: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-bright) 100%);
  color: var(--navy);
}
.newsletter .btn-primary:hover { background: #fff; }

/* ========== FOOTER ========== */
.site-footer {
  background: linear-gradient(180deg, var(--navy-deep) 0%, #03101f 100%);
  padding: 90px 0 30px;
  color: #aac0db;
  position: relative;
}
.site-footer::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(56,189,248,.5), transparent);
}
.footer-grid { display: grid; grid-template-columns: 1.6fr repeat(4, 1fr); gap: 48px; margin-bottom: 60px; }
.footer-brand p { color: #8aa1bd; font-size: 14px; margin: 18px 0 22px; max-width: 340px; line-height: 1.7; }
.footer-brand .logo { color: #fff; }
.footer-brand .logo .logo-text { color: #fff; }
.footer-grid h4 { font-size: 14px; margin-bottom: 18px; color: #fff; font-weight: 700; }
.footer-grid ul li { margin-bottom: 10px; }
.footer-grid ul li a, .contact-list li { color: #8aa1bd; font-size: 14px; transition: color .2s; }
.footer-grid ul li a:hover { color: var(--cyan); }
.contact-list li { line-height: 1.6; }
.trust-row { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 22px; }
.trust-pill {
  font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: 5px 11px; border-radius: var(--radius-pill);
  background: rgba(56,189,248,.10); color: var(--cyan);
  border: 1px solid rgba(56,189,248,.25);
}
.socials { display: flex; gap: 10px; }
.socials a {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.14); display: inline-flex; align-items: center; justify-content: center;
  color: #aac0db; font-weight: 700; font-size: 12px; text-transform: lowercase;
  transition: all .25s;
}
.socials a:hover { background: var(--cyan); color: var(--navy); border-color: var(--cyan); transform: translateY(-2px); }
.footer-bottom {
  display: flex; justify-content: space-between; padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,.08); color: #6b829e; font-size: 13px;
  flex-wrap: wrap; gap: 12px;
}

/* ========== REVEAL ANIMATIONS ========== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ========== RESPONSIVE ========== */
@media (max-width: 1100px) {
  .hero { padding: 24px 0 72px; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-image { aspect-ratio: 16/11; }
  .hero-stat-card { left: 16px; bottom: 16px; min-width: 0; }
  .hero-badge { right: 16px; top: 16px; }
}
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1.4fr repeat(2, 1fr); }
}
@media (max-width: 960px) {
  :root { --section-y: 80px; }
  .primary-nav { display: none; }
  .menu-toggle { display: flex; }
  .primary-nav.open {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; padding: 24px;
    border-bottom: 1px solid var(--line); box-shadow: var(--shadow);
    gap: 18px;
  }
  .primary-nav.open a { font-size: 16px; color: var(--navy); }
  .about-grid { grid-template-columns: 1fr; gap: 56px; }
  .about-floating { right: 16px; bottom: 16px; }
  .services-grid, .projects-grid, .blog-grid, .testimonial-grid, .process-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .service-card { grid-template-columns: 1fr; }
  .service-img img { aspect-ratio: 16/9; min-height: auto; }
  .stats { grid-template-columns: 1fr 1fr; }
  .cta-actions { width: 100%; }
  .hero-badge { display: none; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .nav-actions .btn-primary { display: none; }
  .nav-actions .icon-btn { display: none; }
  .stats { grid-template-columns: 1fr; }
  .newsletter { flex-direction: column; align-items: stretch; text-align: left; padding: 32px; }
  .hero-stat-card { left: 12px; bottom: 12px; padding: 14px 16px; }
  .hero-stat-num { font-size: 22px; }
  .hero-badge { display: none; }
}
