/* ==========================================================================
   CYNOSURE CORPORATE SOLUTIONS — MAIN STYLESHEET
   --------------------------------------------------------------------------
   This single file controls the look of the entire website.
   Organised top-to-bottom in the order you'd encounter things on a page.
   
   Easy edits (non-tech friendly):
   - Change colours → see :root variables below
   - Change fonts → see @import at top
   ========================================================================== */

/* ---------- FONTS (loaded from Google Fonts — free & fast) ---------- */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600;9..144,700&family=Manrope:wght@400;500;600;700;800&display=swap');

/* ---------- DESIGN TOKENS (your brand colours, spacing, etc.) ---------- */
:root {
  /* Cynosure brand palette — blues from logo + warm amber for action buttons */
  --navy:         #0A2540;      /* Deep corporate navy (headers, text) */
  --navy-dark:    #051A30;      /* Darker navy (for banners) */
  --blue:         #1E56C8;      /* Primary blue (links, highlights) */
  --blue-bright:  #2563EB;      /* Brighter blue (AI accents) */
  --blue-soft:    #E6EEFB;      /* Very light blue wash (section bg) */
  --amber:        #F59E0B;      /* Warm call-to-action colour */
  --amber-dark:   #D97706;      /* Amber hover */

  /* Neutrals */
  --ink:          #0F172A;      /* Main body text */
  --ink-muted:    #475569;      /* Secondary text */
  --line:         #E2E8F0;      /* Borders, dividers */
  --bg:           #FFFFFF;      /* Main background */
  --bg-soft:      #F8FAFC;      /* Alternate section bg */
  --bg-dark:      #0A2540;      /* Dark section bg */

  /* Typography */
  --font-display: 'Fraunces', Georgia, serif;        /* Big headlines */
  --font-body:    'Manrope', -apple-system, sans-serif; /* Everything else */

  /* Shape / shadow */
  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(10,37,64,0.06), 0 1px 3px rgba(10,37,64,0.08);
  --shadow:    0 4px 20px rgba(10,37,64,0.08);
  --shadow-lg: 0 20px 50px rgba(10,37,64,0.12);

  /* Layout */
  --max-width: 1240px;
  --gutter:    24px;
}

/* ---------- RESET + BASE ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--navy); }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }
ul { list-style: none; padding: 0; margin: 0; }

#quotes{
    padding:10px;
    
}

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin: 0 0 .5em;
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 500; }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); }
h4 { font-size: 1.1rem; font-family: var(--font-body); font-weight: 700; }
p  { margin: 0 0 1em; color: var(--ink-muted); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--blue-bright);
  margin-bottom: 1rem;
}
.eyebrow--light { color: #93C5FD; }

.section-title { margin-bottom: .5em; }
.section-sub { font-size: 1.05rem; color: var(--ink-muted); max-width: 640px; margin: 0 auto 3rem; }

/* ---------- CONTAINERS ---------- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 var(--gutter); }
section { padding: 90px 0; }
.section-soft { background: var(--bg-soft); }
.section-dark { background: var(--navy); color: #CBD5E1; }
.section-dark h1, .section-dark h2, .section-dark h3 { color: #fff; }
.center { text-align: center; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .95rem;
  transition: all .25s ease;
  white-space: nowrap;
  line-height: 1;
}
.btn-primary {
  background: var(--amber);
  color: var(--navy);
}
.btn-primary:hover {
  background: var(--amber-dark);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: #fff;
}
.btn-dark {
  background: var(--navy);
  color: #fff;
}
.btn-dark:hover {
  background: var(--blue-bright);
  color: #fff;
}
.btn-arrow::after {
  content: '→';
  transition: transform .2s ease;
}
.btn-arrow:hover::after { transform: translateX(4px); }

/* ==========================================================================
   TOP BAR (thin strip above the main navigation)
   ========================================================================== */
.topbar {
  background: var(--navy-dark);
  color: #CBD5E1;
  font-size: .82rem;
  padding: 9px 0;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}
