/* ============================================
   LOCAL SPARK MEDIA — Design System & Styles
   3D IMMERSIVE EDITION
   ============================================ */

/* ---------- Performance Font Preconnect in HTML ---------- */

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Brand Colors */
  --color-accent: #2563EB;
  --color-accent-hover: #1D4ED8;
  --color-accent-light: rgba(37, 99, 235, 0.08);
  --color-accent-glow: rgba(37, 99, 235, 0.15);
  --color-accent-vivid: rgba(37, 99, 235, 0.25);

  /* Neutrals */
  --color-white: #FFFFFF;
  --color-black: #000000;
  --color-text-primary: #111827;
  --color-text-secondary: #4B5563;
  --color-text-muted: #6B7280;
  --color-bg: #FFFFFF;
  --color-surface: #F9FAFB;
  --color-surface-alt: #F3F4F6;
  --color-border: #E5E7EB;
  --color-border-light: #F3F4F6;

  /* Typography */
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.875rem;
  --font-size-4xl: 2.25rem;
  --font-size-5xl: 3rem;
  --font-size-6xl: 3.75rem;

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  /* Layout */
  --max-width: 1200px;
  --nav-height: 72px;

  /* Effects */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-2xl: 32px;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.06);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.08);
  --shadow-card: 0 1px 3px rgba(0,0,0,0.04), 0 4px 16px rgba(0,0,0,0.04);
  --shadow-card-hover: 0 8px 30px rgba(0,0,0,0.1), 0 4px 12px rgba(0,0,0,0.06);
  --shadow-3d: 0 20px 60px rgba(0,0,0,0.12), 0 8px 20px rgba(0,0,0,0.08);
  --shadow-3d-hover: 0 30px 80px rgba(0,0,0,0.16), 0 12px 28px rgba(0,0,0,0.10);
  --shadow-accent: 0 8px 30px rgba(37, 99, 235, 0.2);
  --shadow-accent-lg: 0 16px 50px rgba(37, 99, 235, 0.3);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}


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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  line-height: 1.7;
  color: var(--color-text-secondary);
  background-color: var(--color-bg);
  overflow-x: hidden;
}

/* Accessibility: Universal Keyboard Focus State */
:focus-visible {
  outline: 2.5px solid var(--color-accent) !important;
  outline-offset: 3px !important;
  border-radius: var(--radius-sm);
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  font-size: inherit;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}


/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.section {
  padding: var(--space-20) 0;
  position: relative;
}

.section--lg {
  padding: var(--space-24) 0;
}

.section--surface {
  background-color: var(--color-surface);
}


/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  font-weight: 700;
  color: var(--color-text-primary);
}

h1 {
  font-size: var(--font-size-5xl);
  font-weight: 900;
  letter-spacing: -0.03em;
}

h2 {
  font-size: var(--font-size-4xl);
  font-weight: 800;
  letter-spacing: -0.02em;
}

h3 {
  font-size: var(--font-size-2xl);
  font-weight: 700;
}

h4 {
  font-size: var(--font-size-xl);
  font-weight: 600;
}

p {
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.text-accent {
  color: var(--color-accent);
}

.text-muted {
  color: var(--color-text-muted);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 8px 18px;
  background: var(--color-accent-light);
  border: 1px solid rgba(37, 99, 235, 0.12);
  border-radius: 100px;
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--space-4);
}

.section-title {
  margin-bottom: var(--space-4);
}

.section-subtitle {
  font-size: var(--font-size-lg);
  color: var(--color-text-secondary);
  max-width: 600px;
}

.section-header {
  margin-bottom: var(--space-12);
}

.section-header--center {
  text-align: center;
}

.section-header--center .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}


/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 14px 28px;
  font-size: var(--font-size-base);
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: all var(--transition);
  white-space: nowrap;
  text-align: center;
  position: relative;
}

.btn-primary {
  background-color: var(--color-accent);
  color: var(--color-white);
  box-shadow: var(--shadow-accent);
}

.btn-primary:hover {
  background-color: var(--color-accent-hover);
  box-shadow: var(--shadow-accent-lg);
  transform: translateY(-3px) scale(1.02);
}

.btn-primary:active {
  transform: translateY(-1px) scale(0.98);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-text-primary);
  border: 1.5px solid var(--color-border);
}

