/* ═══════════════════════════════════════════
   FULMINARE IT SOLUTIONS — Global Stylesheet
   Matched to logo colors, industry-standard
   typography — industry standard
═══════════════════════════════════════════ */

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

/* ── DESIGN TOKENS (matched to logo) ── */
:root {
  /* Logo-matched brand colors */
  --blue:         #0e8fe0;   /* logo primary blue */
  --blue-dark:    #002850;   /* logo deep navy    */
  --blue-mid:     #1460a8;   /* logo mid blue     */
  --blue-rich:    #003c78;   /* logo rich navy    */
  --blue-light:   #daeeff;
  --blue-accent:  #0fa0ff;

  /* Surface colors */
  --bg:           #f4f7fb;   /* cool off-white    */
  --bg-alt:       #eaf1f8;   /* slightly deeper   */
  --white:        #ffffff;
  --text:         #002850;   /* navy text         */
  --muted:        #4e6580;
  --border:       rgba(14,143,224,0.14);
  --border-solid: #cddcec;

  /* Typography */
  --font-display: 'Syne', sans-serif;
  --font-body:    'DM Sans', sans-serif;

  /* Shadows */
  --shadow-sm:   0 2px 12px rgba(0,40,80,0.06);
  --shadow-md:   0 8px 32px rgba(0,40,80,0.10);
  --shadow-lg:   0 20px 60px rgba(0,40,80,0.12);
  --shadow-blue: 0 8px 28px rgba(14,143,224,0.22);
}

html { scroll-behavior: smooth; }

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

/* ══════════════════════════════════════
   Uses GSAP (loaded via CDN in each page)
══════════════════════════════════════ */
/* ── NOISE OVERLAY ── */
body::before {
  content: ''; position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.015; pointer-events: none; z-index: 9000;
}

/* ══════════════════════════════════════
   TOP BAR
══════════════════════════════════════ */
.top-bar {
  background: var(--blue-dark);
  padding: 8px 60px;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid rgba(14,143,224,0.2);
}
.top-bar-left { display: flex; align-items: center; gap: 28px; }
.top-bar-item {
  display: flex; align-items: center; gap: 7px;
  font-family: var(--font-display); font-size: 11px; font-weight: 500;
  letter-spacing: 0.05em; color: rgba(255,255,255,0.55);
  text-decoration: none; transition: color .25s;
}
.top-bar-item:hover { color: var(--blue-accent); }
.top-bar-item svg { width: 13px; height: 13px; flex-shrink: 0; opacity: 0.65; }
.top-bar-divider { width: 1px; height: 14px; background: rgba(255,255,255,0.1); }
.top-bar-right {
  font-family: var(--font-display); font-size: 10px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--blue);
}
.top-bar-right span { color: rgba(255,255,255,0.28); margin-right: 7px; }

/* ══════════════════════════════════════
   NAVIGATION
══════════════════════════════════════ */
nav {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 6px 60px;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
  transition: padding .4s ease, box-shadow .4s ease;
  gap: 24px;
}
nav.scrolled { padding: 4px 60px; box-shadow: 0 4px 32px rgba(0,40,80,0.09); }

.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo img { height: 80px; width: auto; display: block; object-fit: contain; max-width: 280px; }

.nav-links { display: flex; gap: 32px; list-style: none; align-items: center; flex: 1; justify-content: center; }
.nav-links a {
  color: var(--muted); text-decoration: none;
  font-family: var(--font-display); font-size: 13px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  transition: color .25s; position: relative; white-space: nowrap;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--blue); border-radius: 2px;
  transform: scaleX(0); transform-origin: right;
  transition: transform .35s cubic-bezier(.16,1,.3,1);
}
.nav-links a:hover { color: var(--blue-dark); }
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-links .active-link { color: var(--blue-dark) !important; }
.nav-links .active-link::after { transform: scaleX(1) !important; transform-origin: left !important; }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-trigger {
  display: flex; align-items: center; gap: 4px;
  background: none; border: none; padding: 0;
  color: var(--muted); font-family: var(--font-display);
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase; transition: color .25s;
}
.nav-dropdown-trigger:hover,
.nav-dropdown.open .nav-dropdown-trigger { color: var(--blue-dark); }
.nav-dropdown-trigger::after { display: none !important; }
.nav-dropdown-trigger .chevron { display: inline-flex; transition: transform .25s ease; }
.nav-dropdown.open .nav-dropdown-trigger .chevron { transform: rotate(180deg); }
.dropdown-menu {
  position: absolute; top: 100%; left: 50%;
  margin-top: 8px;
  transform: translateX(-50%) translateY(4px);
  background: var(--white); border: 1px solid var(--border);
  border-radius: 10px; box-shadow: var(--shadow-lg);
  list-style: none; padding: 6px 0; min-width: 210px;
  opacity: 0; pointer-events: none;
  transition: opacity .22s ease, transform .22s cubic-bezier(.16,1,.3,1);
  z-index: 200;
}
.nav-dropdown.open .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1; pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.dropdown-menu li a {
  display: block; padding: 11px 18px;
  font-family: var(--font-display); font-size: 13px; font-weight: 500;
  letter-spacing: 0.02em; text-transform: none;
  color: var(--muted); text-decoration: none;
  transition: background .18s, color .18s; white-space: nowrap;
  border-left: 3px solid transparent;
}
.dropdown-menu li a::after { display: none !important; }
.dropdown-menu li a:hover,
.dropdown-menu li a.active,
.dropdown-menu li a:focus {
  background: var(--blue-light); color: var(--blue-dark);
  border-left-color: var(--blue); outline: none;
}
.dropdown-menu::before {
  content: ''; position: absolute; top: -6px; left: 50%;
  transform: translateX(-50%);
  border-left: 6px solid transparent; border-right: 6px solid transparent;
  border-bottom: 6px solid var(--white);
  filter: drop-shadow(0 -1px 0 rgba(14,143,224,0.12));
}
/* Invisible bridge fills gap between trigger and menu */
.dropdown-menu::after {
  content: ''; position: absolute; top: -12px; left: 0; right: 0;
  height: 12px;
}