.topbar-info { display: flex; gap: 26px; flex-wrap: wrap; }
.topbar-info span { display: inline-flex; align-items: center; gap: 6px; }
.topbar-info strong { color: #fff; font-weight: 600; }
.topbar a { color: #fff; }

/* ==========================================================================
   MAIN HEADER + NAVIGATION
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 20px;
}
.logo img { height: 90px !important; width: auto; }
.nav-menu {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav-menu a {
  color: var(--navy);
  font-weight: 600;
  font-size: .92rem;
  padding: 6px 0;
  position: relative;
}
.nav-menu a:not(.btn)::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--blue-bright);
  transition: width .25s ease;
}
.nav-menu a:not(.btn):hover::after,
.nav-menu a.active::after { width: 100%; }

/* Dropdown (Services menu) */
.has-dropdown { position: relative; }
.has-dropdown > a::before {
  content: '▾';
  font-size: .7em;
  margin-left: 4px;
  opacity: .6;
}
.dropdown {
  position: absolute;
  top: 100%;
  left: -20px;
  min-width: 260px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all .2s ease;
}
.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown a {
  display: block;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: .9rem;
}
.dropdown a::after { display: none; }
.dropdown a:hover { background: var(--blue-soft); color: var(--navy); }

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: var(--navy);
  color: #fff;
  font-size: 1.4rem;
}

@media (max-width: 960px) {
  .menu-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .nav-menu {
    position: fixed;
    top: 0; right: -100%;
    height: 100vh;
    width: 85%;
    max-width: 340px;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 30px 30px;
    box-shadow: -4px 0 30px rgba(0,0,0,0.08);
    transition: right .3s ease;
    overflow-y: auto;
  }
  .nav-menu.open { right: 0; }
  .nav-menu a { font-size: 1.05rem; width: 100%; }
  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: 0;
    padding: 0 0 0 14px;
    margin-bottom: 8px;
    display: none;
  }
  .has-dropdown.open .dropdown { display: block; }
}

/* ==========================================================================
   HERO SECTION (top of homepage)
   ========================================================================== */
