/* ================================================
   YOGI TECHNOLABS — Redesign 2026
   Theme: Light & Professional (Navy + Orange)
   ================================================ */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:           #FFFFFF;
  --bg-2:         #F8FAFC;
  --bg-3:         #F1F5F9;
  --bg-card:      #FFFFFF;
  --bg-card-h:    #F8FAFC;
  --border:       rgba(0,0,0,0.08);
  --border-h:     rgba(30,58,95,0.4);
  --navy:         #1E3A5F;
  --navy-l:       #2B5F9E;
  --navy-2:       #0F2342;
  --orange:       #FF6B35;
  --orange-l:     #FF8C5A;
  --orange-d:     #E85520;
  --sky:          #3B82F6;
  --white:        #FFFFFF;
  --text:         #4B5563;
  --text-bright:  #111827;
  --muted:        #9CA3AF;
  --grad:         linear-gradient(135deg, #1E3A5F 0%, #2B5F9E 100%);
  --grad-o:       linear-gradient(135deg, #FF6B35 0%, #FF8C5A 100%);
  --grad-text:    linear-gradient(135deg, #1E3A5F 0%, #FF6B35 100%);
  --grad-hero:    linear-gradient(135deg, #1E3A5F 0%, #2B5F9E 60%, #FF6B35 100%);
  --shadow-sm:    0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md:    0 4px 20px rgba(0,0,0,0.08), 0 2px 8px rgba(0,0,0,0.04);
  --shadow-lg:    0 10px 40px rgba(0,0,0,0.1), 0 4px 16px rgba(0,0,0,0.06);
  --shadow-navy:  0 8px 32px rgba(30,58,95,0.2);
  --shadow-orange:0 8px 32px rgba(255,107,53,0.3);
  --r:            14px;
  --r-lg:         20px;
  --ease:         cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* --- Utility --- */
.container      { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-wide { max-width: 1440px; margin: 0 auto; padding: 0 32px; }
.section        { padding: 96px 0; }
.section-sm     { padding: 56px 0; }

.grad-text {
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(30,58,95,0.07);
  border: 1px solid rgba(30,58,95,0.15);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 20px;
}

.tag .dot {
  width: 6px; height: 6px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:0.6; transform:scale(1.4); }
}

.section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}

h1,h2,h3,h4 {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  color: var(--text-bright);
  line-height: 1.2;
  font-weight: 700;
}

h1 { font-size: clamp(38px,5.5vw,70px); letter-spacing: -0.03em; }
h2 { font-size: clamp(28px,3.5vw,48px); letter-spacing: -0.02em; }
h3 { font-size: clamp(17px,1.8vw,22px); }
h4 { font-size: 15px; }

p { color: var(--text); }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn-primary {
  background: var(--grad-o);
  color: #fff;
  box-shadow: var(--shadow-orange);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(255,107,53,0.45);
}

.btn-navy {
  background: var(--grad);
  color: #fff;
  box-shadow: var(--shadow-navy);
}
.btn-navy:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(30,58,95,0.4);
}

.btn-outline {
  border: 2px solid var(--navy);
  color: var(--navy);
  background: transparent;
}
.btn-outline:hover {
  background: var(--navy);
  color: #fff;
  transform: translateY(-2px);
}

.btn-ghost {
  color: var(--text-bright);
  border: 1.5px solid var(--border);
  background: var(--bg);
}
.btn-ghost:hover {
  border-color: var(--navy);
  color: var(--navy);
  background: rgba(30,58,95,0.04);
}

.btn svg { width:18px; height:18px; flex-shrink:0; }

/* ================================================
   NAVIGATION
   ================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: all 0.4s var(--ease);
}

.nav.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--navy);
  flex-shrink: 0;
}
.nav-logo img { height: 36px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-item { position: relative; }

.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-bright);
  transition: all 0.2s var(--ease);
  cursor: pointer;
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active {
  color: var(--navy);
  background: rgba(30,58,95,0.06);
}
.nav-link svg { width:14px; height:14px; transition: transform 0.2s; }
.nav-item:hover .nav-link svg { transform: rotate(180deg); }

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  min-width: 220px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-8px);
  transition: all 0.25s var(--ease);
  box-shadow: var(--shadow-lg);
}
.nav-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 13.5px;
  color: var(--text);
  transition: all 0.2s;
}
.nav-dropdown a:hover { background: rgba(30,58,95,0.06); color: var(--navy); }
.nav-dropdown a .dd-icon {
  width: 32px; height: 32px;
  background: rgba(30,58,95,0.07);
  border-radius: 8px;
  display: flex; align-items:center; justify-content:center;
  flex-shrink: 0;
}
.nav-dropdown a .dd-icon svg { width:15px; height:15px; color: var(--navy); }
.nav-dropdown a:hover .dd-icon { background: rgba(30,58,95,0.12); }

/* Mega menu */
.nav-mega {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  width: 680px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-8px);
  transition: all 0.25s var(--ease);
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
}
.nav-item:hover .nav-mega {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.mega-group h5 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 4px 12px 8px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 6px;
}
.mega-group a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 13px;
  color: var(--text);
  transition: all 0.2s;
}
.mega-group a:hover { background: rgba(30,58,95,0.06); color: var(--navy); }
.mega-group a svg { width:14px; height:14px; color: var(--muted); flex-shrink:0; }
.mega-group a:hover svg { color: var(--navy); }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.mobile-menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ================================================
   HERO SECTION
   ================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 72px;
  background: var(--bg-2);
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* Subtle orbs for light theme */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.18;
  animation: float 10s ease-in-out infinite;
}
.orb-1 { width:700px; height:700px; background:radial-gradient(circle,#1E3A5F,transparent); top:-250px; right:-150px; animation-delay:0s; }
.orb-2 { width:500px; height:500px; background:radial-gradient(circle,#FF6B35,transparent); bottom:-200px; left:-100px; animation-delay:-4s; }
.orb-3 { width:350px; height:350px; background:radial-gradient(circle,#3B82F6,transparent); top:50%; left:35%; animation-delay:-7s; }

@keyframes float {
  0%,100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(40px,-40px) scale(1.04); }
  66% { transform: translate(-25px,25px) scale(0.96); }
}

/* Dot grid overlay */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(30,58,95,0.12) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
  text-align: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(30,58,95,0.08);
  border: 1px solid rgba(30,58,95,0.15);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 32px;
  letter-spacing: 0.02em;
}
.hero-eyebrow .dot {
  width: 7px; height: 7px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero h1 {
  margin-bottom: 24px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.hero h1 em { font-style: normal; }

.hero-desc {
  font-size: clamp(16px,2vw,19px);
  color: var(--text);
  max-width: 620px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 64px;
  flex-wrap: wrap;
}

/* Stats row */
.hero-stats {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  display: inline-flex;
  padding: 0 24px;
}

.stat-item {
  padding: 28px 36px;
  text-align: center;
  position: relative;
}
.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0; top: 20%; height: 60%;
  width: 1px;
  background: var(--border);
}

.stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(32px,4vw,52px);
  font-weight: 800;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2s ease-in-out infinite;
}
.scroll-indicator svg { width:18px; height:18px; }
@keyframes bounce {
  0%,100%{transform:translateX(-50%) translateY(0)}
  50%{transform:translateX(-50%) translateY(6px)}
}

/* ================================================
   TRUSTED BY
   ================================================ */
.trusted {
  padding: 40px 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trusted-label {
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 28px;
  font-weight: 600;
}

.logo-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.logo-placeholder {
  height: 28px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.02em;
  opacity: 0.5;
  transition: opacity 0.3s;
  font-family: 'Space Grotesk', sans-serif;
}
.logo-placeholder:hover { opacity: 0.8; }
.logo-placeholder .logo-icon {
  width: 28px; height: 28px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 6px;
}

/* ================================================
   SERVICES SECTION
   ================================================ */
.services { background: var(--bg-2); }

.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header h2 { margin-bottom: 16px; }
.section-header p {
  font-size: 17px;
  max-width: 560px;
  margin: 0 auto;
  color: var(--text);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  padding: 32px;
  border-radius: var(--r-lg);
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: all 0.35s var(--ease);
  cursor: default;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-o);
  opacity: 0;
  transition: opacity 0.35s;
}
.service-card:hover {
  border-color: rgba(30,58,95,0.15);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 52px; height: 52px;
  background: rgba(30,58,95,0.08);
  border: 1px solid rgba(30,58,95,0.12);
  border-radius: 14px;
  display: flex; align-items:center; justify-content:center;
  margin-bottom: 20px;
  transition: all 0.35s;
}
.service-card:hover .service-icon {
  background: var(--navy);
  border-color: var(--navy);
}
.service-card:hover .service-icon svg { color: #fff !important; stroke: #fff !important; }
.service-icon svg { width:24px; height:24px; }

.service-card h3 { margin-bottom: 10px; font-size: 18px; color: var(--text-bright); }
.service-card p { font-size: 14px; line-height: 1.7; color: var(--text); }

.service-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--orange);
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.3s;
}
.service-card:hover .service-arrow { opacity: 1; transform: translateX(0); }
.service-arrow svg { width:14px; height:14px; }

/* ================================================
   SOLUTIONS SECTION
   ================================================ */
.solutions { background: var(--bg); }

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 48px;
}

@media (max-width:1100px) { .solutions-grid { grid-template-columns: repeat(3,1fr); } }
@media (max-width:700px)  { .solutions-grid { grid-template-columns: 1fr 1fr; } }

.solution-card {
  padding: 28px 24px;
  border-radius: var(--r);
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: all 0.35s var(--ease);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.solution-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-o);
  opacity: 0;
  transition: opacity 0.35s;
}
.solution-card:hover {
  border-color: rgba(30,58,95,0.2);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.solution-card:hover::after { opacity: 1; }

.sol-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  background: rgba(255,107,53,0.08);
  border: 1px solid rgba(255,107,53,0.2);
  border-radius: 100px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange-d);
  margin-bottom: 16px;
}