.btn-secondary:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  background-color: var(--color-accent-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.btn-whatsapp {
  background-color: #25D366;
  color: #052E16; /* 8.2:1 contrast ratio passing WCAG AAA */
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp svg {
  fill: #052E16;
}

.btn-whatsapp:hover {
  background-color: #20BD5A;
  color: #02200E;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
  transform: translateY(-3px) scale(1.02);
}

.btn-lg {
  padding: 16px 36px;
  font-size: var(--font-size-lg);
  border-radius: var(--radius-lg);
}

.btn-sm {
  padding: 10px 20px;
  font-size: var(--font-size-sm);
}

.btn-group {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}


/* ============================================
   3D FLOATING ANIMATIONS
   ============================================ */

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-12px) rotate(1deg); }
  75% { transform: translateY(8px) rotate(-1deg); }
}

@keyframes floatSlow {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(2deg); }
}

@keyframes floatReverse {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(15px) rotate(-2deg); }
}

@keyframes pulse3d {
  0%, 100% { transform: scale(1); box-shadow: 0 8px 30px rgba(37, 99, 235, 0.2); }
  50% { transform: scale(1.05); box-shadow: 0 16px 50px rgba(37, 99, 235, 0.35); }
}

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

@keyframes slideInUp {
  from { opacity: 0; transform: translateY(60px) rotateX(10deg); }
  to { opacity: 1; transform: translateY(0) rotateX(0); }
}

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

@keyframes morphBlob {
  0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
  25% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
  50% { border-radius: 50% 50% 40% 60% / 40% 50% 60% 50%; }
  75% { border-radius: 40% 60% 50% 50% / 60% 40% 50% 60%; }
}


/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(229, 231, 235, 0.5);
  z-index: 1000;
  transition: all var(--transition);
}

.nav.scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,0.06);
  background: rgba(255, 255, 255, 0.92);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  perspective: 800px;
  text-decoration: none;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.nav__logo:hover {
  transform: scale(1.06) rotateY(-5deg) rotateX(3deg);
}

.nav__logo img {
  height: 44px;
  width: auto;
  filter: drop-shadow(0 4px 14px rgba(37, 99, 235, 0.25));
  transition: filter 0.35s ease, transform 0.35s ease;
}

.nav__logo:hover img {
  filter: drop-shadow(0 8px 22px rgba(37, 99, 235, 0.42));
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

.nav__link {
  font-size: var(--font-size-sm);
  font-weight: 500;
  color: var(--color-text-secondary);
  transition: all var(--transition);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-accent), #60A5FA);
  transition: width var(--transition);
  border-radius: 1px;
}

.nav__link:hover,
.nav__link.active {
  color: var(--color-text-primary);
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}

.nav__cta {
  margin-left: var(--space-4);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
  cursor: pointer;
  z-index: 1001;
}

.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--color-text-primary);
  border-radius: 2px;
  transition: all var(--transition);
}

.nav__toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav__toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}


/* ============================================
   HERO — 3D IMMERSIVE
   ============================================ */
.hero {
  padding-top: calc(var(--nav-height) + var(--space-12));
  padding-bottom: var(--space-16);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #ffffff 0%, #f0f4ff 40%, #e8f0fe 100%);
}

/* Background blobs */
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -150px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  animation: morphBlob 15s ease-in-out infinite;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: morphBlob 20s ease-in-out infinite reverse;
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero__content {
  max-width: 560px;
}

/* ---------- Hero Label (Clean 3D Pill) ---------- */
.hero__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px 8px 10px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(229, 231, 235, 0.85);
  border-radius: 100px;
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: #1E293B;
  margin-bottom: var(--space-6);
  box-shadow: 
    0 4px 16px rgba(0, 0, 0, 0.04),
    0 1px 3px rgba(37, 99, 235, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  transform: translateZ(15px);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: default;
}