.hero {
  position: relative;
  padding: 70px 0 110px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 50% at 85% 20%, rgba(37,99,235,0.08), transparent 60%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(245,158,11,0.06), transparent 70%),
    linear-gradient(180deg, #FCFDFF 0%, #F5F9FF 100%);
}
.hero::before {
  /* Subtle grid pattern for tech/AI feel */
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(10,37,64,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10,37,64,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
          mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero h1 {
  font-weight: 400;
  font-variation-settings: "opsz" 120;
}
.hero h1 em {
  font-style: normal;
  color: var(--blue-bright);
  font-weight: 600;
  position: relative;
  white-space: nowrap;
}
.hero h1 em::after {
  content: '';
  position: absolute;
  left: 0; bottom: 4px;
  width: 100%;
  height: 10px;
  background: rgba(245,158,11,0.35);
  z-index: -1;
  border-radius: 4px;
}
.hero-lede {
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--ink-muted);
  margin: 22px 0 34px;
  max-width: 560px;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 30px; }
.hero-trust {
  font-size: .88rem;
  color: var(--ink-muted);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.hero-trust::before {
  content: '';
  width: 10px; height: 10px;
  background: #22C55E;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(34,197,94,0.2);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(34,197,94,0.2); }
  50%      { box-shadow: 0 0 0 8px rgba(34,197,94,0.05); }
}

/* Hero visual — AI-themed abstract composition (no photo needed) */
.hero-visual {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 460px;
  margin-left: auto;
}
.hero-orb {
  position: absolute;
  inset: 10%;
  border-radius: 50%;
  background:
    conic-gradient(from 180deg at 50% 50%,
      #1E56C8 0deg, #2563EB 90deg, #3B82F6 180deg, #1E56C8 270deg, #0A2540 360deg);
  filter: blur(2px);
  opacity: .85;
  animation: spin 30s linear infinite;
}
.hero-orb::after {
  content: '';
  position: absolute;
  inset: 8%;
  background: #fff;
  border-radius: 50%;
}
@keyframes spin { to { transform: rotate(360deg); } }

.hero-card {
  position: absolute;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: .9rem;
  border: 1px solid var(--line);
}
.hero-card strong { display: block; color: var(--navy); font-family: var(--font-display); font-size: 1.4rem; }
.hero-card small { color: var(--ink-muted); font-size: .78rem; }
.hero-card .dot {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--blue-soft);
  color: var(--blue-bright);
  font-size: 1.3rem;
}
.hero-card--1 { top: 8%; left: -8%; animation: float 6s ease-in-out infinite; }
.hero-card--2 { bottom: 12%; right: -5%; animation: float 7s ease-in-out infinite .5s; }
.hero-card--3 { bottom: 38%; left: 0;  animation: float 8s ease-in-out infinite 1s; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

@media (max-width: 960px) {
  .hero { padding: 50px 0 80px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { max-width: 360px; margin: 0 auto; }
  .hero-card--1 { left: 0; }
  .hero-card--2 { right: 0; }
}

/* ==========================================================================
   STATS STRIP
   ========================================================================== */
.stats {
  padding: 60px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--navy);
  font-weight: 500;
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: .85rem;
  color: var(--ink-muted);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 600;
}
@media (max-width: 700px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
}

/* ==========================================================================
   SPECIALTIES (Bulk Hiring + Short-Term Assignments)
   ========================================================================== */
.specialties {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}
.specialty-card {
  position: relative;
  padding: 44px 40px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  color: #fff;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform .35s ease, box-shadow .35s ease;
}
.specialty-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.specialty-card--bulk {
  background:
    linear-gradient(135deg, rgba(10,37,64,0.85), rgba(30,86,200,0.85)),
    repeating-linear-gradient(45deg, rgba(255,255,255,0.04) 0 2px, transparent 2px 14px),
    #0A2540;
}
.specialty-card--short {
  background:
    linear-gradient(135deg, rgba(37,99,235,0.85), rgba(10,37,64,0.9)),
    radial-gradient(circle at 70% 30%, rgba(245,158,11,0.3), transparent 60%),
    #1E56C8;
}
.specialty-tag {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 14px;
}
.specialty-card h3 {
  color: #fff;
  font-size: 2rem;
  margin-bottom: 14px;
}
.specialty-card p {
  color: rgba(255,255,255,0.85);
  margin-bottom: 24px;
}
.specialty-card .btn {
  align-self: flex-start;
  background: #fff;
  color: var(--navy);
}
.specialty-card .btn:hover {
  background: var(--amber);
  color: var(--navy);
}
@media (max-width: 760px) { .specialties { grid-template-columns: 1fr; } }

/* ==========================================================================
   AI-POWERED RECRUITMENT SECTION
   ========================================================================== */
.ai-section {
  position: relative;
  background: linear-gradient(180deg, #F8FAFC 0%, #EEF4FF 100%);
  overflow: hidden;
}
.ai-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(37,99,235,0.12), transparent 70%);
  border-radius: 50%;
}
.ai-header { text-align: center; position: relative; z-index: 1; }
.ai-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
  position: relative;
  z-index: 1;
}
.ai-card {
  background: #fff;
  padding: 36px 30px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.ai-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue-bright);
}
.ai-icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue-bright), var(--navy));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: #fff;
}
.ai-card h3 { font-size: 1.35rem; margin-bottom: 10px; }
.ai-card p { font-size: .95rem; margin-bottom: 0; }
@media (max-width: 860px) { .ai-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   SERVICES GRID
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 50px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all .3s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--blue-bright), var(--amber));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
}
.service-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.service-card:hover::before { transform: scaleX(1); }
.service-num {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--blue-bright);
  font-weight: 600;
  opacity: .6;
  margin-bottom: 12px;
  display: block;
}
.service-card h3 { font-size: 1.3rem; margin-bottom: 8px; }
.service-card p { font-size: .93rem; margin-bottom: 16px; }
.service-link {
  font-size: .88rem;
  font-weight: 700;
  color: var(--blue-bright);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.service-link::after { content: '→'; transition: transform .2s ease; }
.service-link:hover::after { transform: translateX(4px); }
@media (max-width: 960px) { .services-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 620px) { .services-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   INDUSTRIES GRID
   ========================================================================== */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  margin-top: 40px;
}
.industry-item {
  padding: 24px 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-align: center;
  transition: all .25s ease;
}
.industry-item:hover {
  background: var(--blue-soft);
  border-color: var(--blue-bright);
  transform: translateY(-3px);
}
.industry-item img { width: 42px; height: 42px; margin: 0 auto 10px; object-fit: contain; }
.industry-item span {
  font-size: .82rem;
  font-weight: 600;
  color: var(--navy);
  display: block;
}
@media (max-width: 960px) { .industries-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 560px) { .industries-grid { grid-template-columns: repeat(3, 1fr); } }

/* ==========================================================================
   PROCESS / HOW WE WORK
   ========================================================================== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 50px;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 26px; left: 10%; right: 10%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--blue-bright) 0 8px, transparent 8px 16px);
  z-index: 0;
}
.process-step {
  position: relative;
  text-align: center;
  z-index: 1;
}
.process-num {
  width: 54px; height: 54px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--blue-bright);
  color: var(--blue-bright);
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s ease;
}
.process-step:hover .process-num {
  background: var(--blue-bright);
  color: #fff;
  transform: scale(1.08);
}
.process-step h4 { margin-bottom: 6px; font-size: 1rem; }
.process-step p { font-size: .85rem; color: var(--ink-muted); margin: 0; }
@media (max-width: 900px) {
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid::before { display: none; }
}
@media (max-width: 480px) { .process-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   TESTIMONIAL
   ========================================================================== */
.testimonial-wrap {
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 60px 50px;
  margin-top: 40px;
  position: relative;
  overflow: hidden;
}
.testimonial-wrap::before {
  content: '"';
  position: absolute;
  top: -50px; right: 30px;
  font-family: var(--font-display);
  font-size: 22rem;
  color: rgba(255,255,255,0.05);
  line-height: 1;
}
.testimonial-text {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.9rem);
  line-height: 1.45;
  color: #fff;
  margin: 0 0 30px;
  max-width: 820px;
  position: relative;
  z-index: 1;
  font-weight: 400;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
  z-index: 1;
}
.testimonial-author .avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-bright), var(--amber));
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.2rem;
}
.testimonial-author strong { color: #fff; display: block; font-weight: 600; }
.testimonial-author small { color: #94A3B8; }

/* ==========================================================================
   FINAL CTA BANNER
   ========================================================================== */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 80%, rgba(245,158,11,0.2), transparent 50%),
                    radial-gradient(circle at 80% 20%, rgba(59,130,246,0.3), transparent 50%);
}
.cta-banner .container { position: relative; z-index: 1; }
.cta-banner h2 { color: #fff; }
.cta-banner p { color: rgba(255,255,255,0.85); max-width: 600px; margin: 0 auto 30px; font-size: 1.1rem; }
.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-banner .btn-outline {
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}
.cta-banner .btn-outline:hover { background: #fff; color: var(--navy); border-color: #fff; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: var(--navy-dark);
  color: #94A3B8;
  padding: 70px 0 30px;
  font-size: .92rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 50px;
}
.footer-grid h4 {
  color: #fff;
  font-family: var(--font-body);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-logo img { height: 90px; margin-bottom: 20px; }
.footer-grid a { color: #94A3B8; display: inline-block; padding: 4px 0; }
.footer-grid a:hover { color: #fff; }
.footer-grid ul li { line-height: 1.9; }
.footer-grid address {
  font-style: normal;
  line-height: 1.8;
}
.newsletter-form {
  display: flex;
  margin-top: 14px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
}
.newsletter-form input {
  flex: 1;
  background: transparent;
  border: 0;
  padding: 12px 18px;
  color: #fff;
  font-family: inherit;
  font-size: .88rem;
  outline: none;
}
.newsletter-form input::placeholder { color: #64748B; }
.newsletter-form button {
  background: var(--amber);
  color: var(--navy);
  padding: 12px 20px;
  font-weight: 700;
  font-size: .88rem;
}
.newsletter-form button:hover { background: var(--amber-dark); }
.footer-bottom {
  padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  font-size: .83rem;
  color: #64748B;
}
.footer-bottom a { color: #94A3B8; margin-left: 18px; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   PAGE HEADER (for inner pages — used by other pages later)
   ========================================================================== */
.page-header {
  background: linear-gradient(135deg, var(--navy), var(--navy-dark));
  color: #fff;
  padding: 70px 0 60px;
  text-align: center;
}
.page-header h1 { color: #fff; }
.breadcrumb { font-size: .85rem; color: #94A3B8; }
.breadcrumb a { color: #93C5FD; }

/* ==========================================================================
   UTILITIES
   ========================================================================== */
.mt-0 { margin-top: 0; }
.mt-2 { margin-top: 2rem; }
.text-center { text-align: center; }

/* Scroll reveal — elements fade in on page load with a stagger */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  animation: reveal .7s ease forwards;
}
.reveal-1 { animation-delay: .1s; }
.reveal-2 { animation-delay: .25s; }
.reveal-3 { animation-delay: .4s; }
.reveal-4 { animation-delay: .55s; }
@keyframes reveal {
  to { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   INNER PAGE HERO (service pages, about page etc.)
   ========================================================================== */
.inner-hero {
  position: relative;
  padding: 80px 0 90px;
  background:
    radial-gradient(ellipse 70% 60% at 85% 30%, rgba(37,99,235,0.10), transparent 60%),
    radial-gradient(ellipse 50% 40% at 10% 90%, rgba(245,158,11,0.06), transparent 70%),
    linear-gradient(180deg, #FCFDFF 0%, #EEF4FF 100%);
  overflow: hidden;
}
.inner-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(10,37,64,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10,37,64,0.04) 1px, transparent 1px);
  background-size: 50px 50px;
  -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
          mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
  pointer-events: none;
}
.inner-hero .container { position: relative; z-index: 1; }
.inner-hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: center;
}
.inner-hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 20px;
}
.inner-hero h1 em {
  font-style: normal;
  color: var(--blue-bright);
  font-weight: 600;
}
.inner-hero .lede {
  font-size: 1.1rem;
  color: var(--ink-muted);
  max-width: 560px;
  margin-bottom: 30px;
}

/* Breadcrumb */
.breadcrumb-bar {
  font-size: .85rem;
  margin-bottom: 20px;
  color: var(--ink-muted);
}
.breadcrumb-bar a { color: var(--blue-bright); }
.breadcrumb-bar span { margin: 0 8px; color: var(--line); }

/* Decorative stat card for inner hero */
.metric-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.metric-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 26px;
  display: flex;
  align-items: center;
  gap: 18px;
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease;
}
.metric-card:hover { transform: translateX(6px); box-shadow: var(--shadow); }
.metric-card:nth-child(2) { margin-left: 30px; }
.metric-card:nth-child(3) { margin-left: 60px; }
.metric-card .metric-icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue-bright), var(--navy));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
}
.metric-card strong {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--navy);
  display: block;
  line-height: 1;
  margin-bottom: 4px;
}
.metric-card small {
  color: var(--ink-muted);
  font-size: .85rem;
}
@media (max-width: 960px) {
  .inner-hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .metric-card:nth-child(2), .metric-card:nth-child(3) { margin-left: 0; }
}

/* ==========================================================================
   BENEFITS / FEATURE GRID (generic, used on service pages)
   ========================================================================== */
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 50px;
}
.benefit-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all .3s ease;
}
.benefit-card:hover {
  border-color: var(--blue-bright);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.benefit-card .benefit-icon {
  width: 50px; height: 50px;
  border-radius: 12px;
  background: var(--blue-soft);
  color: var(--blue-bright);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 1.4rem;
}
.benefit-card h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}
.benefit-card p {
  font-size: .92rem;
  margin-bottom: 0;
}
@media (max-width: 900px) { .benefit-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .benefit-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   TWO-COLUMN (image/side + content) LAYOUT
   ========================================================================== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.two-col--reverse .two-col-visual { order: 2; }
.two-col h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 16px; }
.two-col .check-list { margin-top: 24px; }
.two-col .check-list li {
  padding: 8px 0 8px 32px;
  position: relative;
  color: var(--ink);
  font-weight: 500;
}
.two-col .check-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 12px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--blue-bright);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg width='12' height='12' viewBox='0 0 12 12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 6L5 9L10 3' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}
.two-col-visual {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, var(--blue-soft), #fff);
  box-shadow: var(--shadow);
}
.two-col-visual.gradient-a {
  background:
    linear-gradient(135deg, rgba(37,99,235,0.15), rgba(245,158,11,0.08)),
    radial-gradient(circle at 20% 30%, rgba(37,99,235,0.2), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(245,158,11,0.15), transparent 50%),
    #F8FAFC;
  display: flex;
  align-items: center;
  justify-content: center;
}
.two-col-visual.gradient-b {
  background:
    linear-gradient(135deg, var(--navy), var(--blue));
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px;
}
.two-col-visual.gradient-b strong {
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 1;
  color: var(--amber);
  font-weight: 500;
}
.two-col-visual.gradient-b p {
  color: rgba(255,255,255,0.9);
  margin-top: 12px;
  font-size: 1.1rem;
}
.two-col-visual .visual-pill {
  position: absolute;
  background: #fff;
  border-radius: 999px;
  padding: 10px 18px;
  font-size: .82rem;
  font-weight: 700;
  box-shadow: var(--shadow);
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.two-col-visual .visual-pill::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #22C55E;
}
.two-col-visual .visual-pill.p1 { top: 10%; left: 10%; }
.two-col-visual .visual-pill.p2 { top: 45%; right: 8%; }
.two-col-visual .visual-pill.p3 { bottom: 12%; left: 18%; }
.two-col-visual .big-icon {
  font-size: 6rem;
  opacity: .3;
}
@media (max-width: 900px) {
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .two-col--reverse .two-col-visual { order: 0; }
}