.nav-book-btn {
  background: var(--blue); color: var(--white) !important;
  padding: 11px 22px; border-radius: 6px;
  font-family: var(--font-display); font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none;
  white-space: nowrap; flex-shrink: 0;
  transition: background .25s, transform .25s, box-shadow .25s;
  box-shadow: var(--shadow-blue);
}
.nav-book-btn:hover { background: var(--blue-mid); transform: translateY(-1px); box-shadow: 0 12px 32px rgba(14,143,224,0.3); }

.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--blue-dark); border-radius: 2px; transition: all .3s; }

/* Mobile menu */
.mobile-menu {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: var(--blue-dark); z-index: 99;
  flex-direction: column; align-items: center; justify-content: center;
}
.mobile-menu.open { display: flex; }
.mobile-menu ul { list-style: none; text-align: center; }
.mobile-menu ul li { margin-bottom: 26px; }
.mobile-menu ul li a {
  font-family: var(--font-display); font-size: 17px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.7); text-decoration: none; transition: color .25s;
}
.mobile-menu ul li a:hover { color: var(--white); }
.mobile-book-btn {
  background: var(--blue) !important; color: var(--white) !important;
  padding: 13px 30px !important; border-radius: 6px !important;
  display: inline-block !important;
}

/* ══════════════════════════════════════
   SECTION SYSTEM
   Industry standard: clear type scale,
   consistent rhythm, strong hierarchy
══════════════════════════════════════ */
section { padding: 100px 60px; }

.section-label {
  font-family: var(--font-display); font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.24em; text-transform: uppercase; color: var(--blue);
  margin-bottom: 14px; display: flex; align-items: center; gap: 12px;
}
.section-label::before {
  content: ''; width: 20px; height: 2px;
  background: var(--blue); border-radius: 2px; flex-shrink: 0;
}

/* Type scale — industry standard (Robinhood, Linear, Stripe style)
   Display:   48–56px  section heroes
   H1:        40–48px  page titles
   H2:        28–36px  section titles
   H3:        20–22px  sub-headings
   Body-lg:   17–18px  lead paragraphs
   Body:      15–16px  standard copy
   Small:     12–13px  labels, captions
*/
.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800; line-height: 1.08;
  letter-spacing: -0.025em; color: var(--blue-dark);
}

/* ══════════════════════════════════════
   HOMEPAGE HERO
══════════════════════════════════════ */
#hero {
  position: relative; min-height: 86vh;
  display: flex; align-items: center;
  overflow: hidden;
  background: linear-gradient(160deg, #001830 0%, var(--blue-dark) 50%, var(--blue-rich) 100%);
}
.hero-bg-img {
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1521737852567-6949f3f9f2b5?w=1600&q=80') center/cover no-repeat;
  opacity: 0.15;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(110deg, rgba(0,24,48,0.96) 36%, rgba(0,24,48,0.55) 100%);
}
/* Subtle brand-color glow from bottom-right */
.hero-overlay::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 85% 80%, rgba(14,143,224,0.18) 0%, transparent 55%);
}
.hero-inner {
  position: relative; z-index: 2;
  width: 100%; padding: 140px 60px 100px;
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 72px; align-items: center;
}
.hero-tag {
  font-family: var(--font-display); font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.26em; text-transform: uppercase; color: var(--blue);
  margin-bottom: 18px; display: flex; align-items: center; gap: 10px;
  animation: fadeUp .7s ease .2s both;
}
.hero-tag::before { content:''; width:22px; height:2px; background:var(--blue); border-radius:2px; flex-shrink:0; }
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(34px, 3.8vw, 52px);
  font-weight: 800; line-height: 1.08;
  color: var(--white); margin-bottom: 24px;
  letter-spacing: -0.03em;
  animation: fadeUp .8s ease .35s both;
}
.hero-headline em { font-style: normal; color: var(--blue); }
.hero-desc {
  font-size: 16px; font-weight: 300; color: rgba(255,255,255,0.65);
  line-height: 1.75; max-width: 460px; margin-bottom: 36px;
  animation: fadeUp .8s ease .5s both;
}
.hero-cta {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 13px 30px; background: var(--blue); color: var(--white);
  font-family: var(--font-display); font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; text-decoration: none;
  border-radius: 6px; transition: background .25s, transform .25s, box-shadow .25s;
  box-shadow: 0 8px 24px rgba(14,143,224,0.4);
  animation: fadeUp .8s ease .65s both;
}
.hero-cta:hover { background: var(--blue-mid); transform: translateY(-2px); box-shadow: 0 14px 36px rgba(14,143,224,0.45); }