.hero__label:hover {
  transform: translateY(-2px) scale(1.02) translateZ(25px);
  box-shadow: 
    0 8px 24px rgba(37, 99, 235, 0.14),
    0 2px 6px rgba(0, 0, 0, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  border-color: rgba(37, 99, 235, 0.25);
}

.hero__label-spark {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1E40AF 0%, #2563EB 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.35);
  flex-shrink: 0;
}

.hero__label-text {
  letter-spacing: -0.01em;
  color: #1E293B;
}


.hero__title {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: var(--space-6);
  letter-spacing: -0.03em;
}

.hero__title .text-accent {
  background: linear-gradient(135deg, #2563EB 0%, #3B82F6 50%, #60A5FA 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: var(--font-size-lg);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-8);
  max-width: 480px;
}

/* ---------- Hero 3D Scene ---------- */
.hero__scene {
  perspective: 1400px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 520px;
}

.hero__scene-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 440px;
  transform-style: preserve-3d;
  transform: rotateY(-5deg) rotateX(2deg);
  transition: transform 0.4s ease-out;
}

/* 3D Mobile Phone Container */
.hero__phone-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform-style: preserve-3d;
  z-index: 2;
  width: 100%;
  max-width: 320px;
}

.hero__phone-3d {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 28px 56px rgba(15, 23, 42, 0.22))
          drop-shadow(0 10px 20px rgba(37, 99, 235, 0.18));
  transform: translateZ(20px);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.4s ease;
  will-change: transform;
}

.hero__scene-inner:hover .hero__phone-3d {
  transform: translateZ(35px) scale(1.02);
  filter: drop-shadow(0 38px 75px rgba(15, 23, 42, 0.3))
          drop-shadow(0 16px 32px rgba(37, 99, 235, 0.26));
}

.hero__phone-ground-shadow {
  width: 200px;
  height: 24px;
  background: radial-gradient(ellipse at center, rgba(15, 23, 42, 0.25) 0%, rgba(37, 99, 235, 0.12) 45%, transparent 75%);
  border-radius: 50%;
  margin-top: -12px;
  filter: blur(6px);
  transform: rotateX(65deg) translateZ(0);
  pointer-events: none;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.hero__scene-inner:hover .hero__phone-ground-shadow {
  transform: rotateX(65deg) scale(1.08);
  opacity: 0.85;
}

/* Ambient glow ring behind the phone */
.hero__glow-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.2) 0%, rgba(96, 165, 250, 0.08) 45%, transparent 70%);
  filter: blur(45px);
  pointer-events: none;
  z-index: 1;
  animation: pulseGlow 5s ease-in-out infinite alternate;
}

/* 3D Floating elements around the hero */
.hero__float {
  position: absolute;
  z-index: 3;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.14));
  transition: transform 0.3s ease;
}

.hero__float:hover {
  transform: scale(1.15) translateZ(80px) !important;
}

/* Instagram icon */
.hero__float--instagram {
  top: 4%;
  left: -14%;
  width: 60px;
  height: 60px;
  animation: float 4s infinite;
  animation-delay: 0s;
  transform: translateZ(65px);
}

/* Facebook icon */
.hero__float--facebook {
  top: 36%;
  left: -22%;
  width: 54px;
  height: 54px;
  animation: floatSlow 5s infinite;
  animation-delay: 0.5s;
  transform: translateZ(50px);
}

/* Heart / Like icon */
.hero__float--heart {
  top: 18%;
  right: -16%;
  width: 52px;
  height: 52px;
  animation: float 3.5s infinite;
  animation-delay: 1s;
  transform: translateZ(75px);
}

/* Growth chart icon */
.hero__float--growth {
  top: 48%;
  right: -16%;
  width: 56px;
  height: 56px;
  animation: floatReverse 4.5s infinite;
  animation-delay: 0.3s;
  transform: translateZ(55px);
}

/* Real Results for Local Businesses badge */
.hero__float--results {
  bottom: 8%;
  right: -24%;
  animation: floatSlow 5.5s infinite;
  animation-delay: 1.2s;
  transform: translateZ(45px);
}

.hero__results-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 8px 14px 6px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.15), 0 2px 6px rgba(0, 0, 0, 0.05);
}

.results-badge__text {
  font-family: 'Caveat', cursive, sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--color-accent);
  white-space: nowrap;
  line-height: 1.1;
}

.results-badge__curve {
  width: 100%;
  height: 8px;
  margin-top: 2px;
}

/* 3D icon styling */
.float-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg);
  background: white;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  padding: 12px;
  cursor: default;
  transition: all var(--transition);
}

