/* ============================================================
   SKYLINE STUDIO — GLOBAL STYLESHEET
   File: css/style.css
   Used by: ALL pages
   ============================================================ */

/* ── GOOGLE FONTS ── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* ── DESIGN TOKENS ── */
:root {
  --navy:         #0A0F1E;
  --navy-mid:     #111827;
  --navy-light:   #1C2333;
  --cobalt:       #2B6BFF;
  --cobalt-light: #4F85FF;
  --cobalt-glow:  rgba(43, 107, 255, 0.15);
  --white:        #FFFFFF;
  --silver:       #C8CDD8;
  --silver-dim:   #8892A4;
  --border:       rgba(255, 255, 255, 0.08);
  --border-light: rgba(255, 255, 255, 0.05);
  --section-bg:   #F7F8FA;
  --text-dark:    #0D1117;
  --text-mid:     #4A5568;
  --green:        #22C55E;
  --purple:       #A78BFA;
  --red:          #EF4444;
  --yellow:       #F59E0B;
  --radius:       12px;
  --radius-lg:    20px;
  --transition:   0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width:    1200px;
  --header-h:     72px;
  --pad-x:        clamp(20px, 5vw, 80px);
  --pad-section:  100px;
}

/* ── LIGHT THEME ── */
[data-theme="light"] {
  --navy:         #F7F8FA;
  --navy-mid:     #EBEDF2;
  --navy-light:   #FFFFFF;
  --white:        #0D1117;
  --silver:       #4A5568;
  --silver-dim:   #6B7280;
  --border:       rgba(0, 0, 0, 0.08);
  --border-light: rgba(0, 0, 0, 0.04);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--navy);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button { font-family: inherit; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5 {
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  padding: 0 clamp(20px, 5vw, 60px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--transition), box-shadow var(--transition);
}

.site-header.scrolled {
  background: rgba(10, 15, 30, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border);
}

[data-theme="light"] .site-header.scrolled {
  background: rgba(247, 248, 250, 0.96);
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-img {
  height: 70px;
  width: auto;
  object-fit: contain;
  display: block;
}

.footer-brand .logo-img {
  height: 90px;
}

.logo-mark {
  width: 36px; height: 36px;
  background: var(--cobalt);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 16px; color: #fff;
  letter-spacing: -0.5px;
  flex-shrink: 0;
}

.logo-text {
  font-weight: 700;
  font-size: 18px;
  color: var(--white);
  letter-spacing: -0.02em;
}

.logo-text span { color: var(--cobalt); }

/* Main Nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--silver);
  text-decoration: none;
  transition: color var(--transition);
  position: relative;
}

.nav-link:hover,
.nav-link.active { color: var(--white); }

.nav-link.has-dropdown::after {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  margin-left: 6px;
  vertical-align: middle;
}

/* Mega Menu */
.mega-menu-wrapper { position: relative; }

.mega-menu {
  display: none;
  position: absolute;
  top: calc(100% + 20px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  min-width: 560px;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
}

.mega-menu-wrapper:hover .mega-menu,
.mega-menu-wrapper:focus-within .mega-menu {
  display: grid;
}

.mega-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background var(--transition);
}

.mega-item:hover { background: var(--cobalt-glow); }

.mega-icon {
  width: 36px; height: 36px;
  background: var(--cobalt-glow);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
}

.mega-label { font-size: 13px; font-weight: 600; color: var(--white); display: block; }
.mega-desc  { font-size: 12px; color: var(--silver-dim); margin-top: 2px; display: block; }

/* Header CTAs */
.header-ctas {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Theme Toggle */
.theme-toggle {
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--silver);
  font-size: 16px;
  transition: all var(--transition);
  flex-shrink: 0;
}

.theme-toggle:hover { border-color: var(--cobalt); color: var(--cobalt); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: transparent;
  border: none;
}

.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

/* Mobile Nav Drawer */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--navy);
  padding: 80px 24px 100px;
  overflow-y: auto;
  flex-direction: column;
  gap: 0;
}