.hero-right {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px; padding: 36px 32px;
  backdrop-filter: blur(12px);
  animation: fadeUp .9s ease .5s both;
}
.hero-right-title {
  font-family: var(--font-display); font-size: 16px; font-weight: 700;
  color: var(--white); margin-bottom: 12px; line-height: 1.4;
}
.hero-right-desc {
  font-size: 15px; font-weight: 300; color: rgba(255,255,255,0.58);
  line-height: 1.75; margin-bottom: 24px;
}
.hero-checklist { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.hero-checklist li {
  display: flex; align-items: center; gap: 10px;
  font-size: 15px; font-weight: 400; color: rgba(255,255,255,0.78);
}
.hero-checklist li::before {
  content: ''; width: 17px; height: 17px; flex-shrink: 0;
  background: var(--blue); border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 12 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 5l3 3 7-7' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center; background-size: 9px;
}

/* ══════════════════════════════════════
   STATS BAR
══════════════════════════════════════ */
.stats-bar {
  background: var(--white);
  box-shadow: 0 -2px 24px rgba(0,40,80,0.07);
  position: relative; z-index: 3;
}
.stats-bar-inner {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border); border-top: none;
}
.stats-bar-item {
  padding: 36px 24px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
  border-right: 1px solid var(--border);
  transition: background .25s;
}
.stats-bar-item:last-child { border-right: none; }
.stats-bar-item:hover { background: var(--blue-light); }
.stats-bar-icon {
  width: 48px; height: 48px; background: var(--blue-light);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
}
.stats-bar-icon svg { width: 24px; height: 24px; }
.stats-bar-num {
  font-family: var(--font-display); font-size: 30px; font-weight: 800;
  letter-spacing: -0.03em; color: var(--blue-dark); line-height: 1;
}
.stats-bar-label {
  font-family: var(--font-display); font-size: 11px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); text-align: center;
}

/* ══════════════════════════════════════
   CTA BANNER
══════════════════════════════════════ */
.cta-banner {
  background: linear-gradient(105deg, var(--blue-dark) 0%, var(--blue-rich) 40%, var(--blue-mid) 100%);
  padding: 52px 60px;
  display: flex; align-items: center; justify-content: space-between; gap: 36px;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(14,143,224,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14,143,224,0.07) 1px, transparent 1px);
  background-size: 44px 44px; pointer-events: none;
}
.cta-banner::after {
  content: ''; position: absolute; right: -80px; top: -80px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(14,143,224,0.15) 0%, transparent 65%);
  pointer-events: none;
}
.cta-banner-text {
  font-family: var(--font-display); font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 800; color: var(--white); letter-spacing: -0.015em; line-height: 1.25;
  position: relative; z-index: 1; max-width: 620px;
}
.cta-banner-btn {
  position: relative; z-index: 1;
  display: inline-flex; align-items: center; gap: 9px;
  padding: 13px 30px; background: var(--blue); color: var(--white);
  font-family: var(--font-display); font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; text-decoration: none;
  border-radius: 6px; white-space: nowrap;
  transition: background .25s, transform .25s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2); flex-shrink: 0;
}
.cta-banner-btn:hover { background: var(--blue-accent); transform: translateY(-2px); }

/* ══════════════════════════════════════
   MARQUEE
══════════════════════════════════════ */
.marquee-wrap { padding: 26px 0; overflow: hidden; background: var(--blue-dark); }
.marquee-track { display: flex; gap: 64px; width: max-content; animation: marquee 22s linear infinite; }
.marquee-item {
  font-family: var(--font-display); font-size: 11px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.3); white-space: nowrap;
  display: flex; align-items: center; gap: 64px;
}
.marquee-item::after { content: '✦'; font-size: 7px; color: var(--blue); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ══════════════════════════════════════
   SERVICES SECTION
══════════════════════════════════════ */
#services { background: var(--bg); }
.services-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 56px; }
.services-subtitle { color: var(--muted); font-size: 16px; font-weight: 300; line-height: 1.75; max-width: 340px; margin-top: 16px; }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border); border-radius: 12px; overflow: hidden;
}
.service-card {
  background: var(--white); padding: 44px 36px 52px;
  position: relative; overflow: hidden;
  transition: background .35s ease;
}
.service-card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at var(--mx,50%) var(--my,50%), rgba(14,143,224,0.07) 0%, transparent 60%);
  opacity: 0; transition: opacity .35s;
}
.service-card:hover::before { opacity: 1; }
.service-card:hover { background: var(--blue-light); }
.card-num { font-family: var(--font-display); font-size: 10.5px; font-weight: 700; letter-spacing: 0.2em; color: var(--blue); margin-bottom: 28px; opacity: 0.8; }
.card-icon { width: 40px; height: 40px; margin-bottom: 20px; transition: transform .35s cubic-bezier(.16,1,.3,1); }
.service-card:hover .card-icon { transform: scale(1.1) rotate(-4deg); }
.card-title {
  font-family: var(--font-display); font-size: 17px; font-weight: 700;
  letter-spacing: -0.01em; color: var(--blue-dark); margin-bottom: 12px;
}
.card-desc { font-size: 15px; font-weight: 300; color: var(--muted); line-height: 1.7; }
.card-arrow {
  position: absolute; bottom: 28px; right: 28px;
  width: 32px; height: 32px; border: 1.5px solid var(--border); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: translateY(6px);
  transition: opacity .25s, transform .35s cubic-bezier(.16,1,.3,1), border-color .25s, background .25s;
  background: var(--white);
}
.service-card:hover .card-arrow { opacity: 1; transform: translateY(0); border-color: var(--blue); background: var(--blue); }
.card-arrow svg { width: 12px; height: 12px; }