.float-icon--instagram {
  background: linear-gradient(135deg, #833AB4, #FD1D1D, #F77737);
  border-radius: 18px;
}

.float-icon--facebook {
  background: #1877F2;
  border-radius: 16px;
}

.float-icon--heart {
  background: white;
  border-radius: 14px;
}

.float-icon--growth {
  background: white;
  border-radius: 16px;
}

.float-icon svg {
  width: 28px;
  height: 28px;
}

.float-icon--instagram svg,
.float-icon--facebook svg {
  fill: white;
}

.float-icon--heart svg {
  fill: #EF4444;
}

.float-icon--growth svg {
  fill: var(--color-accent);
}

/* Decorative blue blob behind the scene */
.hero__blob {
  position: absolute;
  top: 15%;
  right: -10%;
  width: 340px;
  height: 340px;
  background: linear-gradient(135deg, var(--color-accent) 0%, #60A5FA 100%);
  border-radius: 50%;
  z-index: 0;
  opacity: 0.14;
  filter: blur(55px);
  animation: morphBlob 12s ease-in-out infinite;
  pointer-events: none;
}

/* Stats floating cards */
.hero__stat {
  position: absolute;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(229,231,235,0.5);
  border-radius: var(--radius-lg);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  z-index: 4;
  font-size: var(--font-size-sm);
  font-weight: 600;
  transition: all var(--transition);
}

.hero__stat:hover {
  transform: scale(1.08) translateZ(85px) !important;
  box-shadow: var(--shadow-3d-hover);
}

.hero__stat--followers {
  bottom: 6%;
  left: -20%;
  animation: floatReverse 4.2s infinite;
  animation-delay: 0.8s;
  transform: translateZ(60px);
}

.hero__stat--engagement {
  top: -6%;
  right: -8%;
  animation: float 4.8s infinite;
  animation-delay: 1.4s;
  transform: translateZ(70px);
}


.hero__stat-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.hero__stat-icon--green {
  background: rgba(16, 185, 129, 0.1);
  color: #10B981;
}

.hero__stat-icon--blue {
  background: var(--color-accent-light);
  color: var(--color-accent);
}

.hero__stat-icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.hero__stat-value {
  font-size: var(--font-size-lg);
  font-weight: 800;
  color: var(--color-text-primary);
  line-height: 1;
}

.hero__stat-label {
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
  font-weight: 500;
}


/* ---------- Trust Bar ---------- */
.trust {
  border-top: 1px solid var(--color-border-light);
  border-bottom: 1px solid var(--color-border-light);
  background-color: var(--color-white);
  position: relative;
  z-index: 5;
}

.trust__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-6);
}

.trust__item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-5) var(--space-2);
  border-radius: var(--radius-md);
  transition: all var(--transition);
}

.trust__item:hover {
  background: var(--color-surface);
  transform: translateY(-2px);
}

.trust__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-accent-light);
  border-radius: var(--radius-md);
  flex-shrink: 0;
  transition: all var(--transition);
}

.trust__item:hover .trust__icon {
  background: var(--color-accent);
  box-shadow: var(--shadow-accent);
  transform: scale(1.1);
}

.trust__icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--color-accent);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke var(--transition);
}

.trust__item:hover .trust__icon svg {
  stroke: white;
}

.trust__text {
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--color-text-primary);
  line-height: 1.4;
}


/* ============================================
   3D CARDS
   ============================================ */
.card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  transition: all var(--transition-slow);
  position: relative;
  overflow: hidden;
  transform: perspective(1000px) rotateX(0deg) rotateY(0deg);
  transform-style: preserve-3d;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.03) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
  border-radius: inherit;
}

.card:hover {
  border-color: rgba(37, 99, 235, 0.15);
  box-shadow: var(--shadow-3d);
  transform: perspective(1000px) rotateX(-2deg) rotateY(2deg) translateY(-8px);
}

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

.card__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-accent-light), rgba(37, 99, 235, 0.12));
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-5);
  transition: all var(--transition-spring);
  position: relative;
  z-index: 1;
}

.card:hover .card__icon {
  background: linear-gradient(135deg, var(--color-accent), #3B82F6);
  box-shadow: var(--shadow-accent);
  transform: translateZ(20px) scale(1.1) rotate(-3deg);
}

.card__icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--color-accent);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke var(--transition);
}

.card:hover .card__icon svg {
  stroke: white;
}

.card__title {
  font-size: var(--font-size-xl);
  font-weight: 700;
  margin-bottom: var(--space-3);
  position: relative;
  z-index: 1;
}

.card__text {
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--color-accent);
  margin-top: var(--space-5);
  transition: all var(--transition);
  position: relative;
  z-index: 1;
}

