/* ============================================
   SMILE SYNC SOLUTIONS - Vibrant Blue, Cyan & Gold Theme
   ============================================ */

/* --- CSS Variables --- */
:root {
  --black: #080b12;
  --dark: #0c1019;
  --dark-2: #111724;
  --dark-3: #182035;
  --dark-4: #1f2a42;
  --navy: #0a1225;
  --navy-light: #142040;
  --blue: #1a8fff;
  --blue-light: #5cb8ff;
  --blue-dark: #0d6ecc;
  --blue-glow: #00a2ff;
  --cyan: #00d4ff;
  --cyan-light: #66e5ff;
  --cyan-dark: #009fcc;
  --gold: #f5a623;
  --gold-light: #ffc857;
  --gold-dark: #d48b0a;
  --purple: #9b59f0;
  --purple-light: #b87aff;
  --purple-dark: #7b3fd4;
  --card-bg: rgba(14, 20, 36, 0.8);
  --card-border: rgba(0, 212, 255, 0.08);
  --card-border-hover: rgba(0, 212, 255, 0.25);
  --text-primary: #ffffff;
  --text-secondary: #b8c4d8;
  --text-muted: #6b7a96;
  --gradient-blue: linear-gradient(135deg, var(--blue-dark), var(--blue), var(--blue-light));
  --gradient-cyan: linear-gradient(135deg, var(--cyan-dark), var(--cyan), var(--cyan-light));
  --gradient-gold: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  --gradient-purple: linear-gradient(135deg, var(--purple-dark), var(--purple), var(--purple-light));
  --gradient-vibrant: linear-gradient(135deg, var(--blue), var(--cyan), var(--purple));
  --shadow-blue: 0 0 30px rgba(26, 143, 255, 0.15);
  --shadow-cyan: 0 0 30px rgba(0, 212, 255, 0.12);
  --shadow-card: 0 20px 60px rgba(0, 0, 0, 0.4);
  --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-primary);
  background: var(--dark);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s var(--transition-smooth);
}

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

.container {
  width: min(1200px, 90%);
  margin: 0 auto;
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(12, 16, 25, 0.9);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(0, 212, 255, 0.06);
  transition: all 0.4s var(--transition-smooth);
}

.navbar.scrolled {
  background: rgba(12, 16, 25, 0.98);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4), 0 1px 0 rgba(0, 212, 255, 0.05);
}

.nav-inner {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  width: 140px;
  height: auto;
  transition: transform 0.3s var(--transition-smooth);
}

.logo:hover img {
  transform: scale(1.03);
}

.nav-links {
  display: flex;
  gap: 32px;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.nav-links a {
  color: var(--text-secondary);
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-cyan);
  transition: width 0.4s var(--transition-smooth);
  border-radius: 1px;
}

.nav-links a:hover {
  color: var(--cyan);
}

.nav-links a:hover::after {
  width: 100%;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.88rem;
  font-family: 'Inter', sans-serif;
  border: 0;
  cursor: pointer;
  transition: all 0.4s var(--transition-smooth);
  gap: 8px;
  letter-spacing: 0.3px;
}

.btn-gold {
  background: var(--gradient-blue);
  color: white;
  box-shadow: 0 4px 25px rgba(26, 143, 255, 0.3);
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(26, 143, 255, 0.45);
}

.btn-outline-gold {
  background: transparent;
  color: var(--cyan);
  border: 1.5px solid rgba(0, 212, 255, 0.4);
}

.btn-outline-gold:hover {
  background: rgba(0, 212, 255, 0.06);
  border-color: var(--cyan);
  transform: translateY(-2px);
}

.btn-nav {
  background: transparent;
  color: var(--cyan);
  border: 1.5px solid var(--blue);
  border-radius: 999px;
  padding: 11px 26px;
  font-weight: 600;
  font-size: 0.85rem;
}

.btn-nav:hover {
  background: var(--blue);
  color: white;
}

.btn-nav .arrow {
  display: inline-block;
  transition: transform 0.3s var(--transition-smooth);
}