/* ══════════════════════════════════════
   WHY CIRCLES
══════════════════════════════════════ */
#why-circles {
  background: var(--white);
  padding: 100px 60px; text-align: center;
}
.why-circles-label {
  font-family: var(--font-display); font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.24em; text-transform: uppercase; color: var(--blue);
  margin-bottom: 12px; display: flex; align-items: center; justify-content: center; gap: 12px;
}
.why-circles-label::before, .why-circles-label::after { content: ''; width: 20px; height: 2px; background: var(--blue); border-radius: 2px; }
.why-circles-title {
  font-family: var(--font-display); font-size: clamp(26px, 2.8vw, 38px);
  font-weight: 800; letter-spacing: -0.025em; color: var(--blue-dark); margin-bottom: 56px;
}
.why-circles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; max-width: 860px; margin: 0 auto; }
.why-circle-item { display: flex; flex-direction: column; align-items: center; gap: 20px; }
.why-circle-ring { position: relative; width: 148px; height: 148px; }
.why-circle-ring svg { width: 148px; height: 148px; }
.why-circle-num { position: absolute; top: -8px; right: -8px; width: 32px; height: 32px; border-radius: 50%; background: var(--blue); color: white; font-family: var(--font-display); font-size: 10px; font-weight: 800; display: flex; align-items: center; justify-content: center; letter-spacing: 0.04em; }
.why-circle-icon { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.why-circle-icon svg { width: 58px; height: 58px; }
.why-circle-title { font-family: var(--font-display); font-size: 15px; font-weight: 700; color: var(--blue-dark); letter-spacing: -0.01em; }
.why-circle-desc { font-size: 13.5px; font-weight: 300; color: var(--muted); line-height: 1.75; max-width: 220px; text-align: center; }

/* ══════════════════════════════════════
   STATS DARK BAND
══════════════════════════════════════ */
#stats {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-rich) 100%);
  padding: 80px 60px; position: relative; overflow: hidden;
}
#stats::before {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(14,143,224,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14,143,224,0.07) 1px, transparent 1px);
  background-size: 56px 56px; pointer-events: none;
}
.stats-inner { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; overflow: hidden; }
.stat-box { padding: 48px 36px; text-align: center; background: rgba(255,255,255,0.03); transition: background .25s; }
.stat-box:hover { background: rgba(14,143,224,0.14); }
.stat-num { font-family: var(--font-display); font-size: clamp(36px, 3.5vw, 52px); font-weight: 800; letter-spacing: -0.04em; line-height: 1; color: var(--white); margin-bottom: 8px; }
.stat-num span { color: var(--blue-accent); }
.stat-label { font-family: var(--font-display); font-size: 10px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.42); }

/* ══════════════════════════════════════
   RECRUITMENT SECTION
══════════════════════════════════════ */
#recruitment {
  background: linear-gradient(160deg, #001830 0%, var(--blue-dark) 60%, var(--blue-rich) 100%);
  position: relative; overflow: hidden; padding: 100px 60px;
}
#recruitment::before {
  content: ''; position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1521737852567-6949f3f9f2b5?w=1600&q=80') center/cover no-repeat;
  opacity: 0.07;
}
#recruitment::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 75% 50%, rgba(14,143,224,0.14) 0%, transparent 60%);
  pointer-events: none;
}
.recruitment-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.recruitment-label { font-family: var(--font-display); font-size: 10.5px; font-weight: 700; letter-spacing: 0.24em; text-transform: uppercase; color: var(--blue); margin-bottom: 16px; display: flex; align-items: center; gap: 10px; }
.recruitment-label::before { content:''; width:20px; height:2px; background:var(--blue); border-radius:2px; }
.recruitment-title {
  font-family: var(--font-display); font-size: clamp(28px, 3vw, 40px);
  font-weight: 800; color: var(--white); line-height: 1.12;
  letter-spacing: -0.025em; margin-bottom: 18px;
}
.recruitment-desc { font-size: 16px; font-weight: 300; color: rgba(255,255,255,0.58); line-height: 1.75; margin-bottom: 36px; }
.happy-card { display: inline-flex; align-items: center; gap: 18px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: 12px; padding: 18px 24px; }
.happy-icon { width: 48px; height: 48px; background: var(--blue); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.happy-icon svg { width: 24px; height: 24px; }
.happy-num { font-family: var(--font-display); font-size: 36px; font-weight: 800; color: var(--white); line-height: 1; letter-spacing: -0.03em; }
.happy-label { font-family: var(--font-display); font-size: 10px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.42); margin-top: 4px; }
.skill-bars { display: flex; flex-direction: column; gap: 24px; }
.skill-bar-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.skill-bar-name { font-family: var(--font-display); font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.82); letter-spacing: 0.03em; }
.skill-bar-pct { font-family: var(--font-display); font-size: 14px; font-weight: 700; color: var(--blue); }
.skill-bar-track { height: 5px; background: rgba(255,255,255,0.1); border-radius: 4px; overflow: hidden; }
.skill-bar-fill { height: 100%; background: linear-gradient(90deg, var(--blue) 0%, var(--blue-accent) 100%); border-radius: 4px; width: 0; transition: width 1.4s cubic-bezier(.16,1,.3,1); }