.mobile-nav.open { display: flex; }

.mobile-nav-link {
  display: block;
  padding: 16px 0;
  font-size: 18px;
  font-weight: 600;
  color: var(--silver);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}

.mobile-nav-link:hover { color: var(--white); }

.mobile-nav-ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
}

.mobile-nav-ctas .btn { justify-content: center; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  white-space: nowrap;
  font-family: inherit;
  line-height: 1;
}

.btn-primary {
  background: var(--cobalt);
  color: #fff;
}
.btn-primary:hover {
  background: var(--cobalt-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(43, 107, 255, 0.4);
}

.btn-ghost {
  background: transparent;
  color: var(--silver);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.btn-whatsapp {
  background: var(--green);
  color: #fff;
}
.btn-whatsapp:hover {
  background: #16A34A;
  box-shadow: 0 8px 24px rgba(34, 197, 94, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--cobalt-light);
  border: 1px solid var(--cobalt);
}
.btn-outline:hover {
  background: var(--cobalt);
  color: #fff;
}

.btn-sm  { padding: 8px 16px; font-size: 13px; }
.btn-lg  { padding: 16px 32px; font-size: 15px; }
.btn-full { width: 100%; justify-content: center; }

/* ============================================================
   SECTION UTILITIES
   ============================================================ */
.section {
  padding: var(--pad-section) var(--pad-x);
}

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cobalt);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.12;
  color: var(--white);
  margin-bottom: 16px;
}

.section-title.dark { color: var(--text-dark); }
[data-theme="dark"] .section-title.dark { color: var(--white); }

.section-sub {
  font-size: 16px;
  color: var(--silver);
  line-height: 1.7;
  max-width: 560px;
}

.section-sub.dark { color: var(--text-mid); }
[data-theme="dark"] .section-sub.dark { color: var(--silver); }

.section-header        { margin-bottom: 60px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-sub { margin: 0 auto; }

/* Gradient text */
.gradient-text {
  background: linear-gradient(135deg, var(--cobalt-light), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================================
   PAGE HERO (shared across inner pages)
   ============================================================ */
.page-hero {
  padding: 140px var(--pad-x) 80px;
  position: relative;
  overflow: hidden;
  background: var(--navy);
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(43,107,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(43,107,255,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 30%, transparent 80%);
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  top: -20%; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 500px;
  background: radial-gradient(ellipse, rgba(43,107,255,0.16) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Breadcrumb */
.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--silver-dim);
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.breadcrumb-nav a {
  color: var(--silver-dim);
  text-decoration: none;
  transition: color var(--transition);
}

.breadcrumb-nav a:hover { color: var(--cobalt-light); }
.breadcrumb-sep { color: var(--border); }

/* Page eyebrow */
.page-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(43,107,255,0.1);
  border: 1px solid rgba(43,107,255,0.2);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--cobalt-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.page-eyebrow.pulse::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--cobalt);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.page-title {
  font-size: clamp(34px, 4.5vw, 62px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.07;
  color: var(--white);
  margin-bottom: 20px;
}

.page-sub {
  font-size: 17px;
  color: var(--silver);
  line-height: 1.7;
  max-width: 540px;
  margin-bottom: 36px;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

/* ============================================================
   TRUST BADGES (hero bottom)
   ============================================================ */
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--silver-dim);
}

.trust-dot {
  width: 6px; height: 6px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ============================================================
   FAQ (shared)
   ============================================================ */
.faq-list { max-width: 760px; margin: 0 auto; }

.faq-item { border-bottom: 1px solid var(--border); }

.faq-question {
  width: 100%;
  background: none; border: none;
  color: var(--white);
  font-size: 16px; font-weight: 600;
  text-align: left;
  padding: 24px 0;
  cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  transition: color var(--transition);
  font-family: inherit;
}

.faq-question:hover { color: var(--cobalt-light); }

.faq-icon {
  width: 28px; height: 28px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
  transition: all var(--transition);
}

.faq-item.open .faq-icon {
  border-color: var(--cobalt);
  background: var(--cobalt);
  color: #fff;
  transform: rotate(45deg);
}

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.open .faq-answer { max-height: 500px; }

.faq-answer-inner {
  padding: 0 0 24px;
  font-size: 14px;
  color: var(--silver);
  line-height: 1.75;
}

.faq-answer-inner a { color: var(--cobalt-light); }

/* ============================================================
   FORMS (shared)
   ============================================================ */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-group { margin-bottom: 14px; }

.form-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--silver-dim);
  margin-bottom: 8px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: var(--navy);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 14px;
  color: var(--white);
  font-family: inherit;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.form-input::placeholder,
.form-textarea::placeholder { color: var(--silver-dim); }

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--cobalt);
  box-shadow: 0 0 0 3px rgba(43, 107, 255, 0.1);
}

.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238892A4' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.form-select option { background: var(--navy-mid); color: var(--white); }

.form-textarea { resize: vertical; min-height: 100px; }

.form-submit {
  width: 100%;
  padding: 14px;
  background: var(--cobalt);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  margin-top: 6px;
  font-family: inherit;
}

.form-submit:hover {
  background: var(--cobalt-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(43, 107, 255, 0.4);
}

.form-submit.success {
  background: var(--green);
  cursor: default;
  transform: none;
  box-shadow: none;
}

.form-note {
  font-size: 12px;
  color: var(--silver-dim);
  text-align: center;
  margin-top: 10px;
}

/* ============================================================
   CTA BANNER (shared)
   ============================================================ */
.cta-section { padding: var(--pad-section) var(--pad-x); }

.cta-box {
  max-width: 900px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--navy-light) 0%, rgba(43,107,255,0.08) 100%);
  border: 1px solid rgba(43,107,255,0.2);
  border-radius: 24px;
  padding: clamp(40px, 6vw, 80px);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 400px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--cobalt), transparent);
}