.btn-nav:hover .arrow {
  transform: translateX(4px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  padding: 160px 0 120px;
  position: relative;
  overflow: hidden;
  background: 
    radial-gradient(ellipse at 20% 80%, rgba(26, 143, 255, 0.05) 0%, transparent 45%),
    radial-gradient(ellipse at 85% 20%, rgba(155, 89, 240, 0.04) 0%, transparent 35%),
    radial-gradient(ellipse at 50% 0%, rgba(0, 212, 255, 0.03) 0%, transparent 50%),
    linear-gradient(165deg, #0c1019 0%, #0f1830 30%, #121a35 55%, #0c1220 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.04), transparent 60%);
  animation: heroGlowPulse 8s ease-in-out infinite;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(155, 89, 240, 0.03), transparent 55%);
  animation: heroGlowPulse 10s ease-in-out infinite reverse;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(0, 212, 255, 0.06);
  border: 1px solid rgba(0, 212, 255, 0.15);
  color: var(--cyan);
  font-size: 0.7rem;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 28px;
  animation: fadeUp 0.8s var(--transition-smooth) both;
}

.hero h1 {
  font-size: clamp(3rem, 5.5vw, 4.8rem);
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 26px;
  animation: fadeUp 0.8s var(--transition-smooth) 0.1s both;
}

.hero h1 {
  background: linear-gradient(135deg, var(--blue) 0%, var(--cyan) 30%, var(--purple) 60%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero h1 .text-gold {
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 520px;
  margin-bottom: 38px;
  line-height: 1.85;
  animation: fadeUp 0.8s var(--transition-smooth) 0.2s both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp 0.8s var(--transition-smooth) 0.3s both;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeUp 0.8s var(--transition-smooth) 0.2s both;
}

.hero-img-wrap {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-main-img {
  width: 100%;
  max-width: 560px;
  height: auto;
  object-fit: contain;
  border-radius: 20px;
  position: relative;
  z-index: 1;
  animation: imgReveal 1s var(--transition-smooth) 0.3s both;
  transition: transform 0.6s var(--transition-smooth);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 30px rgba(0, 212, 255, 0.05);
}

.hero-main-img:hover {
  transform: scale(1.03);
}

.hero-img-glow {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 40px;
  background: radial-gradient(ellipse, rgba(0, 212, 255, 0.1), rgba(155, 89, 240, 0.05), transparent 70%);
  border-radius: 50%;
  filter: blur(10px);
  z-index: 0;
}

@keyframes imgReveal {
  from { opacity: 0; transform: scale(0.92) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

/* Floating Particles */
.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.particle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.6;
  animation: particleDrift 4s ease-in-out infinite;
}

.particle:nth-child(1) { top: 15%; right: 10%; width: 8px; height: 8px; background: var(--cyan); animation-delay: 0s; }
.particle:nth-child(2) { top: 30%; right: 5%; width: 5px; height: 5px; background: var(--purple); animation-delay: 0.7s; }
.particle:nth-child(3) { top: 55%; right: 15%; width: 6px; height: 6px; background: var(--blue-light); animation-delay: 1.4s; }
.particle:nth-child(4) { top: 70%; right: 8%; width: 4px; height: 4px; background: var(--gold); animation-delay: 2.1s; }
.particle:nth-child(5) { top: 10%; right: 25%; width: 5px; height: 5px; background: var(--purple-light); animation-delay: 2.8s; }
.particle:nth-child(6) { top: 80%; right: 30%; width: 7px; height: 7px; background: var(--cyan); animation-delay: 0.4s; }
.particle:nth-child(7) { top: 42%; right: 32%; width: 4px; height: 4px; background: var(--gold); animation-delay: 1.8s; }
.particle:nth-child(8) { top: 88%; right: 18%; width: 5px; height: 5px; background: var(--blue); animation-delay: 3.2s; }

/* Floating Info Badges */
.float-badge {
  position: absolute;
  background: rgba(12, 16, 30, 0.92);
  border: 1px solid rgba(0, 212, 255, 0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 16px 22px;
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  animation: floatSmooth 5s ease-in-out infinite;
  z-index: 2;
}

.float-badge.top-right {
  top: 5%;
  right: -8%;
  animation-delay: 0.6s;
}

.float-badge.bottom-left {
  bottom: 8%;
  left: -12%;
  animation-delay: 1.4s;
}

.float-badge strong {
  display: block;
  font-size: 1.4rem;
  font-family: 'Playfair Display', serif;
  background: var(--gradient-cyan);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.float-badge span {
  font-size: 0.78rem;
  color: var(--text-secondary);
}

/* ============================================
   SECTION COMMON
   ============================================ */
.section {
  padding: 110px 0;
  position: relative;
}

.section-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 65px;
}

.eyebrow {
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: block;
}

.section h2,
.section-head h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--cyan) 25%, var(--purple) 55%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section h2 .text-gold,
.section-head h2 .text-gold {
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.text-blue { color: var(--blue); }
.text-cyan { color: var(--cyan); }
.text-gold { background: var(--gradient-gold); -webkit-background-clip: text; background-clip: text; color: transparent; }
.text-purple { color: var(--purple); }
.text-gradient-blue { background: var(--gradient-blue); -webkit-background-clip: text; background-clip: text; color: transparent; }
.text-gradient-cyan { background: var(--gradient-cyan); -webkit-background-clip: text; background-clip: text; color: transparent; }
.text-gradient-purple { background: var(--gradient-purple); -webkit-background-clip: text; background-clip: text; color: transparent; }
.text-gradient-vibrant { background: var(--gradient-vibrant); -webkit-background-clip: text; background-clip: text; color: transparent; }

.section-line {
  width: 60px;
  height: 3px;
  background: var(--gradient-vibrant);
  margin: 0 auto 20px;
  border-radius: 2px;
}

.section-head p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.75;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section {
  background: linear-gradient(180deg, #0c1220 0%, #111c30 40%, #141f35 60%, #0c1220 100%);
}

.services-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.15), transparent);
}

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

.service-card {
  background: linear-gradient(145deg, rgba(16, 24, 44, 0.9), rgba(12, 18, 34, 0.85));
  border: 1px solid var(--card-border);
  border-radius: 22px;
  padding: 34px 24px;
  transition: all 0.5s var(--transition-smooth);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-vibrant);
  transform: scaleX(0);
  transition: transform 0.5s var(--transition-smooth);
  transform-origin: left;
}

.service-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.03), transparent 60%);
  opacity: 0;
  transition: opacity 0.5s var(--transition-smooth);
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: var(--card-border-hover);
  box-shadow: var(--shadow-cyan), var(--shadow-card);
}