/* ══════════════════════════════════════
   CLIENTS SECTION
══════════════════════════════════════ */
#clients { background: var(--bg-alt); }
.clients-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 56px; }
.clients-subtitle { color: var(--muted); font-size: 16px; font-weight: 300; line-height: 1.75; max-width: 340px; margin-top: 16px; }
.clients-scroll-wrap { position: relative; overflow: hidden; margin-bottom: 0; padding: 8px 0; }
.clients-scroll-wrap::before, .clients-scroll-wrap::after { content: ''; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2; pointer-events: none; }
.clients-scroll-wrap::before { left: 0; background: linear-gradient(to right, var(--bg-alt), transparent); }
.clients-scroll-wrap::after { right: 0; background: linear-gradient(to left, var(--bg-alt), transparent); }
.clients-scroll-track { display: flex; gap: 16px; width: max-content; animation: clientsScroll 28s linear infinite; }
.clients-scroll-wrap:hover .clients-scroll-track { animation-play-state: paused; }
@keyframes clientsScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.client-logo-cell { background: var(--white); border: 1px solid var(--border); border-radius: 10px; padding: 24px 32px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; text-decoration: none; min-width: 180px; transition: background .25s, border-color .25s, box-shadow .25s, transform .25s; flex-shrink: 0; }
.client-logo-cell:hover { background: var(--blue-light); border-color: var(--blue); box-shadow: var(--shadow-blue); transform: translateY(-3px); }
.client-logo-cell img, .client-svg { height: 40px; width: auto; max-width: 150px; object-fit: contain; filter: grayscale(100%) opacity(0.42); transition: filter .3s; }
.client-logo-cell:hover img, .client-logo-cell:hover .client-svg { filter: grayscale(0%) opacity(1); }
.client-logo-text { font-family: var(--font-display); font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); text-align: center; white-space: nowrap; transition: color .25s; }
.client-logo-cell:hover .client-logo-text { color: var(--blue-mid); }

/* ══════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════ */
.testimonials-title { font-family: var(--font-display); font-size: clamp(24px, 2.5vw, 32px); font-weight: 800; letter-spacing: -0.025em; color: var(--blue-dark); margin-bottom: 40px; text-align: center; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.testimonial-card { background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 36px 28px; position: relative; overflow: hidden; transition: transform .25s, box-shadow .25s, border-color .25s; }
.testimonial-card:hover { transform: translateY(-5px); box-shadow: 0 20px 52px rgba(14,143,224,0.1); border-color: var(--blue); }
.testimonial-card::before { content: '"'; position: absolute; top: -8px; left: 22px; font-family: Georgia, serif; font-size: 100px; font-weight: 700; color: var(--blue-light); line-height: 1; pointer-events: none; }
.testimonial-stars { display: flex; gap: 3px; margin-bottom: 16px; }
.testimonial-stars span { color: #f59e0b; font-size: 13px; }
.testimonial-text { font-size: 15px; font-weight: 300; color: var(--muted); line-height: 1.8; margin-bottom: 24px; position: relative; z-index: 1; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--blue) 0%, var(--blue-mid) 100%); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 13px; font-weight: 700; color: white; flex-shrink: 0; }
.testimonial-name { font-family: var(--font-display); font-size: 14px; font-weight: 700; color: var(--blue-dark); }
.testimonial-role { font-size: 13px; color: var(--muted); font-weight: 300; margin-top: 2px; }

/* ══════════════════════════════════════
   ABOUT SECTION
══════════════════════════════════════ */
#about { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; background: var(--white); }
.about-right p { color: var(--muted); font-size: 16px; font-weight: 300; line-height: 1.85; margin-bottom: 20px; }
.about-right p:last-of-type { margin-bottom: 0; }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 10px; overflow: hidden; margin-top: 56px; }
.about-stat { background: var(--white); padding: 28px 24px; transition: background .25s; }
.about-stat:hover { background: var(--blue-light); }
.about-stat-num { font-family: var(--font-display); font-size: 32px; font-weight: 800; letter-spacing: -0.03em; color: var(--blue); line-height: 1; margin-bottom: 5px; }
.about-stat-label { font-size: 12px; color: var(--muted); font-weight: 500; letter-spacing: 0.04em; text-transform: uppercase; font-family: var(--font-display); }