.solution-card h3 { font-size: 16px; margin-bottom: 10px; color: var(--text-bright); }
.solution-card p  { font-size: 13px; color: var(--text); line-height: 1.6; }

/* ================================================
   INDUSTRIES SECTION
   ================================================ */
.industries { background: var(--bg-2); }

.industries-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-top: 48px;
}
@media (max-width:1000px) { .industries-grid { grid-template-columns: repeat(3,1fr); } }
@media (max-width:600px)  { .industries-grid { grid-template-columns: repeat(2,1fr); } }

.industry-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px 20px;
  border-radius: var(--r);
  background: var(--bg-card);
  border: 1px solid var(--border);
  gap: 14px;
  transition: all 0.3s var(--ease);
  cursor: default;
  box-shadow: var(--shadow-sm);
}
.industry-card:hover {
  border-color: rgba(30,58,95,0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.industry-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: rgba(30,58,95,0.08);
  border: 1px solid rgba(30,58,95,0.12);
  display: flex; align-items:center; justify-content:center;
  transition: all 0.3s;
}
.industry-card:hover .industry-icon {
  background: var(--navy);
  border-color: var(--navy);
}
.industry-card:hover .industry-icon svg { color: #fff; }
.industry-icon svg { width:26px; height:26px; color: var(--navy); transition: color 0.3s; }

.industry-card h3 { font-size: 15px; color: var(--text-bright); }
.industry-card p  { font-size: 12px; color: var(--muted); }

/* ================================================
   WHY US SECTION
   ================================================ */
.why-us {
  background: var(--navy-2);
  position: relative;
  overflow: hidden;
}
.why-us::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,107,53,0.12), transparent);
  top: -300px; right: -200px;
  pointer-events: none;
}
.why-us::after {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30,58,95,0.5), transparent);
  bottom: -200px; left: -100px;
  pointer-events: none;
}

