@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --pearl-white: #f8fafc;
  --silver-mist: #eef2ff;
  --lavender-frost: #ede9fe;
  --platinum-blue: #dbeafe;
  --royal-sapphire: #2563eb;
  --luxury-violet: #7c3aed;
  --premium-orchid: #a855f7;
  --elegant-rose: #ec4899;
  --soft-aqua: #06b6d4;
  --deep-royal-navy: #172554;
  --elegant-slate: #334155;
  --premium-cool-gray: #64748b;

  --glass-white: rgba(255,255,255,0.88);
  --glass-medium: rgba(255,255,255,0.58);
  --glass-light: rgba(255,255,255,0.42);
  --frosted-overlay: rgba(255,255,255,0.72);

  --sapphire-glow: rgba(37,99,235,0.35);
  --violet-glow: rgba(124,58,237,0.28);
  --orchid-glow: rgba(168,85,247,0.30);
  --rose-glow: rgba(236,72,153,0.25);

  --gradient-sapphire-violet: linear-gradient(135deg, #2563eb, #7c3aed);
  --gradient-violet-orchid: linear-gradient(135deg, #7c3aed, #a855f7);
  --gradient-ice-purple: linear-gradient(135deg, #dbeafe, #ede9fe);
  --gradient-cyan-rose: linear-gradient(135deg, #06b6d4, #ec4899);
  --gradient-primary: linear-gradient(135deg, #22d3ee, #3b82f6, #7c3aed);

  --shadow-sm: 0 4px 24px rgba(37,99,235,0.08);
  --shadow-md: 0 8px 40px rgba(37,99,235,0.12);
  --shadow-lg: 0 16px 64px rgba(37,99,235,0.16);
  --shadow-xl: 0 24px 80px rgba(37,99,235,0.12), 0 8px 32px rgba(124,58,237,0.08);

  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;
}

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

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

body {
  font-family: var(--font-body);
  background: var(--pearl-white);
  color: var(--elegant-slate);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--deep-royal-navy);
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 120px 0;
  position: relative;
}

.section-label {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--royal-sapphire);
  display: inline-block;
  margin-bottom: 16px;
  position: relative;
}

.section-title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 20px;
  background: var(--gradient-sapphire-violet);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.15rem;
  color: var(--premium-cool-gray);
  max-width: 640px;
  line-height: 1.8;
  font-weight: 400;
}

.glass-card {
  background: var(--glass-white);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 32px;
  box-shadow: var(--shadow-md);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.glass-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--shadow-xl);
  border-color: rgba(37,99,235,0.2);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 60px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: var(--gradient-primary);
  color: #fff;
  box-shadow: 0 8px 32px rgba(37,99,235,0.3), 0 4px 16px rgba(124,58,237,0.2);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 16px 48px rgba(37,99,235,0.4), 0 8px 24px rgba(124,58,237,0.3);
}

.btn-secondary {
  background: var(--glass-white);
  color: var(--deep-royal-navy);
  border: 1px solid rgba(37,99,235,0.15);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: var(--shadow-md);
  border-color: rgba(37,99,235,0.3);
}

.btn-outline {
  background: transparent;
  color: var(--royal-sapphire);
  border: 2px solid var(--royal-sapphire);
}

.btn-outline:hover {
  background: var(--royal-sapphire);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(37,99,235,0.3);
}

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

.gradient-bg {
  background: var(--gradient-sapphire-violet);
}

.ambient-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.5;
}

.glow-sapphire { background: var(--sapphire-glow); width: 400px; height: 400px; }
.glow-violet { background: var(--violet-glow); width: 350px; height: 350px; }
.glow-orchid { background: var(--orchid-glow); width: 300px; height: 300px; }
.glow-rose { background: var(--rose-glow); width: 250px; height: 250px; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.4s ease;
  background: rgba(248,250,252,0.72);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255,255,255,0.3);
}

.navbar.scrolled {
  background: rgba(248,250,252,0.92);
  box-shadow: 0 4px 40px rgba(0,0,0,0.06);
  padding: 10px 0;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.navbar-logo svg {
  height: 40px;
  width: auto;
}

.navbar-logo-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--deep-royal-navy);
  letter-spacing: -0.5px;
}

.navbar-logo-text span {
  background: var(--gradient-sapphire-violet);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.navbar-links > li {
  position: relative;
}

.navbar-links > li > a {
  padding: 10px 20px;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--elegant-slate);
  transition: all 0.3s ease;
  position: relative;
}