/* ══════════════════════════════════════
   WHY CHOOSE US
══════════════════════════════════════ */
#why { background: var(--bg); display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-left .section-title { margin-bottom: 20px; }
.why-left .why-intro { color: var(--muted); font-size: 16px; font-weight: 300; line-height: 1.8; margin-bottom: 40px; }
.why-steps { display: flex; flex-direction: column; }
.why-step { display: flex; gap: 24px; align-items: flex-start; padding: 24px 0; border-bottom: 1px solid var(--border); transition: padding-left .25s; }
.why-step:last-child { border-bottom: none; }
.why-step:hover { padding-left: 6px; }
.why-step-num { font-family: var(--font-display); font-size: 28px; font-weight: 800; letter-spacing: -0.04em; color: var(--blue-light); line-height: 1; min-width: 44px; padding-top: 2px; transition: color .25s; }
.why-step:hover .why-step-num { color: var(--blue); }
.why-step-title { font-family: var(--font-display); font-size: 16px; font-weight: 700; color: var(--blue-dark); margin-bottom: 5px; }
.why-step-desc { font-size: 15px; font-weight: 300; color: var(--muted); line-height: 1.7; }
.why-right { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.why-card { background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 28px 22px; transition: transform .25s, box-shadow .25s, border-color .25s; }
.why-card:hover { transform: translateY(-5px); box-shadow: 0 18px 48px rgba(14,143,224,0.11); border-color: var(--blue); }
.why-card:nth-child(2) { margin-top: 28px; }
.why-card:nth-child(4) { margin-top: 28px; }
.why-card-icon { width: 38px; height: 38px; margin-bottom: 16px; background: var(--blue-light); border-radius: 9px; display: flex; align-items: center; justify-content: center; }
.why-card-icon svg { width: 20px; height: 20px; }
.why-card-title { font-family: var(--font-display); font-size: 15px; font-weight: 700; color: var(--blue-dark); margin-bottom: 8px; }
.why-card-desc { font-size: 15px; font-weight: 300; color: var(--muted); line-height: 1.7; }

/* ══════════════════════════════════════
   HOMEPAGE CONTACT
══════════════════════════════════════ */
#contact {
  background: linear-gradient(160deg, var(--blue-dark) 0%, var(--blue-rich) 60%, #0a3060 100%);
  text-align: center; position: relative; overflow: hidden;
}
#contact::before {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(14,143,224,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14,143,224,0.06) 1px, transparent 1px);
  background-size: 56px 56px; pointer-events: none;
}
.contact-inner { max-width: 720px; margin: 0 auto; position: relative; z-index: 1; }
#contact .section-label { justify-content: center; color: rgba(255,255,255,0.38); }
#contact .section-label::before { background: rgba(255,255,255,0.18); }
.contact-big {
  font-family: var(--font-display); font-size: clamp(28px, 2.8vw, 38px);
  font-weight: 800; letter-spacing: -0.02em; line-height: 1.2;
  color: var(--white); margin-bottom: 32px;
}
.contact-big em { font-style: normal; color: var(--blue); }
.contact-desc { color: rgba(255,255,255,0.48); font-size: 16px; font-weight: 300; line-height: 1.75; margin-bottom: 44px; }
.contact-info-row { display: flex; justify-content: center; gap: 40px; margin-bottom: 44px; flex-wrap: wrap; }
.contact-info-item { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.52); font-size: 15px; font-weight: 300; text-decoration: none; transition: color .25s; }
.contact-info-item:hover { color: white; }
.contact-info-item svg { width: 15px; height: 15px; flex-shrink: 0; color: var(--blue); }
.contact-btn { display: inline-flex; align-items: center; gap: 9px; margin-top: 44px; padding: 15px 38px; background: var(--blue); color: var(--white); font-family: var(--font-display); font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; text-decoration: none; border-radius: 6px; box-shadow: 0 8px 32px rgba(14,143,224,0.38); transition: background .25s, transform .25s; }
.contact-btn:hover { background: var(--blue-mid); transform: translateY(-2px); }
.contact-btn svg { width: 12px; height: 12px; }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
footer {
  padding: 48px 60px;
  display: flex; align-items: center; justify-content: space-between;
  background: var(--blue-dark);
  border-top: 1px solid rgba(14,143,224,0.15);
}
.footer-logo { background: var(--white); padding: 8px 16px; border-radius: 8px; display: inline-flex; align-items: center; }
.footer-logo img { height: 44px; width: auto; display: block; object-fit: contain; max-width: 180px; }
.footer-copy { font-size: 12.5px; color: rgba(255,255,255,0.36); font-weight: 300; }
.footer-links { display: flex; gap: 24px; list-style: none; }
.footer-links a { font-size: 11px; color: rgba(255,255,255,0.4); text-decoration: none; font-family: var(--font-display); letter-spacing: 0.09em; text-transform: uppercase; transition: color .25s; }
.footer-links a:hover { color: var(--blue); }

/* ══════════════════════════════════════
   TESTI SCROLL (homepage)
══════════════════════════════════════ */
#testimonials-scroll { background: var(--bg); padding: 80px 0; overflow: hidden; }
#testimonials-scroll .section-header { padding: 0 60px; margin-bottom: 44px; display: flex; align-items: flex-end; justify-content: space-between; }
.testi-scroll-wrap { position: relative; overflow: hidden; }
.testi-scroll-wrap::before, .testi-scroll-wrap::after { content: ''; position: absolute; top: 0; bottom: 0; width: 100px; z-index: 2; pointer-events: none; }
.testi-scroll-wrap::before { left: 0; background: linear-gradient(to right, var(--bg), transparent); }
.testi-scroll-wrap::after { right: 0; background: linear-gradient(to left, var(--bg), transparent); }
.testi-scroll-track { display: flex; gap: 20px; width: max-content; animation: testiScroll 30s linear infinite; padding: 6px 4px; }
.testi-scroll-wrap:hover .testi-scroll-track { animation-play-state: paused; }
@keyframes testiScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.testi-card { background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 32px 28px; width: 340px; flex-shrink: 0; position: relative; transition: box-shadow .25s, border-color .25s, transform .25s; }
.testi-card:hover { box-shadow: 0 14px 40px rgba(14,143,224,0.11); border-color: var(--blue); transform: translateY(-3px); }
.testi-quote-icon { width: 32px; height: 32px; background: var(--blue); border-radius: 7px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.testi-quote-icon svg { width: 16px; height: 16px; }
.testi-text { font-size: 15px; font-weight: 300; color: var(--muted); line-height: 1.8; margin-bottom: 24px; font-style: italic; }
.testi-divider { height: 1px; background: var(--border); margin-bottom: 16px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0; background: linear-gradient(135deg, var(--blue) 0%, var(--blue-mid) 100%); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 13px; font-weight: 800; color: white; }
.testi-name { font-family: var(--font-display); font-size: 14px; font-weight: 700; color: var(--blue-dark); }
.testi-role { font-size: 13px; color: var(--muted); font-weight: 300; margin-top: 2px; }
.testi-stars { display: flex; gap: 2px; margin-top: 3px; }
.testi-stars span { color: #f59e0b; font-size: 11px; }

/* ══════════════════════════════════════
   KEYFRAMES + REVEALS
══════════════════════════════════════ */
@keyframes fadeUp    { from { opacity:0; transform:translateY(28px); } to { opacity:1; transform:none; } }
@keyframes fadeLeft  { from { opacity:0; transform:translateX(-28px); } to { opacity:1; transform:none; } }
@keyframes fadeRight { from { opacity:0; transform:translateX(28px); } to { opacity:1; transform:none; } }

.reveal, .reveal-left, .reveal-right { opacity:1; transform:none; }
.gsap-ready .reveal       { opacity:0; transform:translateY(36px); }
.gsap-ready .reveal-left  { opacity:0; transform:translateX(-36px); }
.gsap-ready .reveal-right { opacity:0; transform:translateX(36px); }

/* ══════════════════════════════════════
   INNER PAGES
══════════════════════════════════════ */

/* Inner hero — richer, with brand gradient */
.inner-hero {
  background: linear-gradient(160deg, #001830 0%, var(--blue-dark) 55%, var(--blue-rich) 100%);
  padding: 130px 60px 72px;
  position: relative; overflow: hidden;
}
.inner-hero::before {
  content: ''; position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1521737852567-6949f3f9f2b5?w=1600&q=80') center/cover no-repeat;
  opacity: 0.1;
}
.inner-hero::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(14,143,224,0.18) 0%, transparent 58%);
  pointer-events: none;
}
.inner-hero-content { position: relative; z-index: 1; }
.inner-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800; color: var(--white); margin-bottom: 14px; letter-spacing: -0.025em;
}
.inner-hero-breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-size: 11px;
  font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.42);
}
.inner-hero-breadcrumb a { color: var(--blue); text-decoration: none; transition: color .25s; }
.inner-hero-breadcrumb a:hover { color: var(--blue-accent); }
.inner-hero-breadcrumb span { color: rgba(255,255,255,0.22); }

