/* ============================================
   GALAXY IT & MARKETING — Design System
   ============================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Poppins:wght@600;700;800&display=swap');

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Brand Colors */
  --primary-navy: #1a237e;
  --primary-dark: #0d1b2a;
  --secondary-green: #2e7d32;
  --secondary-dark: #1b5e20;
  --accent-gold: #ffd700;
  --accent-gold-dark: #d4af37;
  --neutral-white: #ffffff;
  --neutral-light: #f5f5f5;
  --text-dark: #333333;
  --text-muted: #6b7280;
  --border-color: rgba(255, 255, 255, 0.1);

  /* Gradients */
  --gradient-navy: linear-gradient(135deg, #0d1b2a 0%, #1a237e 100%);
  --gradient-gold: linear-gradient(135deg, #ffd700 0%, #d4af37 100%);
  --gradient-green: linear-gradient(135deg, #2e7d32 0%, #1b5e20 100%);
  --gradient-hero: linear-gradient(135deg, #0d1b2a 0%, #1a237e 50%, #0d1b2a 100%);
  --gradient-overlay: linear-gradient(180deg, rgba(13, 27, 42, 0.9) 0%, rgba(26, 35, 126, 0.85) 100%);

  /* Typography */
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --section-pad: 100px;
  --container-max: 1200px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.18);
  --shadow-gold: 0 4px 20px rgba(255, 215, 0, 0.3);

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 50%;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--neutral-white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

ul,
ol {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary-dark);
}

/* ---------- Utilities ---------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: var(--section-pad) 0;
}

.section-light {
  background: var(--neutral-light);
}

.section-dark {
  background: var(--primary-dark);
  color: var(--neutral-white);
}

.section-dark h2,
.section-dark h3,
.section-dark p {
  color: var(--neutral-white);
}

.section-dark .text-muted {
  color: rgba(255, 255, 255, 0.7);
}

.text-center {
  text-align: center;
}

.text-muted {
  color: var(--text-muted);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.section-dark .section-header p {
  color: rgba(255, 255, 255, 0.7);
}

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 12px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-base);
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient-gold);
  color: var(--primary-dark);
  border-color: var(--accent-gold);
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(255, 215, 0, 0.45);
  filter: brightness(1.05);
}

.btn-secondary {
  background: transparent;
  color: var(--neutral-white);
  border-color: var(--neutral-white);
}

.btn-secondary:hover {
  background: var(--neutral-white);
  color: var(--primary-dark);
  transform: translateY(-2px);
}

.btn-green {
  background: var(--gradient-green);
  color: var(--neutral-white);
  border-color: var(--secondary-green);
}

.btn-green:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(46, 125, 50, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--primary-navy);
  border-color: var(--primary-navy);
}

.btn-outline:hover {
  background: var(--primary-navy);
  color: var(--neutral-white);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 18px 40px;
  font-size: 1.1rem;
}

.btn i {
  font-size: 1rem;
}

/* ---------- Cards ---------- */
.card {
  background: var(--neutral-white);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.card-dark {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.card-dark:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 215, 0, 0.3);
}

.card-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
  color: var(--neutral-white);
}

.card-icon-gold {
  background: var(--gradient-gold);
  color: var(--primary-dark);
}

.card-icon-green {
  background: var(--gradient-green);
}

.card-icon-navy {
  background: var(--gradient-navy);
}

.card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.card-dark p {
  color: rgba(255, 255, 255, 0.7);
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  color: var(--accent-gold);
  font-weight: 600;
  font-size: 0.95rem;
  transition: gap var(--transition-base);
}

.card-link:hover {
  gap: 12px;
}

/* ---------- Grid Layouts ---------- */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.grid-4 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 18px 0;
  transition: all var(--transition-base);
  background: transparent;
}

.header.scrolled {
  background: rgba(13, 27, 42, 0.97);
  padding: 10px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(20px);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1001;
}

.logo-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--neutral-white);
}