.navbar-links > li > a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 60%;
  height: 2px;
  background: var(--gradient-sapphire-violet);
  border-radius: 4px;
  transition: transform 0.3s ease;
}

.navbar-links > li > a:hover {
  color: var(--royal-sapphire);
}

.navbar-links > li > a:hover::after {
  transform: translateX(-50%) scaleX(1);
}

.navbar-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.navbar-social a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--glass-white);
  border: 1px solid rgba(37,99,235,0.1);
  color: var(--premium-cool-gray);
  transition: all 0.3s ease;
}

.navbar-social a:hover {
  background: var(--royal-sapphire);
  color: #fff;
  border-color: var(--royal-sapphire);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,99,235,0.25);
}

.navbar-cta {
  padding: 12px 28px;
  border-radius: 60px;
  background: var(--gradient-primary);
  color: #fff;
  font-weight: 600;
  font-size: 0.85rem;
  box-shadow: 0 4px 20px rgba(37,99,235,0.3);
  transition: all 0.3s ease;
  letter-spacing: 0.3px;
}

.navbar-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(37,99,235,0.4);
}

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

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--deep-royal-navy);
  border-radius: 4px;
  transition: all 0.3s ease;
}

/* ===== MEGA MENU ===== */
.mega-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%) translateY(16px);
  width: 820px;
  background: rgba(248,250,252,0.96);
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.6);
  box-shadow: 0 32px 80px rgba(0,0,0,0.1), 0 8px 32px rgba(37,99,235,0.08);
  padding: 28px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: 100;
}

.navbar-links > li:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.mega-menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.mega-menu-item {
  padding: 20px;
  border-radius: 20px;
  background: var(--glass-white);
  border: 1px solid rgba(255,255,255,0.4);
  transition: all 0.3s ease;
  cursor: pointer;
}

.mega-menu-item:hover {
  background: #fff;
  border-color: rgba(37,99,235,0.15);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.mega-menu-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  background: var(--gradient-ice-purple);
  color: var(--royal-sapphire);
  font-size: 1.3rem;
}