.service-card:hover::before {
  transform: scaleX(1);
}

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

.service-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 24px;
  margin-bottom: 22px;
  border: 1.5px solid rgba(0, 212, 255, 0.2);
  background: rgba(0, 212, 255, 0.04);
  transition: all 0.4s var(--transition-smooth);
}

.service-card:hover .service-icon {
  border-color: rgba(0, 212, 255, 0.4);
  background: rgba(0, 212, 255, 0.08);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.1);
}

.service-card h3 {
  font-size: 1rem;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.service-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ============================================
   ABOUT / PROFILE SECTION
   ============================================ */
.about-section {
  background: linear-gradient(160deg, #0e1420 0%, #111a30 30%, #141e38 55%, #0c1220 80%, #0e1420 100%);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(26, 143, 255, 0.05), transparent 60%);
  pointer-events: none;
  animation: heroGlowPulse 8s ease-in-out infinite;
}

.about-section::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(155, 89, 240, 0.04), transparent 55%);
  pointer-events: none;
}

.about-decor {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.about-decor-1 {
  top: 10%;
  right: 5%;
  width: 80px;
  height: 80px;
  border: 1.5px solid rgba(0, 212, 255, 0.1);
  animation: floatSmooth 6s ease-in-out infinite;
}

.about-decor-2 {
  bottom: 12%;
  left: 3%;
  width: 50px;
  height: 50px;
  border: 1.5px solid rgba(155, 89, 240, 0.08);
  border-radius: 12px;
  transform: rotate(45deg);
  animation: floatSmooth 5s ease-in-out infinite 1s;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.about-photo-wrap {
  position: relative;
}

.about-photo-wrap img {
  width: 100%;
  max-width: 420px;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(201, 168, 76, 0.08);
  position: relative;
  z-index: 1;
  transition: transform 0.6s var(--transition-smooth);
}

.about-photo-wrap:hover img {
  transform: scale(1.02);
}

.about-photo-wrap::before {
  content: '';
  position: absolute;
  top: -12px;
  left: -12px;
  right: 12px;
  bottom: 12px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(155, 89, 240, 0.1));
  z-index: 0;
  opacity: 0.5;
}

.about-photo-wrap::after {
  content: '';
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(26, 143, 255, 0.12), transparent 70%);
  border-radius: 50%;
  z-index: 0;
  animation: pulseGlow 5s ease-in-out infinite;
}