/* Override text colors for dark section */
.why-us .tag {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.8);
}
.why-us .tag .dot { background: var(--orange); }
.why-us h2 { color: #fff; }
.why-us > .container > .why-grid > .why-content > p { color: rgba(255,255,255,0.65); }

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.why-feature {
  display: flex;
  gap: 16px;
  padding: 20px;
  border-radius: var(--r);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.3s;
}
.why-feature:hover {
  border-color: rgba(255,107,53,0.4);
  background: rgba(255,255,255,0.08);
}

.why-feature-icon {
  width: 44px; height: 44px;
  flex-shrink: 0;
  border-radius: 12px;
  background: var(--grad-o);
  display: flex; align-items:center; justify-content:center;
}
.why-feature-icon svg { width:20px; height:20px; color:#fff; }
.why-feature-body h4 { font-size: 15px; margin-bottom: 4px; color: #fff; }
.why-feature-body p  { font-size: 13px; color: rgba(255,255,255,0.55); }
.why-features { display: flex; flex-direction: column; gap: 16px; }

.why-visual { position: relative; }
.why-card-stack { position: relative; height: 420px; }
.why-big-card {
  position: absolute;
  padding: 32px;
  border-radius: var(--r-lg);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
}
.why-big-card:nth-child(1) { width:80%; top:0; left:0; z-index:3; box-shadow:0 20px 60px rgba(0,0,0,0.3); }
.why-big-card:nth-child(2) { width:75%; top:30px; left:10%; z-index:2; opacity:0.5; }
.why-big-card:nth-child(3) { width:70%; top:60px; left:20%; z-index:1; opacity:0.25; }

.metric-row { display:flex; gap:16px; margin-top:24px; }
.metric-box {
  flex: 1;
  padding: 16px;
  background: rgba(255,107,53,0.12);
  border: 1px solid rgba(255,107,53,0.25);
  border-radius: 12px;
  text-align: center;
}
.metric-box .num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: #fff;
}
.metric-box .lbl { font-size: 11px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.06em; }

/* ================================================
   PROCESS SECTION
   ================================================ */
.process { background: var(--bg); }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 24px;
  margin-top: 48px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 8%; right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), var(--border), transparent);
}