.mega-menu-item:nth-child(2) .mega-menu-icon { background: var(--gradient-sapphire-violet); color: #fff; }
.mega-menu-item:nth-child(3) .mega-menu-icon { background: var(--gradient-violet-orchid); color: #fff; }
.mega-menu-item:nth-child(4) .mega-menu-icon { background: var(--gradient-cyan-rose); color: #fff; }

.mega-menu-item h4 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.mega-menu-item p {
  font-size: 0.82rem;
  color: var(--premium-cool-gray);
  line-height: 1.5;
}

.mega-menu-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--royal-sapphire);
  margin-top: 10px;
  transition: gap 0.3s ease;
}

.mega-menu-cta:hover { gap: 12px; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 100px;
  overflow: hidden;
  background: linear-gradient(165deg, #f8fafc 0%, #eef2ff 40%, #ede9fe 70%, #dbeafe 100%);
}

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

.hero-content {
  position: relative;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 60px;
  background: var(--glass-white);
  border: 1px solid rgba(37,99,235,0.12);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--royal-sapphire);
  backdrop-filter: blur(12px);
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--royal-sapphire);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
  font-size: clamp(2.8rem, 6vw, 4.2rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-title .gradient-text {
  display: block;
}

.hero-description {
  font-size: 1.15rem;
  color: var(--premium-cool-gray);
  max-width: 540px;
  line-height: 1.8;
  margin-bottom: 40px;
  font-weight: 400;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid rgba(37,99,235,0.1);
}

.hero-stat-value {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--deep-royal-navy);
  letter-spacing: -0.02em;
}

.hero-stat-label {
  font-size: 0.85rem;
  color: var(--premium-cool-gray);
  font-weight: 400;
  margin-top: 4px;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual-inner {
  position: relative;
  width: 100%;
  height: 520px;
}

.hero-dashboard {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(16px);
  border-radius: 32px;
  border: 1px solid rgba(255,255,255,0.5);
  box-shadow: 0 32px 96px rgba(37,99,235,0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.dashboard-header {
  display: flex;
  align-items: center;
  padding: 16px 24px;
  gap: 12px;
  border-bottom: 1px solid rgba(37,99,235,0.08);
}

.dashboard-dots {
  display: flex;
  gap: 6px;
}

.dashboard-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.dashboard-dot:nth-child(1) { background: #ef4444; }
.dashboard-dot:nth-child(2) { background: #f59e0b; }
.dashboard-dot:nth-child(3) { background: #22c55e; }

.dashboard-body {
  flex: 1;
  padding: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.dashboard-chart {
  background: rgba(255,255,255,0.5);
  border-radius: 16px;
  padding: 20px;
  border: 1px solid rgba(255,255,255,0.3);
}

.dashboard-chart-title {
  font-size: 0.75rem;
  color: var(--premium-cool-gray);
  font-weight: 500;
  margin-bottom: 12px;
}

.chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 100px;
}

.chart-bar {
  flex: 1;
  border-radius: 6px 6px 0 0;
  transition: height 1.5s cubic-bezier(0.23, 1, 0.32, 1);
  min-height: 4px;
}

.chart-bar:nth-child(1) { background: var(--gradient-sapphire-violet); height: 60%; }
.chart-bar:nth-child(2) { background: var(--gradient-violet-orchid); height: 45%; }
.chart-bar:nth-child(3) { background: var(--gradient-cyan-rose); height: 75%; }
.chart-bar:nth-child(4) { background: var(--gradient-sapphire-violet); height: 30%; }
.chart-bar:nth-child(5) { background: var(--gradient-violet-orchid); height: 85%; }
.chart-bar:nth-child(6) { background: var(--gradient-cyan-rose); height: 55%; }
.chart-bar:nth-child(7) { background: var(--gradient-sapphire-violet); height: 70%; }

.dashboard-metric {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px;
  background: rgba(255,255,255,0.5);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.3);
  margin-bottom: 10px;
}

.dashboard-metric-label {
  font-size: 0.8rem;
  color: var(--premium-cool-gray);
}

.dashboard-metric-value {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--deep-royal-navy);
}

.dashboard-growth {
  color: #22c55e;
  font-size: 0.8rem;
  font-weight: 600;
}

.hero-floating-card {
  position: absolute;
  padding: 16px 20px;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(16px);
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.4);
  box-shadow: 0 16px 48px rgba(37,99,235,0.1);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--deep-royal-navy);
  animation: float-element 6s ease-in-out infinite;
}

.hero-floating-card:nth-child(2) {
  top: 10%;
  right: -8%;
  animation-delay: 0s;
}

.hero-floating-card:nth-child(3) {
  bottom: 15%;
  left: -12%;
  animation-delay: 2s;
}

.hero-floating-card:nth-child(4) {
  bottom: 5%;
  right: -5%;
  animation-delay: 4s;
}

.hero-floating-icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

@keyframes float-element {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}

.hero-glow-1 {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero-glow-2 {
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124,58,237,0.12) 0%, transparent 70%);
  pointer-events: none;
}

/* ===== CLIENTS ===== */
.clients {
  background: var(--silver-mist);
  padding: 80px 0;
  overflow: hidden;
}

.clients-title {
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  color: var(--premium-cool-gray);
  margin-bottom: 48px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.clients-track {
  display: flex;
  gap: 48px;
  animation: scroll-clients 30s linear infinite;
  width: max-content;
}

.clients-track:hover {
  animation-play-state: paused;
}

.clients-logo {
  flex-shrink: 0;
  padding: 20px 40px;
  background: var(--glass-white);
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.3);
  min-width: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--premium-cool-gray);
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  opacity: 0.6;
}

.clients-logo:hover {
  opacity: 1;
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
  color: var(--royal-sapphire);
}

@keyframes scroll-clients {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.service-card {
  padding: 40px 32px;
  background: var(--glass-white);
  backdrop-filter: blur(24px);
  border-radius: 32px;
  border: 1px solid rgba(255,255,255,0.4);
  box-shadow: var(--shadow-sm);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(37,99,235,0.03), rgba(124,58,237,0.03));
  opacity: 0;
  transition: opacity 0.5s ease;
}

.service-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: var(--shadow-xl);
  border-color: rgba(37,99,235,0.15);
}

.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 24px;
  transition: all 0.5s ease;
}