/* ==========================================================================
   STATS BLOCK (inline, for service pages)
   ========================================================================== */
.stats-inline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 40px;
  padding: 40px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.stats-inline > div { text-align: center; }
.stats-inline strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 6px;
  font-weight: 500;
}
.stats-inline span {
  color: var(--ink-muted);
  font-size: .88rem;
  font-weight: 500;
}
@media (max-width: 700px) {
  .stats-inline { grid-template-columns: repeat(2, 1fr); padding: 30px 20px; }
}

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */
.faq-wrap {
  max-width: 820px;
  margin: 40px auto 0;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 14px;
  overflow: hidden;
  transition: all .3s ease;
}
.faq-item[open] {
  border-color: var(--blue-bright);
  box-shadow: var(--shadow);
}
.faq-item summary {
  padding: 22px 26px;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  font-size: 1.02rem;
  transition: color .2s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.6rem;
  color: var(--blue-bright);
  transition: transform .3s ease;
  font-weight: 300;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { color: var(--blue-bright); }
.faq-answer {
  padding: 0 26px 24px;
  color: var(--ink-muted);
  line-height: 1.7;
}
.faq-answer p:last-child { margin-bottom: 0; }

/* ==========================================================================
   INDUSTRY PILLS (for bulk hiring page)
   ========================================================================== */
.industry-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
  justify-content: center;
}
.industry-pill {
  padding: 10px 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--navy);
  transition: all .25s ease;
}
.industry-pill:hover {
  background: var(--blue-bright);
  color: #fff;
  border-color: var(--blue-bright);
  transform: translateY(-2px);
}