.process-step { text-align: center; position: relative; }

.step-num {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--bg-2);
  border: 2px solid var(--border);
  display: flex; align-items:center; justify-content:center;
  margin: 0 auto 20px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
  position: relative;
  z-index: 1;
  transition: all 0.3s;
}
.process-step:hover .step-num {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
  box-shadow: var(--shadow-orange);
}

.process-step h3 { font-size: 16px; margin-bottom: 8px; }
.process-step p  { font-size: 13px; color: var(--muted); }

/* ================================================
   TEAM SECTION
   ================================================ */
.team { background: var(--bg-2); }

.team-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 24px;
  margin-top: 48px;
}

.team-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: all 0.35s var(--ease);
  box-shadow: var(--shadow-sm);
}
.team-card:hover {
  border-color: rgba(30,58,95,0.2);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.team-photo {
  aspect-ratio: 1;
  overflow: hidden;
  background: linear-gradient(135deg, #EEF2FF, #E0F2FE);
  position: relative;
}
.team-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.team-card:hover .team-photo img { transform: scale(1.05); }
.team-photo-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--navy);
  opacity: 0.3;
}

.team-info { padding: 20px; }
.team-info h3 { font-size: 16px; margin-bottom: 4px; color: var(--text-bright); }
.team-info p  { font-size: 13px; color: var(--orange); font-weight: 500; }

/* ================================================
   TESTIMONIALS
   ================================================ */
.testimonials { background: var(--bg); }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
  margin-top: 48px;
}

.testi-card {
  padding: 32px;
  border-radius: var(--r-lg);
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: all 0.35s;
  position: relative;
  box-shadow: var(--shadow-sm);
}
.testi-card:hover {
  border-color: rgba(30,58,95,0.2);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.testi-card::before {
  content: '"';
  position: absolute;
  top: 20px; right: 24px;
  font-size: 80px;
  line-height: 1;
  color: rgba(30,58,95,0.08);
  font-family: Georgia, serif;
}

.stars { display:flex; gap:3px; margin-bottom:16px; }
.stars svg { width:16px; height:16px; color:#F59E0B; fill:#F59E0B; }

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

.testi-author { display:flex; align-items:center; gap:12px; }
.testi-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--grad);
  display:flex; align-items:center; justify-content:center;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  flex-shrink: 0;
}
.testi-author h4   { font-size: 14px; margin-bottom: 2px; color: var(--text-bright); }
.testi-author span { font-size: 12px; color: var(--muted); }

/* ================================================
   CTA SECTION
   ================================================ */
.cta-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background: var(--bg-2);
}
.cta-bg {
  position: absolute;
  inset: 0;
}
.cta-bg::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30,58,95,0.08), transparent);
  top: -200px; left: -100px;
}
.cta-bg::after {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,107,53,0.1), transparent);
  bottom: -150px; right: 0;
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.cta-content h2 { font-size: clamp(30px,4vw,52px); margin-bottom: 20px; }
.cta-content p  { font-size: 17px; margin-bottom: 40px; }
.cta-btns { display:flex; align-items:center; justify-content:center; gap:16px; flex-wrap:wrap; }