.service-card:nth-child(1) .service-icon {
  background: linear-gradient(135deg, #dbeafe, #bfdbfe);
  color: var(--royal-sapphire);
}
.service-card:nth-child(2) .service-icon {
  background: linear-gradient(135deg, #ede9fe, #ddd6fe);
  color: var(--luxury-violet);
}
.service-card:nth-child(3) .service-icon {
  background: linear-gradient(135deg, #fce7f3, #fbcfe8);
  color: var(--elegant-rose);
}
.service-card:nth-child(4) .service-icon {
  background: linear-gradient(135deg, #dbeafe, #ede9fe);
  color: var(--premium-orchid);
}
.service-card:nth-child(5) .service-icon {
  background: linear-gradient(135deg, #cffafe, #a5f3fc);
  color: var(--soft-aqua);
}
.service-card:nth-child(6) .service-icon {
  background: linear-gradient(135deg, #ede9fe, #fce7f3);
  color: var(--luxury-violet);
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  position: relative;
}

.service-card p {
  font-size: 0.92rem;
  color: var(--premium-cool-gray);
  line-height: 1.7;
  margin-bottom: 20px;
  position: relative;
}

.service-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--royal-sapphire);
  transition: gap 0.3s ease;
  position: relative;
}

.service-card-cta:hover { gap: 14px; }

/* ===== ABOUT SECTION ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual {
  position: relative;
  height: 480px;
}

.about-image-frame {
  width: 100%;
  height: 100%;
  background: var(--glass-white);
  backdrop-filter: blur(16px);
  border-radius: 32px;
  border: 1px solid rgba(255,255,255,0.4);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--premium-cool-gray);
  font-size: 1rem;
  box-shadow: var(--shadow-lg);
}

.about-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 32px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.about-stat {
  padding: 24px;
  background: var(--glass-white);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.3);
  text-align: center;
  transition: all 0.3s ease;
}

.about-stat:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
}

.about-stat-value {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--deep-royal-navy);
}

.about-stat-label {
  font-size: 0.85rem;
  color: var(--premium-cool-gray);
  margin-top: 4px;
}

.about-content h2 {
  margin-bottom: 24px;
}

.about-content p {
  font-size: 1rem;
  color: var(--premium-cool-gray);
  line-height: 1.8;
  margin-bottom: 16px;
}

/* ===== PROJECTS ===== */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}

.project-card {
  border-radius: 32px;
  overflow: hidden;
  background: var(--glass-white);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.3);
  box-shadow: var(--shadow-sm);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  cursor: pointer;
}

.project-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: var(--shadow-xl);
  border-color: rgba(37,99,235,0.15);
}

.project-image {
  width: 100%;
  height: 240px;
  background: linear-gradient(135deg, var(--platinum-blue), var(--lavender-frost));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.project-card:hover .project-image img {
  transform: scale(1.08);
}

.project-body {
  padding: 28px;
}

.project-body h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.project-body p {
  font-size: 0.88rem;
  color: var(--premium-cool-gray);
  line-height: 1.6;
  margin-bottom: 16px;
}

.project-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.project-tag {
  padding: 4px 14px;
  border-radius: 60px;
  background: linear-gradient(135deg, rgba(37,99,235,0.08), rgba(124,58,237,0.08));
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--royal-sapphire);
}

/* ===== TESTIMONIALS ===== */
.testimonials-slider {
  margin-top: 56px;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  gap: 32px;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.testimonial-card {
  min-width: calc(33.333% - 22px);
  padding: 36px;
  background: var(--glass-white);
  backdrop-filter: blur(24px);
  border-radius: 32px;
  border: 1px solid rgba(255,255,255,0.3);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.testimonial-stars {
  color: #f59e0b;
  font-size: 1rem;
  margin-bottom: 16px;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--elegant-slate);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-ice-purple);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--royal-sapphire);
  font-weight: 700;
  font-size: 1.1rem;
}

.testimonial-name {
  font-weight: 600;
  color: var(--deep-royal-navy);
  font-size: 0.95rem;
}

.testimonial-role {
  font-size: 0.8rem;
  color: var(--premium-cool-gray);
}

.slider-controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--premium-cool-gray);
  opacity: 0.2;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dot.active {
  opacity: 1;
  background: var(--royal-sapphire);
  width: 36px;
  border-radius: 6px;
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 800px;
  margin: 56px auto 0;
}

.faq-item {
  margin-bottom: 16px;
  background: var(--glass-white);
  backdrop-filter: blur(24px);
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.3);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(37,99,235,0.15);
}

.faq-question {
  width: 100%;
  padding: 24px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--deep-royal-navy);
  text-align: left;
  transition: color 0.3s ease;
}