.logo-text span {
  color: var(--accent-gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color var(--transition-fast);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-gold);
  transition: width var(--transition-base);
}

.nav-links a:hover {
  color: var(--accent-gold);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 10px 24px !important;
  background: var(--gradient-gold);
  color: var(--primary-dark) !important;
  border-radius: var(--radius-sm);
  font-weight: 600 !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  color: var(--primary-dark) !important;
  box-shadow: var(--shadow-gold);
  transform: translateY(-1px);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  background: none;
  border: none;
  padding: 4px;
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--neutral-white);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

@media (max-width: 1023px) {
  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--primary-dark);
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
  }

  .nav-links.active {
    opacity: 1;
    visibility: visible;
  }

  .nav-links a {
    font-size: 1.3rem;
    color: var(--neutral-white);
  }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
  padding: 140px 0 100px;
}

/* Animated background particles */
.hero::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.08) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(46, 125, 50, 0.08) 0%, transparent 70%);
  bottom: -100px;
  left: -100px;
  border-radius: 50%;
  animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-30px) scale(1.05);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 750px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 215, 0, 0.15);
  border: 1px solid rgba(255, 215, 0, 0.3);
  padding: 8px 20px;
  border-radius: 50px;
  color: var(--accent-gold);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
}

.hero-badge i {
  font-size: 0.9rem;
}

.hero h1 {
  font-size: clamp(2.2rem, 5.5vw, 3.5rem);
  color: var(--neutral-white);
  margin-bottom: 20px;
  line-height: 1.15;
}

.hero h1 .highlight {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 600px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 16px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.hero-trust-avatars {
  display: flex;
}

.hero-trust-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--primary-dark);
  margin-left: -10px;
  background: var(--gradient-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: white;
  font-weight: 700;
}

.hero-trust-avatar:first-child {
  margin-left: 0;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat {
  text-align: left;
}

.hero-stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent-gold);
}

.hero-stat-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 4px;
}

/* ============================================
   PROBLEM / PAIN POINTS SECTION
   ============================================ */
.problem-section {
  background: var(--neutral-light);
}

.pain-card {
  text-align: center;
  padding: 44px 28px;
}

.pain-card .card-icon {
  margin: 0 auto 20px;
  background: rgba(220, 53, 69, 0.1);
  color: #dc3545;
}

.pain-card h3 {
  color: var(--primary-dark);
}

.pain-card p {
  font-size: 0.9rem;
}

/* ============================================
   SERVICES OVERVIEW
   ============================================ */
.services-section {
  background: var(--neutral-white);
}

.service-card {
  padding: 40px 30px;
  border-top: 4px solid transparent;
  transition: all var(--transition-base);
}

.service-card:nth-child(1) {
  border-top-color: var(--accent-gold);
}

.service-card:nth-child(2) {
  border-top-color: var(--secondary-green);
}

.service-card:nth-child(3) {
  border-top-color: var(--primary-navy);
}

.service-card ul {
  margin: 16px 0 20px;
}

.service-card li {
  padding: 8px 0;
  font-size: 0.95rem;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.service-card li i {
  color: var(--secondary-green);
  margin-top: 4px;
  font-size: 0.8rem;
}

.service-benefit {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary-navy);
  font-style: italic;
  margin-bottom: 0;
}

/* ============================================
   WHY GALAXY SECTION
   ============================================ */
.why-section {
  background: var(--primary-dark);
  position: relative;
  overflow: hidden;
}

.why-section::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
  top: -200px;
  right: -200px;
  border-radius: 50%;
}

.why-card {
  text-align: center;
  padding: 40px 24px;
}

.why-card .card-icon {
  margin: 0 auto 20px;
}

.stats-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--accent-gold);
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 4px;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-section {
  background: var(--neutral-light);
}

.testimonial-card {
  padding: 36px 28px;
  position: relative;
}