.cta-title {
  font-size: clamp(26px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 16px;
}

.cta-sub {
  font-size: 16px;
  color: var(--silver);
  margin-bottom: 36px;
  max-width: 520px;
  margin-left: auto; margin-right: auto;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy-mid);
  border-top: 1px solid var(--border);
  padding: 72px var(--pad-x) 40px;
}

.footer-inner { max-width: var(--max-width); margin: 0 auto; }

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--silver-dim);
  line-height: 1.7;
  margin-top: 16px;
  margin-bottom: 24px;
}

.footer-social { display: flex; gap: 10px; }

.social-link {
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--silver-dim);
  text-decoration: none;
  font-size: 14px;
  transition: all var(--transition);
}

.social-link:hover { border-color: var(--cobalt); color: var(--cobalt); }

.footer-col-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--silver-dim);
  margin-bottom: 20px;
}

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }

.footer-links a {
  font-size: 14px;
  color: var(--silver);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copyright { font-size: 13px; color: var(--silver-dim); }

.footer-legal { display: flex; gap: 24px; }

.footer-legal a {
  font-size: 13px;
  color: var(--silver-dim);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-legal a:hover { color: var(--silver); }

/* ============================================================
   STICKY MOBILE CTA
   ============================================================ */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 900;
  background: var(--navy-mid);
  border-top: 1px solid var(--border);
  padding: 12px 20px;
  gap: 10px;
}

.sticky-cta .btn { flex: 1; justify-content: center; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.8); }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }

/* ============================================================
   STATS / COUNTER
   ============================================================ */
.stats-section {
  background: var(--navy-mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px var(--pad-x);
}

.stats-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  text-align: center;
  padding: 20px;
  border-right: 1px solid var(--border);
}

.stat-item:last-child { border-right: none; }