.card__link:hover {
  gap: var(--space-3);
}

.card__link svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  transition: transform var(--transition);
}

.card__link:hover svg {
  transform: translateX(4px);
}


/* ---------- Services Grid ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  perspective: 1200px;
}

.services-grid--2col {
  grid-template-columns: repeat(2, 1fr);
  max-width: 820px;
  margin: 0 auto;
}


/* ---------- Why Choose Us ---------- */
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
  perspective: 1200px;
}

.reason {
  display: flex;
  gap: var(--space-4);
  padding: var(--space-6);
  border-radius: var(--radius-xl);
  transition: all var(--transition);
  border: 1px solid transparent;
  background: var(--color-white);
}

.reason:hover {
  background-color: var(--color-white);
  border-color: rgba(37, 99, 235, 0.1);
  box-shadow: var(--shadow-3d);
  transform: translateY(-4px) scale(1.01);
}

.reason__check {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-accent-light);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
  transition: all var(--transition-spring);
}

.reason:hover .reason__check {
  background: var(--color-accent);
  box-shadow: var(--shadow-accent);
  transform: scale(1.15) rotate(-5deg);
}

.reason__check svg {
  width: 14px;
  height: 14px;
  stroke: var(--color-accent);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke var(--transition);
}

.reason:hover .reason__check svg {
  stroke: white;
}

.reason__title {
  font-size: var(--font-size-base);
  font-weight: 700;
  margin-bottom: var(--space-2);
}

.reason__text {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
}


/* ============================================
   CTA BANNER — 3D
   ============================================ */
.cta-banner {
  background: linear-gradient(135deg, #111827 0%, #1E293B 50%, #0F172A 100%);
  border-radius: var(--radius-2xl);
  padding: var(--space-16) var(--space-12);
  text-align: center;
  position: relative;
  overflow: hidden;
  transform: perspective(1000px) rotateX(1deg);
  transition: transform var(--transition-slow);
}

.cta-banner:hover {
  transform: perspective(1000px) rotateX(0deg) scale(1.01);
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.25) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: morphBlob 15s ease-in-out infinite;
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: morphBlob 20s ease-in-out infinite reverse;
}

.cta-banner__title {
  font-size: var(--font-size-3xl);
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: var(--space-4);
  position: relative;
  z-index: 1;
}

.cta-banner__text {
  font-size: var(--font-size-lg);
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: var(--space-8);
  position: relative;
  z-index: 1;
}

.cta-banner .btn-group {
  justify-content: center;
  position: relative;
  z-index: 1;
}


/* ---------- Footer ---------- */
.footer {
  background-color: var(--color-surface);
  border-top: 1px solid var(--color-border);
  padding: var(--space-16) 0 var(--space-8);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-12);
  margin-bottom: var(--space-12);
}

.footer__brand p {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  margin-top: var(--space-4);
  max-width: 280px;
  line-height: 1.6;
}

.footer__brand img {
  height: 32px;
  width: auto;
}

.footer__heading {
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--color-text-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-4);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer__link {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  transition: all var(--transition);
}

.footer__link:hover {
  color: var(--color-accent);
  transform: translateX(4px);
}

.footer__socials {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-4);
}

.footer__social {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: all var(--transition-spring);
}

.footer__social:hover {
  border-color: var(--color-accent);
  background: var(--color-accent);
  box-shadow: var(--shadow-accent);
  transform: translateY(-4px) rotate(-5deg);
}

.footer__social svg {
  width: 16px;
  height: 16px;
  fill: var(--color-text-muted);
  transition: fill var(--transition);
}

.footer__social:hover svg {
  fill: white;
}

.footer__bottom {
  border-top: 1px solid var(--color-border);
  padding-top: var(--space-6);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__copy {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}


/* ---------- Page Header ---------- */
.page-header {
  padding-top: calc(var(--nav-height) + var(--space-16));
  padding-bottom: var(--space-12);
  background: linear-gradient(135deg, #ffffff 0%, #f0f4ff 40%, #e8f0fe 100%);
  border-bottom: 1px solid var(--color-border-light);
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.page-header__title {
  font-size: var(--font-size-4xl);
  margin-bottom: var(--space-4);
}

.page-header__subtitle {
  font-size: var(--font-size-lg);
  color: var(--color-text-secondary);
  max-width: 600px;
}


/* ---------- Services Detail ---------- */
.service-block {
  padding: var(--space-16) 0;
  border-bottom: 1px solid var(--color-border-light);
}

.service-block:last-child {
  border-bottom: none;
}

.service-block__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: start;
}

.service-block__icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-accent-light), rgba(37, 99, 235, 0.12));
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-5);
  transition: all var(--transition-spring);
}