.testimonial-stars {
  color: var(--accent-gold);
  font-size: 0.9rem;
  margin-bottom: 16px;
  display: flex;
  gap: 4px;
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-dark);
  font-style: italic;
  margin-bottom: 24px;
  position: relative;
}

.testimonial-text::before {
  content: '\201C';
  font-size: 4rem;
  color: var(--accent-gold);
  opacity: 0.3;
  position: absolute;
  top: -20px;
  left: -5px;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  font-weight: 700;
  font-size: 1.1rem;
}

.testimonial-info h4 {
  font-size: 0.95rem;
  font-weight: 600;
}

.testimonial-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ============================================
   PROCESS / HOW IT WORKS
   ============================================ */
.process-section {
  background: var(--neutral-white);
}

.process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.process-step {
  text-align: center;
  position: relative;
}

.step-number {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--gradient-navy);
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  margin: 0 auto 20px;
  box-shadow: 0 4px 20px rgba(26, 35, 126, 0.3);
  position: relative;
  z-index: 2;
}

.process-step h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--primary-dark);
}

.process-step p {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 280px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .process-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }

  .process-steps::before {
    content: '';
    position: absolute;
    top: 36px;
    left: 16%;
    width: 68%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-gold), var(--secondary-green), var(--primary-navy));
    z-index: 1;
    border-radius: 2px;
  }
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  background: var(--gradient-gold);
  text-align: center;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  top: -100px;
  right: -50px;
}

.cta-section::after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  bottom: -80px;
  left: -40px;
}

.cta-section h2 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  color: var(--primary-dark);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.cta-section p {
  font-size: 1.1rem;
  color: rgba(13, 27, 42, 0.8);
  max-width: 550px;
  margin: 0 auto 32px;
  position: relative;
  z-index: 1;
}

.cta-section .btn {
  position: relative;
  z-index: 1;
}

.cta-contact-info {
  margin-top: 24px;
  font-size: 0.95rem;
  color: rgba(13, 27, 42, 0.7);
  position: relative;
  z-index: 1;
}

.cta-contact-info a {
  color: var(--primary-dark);
  font-weight: 600;
}

.cta-contact-info a:hover {
  text-decoration: underline;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--primary-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

.footer-brand p {
  margin-top: 16px;
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 300px;
}

.footer-col h4 {
  color: var(--neutral-white);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-col a {
  display: block;
  padding: 6px 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  transition: all var(--transition-fast);
}

.footer-col a:hover {
  color: var(--accent-gold);
  padding-left: 6px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  padding: 0;
  transition: all var(--transition-base);
}

.footer-social a:hover {
  background: var(--accent-gold);
  color: var(--primary-dark);
  transform: translateY(-3px);
  padding-left: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.4);
  padding: 0;
}

.footer-bottom a:hover {
  color: var(--accent-gold);
  padding-left: 0;
}

/* ============================================
   INNER PAGE — PAGE HERO
   ============================================ */
.page-hero {
  background: var(--gradient-hero);
  padding: 160px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.06) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  border-radius: 50%;
}

.page-hero h1 {
  color: var(--neutral-white);
  font-size: clamp(2rem, 4.5vw, 3rem);
  margin-bottom: 16px;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================
   SERVICES PAGE
   ============================================ */
.service-pillar {
  padding: 80px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.service-pillar:last-child {
  border-bottom: none;
}

.pillar-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  align-items: center;
}

@media (min-width: 768px) {
  .pillar-content {
    grid-template-columns: 1fr 1fr;
  }

  .pillar-content.reverse {
    direction: rtl;
  }

  .pillar-content.reverse>* {
    direction: ltr;
  }
}

.pillar-text h2 {
  font-size: clamp(1.6rem, 3vw, 2rem);
  margin-bottom: 16px;
}

.pillar-text>p {
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.8;
}

.pillar-features {
  list-style: none;
  padding: 0;
}

.pillar-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  font-size: 0.95rem;
}

.pillar-features li i {
  color: var(--secondary-green);
  margin-top: 3px;
  flex-shrink: 0;
}