.about-content .eyebrow {
  text-align: left;
  color: var(--cyan);
}

.about-content h2 {
  text-align: left;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: 10px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--cyan) 30%, var(--purple) 60%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.about-content h2 .alias {
  font-size: 0.42em;
  color: var(--text-secondary);
  font-weight: 400;
  font-family: 'Inter', sans-serif;
  display: inline;
}

.about-content p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.85;
  font-size: 0.95rem;
}

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

.about-stat {
  background: linear-gradient(145deg, rgba(16, 24, 44, 0.7), rgba(12, 18, 34, 0.6));
  padding: 24px 16px;
  border-radius: 18px;
  text-align: center;
  border: 1px solid rgba(0, 212, 255, 0.08);
  backdrop-filter: blur(8px);
  transition: all 0.4s var(--transition-smooth);
}

.about-stat:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 212, 255, 0.2);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(0, 212, 255, 0.05);
}

.about-stat b {
  font-size: 1.7rem;
  font-weight: 800;
  display: block;
  margin-bottom: 4px;
  background: var(--gradient-cyan);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.about-stat span {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

/* ============================================
   WHY CHOOSE US SECTION
   ============================================ */
.why-section {
  background: linear-gradient(135deg, #0c1525 0%, #12203a 40%, #161d38 70%, #0c1525 100%);
  position: relative;
  overflow: hidden;
}

.why-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(26, 143, 255, 0.02), transparent 55%);
  pointer-events: none;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.why-card {
  background: linear-gradient(145deg, rgba(16, 24, 44, 0.9), rgba(12, 18, 34, 0.85));
  border: 1px solid var(--card-border);
  border-radius: 22px;
  padding: 34px 20px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: all 0.5s var(--transition-smooth);
}

.why-card:hover {
  transform: translateY(-8px);
  border-color: var(--card-border-hover);
  box-shadow: var(--shadow-blue), var(--shadow-card);
}

.why-icon {
  font-size: 1.6rem;
  margin-bottom: 14px;
  display: block;
}

.why-number {
  font-size: 2.2rem;
  font-weight: 900;
  font-family: 'Playfair Display', serif;
  display: block;
  margin-bottom: 6px;
  background: var(--gradient-blue);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.why-label {
  font-size: 0.82rem;
  color: var(--text-secondary);
}

/* ============================================
   VALUES SECTION
   ============================================ */
.values-section {
  background: linear-gradient(180deg, #111828 0%, #0c1220 50%, #101828 100%);
  position: relative;
}

.values-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.12), transparent);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.value-card {
  background: linear-gradient(145deg, rgba(16, 24, 44, 0.9), rgba(12, 18, 34, 0.85));
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 30px 16px;
  text-align: center;
  transition: all 0.5s var(--transition-smooth);
  backdrop-filter: blur(10px);
}

.value-card:hover {
  transform: translateY(-7px);
  border-color: var(--card-border-hover);
  box-shadow: var(--shadow-cyan), 0 15px 40px rgba(0, 0, 0, 0.3);
}

.value-card span {
  font-size: 2rem;
  display: block;
  margin-bottom: 14px;
}

.value-card h4 {
  font-size: 0.82rem;
  color: var(--text-primary);
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  line-height: 1.4;
}

/* ============================================
   PHILOSOPHY SECTION
   ============================================ */
.philosophy-section {
  background: linear-gradient(180deg, #0c1220 0%, #121c32 50%, #101828 100%);
}

.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}

.ph-card {
  background: linear-gradient(145deg, rgba(16, 24, 44, 0.9), rgba(12, 18, 34, 0.85));
  border: 1px solid var(--card-border);
  border-radius: 24px;
  padding: 38px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--transition-smooth);
  backdrop-filter: blur(10px);
}

.ph-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gradient-vibrant);
  border-radius: 2px;
}