.faq-question:hover { color: var(--royal-sapphire); }

.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gradient-ice-purple);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--royal-sapphire);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.faq-answer-inner {
  padding: 0 32px 24px;
  font-size: 0.95rem;
  color: var(--premium-cool-gray);
  line-height: 1.8;
}

.faq-item.active .faq-answer { max-height: 300px; }

/* ===== CTA ===== */
.cta-section {
  padding: 120px 0;
  background: linear-gradient(165deg, #eef2ff 0%, #ede9fe 50%, #dbeafe 100%);
  position: relative;
  overflow: hidden;
}

.cta-content {
  text-align: center;
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 1.1rem;
  color: var(--premium-cool-gray);
  margin-bottom: 40px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

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

.cta-particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
}

.cta-particle {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--royal-sapphire);
  opacity: 0.15;
  animation: float-particle 8s ease-in-out infinite;
}

@keyframes float-particle {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.15; }
  50% { transform: translateY(-40px) scale(1.5); opacity: 0.3; }
}

/* ===== FOOTER ===== */
.footer {
  background: var(--deep-royal-navy);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 0;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--royal-sapphire), var(--luxury-violet), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.8;
  margin-top: 16px;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
}

.footer h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 24px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: color 0.3s ease, padding-left 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: #fff;
  padding-left: 6px;
}

.footer-contact p {
  font-size: 0.9rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: var(--royal-sapphire);
  color: #fff;
  transform: translateY(-3px);
}

.footer-bottom {
  margin-top: 56px;
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

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

.footer-bottom-links a {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover { color: #fff; }

.footer-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.footer-badge {
  padding: 6px 16px;
  border-radius: 60px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
}

/* ===== PAGE HERO ===== */
.page-hero {
  padding: 180px 0 100px;
  background: linear-gradient(165deg, #f8fafc 0%, #eef2ff 40%, #ede9fe 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  max-width: 800px;
  margin: 0 auto 20px;
}

.page-hero p {
  font-size: 1.15rem;
  color: var(--premium-cool-gray);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ===== SERVICES PAGE ===== */
.services-page-grid {
  display: grid;
  gap: 120px;
  margin-top: 80px;
}

.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 56px;
  background: var(--glass-white);
  backdrop-filter: blur(24px);
  border-radius: 40px;
  border: 1px solid rgba(255,255,255,0.3);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.service-block:hover {
  box-shadow: var(--shadow-md);
}

.service-block-visual {
  height: 360px;
  border-radius: 24px;
  overflow: hidden;
  background: var(--gradient-ice-purple);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--premium-cool-gray);
  font-size: 1rem;
}

.service-block h3 {
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.service-block p {
  color: var(--premium-cool-gray);
  line-height: 1.8;
  margin-bottom: 16px;
}

.service-features {
  list-style: none;
  margin: 20px 0;
}

.service-features li {
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--elegant-slate);
}

.service-features li::before {
  content: '\2726';
  color: var(--royal-sapphire);
  font-size: 0.6rem;
}

/* ===== ABOUT PAGE ===== */
.about-page-mission {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-top: 80px;
}

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

.value-card {
  padding: 32px;
  background: var(--glass-white);
  backdrop-filter: blur(24px);
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.3);
  text-align: center;
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.value-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.value-card h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.value-card p {
  font-size: 0.88rem;
  color: var(--premium-cool-gray);
  line-height: 1.6;
}

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

.framework-step {
  padding: 28px 20px;
  background: var(--glass-white);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.3);
  text-align: center;
  transition: all 0.3s ease;
}

.framework-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
}

.framework-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  background: var(--gradient-sapphire-violet);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.framework-step h5 {
  font-size: 0.95rem;
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-info-cards {
  display: grid;
  gap: 16px;
}

.contact-card {
  padding: 28px;
  background: var(--glass-white);
  backdrop-filter: blur(24px);
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-sm);
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: var(--gradient-ice-purple);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--royal-sapphire);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-card h4 {
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.contact-card p {
  font-size: 0.88rem;
  color: var(--premium-cool-gray);
}

.contact-form-wrapper {
  padding: 40px;
  background: var(--glass-white);
  backdrop-filter: blur(24px);
  border-radius: 32px;
  border: 1px solid rgba(255,255,255,0.3);
  box-shadow: var(--shadow-md);
}

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

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--deep-royal-navy);
  margin-bottom: 8px;
}

.form-input {
  width: 100%;
  padding: 16px 20px;
  border-radius: 16px;
  border: 1px solid rgba(37,99,235,0.12);
  background: rgba(255,255,255,0.6);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--deep-royal-navy);
  transition: all 0.3s ease;
  outline: none;
}