.stat-number {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-number span { color: var(--cobalt); }
.stat-label { font-size: 13px; color: var(--silver-dim); font-weight: 500; }

/* ============================================================
   INDUSTRY PILLS
   ============================================================ */
.industry-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--navy-light);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--silver);
  text-decoration: none;
  transition: all var(--transition);
  cursor: pointer;
}

.industry-pill:hover {
  border-color: var(--cobalt);
  color: var(--white);
  background: var(--cobalt-glow);
}

/* ============================================================
   BADGES
   ============================================================ */
.badge {
  display: inline-flex;
  align-items: center;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.badge-blue   { background: rgba(43,107,255,0.15); color: var(--cobalt-light); }
.badge-green  { background: rgba(34,197,94,0.12);  color: var(--green); }
.badge-purple { background: rgba(167,139,250,0.15); color: var(--purple); }
.badge-yellow { background: rgba(245,158,11,0.15);  color: var(--yellow); }

/* ============================================================
   TECH MARQUEE
   ============================================================ */
.tech-marquee-wrap {
  overflow: hidden;
  position: relative;
}

.tech-marquee-wrap::before,
.tech-marquee-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 1;
}

.tech-marquee-wrap::before {
  left: 0;
  background: linear-gradient(90deg, var(--navy), transparent);
}

.tech-marquee-wrap::after {
  right: 0;
  background: linear-gradient(-90deg, var(--navy), transparent);
}

.tech-marquee {
  display: flex;
  gap: 16px;
  animation: marquee 30s linear infinite;
  width: max-content;
}

.tech-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: var(--navy-light);
  border: 1px solid var(--border);
  border-radius: 100px;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 500;
  color: var(--silver);
}

/* ============================================================
   TESTIMONIAL CARDS
   ============================================================ */
.testi-stars {
  color: var(--yellow);
  font-size: 14px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testi-text {
  font-size: 14px;
  color: var(--silver);
  line-height: 1.75;
  margin-bottom: 20px;
  font-style: italic;
}

.testi-author { display: flex; align-items: center; gap: 12px; }

.ta-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700; color: #fff;
  flex-shrink: 0;
}

.ta-name { font-size: 14px; font-weight: 600; color: var(--white); }
.ta-role { font-size: 12px; color: var(--silver-dim); }

/* ============================================================
   CONTACT INFO ITEMS
   ============================================================ */
.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}

.ci-icon {
  width: 44px; height: 44px;
  background: var(--cobalt-glow);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.ci-label { font-size: 11px; color: var(--silver-dim); font-weight: 600; letter-spacing: 0.04em; margin-bottom: 2px; }
.ci-val { font-size: 14px; font-weight: 600; color: var(--white); text-decoration: none; transition: color var(--transition); }
.ci-val:hover { color: var(--cobalt-light); }

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.text-center { text-align: center; }
.text-cobalt  { color: var(--cobalt-light); }
.text-green   { color: var(--green); }
.text-silver  { color: var(--silver); }
.text-dim     { color: var(--silver-dim); }

.bg-navy      { background: var(--navy); }
.bg-navy-mid  { background: var(--navy-mid); }
.bg-light     { background: var(--section-bg); }
[data-theme="dark"] .bg-light { background: var(--navy-mid); }

.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-40 { margin-top: 40px; }
.mt-48 { margin-top: 48px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-40 { margin-bottom: 40px; }

.check-icon { color: var(--green); }
.cross-icon { color: var(--red); }

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-right: 1px solid var(--border); border-top: 1px solid var(--border); }
  .stat-item:nth-child(4) { border-top: 1px solid var(--border); border-right: none; }
}

@media (max-width: 768px) {
  .main-nav,
  .header-ctas .btn-ghost,
  .theme-toggle { display: none; }
  .hamburger { display: flex; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .sticky-cta { display: flex; }
  .form-row { grid-template-columns: 1fr; }
  .section { padding: 72px var(--pad-x); }
  .page-hero { padding: 120px var(--pad-x) 60px; }
}

@media (max-width: 480px) {
  :root { --pad-x: 20px; }
  .page-title { font-size: 30px; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