.ph-card:hover {
  border-color: var(--card-border-hover);
  transform: translateY(-5px);
  box-shadow: var(--shadow-blue), var(--shadow-card);
}

.ph-card h3 {
  font-size: 1.15rem;
  margin-bottom: 14px;
  color: var(--cyan);
  font-weight: 700;
  padding-left: 18px;
}

.ph-card p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.75;
  padding-left: 18px;
}

/* Quote Box */
.quote-box {
  margin-top: 44px;
  padding: 48px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(16, 24, 44, 0.5), rgba(0, 212, 255, 0.02), rgba(12, 18, 34, 0.4));
  border: 1px solid rgba(0, 212, 255, 0.08);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.quote-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg at 50% 50%, transparent, rgba(0, 212, 255, 0.01), transparent, rgba(155, 89, 240, 0.01), transparent);
  animation: spinSlow 25s linear infinite;
  pointer-events: none;
}

.quote-box p {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.6;
  font-style: italic;
  position: relative;
  z-index: 1;
}

/* ============================================
   VISION SECTION
   ============================================ */
.vision-section {
  background: linear-gradient(180deg, #101828 0%, #0c1525 100%);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  padding: 90px 0;
  background: linear-gradient(180deg, #0c1525 0%, #122040 50%, #101828 100%);
}

.cta-box {
  border-radius: 28px;
  padding: 65px;
  background: linear-gradient(135deg, rgba(16, 24, 50, 0.6), rgba(0, 212, 255, 0.03), rgba(14, 20, 40, 0.5));
  border: 1px solid rgba(0, 212, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -60%;
  right: -15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(26, 143, 255, 0.05), transparent 55%);
  pointer-events: none;
}

.cta-box h2 {
  margin: 0 0 12px;
  font-size: 1.9rem;
  background: linear-gradient(135deg, var(--blue) 0%, var(--cyan) 30%, var(--purple) 60%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.cta-box p {
  color: var(--text-secondary);
  max-width: 550px;
  line-height: 1.7;
}

.cta-box .btn-gold {
  position: relative;
  z-index: 1;
  white-space: nowrap;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: #0a0e18;
  border-top: 1px solid rgba(0, 212, 255, 0.06);
  padding: 44px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}

.footer-brand {
  font-weight: 800;
  font-size: 1.1rem;
  background: var(--gradient-cyan);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

footer small {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(35px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes floatSmooth {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

@keyframes logoFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-10px) scale(1.02); }
}

@keyframes coreBreath {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.15); opacity: 1; }
}

@keyframes reflectionPulse {
  0%, 100% { opacity: 0.7; transform: translateX(-50%) scaleX(1); }
  50% { opacity: 1; transform: translateX(-50%) scaleX(1.1); }
}

@keyframes pulseGlow {
  0%, 100% { opacity: 1; transform: translateX(-50%) scale(1); }
  50% { opacity: 0.7; transform: translateX(-50%) scale(1.05); }
}

@keyframes heroGlowPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.7; }
}

@keyframes spinSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes particleDrift {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.4; }
  50% { transform: translateY(-25px) scale(1.5); opacity: 1; }
}