.pillar-visual {
  background: var(--gradient-navy);
  border-radius: var(--radius-lg);
  padding: 50px 40px;
  text-align: center;
  color: var(--neutral-white);
  position: relative;
  overflow: hidden;
}

.pillar-visual::before {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
  top: -50px;
  right: -50px;
  border-radius: 50%;
}

.pillar-visual i {
  font-size: 4rem;
  color: var(--accent-gold);
  margin-bottom: 20px;
}

.pillar-visual h3 {
  color: var(--neutral-white);
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.pillar-visual p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-story {
  padding: 80px 0;
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  align-items: center;
}

@media (min-width: 768px) {
  .about-story-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.about-text h2 {
  font-size: clamp(1.6rem, 3vw, 2rem);
  margin-bottom: 20px;
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.8;
}

.about-image {
  background: var(--gradient-navy);
  border-radius: var(--radius-lg);
  padding: 60px 40px;
  text-align: center;
  color: var(--neutral-white);
  position: relative;
  overflow: hidden;
}

.about-image i {
  font-size: 5rem;
  color: var(--accent-gold);
  margin-bottom: 20px;
}

.about-image h3 {
  color: var(--neutral-white);
  font-size: 1.3rem;
}

.values-section {
  padding: 80px 0;
  background: var(--neutral-light);
}

.value-card {
  text-align: center;
  padding: 40px 24px;
}

.value-card .card-icon {
  margin: 0 auto 16px;
}

/* Mission Statement */
.mission-section {
  padding: 80px 0;
  background: var(--primary-dark);
  text-align: center;
  color: var(--neutral-white);
  overflow: hidden;
}

.mission-section h2 {
  color: var(--neutral-white);
  margin-bottom: 20px;
}

.mission-quote {
  font-size: 1.3rem;
  font-style: italic;
  max-width: 700px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  position: relative;
}

.mission-quote::before {
  content: '\201C';
  font-size: 5rem;
  color: var(--accent-gold);
  opacity: 0.3;
  position: absolute;
  top: -30px;
  left: -20px;
  font-family: Georgia, serif;
  line-height: 1;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-section {
  padding: 80px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-form-wrap {
  background: var(--neutral-white);
  border-radius: var(--radius-md);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.contact-form-wrap h2 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.contact-form-wrap>p {
  color: var(--text-muted);
  margin-bottom: 28px;
  font-size: 0.95rem;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--transition-fast);
  background: var(--neutral-light);
  color: var(--text-dark);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-navy);
  background: var(--neutral-white);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group .error-message {
  color: #dc3545;
  font-size: 0.8rem;
  margin-top: 4px;
  display: none;
}

.form-group.error input,
.form-group.error textarea {
  border-color: #dc3545;
}

.form-group.error .error-message {
  display: block;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 500px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.contact-info-side h3 {
  font-size: 1.3rem;
  margin-bottom: 24px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(26, 35, 126, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-navy);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-info-item h4 {
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.contact-info-item p,
.contact-info-item a {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.contact-info-item a:hover {
  color: var(--primary-navy);
}

.contact-map {
  margin-top: 30px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  height: 220px;
  background: var(--neutral-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ============================================
   CONSULTATION / LANDING PAGE
   ============================================ */
.consultation-page {
  min-height: 100vh;
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  padding: 120px 0 60px;
}

.consult-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  align-items: center;
}

@media (min-width: 768px) {
  .consult-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.consult-info {
  color: var(--neutral-white);
}

.consult-info h1 {
  color: var(--neutral-white);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 16px;
}

.consult-info>p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 32px;
}

.consult-benefits {
  list-style: none;
}

.consult-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

.consult-benefits li i {
  color: var(--accent-gold);
  margin-top: 3px;
}

.consult-form-wrap {
  background: var(--neutral-white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

.consult-form-wrap h2 {
  font-size: 1.4rem;
  margin-bottom: 8px;
  text-align: center;
}

.consult-form-wrap>p {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 28px;
}

.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.form-success i {
  font-size: 3rem;
  color: var(--secondary-green);
  margin-bottom: 16px;
}

.form-success h3 {
  color: var(--primary-dark);
  margin-bottom: 8px;
}

.form-success p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ============================================
   CLIENT SHOWCASE
   ============================================ */
.clients-section {
  background: var(--neutral-light);
}

.clients-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-top: 20px;
}

.client-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 100px;
  padding: 16px;
  background: var(--neutral-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  filter: grayscale(100%);
  opacity: 0.7;
}

.client-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.client-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.clients-note {
  text-align: center;
  margin-top: 32px;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

@media (max-width: 767px) {
  .clients-grid {
    gap: 20px;
  }

  .client-logo {
    width: 140px;
    height: 80px;
    padding: 12px;
  }
}

/* ============================================
   RESULTS / GROWTH SHOWCASE
   ============================================ */
.results-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.result-card {
  background: var(--neutral-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: all var(--transition-base);
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.result-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.result-img {
  position: relative;
  overflow: hidden;
  background: #f8f9fa;
}

.result-img img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.result-card:hover .result-img img {
  transform: scale(1.03);
}

.result-zoom {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  background: rgba(0,0,0,0.6);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.result-card:hover .result-zoom {
  opacity: 1;
}

.result-info {
  padding: 16px;
  text-align: center;
}

.result-info h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.result-info span {
  font-size: 0.85rem;
  color: var(--accent-green, #22c55e);
  font-weight: 600;
}

/* Lightbox */
.result-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.95);
  align-items: center;
  justify-content: center;
  padding: 20px;
  -webkit-overflow-scrolling: touch;
  overflow: auto;
}

.result-lightbox.active {
  display: flex;
}

.result-lightbox img {
  max-width: 95%;
  max-height: 90vh;
  border-radius: 8px;
  box-shadow: 0 0 40px rgba(0,0,0,0.5);
  object-fit: contain;
}

.lightbox-close {
  position: fixed;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.2);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 10000;
}

.lightbox-close:hover {
  background: rgba(255,255,255,0.4);
}

@media (max-width: 767px) {
  .results-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .result-lightbox {
    padding: 60px 8px 20px;
  }

  .result-lightbox img {
    max-width: 100%;
    max-height: 80vh;
    width: 100%;
  }

  .lightbox-close {
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
  }
}

/* ============================================
   INSTAGRAM FEED SECTION
   ============================================ */
.instagram-section {
  background: var(--neutral-white);
  text-align: center;
}

.insta-follow-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  padding: 12px 32px;
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: white;
  font-weight: 700;
  font-size: 1.05rem;
  border-radius: 50px;
  transition: all var(--transition-base);
  text-decoration: none;
}

.insta-follow-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(225, 48, 108, 0.45);
  color: white;
}

.insta-follow-btn i {
  font-size: 1.2rem;
}

.insta-feed {
  margin-top: 40px;
  min-height: 200px;
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in {
  opacity: 0;
  transition: opacity 0.6s ease-out;
}

.fade-in.visible {
  opacity: 1;
}

/* Stagger children */
.stagger>* {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease-out;
}

.stagger.visible>*:nth-child(1) {
  transition-delay: 0.1s;
}

.stagger.visible>*:nth-child(2) {
  transition-delay: 0.2s;
}

.stagger.visible>*:nth-child(3) {
  transition-delay: 0.3s;
}

.stagger.visible>*:nth-child(4) {
  transition-delay: 0.4s;
}

.stagger.visible>* {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   WHATSAPP CHAT WIDGET
   ============================================ */
.whatsapp-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
}

.whatsapp-btn {
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.8rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  cursor: pointer;
  border: none;
  transition: all var(--transition-base);
  animation: pulse 2s infinite;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-btn .fa-times {
  display: none;
}

.whatsapp-widget.open .whatsapp-btn .fa-whatsapp {
  display: none;
}

.whatsapp-widget.open .whatsapp-btn .fa-times {
  display: inline;
  font-size: 1.4rem;
}

.whatsapp-widget.open .whatsapp-btn {
  animation: none;
}

.whatsapp-popup {
  position: absolute;
  bottom: 76px;
  right: 0;
  width: 340px;
  background: var(--neutral-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.95);
  transition: all var(--transition-base);
}

.whatsapp-widget.open .whatsapp-popup {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.whatsapp-popup-header {
  background: #075E54;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.whatsapp-popup-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--primary-dark);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.whatsapp-popup-info h4 {
  color: white;
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.whatsapp-popup-info p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
}

.whatsapp-popup-body {
  padding: 20px;
  background: #e5ddd5;
  min-height: 100px;
}

.whatsapp-popup-msg {
  background: white;
  padding: 10px 14px;
  border-radius: 0 8px 8px 8px;
  font-size: 0.9rem;
  color: var(--text-dark);
  max-width: 85%;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  position: relative;
}

.whatsapp-popup-msg::after {
  content: '';
  position: absolute;
  top: 0;
  left: -8px;
  border-width: 0 8px 8px 0;
  border-style: solid;
  border-color: transparent white transparent transparent;
}

.whatsapp-popup-msg small {
  display: block;
  text-align: right;
  color: var(--text-muted);
  font-size: 0.7rem;
  margin-top: 4px;
}

.whatsapp-popup-footer {
  padding: 12px 16px;
  display: flex;
  gap: 8px;
  background: var(--neutral-light);
}

.whatsapp-popup-footer input {
  flex: 1;
  padding: 10px 14px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  background: white;
}

.whatsapp-popup-footer input:focus {
  border-color: #25D366;
}

.whatsapp-popup-footer button {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #25D366;
  border: none;
  color: white;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast);
  flex-shrink: 0;
}

.whatsapp-popup-footer button:hover {
  background: #1da851;
}

@keyframes pulse {
  0% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }

  50% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.1);
  }

  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }
}

@media (max-width: 500px) {
  .whatsapp-widget {
    bottom: 20px;
    right: 16px;
  }

  .whatsapp-btn {
    width: 54px;
    height: 54px;
    font-size: 1.5rem;
  }

  .whatsapp-popup {
    width: calc(100vw - 32px);
    right: -2px;
    bottom: 68px;
  }

  .whatsapp-popup-header {
    padding: 14px 16px;
  }

  .whatsapp-popup-body {
    padding: 14px;
    min-height: 80px;
  }

  .whatsapp-popup-footer {
    padding: 10px 12px;
  }

  .whatsapp-popup-footer input {
    padding: 9px 12px;
    font-size: 0.85rem;
  }

  .whatsapp-popup-footer button {
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */
@media (max-width: 767px) {
  .section {
    padding: 50px 0;
  }

  .section-header {
    margin-bottom: 32px;
  }

  .section-header h2 {
    font-size: 1.5rem;
  }

  .section-header p {
    font-size: 0.95rem;
  }

  .hero {
    min-height: auto;
    padding: 110px 0 50px;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
    margin-bottom: 28px;
  }

  .hero-badge {
    font-size: 0.75rem;
    padding: 6px 14px;
    margin-bottom: 20px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
    padding-top: 28px;
  }

  .hero-stat {
    text-align: center;
  }

  .hero-stat-number {
    font-size: 1.5rem;
  }

  .hero-stat-label {
    font-size: 0.75rem;
  }

  .hero-trust {
    flex-direction: column;
    gap: 10px;
    text-align: center;
    font-size: 0.8rem;
  }

  /* Cards */
  .card {
    padding: 28px 20px;
  }

  .pain-card {
    padding: 28px 20px;
  }

  .service-card {
    padding: 28px 20px;
  }

  .why-card {
    padding: 28px 20px;
  }

  /* Stats */
  .stats-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .stat-number {
    font-size: 1.8rem;
  }

  .stat-label {
    font-size: 0.8rem;
  }

  /* CTA */
  .cta-section {
    padding: 50px 0;
  }

  .cta-section h2 {
    font-size: 1.5rem;
  }

  /* Footer */
  .footer {
    padding: 40px 0 20px;
  }

  .footer-brand p {
    max-width: 100%;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  /* Page hero (subpages) */
  .page-hero {
    padding: 110px 0 50px;
  }

  .page-hero h1 {
    font-size: 1.6rem;
  }

  /* Contact & Consult forms */
  .contact-form-wrap {
    padding: 24px 16px;
  }

  .consult-form-wrap {
    padding: 24px 16px;
  }

  .consultation-page {
    min-height: auto;
    padding: 100px 0 40px;
  }

  .consult-info h1 {
    font-size: 1.5rem;
  }

  .pillar-visual {
    padding: 32px 20px;
  }

  .pillar-visual i {
    font-size: 2.8rem;
    margin-bottom: 14px;
  }

  .pillar-visual h3 {
    font-size: 1.15rem;
  }

  .about-image {
    padding: 36px 24px;
  }

  .about-image i {
    font-size: 3rem;
  }

  .mission-quote {
    font-size: 1.05rem;
  }

  .mission-quote::before {
    font-size: 3rem;
    top: -16px;
    left: -6px;
  }

  /* Contact info */
  .contact-info-item {
    gap: 12px;
  }

  /* Clients */
  .clients-grid {
    gap: 16px;
  }

  .client-logo {
    width: 120px;
    height: 70px;
    padding: 10px;
  }

  .clients-note {
    font-size: 0.8rem;
  }

  /* Results */
  .results-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .result-info {
    padding: 12px;
  }

  .result-info h4 {
    font-size: 0.9rem;
  }

  .result-info span {
    font-size: 0.8rem;
  }

  /* Instagram */
  .insta-follow-btn {
    font-size: 0.95rem;
    padding: 10px 24px;
  }

  /* Process */
  .step-number {
    width: 56px;
    height: 56px;
    font-size: 1.3rem;
  }

  /* Testimonials */
  .testimonial-text {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 14px;
  }

  .section {
    padding: 40px 0;
  }

  .hero {
    padding: 100px 0 40px;
  }

  .hero h1 {
    font-size: 1.55rem;
  }

  .btn-lg {
    padding: 14px 24px;
    font-size: 0.95rem;
  }

  .hero-stats {
    gap: 16px;
    margin-top: 32px;
  }

  .hero-stat-number {
    font-size: 1.3rem;
  }

  /* Lang switcher smaller */
  .lang-btn {
    width: 30px;
    height: 30px;
  }

  .lang-btn img {
    width: 16px;
    height: 12px;
  }
}

/* ============================================
   LANGUAGE SWITCHER
   ============================================ */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: 8px;
  z-index: 1001;
}

.lang-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
  padding: 0;
  line-height: 1;
  overflow: hidden;
}

.lang-btn img {
  display: block;
  border-radius: 2px;
  pointer-events: none;
}

.lang-btn:hover {
  border-color: var(--accent-gold);
  transform: scale(1.1);
  background: rgba(255, 215, 0, 0.15);
}

.lang-btn.active {
  border-color: var(--accent-gold);
  background: rgba(255, 215, 0, 0.2);
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

@media (max-width: 1023px) {
  .lang-switcher {
    position: fixed;
    top: 18px;
    right: 68px;
    z-index: 1002;
    transition: top var(--transition-base);
  }

  .header.scrolled ~ .lang-switcher,
  .header.scrolled .lang-switcher {
    top: 10px;
  }
}

@media (max-width: 480px) {
  .lang-switcher {
    right: 58px;
    gap: 3px;
  }

  .lang-btn {
    width: 28px;
    height: 28px;
  }

  .lang-btn img {
    width: 15px;
    height: 11px;
  }
}