/* Bordered accent box behind CTA */
.cta-box {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 64px 48px;
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}
.cta-box::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--r-lg);
  background: linear-gradient(135deg, rgba(30,58,95,0.3), rgba(255,107,53,0.3));
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s;
}
.cta-box:hover::before { opacity: 1; }

/* ================================================
   FOOTER
   ================================================ */
.footer {
  background: var(--navy-2);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  margin: 16px 0 24px;
  line-height: 1.7;
  max-width: 280px;
}
.footer-brand .footer-logo {
  display: flex; align-items:center; gap:8px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700; font-size: 18px; color: #fff;
}
.footer-brand .footer-logo img { height:32px; }

.social-links { display:flex; gap:10px; }
.social-link {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items:center; justify-content:center;
  color: rgba(255,255,255,0.5);
  transition: all 0.3s;
}
.social-link:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
  transform: translateY(-2px);
}
.social-link svg { width:16px; height:16px; }

.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
}
.footer-col ul { display:flex; flex-direction:column; gap:10px; }
.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--orange-l); }

.footer-contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 14px;
}
.footer-contact-item svg { width:16px; height:16px; color: var(--orange); margin-top:2px; flex-shrink:0; }
.footer-contact-item span, .footer-contact-item a { font-size:14px; color:rgba(255,255,255,0.5); transition:color 0.2s; }
.footer-contact-item a:hover { color: var(--orange-l); }

.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.35); }
.footer-bottom a { color: var(--orange-l); }

/* ================================================
   ANIMATIONS / REVEAL
   ================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.reveal.visible      { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ================================================
   MOBILE MENU
   ================================================ */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: #fff;
  display: flex;
  flex-direction: column;
  padding: 100px 32px 40px;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
  overflow-y: auto;
  box-shadow: -8px 0 40px rgba(0,0,0,0.12);
}
.mobile-nav.open { transform: translateX(0); }

.mobile-nav-links { display:flex; flex-direction:column; gap:4px; }
.mobile-nav-link {
  display: flex; align-items:center; justify-content:space-between;
  padding: 14px 16px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-bright);
  cursor: pointer;
  transition: all 0.2s;
}
.mobile-nav-link:hover { background: var(--bg-2); color: var(--navy); }
.mobile-nav-link svg { width:18px; height:18px; transition:transform 0.2s; }
.mobile-nav-link.open svg { transform: rotate(180deg); }

.mobile-sub {
  padding: 0 0 8px 16px;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s var(--ease);
}
.mobile-sub.open { max-height: 600px; }
.mobile-sub a {
  display: block;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 14px;
  color: var(--text);
  transition: all 0.2s;
}
.mobile-sub a:hover { color: var(--navy); background: rgba(30,58,95,0.06); }

.mobile-nav-cta { margin-top: 32px; }
.mobile-menu-close {
  position: absolute;
  top: 24px; right: 24px;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  display: flex; align-items:center; justify-content:center;
  color: var(--text);
  cursor: pointer;
  transition: all 0.2s;
}
.mobile-menu-close:hover { background: var(--bg-3); }
.mobile-menu-close svg { width:20px; height:20px; }

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .why-visual { display:none; }
  .team-grid { grid-template-columns: repeat(2,1fr); }
  .process-steps { grid-template-columns: repeat(2,1fr); }
  .process-steps::before { display:none; }
  .testi-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .nav-links, .nav-cta { display:none; }
  .mobile-menu-btn { display:flex; }
  .hero-stats { flex-direction: column; display:flex; padding:0; box-shadow:none; background:transparent; }
  .stat-item { background:#fff; border:1px solid var(--border); border-radius:var(--r); box-shadow:var(--shadow-sm); }
  .stat-item + .stat-item::before { display:none; }
  .hero-btns { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-box { padding: 40px 24px; }
}

@media (max-width: 480px) {
  .team-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .solutions-grid { grid-template-columns: 1fr; }
}

/* Custom scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-2); }
::-webkit-scrollbar-thumb { background: rgba(30,58,95,0.3); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(30,58,95,0.6); }