.service-block:hover .service-block__icon {
  background: linear-gradient(135deg, var(--color-accent), #3B82F6);
  box-shadow: var(--shadow-accent);
  transform: scale(1.1) rotate(-3deg);
}

.service-block__icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--color-accent);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke var(--transition);
}

.service-block:hover .service-block__icon svg {
  stroke: white;
}

.service-block__title {
  font-size: var(--font-size-2xl);
  font-weight: 800;
  margin-bottom: var(--space-4);
}

.service-block__text {
  font-size: var(--font-size-base);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-6);
}

.service-block__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.service-block__list-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--font-size-base);
  color: var(--color-text-secondary);
  padding: 6px 0;
  transition: all var(--transition);
}

.service-block__list-item:hover {
  color: var(--color-text-primary);
  transform: translateX(4px);
}

.service-block__list-item svg {
  width: 20px;
  height: 20px;
  stroke: var(--color-accent);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
  margin-top: 2px;
}

.service-block__visual {
  position: relative;
  perspective: 1200px;
}

.service-block__media-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--color-white);
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.1), 0 8px 16px rgba(37, 99, 235, 0.06);
  aspect-ratio: 16/11;
  transition: all var(--transition-slow);
  transform: perspective(1000px) rotateY(-3deg) rotateX(2deg);
}

.service-block__visual:hover .service-block__media-card {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg) translateY(-8px) scale(1.02);
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.16), 0 12px 24px rgba(37, 99, 235, 0.14);
  border-color: rgba(37, 99, 235, 0.3);
}

.service-block__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-slow);
}

.service-block__visual:hover .service-block__image {
  transform: scale(1.05);
}

.service-block__overlay-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 8px 14px;
  background: rgba(15, 23, 42, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: white;
  border-radius: 100px;
  font-size: 11.5px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 2;
  letter-spacing: 0.02em;
}

.service-block__overlay-badge .badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22C55E;
  box-shadow: 0 0 10px #22C55E;
}

.service-block__floating-metric {
  position: absolute;
  bottom: 14px;
  right: 14px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.9);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  z-index: 2;
}

.service-block__floating-metric .metric-val {
  font-size: 1.15rem;
  font-weight: 800;
  color: #1E40AF;
  line-height: 1.2;
}

.service-block__floating-metric .metric-label {
  font-size: 10px;
  font-weight: 700;
  color: #64748B;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}


/* ---------- About ---------- */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
}

.about-story__text {
  font-size: var(--font-size-lg);
  color: var(--color-text-secondary);
  line-height: 1.8;
}

.about-story__text p + p {
  margin-top: var(--space-6);
}

.about-story__image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  aspect-ratio: 16/11;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.1), 0 8px 16px rgba(37, 99, 235, 0.06);
  border: 1px solid rgba(226, 232, 240, 0.9);
  transition: all var(--transition-slow);
  transform: perspective(800px) rotateY(-4deg);
}

.about-story__image:hover {
  transform: perspective(800px) rotateY(0deg) scale(1.02);
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.16), 0 12px 24px rgba(37, 99, 235, 0.14);
}

.about-story__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  perspective: 1200px;
}

.value-card {
  text-align: center;
  padding: var(--space-8) var(--space-6);
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border-light);
  transition: all var(--transition-slow);
  background: var(--color-white);
  transform: perspective(1000px) rotateX(0);
}

.value-card:hover {
  border-color: rgba(37, 99, 235, 0.15);
  box-shadow: var(--shadow-3d);
  transform: perspective(1000px) rotateX(-3deg) translateY(-6px);
}

.value-card__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-accent-light), rgba(37, 99, 235, 0.12));
  border-radius: 50%;
  margin: 0 auto var(--space-5);
  transition: all var(--transition-spring);
}

.value-card:hover .value-card__icon {
  background: linear-gradient(135deg, var(--color-accent), #3B82F6);
  box-shadow: var(--shadow-accent);
  transform: scale(1.15) rotate(-5deg);
}

.value-card__icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--color-accent);
  fill: none;
  stroke-width: 2;
  transition: stroke var(--transition);
}