/* Inner content layout */
.inner-content {
  display: grid; grid-template-columns: 250px 1fr; gap: 48px;
  padding: 72px 60px; background: var(--bg); align-items: start;
}
.inner-sidebar { position: sticky; top: 90px; }
.sidebar-nav { background: var(--white); border: 1px solid var(--border); border-radius: 10px; overflow: hidden; }
.sidebar-nav a {
  display: flex; align-items: center; gap: 10px; padding: 13px 16px;
  font-family: var(--font-display); font-size: 11px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted); text-decoration: none;
  border-bottom: 1px solid var(--border);
  transition: background .18s, color .18s;
}
.sidebar-nav a:last-child { border-bottom: none; }
.sidebar-nav a:hover, .sidebar-nav a.active { background: var(--blue-light); color: var(--blue-dark); }
.sidebar-nav a.active { border-left: 3px solid var(--blue); }
.sidebar-nav a svg { width: 14px; height: 14px; flex-shrink: 0; }
.sidebar-contact-box {
  margin-top: 16px;
  background: linear-gradient(140deg, var(--blue-dark) 0%, var(--blue-rich) 100%);
  border-radius: 10px; padding: 24px 20px; text-align: center;
  border: 1px solid rgba(14,143,224,0.2);
}
.sidebar-contact-box p { font-size: 10px; color: rgba(255,255,255,0.46); margin-bottom: 8px; font-family: var(--font-display); letter-spacing: 0.14em; text-transform: uppercase; }
.sidebar-contact-box a { font-family: var(--font-display); font-size: 15px; font-weight: 800; color: var(--blue); text-decoration: none; display: block; transition: color .25s; }
.sidebar-contact-box a:hover { color: var(--blue-accent); }