.form-input:focus {
  border-color: var(--royal-sapphire);
  box-shadow: 0 0 0 4px rgba(37,99,235,0.08);
  background: #fff;
}

.form-input::placeholder {
  color: var(--premium-cool-gray);
  opacity: 0.6;
}

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

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
  padding-right: 48px;
}

/* ===== MAP ===== */
.map-section {
  padding: 0 0 80px;
}

.map-container {
  height: 400px;
  border-radius: 32px;
  overflow: hidden;
  background: var(--silver-mist);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--premium-cool-gray);
  font-size: 1rem;
  border: 1px solid rgba(255,255,255,0.3);
  box-shadow: var(--shadow-md);
}

/* ===== LEGAL PAGES ===== */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 0;
}

.legal-content h2 {
  font-size: 1.5rem;
  margin: 40px 0 16px;
}

.legal-content h3 {
  font-size: 1.2rem;
  margin: 32px 0 12px;
}

.legal-content p {
  font-size: 0.95rem;
  color: var(--premium-cool-gray);
  line-height: 1.8;
  margin-bottom: 16px;
}

.legal-content ul {
  padding-left: 24px;
  margin-bottom: 16px;
}

.legal-content ul li {
  font-size: 0.95rem;
  color: var(--premium-cool-gray);
  line-height: 1.8;
  margin-bottom: 8px;
}

/* ===== SERVICE DETAIL ===== */
.service-detail-overview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-top: 80px;
}

.service-detail-visual {
  height: 420px;
  border-radius: 32px;
  overflow: hidden;
  background: var(--gradient-ice-purple);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--premium-cool-gray);
  font-size: 1rem;
  box-shadow: var(--shadow-lg);
}

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

.process-card {
  padding: 28px 20px;
  background: var(--glass-white);
  backdrop-filter: blur(12px);
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.3);
  text-align: center;
  transition: all 0.3s ease;
}

.process-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.process-num {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  background: var(--gradient-sapphire-violet);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.process-card h5 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.process-card p {
  font-size: 0.82rem;
  color: var(--premium-cool-gray);
  line-height: 1.5;
}

.benefits-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

.benefit-item {
  padding: 20px;
  background: var(--glass-white);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.3);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  transition: all 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
}

.benefit-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--gradient-ice-purple);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--royal-sapphire);
  flex-shrink: 0;
  font-size: 1rem;
}

.benefit-item h5 {
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.benefit-item p {
  font-size: 0.82rem;
  color: var(--premium-cool-gray);
  line-height: 1.5;
}

/* ===== ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.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; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .hero-description { margin-left: auto; margin-right: auto; }
  .hero-buttons { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual-inner { height: 400px; }
  .mega-menu { width: 600px; left: 0; right: 0; margin: 0 auto; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .services-page-grid { gap: 60px; }
  .service-block { grid-template-columns: 1fr; gap: 32px; }
  .about-page-mission { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .framework-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .service-detail-overview { grid-template-columns: 1fr; }
  .service-process { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .navbar-links, .navbar-social { display: none; }
  .hamburger { display: flex; }
  .navbar-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(248,250,252,0.98);
    backdrop-filter: blur(24px);
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.3);
    box-shadow: var(--shadow-lg);
  }
  .mega-menu { width: 100%; position: static; transform: none; margin-top: 8px; display: none; }
  .mega-menu.active { display: block; opacity: 1; visibility: visible; }
  .mega-menu-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: clamp(2rem, 10vw, 2.8rem); }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .hero-visual-inner { height: 320px; }
  .hero-floating-card { display: none; }
  .section { padding: 80px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr; }
  .testimonial-card { min-width: calc(100% - 16px); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .values-grid { grid-template-columns: 1fr; }
  .framework-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-list { grid-template-columns: 1fr; }
  .service-process { grid-template-columns: 1fr; }
  .navbar-cta { padding: 10px 20px; font-size: 0.8rem; }
  .page-hero { padding: 140px 0 60px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-dashboard { border-radius: 20px; }
  .dashboard-body { grid-template-columns: 1fr; }
  .cta-buttons { flex-direction: column; align-items: center; }
}