.value-card:hover .value-card__icon svg {
  stroke: white;
}

.value-card__title {
  font-size: var(--font-size-base);
  font-weight: 700;
  margin-bottom: var(--space-2);
}

.value-card__text {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
}


/* ============================================
   PORTFOLIO — 3D CARDS & SHOWCASE
   ============================================ */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  perspective: 1200px;
}

.portfolio-item {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--color-border);
  transition: all var(--transition-slow);
  background: var(--color-white);
  transform: perspective(1000px) rotateX(0) rotateY(0);
  display: flex;
  flex-direction: column;
}

.portfolio-item:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08), 0 8px 16px rgba(37, 99, 235, 0.12);
  transform: perspective(1000px) rotateX(-2deg) rotateY(2deg) translateY(-8px) scale(1.02);
  border-color: rgba(37, 99, 235, 0.25);
}

.portfolio-item__image-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #f1f5f9;
}

.portfolio-item__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-slow);
}

.portfolio-item:hover .portfolio-item__image {
  transform: scale(1.06);
}

.portfolio-item__metric {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  color: #1E293B;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.9);
  z-index: 2;
  letter-spacing: 0.02em;
}

.portfolio-item__metric--highlight {
  background: linear-gradient(135deg, #1E40AF 0%, #2563EB 100%);
  color: white;
  border: none;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.4);
}

.portfolio-item__info {
  padding: var(--space-5) var(--space-5) var(--space-6);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.portfolio-item__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-2);
}

.portfolio-item__category {
  font-size: var(--font-size-xs);
  font-weight: 700;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.portfolio-item__client {
  font-size: 11px;
  color: #64748B;
  font-weight: 500;
}

.portfolio-item__title {
  font-size: 1.05rem;
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 6px;
  line-height: 1.35;
}

.portfolio-item__desc {
  font-size: var(--font-size-sm);
  color: #64748B;
  line-height: 1.55;
  margin-top: auto;
}

.portfolio-note {
  text-align: center;
  padding: var(--space-10) var(--space-6);
  background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 40%, #F0F9FF 100%);
  border-radius: var(--radius-xl);
  border: 1px dashed rgba(37, 99, 235, 0.3);
  margin-top: var(--space-12);
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.06);
}

.portfolio-note p {
  font-size: 1.1rem;
  color: #1E293B;
  font-weight: 600;
  line-height: 1.6;
  font-style: italic;
}