/* ==========================================================================
   AI CAPABILITY LIST (for AI page)
   ========================================================================== */
.ai-capability-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 30px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
  align-items: flex-start;
}
.ai-capability-row:last-child { border-bottom: 0; }
.ai-capability-row .cap-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  color: var(--blue-bright);
  font-weight: 500;
  line-height: 1;
  opacity: .8;
}
.ai-capability-row h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}
.ai-capability-row p {
  margin-bottom: 12px;
  font-size: 1rem;
}
.ai-capability-row .cap-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.ai-capability-row .cap-tags span {
  font-size: .78rem;
  padding: 4px 12px;
  background: var(--blue-soft);
  color: var(--blue);
  border-radius: 999px;
  font-weight: 600;
}
@media (max-width: 700px) {
  .ai-capability-row { grid-template-columns: 1fr; gap: 10px; }
  .ai-capability-row .cap-num { font-size: 2.2rem; }
}

/* ==========================================================================
   COMPARISON / USE-CASE TABLE (short-term page)
   ========================================================================== */
.use-case-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.use-case-card {
  background: #fff;
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  display: flex;
  gap: 24px;
  align-items: flex-start;
  transition: all .3s ease;
}
.use-case-card:hover {
  border-color: var(--blue-bright);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.use-case-card .uc-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--blue-bright), var(--navy));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.use-case-card h3 { font-size: 1.2rem; margin-bottom: 6px; }
.use-case-card p { font-size: .92rem; margin-bottom: 0; }
@media (max-width: 760px) { .use-case-grid { grid-template-columns: 1fr; } }