@keyframes shimmerGold {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

/* Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--transition-smooth), transform 0.8s var(--transition-smooth);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered reveal for cards */
.reveal.visible .service-card,
.reveal.visible .value-card,
.reveal.visible .why-card {
  animation: fadeUp 0.6s var(--transition-smooth) both;
}

.reveal.visible .service-card:nth-child(1),
.reveal.visible .why-card:nth-child(1),
.reveal.visible .value-card:nth-child(1) { animation-delay: 0s; }
.reveal.visible .service-card:nth-child(2),
.reveal.visible .why-card:nth-child(2),
.reveal.visible .value-card:nth-child(2) { animation-delay: 0.08s; }
.reveal.visible .service-card:nth-child(3),
.reveal.visible .why-card:nth-child(3),
.reveal.visible .value-card:nth-child(3) { animation-delay: 0.16s; }
.reveal.visible .service-card:nth-child(4),
.reveal.visible .why-card:nth-child(4),
.reveal.visible .value-card:nth-child(4) { animation-delay: 0.24s; }
.reveal.visible .service-card:nth-child(5),
.reveal.visible .value-card:nth-child(5) { animation-delay: 0.32s; }
.reveal.visible .service-card:nth-child(6),
.reveal.visible .value-card:nth-child(6) { animation-delay: 0.4s; }
.reveal.visible .service-card:nth-child(7),
.reveal.visible .value-card:nth-child(7) { animation-delay: 0.48s; }
.reveal.visible .service-card:nth-child(8),
.reveal.visible .value-card:nth-child(8) { animation-delay: 0.56s; }
.reveal.visible .value-card:nth-child(9) { animation-delay: 0.64s; }
.reveal.visible .value-card:nth-child(10) { animation-delay: 0.72s; }

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
  .services-grid, .why-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-grid { gap: 40px; }
  .hero-main-img { max-width: 450px; }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-visual { margin-top: 40px; }
  .hero-main-img { max-width: 420px; border-radius: 16px; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-badge { margin-left: auto; margin-right: auto; }
  .about-grid { grid-template-columns: 1fr; text-align: center; }
  .about-photo-wrap { display: flex; justify-content: center; }
  .about-photo-wrap img { max-width: 350px; }
  .about-content .eyebrow { text-align: center; }
  .about-content h2 { text-align: center; }
  .about-stats { grid-template-columns: repeat(3, 1fr); }
  .philosophy-grid { grid-template-columns: 1fr; }
  .services-grid, .why-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-box { flex-direction: column; align-items: flex-start; padding: 40px; }
}

@media (max-width: 600px) {
  .hero { padding: 120px 0 60px; min-height: auto; }
  .hero h1 { font-size: 2.2rem; letter-spacing: -1px; }
  .hero-desc { font-size: 0.92rem; }
  .hero-main-img { max-width: 100%; border-radius: 14px; }
  .hero-visual { margin-top: 30px; }
  .section { padding: 60px 0; }
  .section-head { margin-bottom: 36px; }
  .section h2, .section-head h2 { font-size: 1.6rem; }
  .services-grid, .values-grid, .why-grid { grid-template-columns: 1fr; gap: 14px; }
  .about-stats { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .about-photo-wrap img { max-width: 260px; }
  .about-section { padding: 70px 0; }
  .about-grid { gap: 35px; }
  .philosophy-grid { grid-template-columns: 1fr; }
  .nav-inner .btn-nav { display: none; }
  .footer-inner { flex-direction: column; text-align: center; gap: 12px; }
  .cta-box { padding: 24px; }
  .cta-box h2 { font-size: 1.3rem; }
  .quote-box { padding: 24px; }
  .quote-box p { font-size: 1rem; }
  .ph-card { padding: 22px; }
  .ph-card h3 { padding-left: 14px; }
  .ph-card p { padding-left: 14px; font-size: 0.88rem; }
  .service-card { padding: 24px 18px; }
  .value-card { padding: 22px 14px; }
  .why-card { padding: 24px 16px; }
  .about-stat b { font-size: 1.4rem; }
  .about-stat span { font-size: 0.7rem; }
}

@media (max-width: 400px) {
  .container { width: 94%; }
  .hero h1 { font-size: 1.9rem; }
  .hero-badge { font-size: 0.6rem; padding: 6px 12px; }
  .btn { padding: 10px 18px; font-size: 0.8rem; }
  .hero-actions { flex-direction: column; align-items: stretch; gap: 10px; }
  .hero-actions .btn { text-align: center; }
  .about-stats { grid-template-columns: 1fr; }
  .values-grid { gap: 10px; }
}

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