/* ============================================
   CONTACT — 3D FORM
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--space-12);
  align-items: start;
}

.contact-form {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-10);
  box-shadow: var(--shadow-card);
  transition: all var(--transition-slow);
  transform: perspective(1000px) rotateY(1deg);
}

.contact-form:hover,
.contact-form:focus-within {
  box-shadow: var(--shadow-3d);
  transform: perspective(1000px) rotateY(0deg) translateY(-4px);
}

.form-group {
  margin-bottom: var(--space-5);
}

.form-label {
  display: block;
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: var(--space-2);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: var(--font-size-base);
  color: var(--color-text-primary);
  background: var(--color-white);
  transition: all var(--transition);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 4px var(--color-accent-light), var(--shadow-accent);
  transform: translateY(-1px);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--color-text-muted);
}

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

.form-success-card {
  text-align: center;
  padding: var(--space-4) 0;
  animation: fadeInScale 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.96) translateY(8px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.contact-card {
  padding: var(--space-6);
  background: var(--color-white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border-light);
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}

.contact-card:hover {
  box-shadow: var(--shadow-3d);
  transform: translateY(-4px) translateX(-2px);
  border-color: rgba(37, 99, 235, 0.1);
}

.contact-card__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-accent-light);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-3);
  transition: all var(--transition-spring);
}

.contact-card:hover .contact-card__icon {
  transform: scale(1.1) rotate(-3deg);
}

.contact-card__icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--color-accent);
  fill: none;
  stroke-width: 2;
}

.contact-card__icon--whatsapp {
  background: rgba(37, 211, 102, 0.1);
}

.contact-card__icon--whatsapp svg {
  fill: #25D366;
  stroke: none;
}

.contact-card__title {
  font-size: var(--font-size-sm);
  font-weight: 700;
  margin-bottom: var(--space-1);
}

.contact-card__value {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.contact-card__value a {
  color: var(--color-accent);
  font-weight: 600;
}

.contact-card__value a:hover {
  text-decoration: underline;
}


/* ============================================
   SCROLL REVEAL ANIMATIONS — 3D
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px) perspective(1000px) rotateX(5deg);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0) perspective(1000px) rotateX(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) {
  h1, .hero__title {
    font-size: var(--font-size-4xl);
  }

  h2 {
    font-size: var(--font-size-3xl);
  }

  .hero__inner {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }

  .hero__scene {
    min-height: 380px;
  }

  .hero {
    min-height: auto;
    padding-bottom: var(--space-12);
  }

  .hero__float--facebook,
  .hero__stat--followers {
    display: none;
  }

  .trust__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-block__inner {
    grid-template-columns: 1fr;
  }

  .service-block__visual {
    display: block;
    width: 100%;
    margin-top: var(--space-6);
  }

  .about-story {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__inner {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-8);
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --space-20: 3.5rem;
    --space-24: 4rem;
  }

  h1, .hero__title {
    font-size: var(--font-size-3xl);
  }

  h2 {
    font-size: var(--font-size-2xl);
  }

  .container {
    padding: 0 var(--space-5);
  }

  /* Mobile Nav */
  .nav__links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: flex-start;
    padding: calc(var(--nav-height) + var(--space-8)) var(--space-8) var(--space-8);
    gap: var(--space-5);
    box-shadow: -8px 0 40px rgba(0,0,0,0.1);
    transition: right var(--transition-slow);
  }

  .nav__links.open {
    right: 0;
  }

  .nav__toggle {
    display: flex;
  }

  .nav__cta {
    margin-left: 0;
    margin-top: var(--space-4);
  }

  .nav__overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-slow);
    z-index: 999;
  }

  .nav__overlay.open {
    opacity: 1;
    visibility: visible;
  }

  .hero__scene {
    min-height: 300px;
  }

  .hero__float {
    display: none;
  }

  .hero__stat {
    display: none;
  }

  .trust__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .services-grid--2col {
    grid-template-columns: 1fr;
  }

  .reasons-grid {
    grid-template-columns: 1fr;
  }

  .cta-banner {
    padding: var(--space-10) var(--space-6);
    border-radius: var(--radius-xl);
  }

  .cta-banner__title {
    font-size: var(--font-size-2xl);
  }

  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .values-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .footer__bottom {
    flex-direction: column;
    gap: var(--space-4);
    text-align: center;
  }

  .page-header {
    padding-top: calc(var(--nav-height) + var(--space-10));
    padding-bottom: var(--space-8);
  }

  .page-header__title {
    font-size: var(--font-size-3xl);
  }

  /* Disable 3D transforms on mobile for performance */
  .card:hover,
  .portfolio-item:hover,
  .value-card:hover,
  .contact-form:hover,
  .contact-form:focus-within {
    transform: translateY(-4px);
  }

  .service-block__visual {
    transform: none;
  }

  .about-story__image {
    transform: none;
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: var(--font-size-2xl);
  }

  .trust__grid {
    grid-template-columns: 1fr;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .btn-group {
    flex-direction: column;
    width: 100%;
  }

  .btn-group .btn {
    width: 100%;
  }
}


/* ============================================
   FAQ ACCORDION SECTION
   ============================================ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.faq-item {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}

.faq-item.open {
  border-color: rgba(37, 99, 235, 0.35);
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.08);
}

.faq-item__header {
  padding: var(--space-5) var(--space-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
  background: var(--color-white);
}

.faq-item__header:hover {
  background: #F8FAFC;
}

.faq-item__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0F172A;
  margin: 0;
  line-height: 1.4;
}

.faq-item__icon {
  width: 22px;
  height: 22px;
  stroke: var(--color-accent);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: var(--space-4);
}

.faq-item.open .faq-item__icon {
  transform: rotate(180deg);
}

.faq-item__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item__content {
  padding: 0 var(--space-6) var(--space-6);
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.65;
  border-top: 1px dashed var(--color-border);
  padding-top: var(--space-4);
}


/* ============================================
   ACCESSIBILITY: PREFERS REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto !important;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
  }

  .hero__inner,
  .hero__scene,
  .service-block__media-card,
  .portfolio-item,
  .card {
    transform: none !important;
  }
}