/* Inner main white card */
.inner-main {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 12px; padding: 48px 44px;
}
.inner-main h2 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 800; color: var(--blue-dark); margin-bottom: 18px;
  letter-spacing: -0.02em; line-height: 1.2;
}
.inner-main h3 {
  font-family: var(--font-display); font-size: 17px; font-weight: 700;
  color: var(--blue-dark); margin: 36px 0 12px; letter-spacing: -0.01em;
}
.inner-main p { font-size: 16px; font-weight: 300; color: var(--muted); line-height: 1.8; margin-bottom: 18px; }
.inner-main strong { color: var(--blue-dark); font-weight: 600; }
.inner-highlight {
  background: linear-gradient(100deg, var(--blue-light) 0%, #edf5ff 100%);
  border-left: 4px solid var(--blue); border-radius: 0 10px 10px 0;
  padding: 20px 24px; margin: 28px 0;
  font-size: 15px; font-weight: 500; color: var(--blue-dark); line-height: 1.75;
}
.inner-features { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 28px 0; }
.inner-feature-card {
  background: var(--bg); border: 1px solid var(--border); border-radius: 10px;
  padding: 24px 20px; transition: border-color .25s, box-shadow .25s, background .25s;
}
.inner-feature-card:hover { border-color: var(--blue); box-shadow: var(--shadow-blue); background: var(--blue-light); }
.inner-feature-num { font-family: var(--font-display); font-size: 10px; font-weight: 700; letter-spacing: 0.18em; color: var(--blue); margin-bottom: 10px; }
.inner-feature-title { font-family: var(--font-display); font-size: 15px; font-weight: 700; color: var(--blue-dark); margin-bottom: 8px; }
.inner-feature-desc { font-size: 15px; font-weight: 300; color: var(--muted); line-height: 1.7; }
.inner-checklist { list-style: none; display: flex; flex-direction: column; gap: 12px; margin: 18px 0; }
.inner-checklist li { display: flex; align-items: flex-start; gap: 10px; font-size: 16px; font-weight: 300; color: var(--muted); line-height: 1.7; }
.inner-checklist li::before { content: ''; width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; background: var(--blue); border-radius: 50%; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 12 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 5l3 3 7-7' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: center; background-size: 9px; }

/* Careers */
.careers-empty { text-align: center; padding: 72px 36px; background: var(--white); border: 1px solid var(--border); border-radius: 12px; }
.careers-empty h3 { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--blue-dark); margin-bottom: 12px; }
.careers-empty p { font-size: 15px; color: var(--muted); margin-bottom: 28px; line-height: 1.7; }
.careers-empty a { display: inline-flex; align-items: center; gap: 7px; padding: 13px 28px; background: var(--blue); color: white; font-family: var(--font-display); font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; text-decoration: none; border-radius: 6px; transition: background .25s, transform .25s; }
.careers-empty a:hover { background: var(--blue-mid); transform: translateY(-1px); }

/* Contact page */
.contact-page-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; padding: 72px 60px; background: var(--bg); }
.contact-form-wrap { background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 44px 40px; }
.contact-form-wrap h2 { font-family: var(--font-display); font-size: 24px; font-weight: 800; color: var(--blue-dark); margin-bottom: 6px; letter-spacing: -0.02em; }
.contact-form-wrap > p { font-size: 14px; color: var(--muted); margin-bottom: 30px; line-height: 1.7; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-family: var(--font-display); font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-bottom: 7px; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 12px 14px; background: var(--bg); border: 1px solid var(--border-solid); border-radius: 7px; font-family: var(--font-body); font-size: 15px; color: var(--text); outline: none; transition: border-color .25s, background .25s; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--blue); background: var(--white); box-shadow: 0 0 0 3px rgba(14,143,224,0.1); }
.form-group textarea { min-height: 120px; resize: vertical; }
.form-submit { display: inline-flex; align-items: center; gap: 7px; padding: 13px 34px; background: var(--blue); color: white; font-family: var(--font-display); font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; border: none; border-radius: 6px; transition: background .25s, transform .25s; box-shadow: var(--shadow-blue); }
.form-submit:hover { background: var(--blue-mid); transform: translateY(-1px); }
.contact-info-cards { display: flex; flex-direction: column; gap: 16px; }
.contact-info-card { background: var(--white); border: 1px solid var(--border); border-radius: 10px; padding: 22px 22px; display: flex; gap: 16px; align-items: flex-start; transition: border-color .25s, box-shadow .25s; }
.contact-info-card:hover { border-color: var(--blue); box-shadow: var(--shadow-blue); }
.contact-icon-wrap { width: 44px; height: 44px; background: var(--blue-light); border-radius: 9px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-icon-wrap svg { width: 20px; height: 20px; }
.contact-card-label { font-family: var(--font-display); font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 5px; }
.contact-card-value { font-size: 15px; font-weight: 400; color: var(--blue-dark); text-decoration: none; display: block; line-height: 1.6; }
.contact-card-value:hover { color: var(--blue); }

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 900px) {
  .top-bar { padding: 8px 20px; } .top-bar-left { gap: 12px; } .top-bar-item { font-size: 10px; } .top-bar-right { display: none; }
  nav { padding: 0 20px; } .nav-links { display: none; } .nav-book-btn { display: none; } .nav-hamburger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; padding: 110px 24px 60px; gap: 36px; } .hero-right { display: none; } #hero { min-height: auto; }
  .stats-bar-inner { grid-template-columns: 1fr 1fr; } .stats-bar-item { border-bottom: 1px solid var(--border); }
  .cta-banner { flex-direction: column; text-align: center; padding: 44px 24px; }
  #hero, section, footer { padding-left: 24px; padding-right: 24px; }
  #why-circles { padding: 80px 24px; } .why-circles-grid { grid-template-columns: 1fr; gap: 44px; }
  .services-grid { grid-template-columns: 1fr; } .services-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  #about, #why { grid-template-columns: 1fr; gap: 48px; } .why-right { grid-template-columns: 1fr; } .why-card:nth-child(2), .why-card:nth-child(4) { margin-top: 0; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .recruitment-inner { grid-template-columns: 1fr; gap: 40px; } #recruitment { padding: 64px 24px; }
  .clients-scroll-wrap::before, .clients-scroll-wrap::after { width: 48px; } .client-logo-cell { min-width: 150px; padding: 20px 22px; } .clients-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  footer { flex-direction: column; gap: 22px; text-align: center; padding: 36px 24px; } .footer-links { flex-wrap: wrap; justify-content: center; }
  .contact-info-row { flex-direction: column; gap: 14px; align-items: center; }
  #testimonials-scroll .section-header { padding: 0 24px; flex-direction: column; align-items: flex-start; gap: 14px; } .testi-card { width: 290px; }
  .inner-content { grid-template-columns: 1fr; padding: 36px 24px; } .inner-sidebar { position: static; } .inner-main { padding: 32px 24px; } .inner-features { grid-template-columns: 1fr; }
  .contact-page-grid { grid-template-columns: 1fr; padding: 36px 24px; }
  .inner-hero { padding: 110px 24px 56px; }
  #clients { padding: 64px 24px !important; } #clients .reveal > div { padding: 32px 24px !important; }
}
