/* ===================================
   NEXTIFY DIGITAL SOLUTIONS
   Design System & Global Styles
   =================================== */

/* ---------- CSS CUSTOM PROPERTIES ---------- */
:root {
  /* Primary Palette */
  --brand-primary: #FF6B35;
  --brand-secondary: #004E89;
  --brand-accent: #FFD23F;
  --brand-success: #06D6A0;

  /* Neutral Palette */
  --dark-bg: #0A0E27;
  --dark-secondary: #1A1F3A;
  --text-primary: #FFFFFF;
  --text-secondary: #B8C5D6;
  --text-muted: #7A8BA3;

  /* Gradients */
  --gradient-hero: linear-gradient(135deg, #004E89 0%, #0A0E27 100%);
  --gradient-cta: linear-gradient(135deg, #FF6B35 0%, #FF8C61 100%);
  --gradient-card: linear-gradient(135deg, rgba(255,107,53,0.08) 0%, rgba(0,78,137,0.08) 100%);
  --gradient-overlay: linear-gradient(180deg, rgba(10,14,39,0.9) 0%, rgba(10,14,39,0.7) 100%);
  --gradient-text: linear-gradient(135deg, #FF6B35 0%, #FFD23F 100%);

  /* Status */
  --info: #3B82F6;
  --warning: #F59E0B;
  --error: #EF4444;

  /* Typography */
  --font-primary: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-secondary: 'Inter', sans-serif;
  --font-display: 'Space Grotesk', sans-serif;

  /* Font Sizes */
  --text-hero: 64px;
  --text-h1: 56px;
  --text-h2: 42px;
  --text-h3: 32px;
  --text-h4: 24px;
  --text-body-lg: 20px;
  --text-body: 16px;
  --text-sm: 14px;
  --text-xs: 12px;

  /* Font Weights */
  --weight-light: 300;
  --weight-regular: 400;
  --weight-medium: 500;
  --weight-semibold: 600;
  --weight-bold: 700;
  --weight-extrabold: 800;

  /* Spacing */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;
  --space-10: 128px;

  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-2xl: 32px;
  --radius-pill: 9999px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.25);
  --shadow-glow-orange: 0 0 30px rgba(255, 107, 53, 0.4);
  --shadow-glow-blue: 0 0 30px rgba(0, 78, 137, 0.4);
}

/* ---------- 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-secondary);
  font-size: var(--text-body);
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--dark-bg);
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

ul, ol {
  list-style: none;
}

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

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

/* ---------- UTILITY CLASSES ---------- */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 107, 53, 0.1);
  border: 1px solid rgba(255, 107, 53, 0.3);
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  font-size: var(--text-sm);
  color: var(--brand-primary);
  font-weight: var(--weight-medium);
  margin-bottom: var(--space-5);
}

.section-title {
  font-family: var(--font-display);
  font-size: var(--text-h2);
  font-weight: var(--weight-extrabold);
  color: var(--text-primary);
  margin-bottom: var(--space-4);
  line-height: 1.2;
}

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

.section-header {
  text-align: center;
  margin-bottom: var(--space-8);
}

.section-header .section-subtitle {
  margin: 0 auto;
}

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

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

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: var(--text-body);
  font-weight: var(--weight-semibold);
  padding: 16px 36px;
  border-radius: var(--radius-pill);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  white-space: nowrap;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 400px;
  height: 400px;
}

.btn-primary {
  background: var(--gradient-cta);
  color: var(--text-primary);
  border: none;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow-orange);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
  border-color: var(--brand-primary);
  background: rgba(255, 107, 53, 0.1);
  transform: translateY(-3px);
}

.btn-white {
  background: var(--text-primary);
  color: var(--dark-bg);
  border: none;
}

.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(255, 255, 255, 0.2);
}

.btn-whatsapp {
  background: #25D366;
  color: white;
  border: none;
}

.btn-whatsapp:hover {
  background: #20bd5a;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
}

.btn-lg {
  padding: 18px 40px;
  font-size: 18px;
}

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

.btn-block {
  width: 100%;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brand-primary);
  font-weight: var(--weight-semibold);
  font-size: var(--text-body);
  transition: all 0.3s ease;
}

.text-link:hover {
  gap: 14px;
}

.text-link i {
  transition: transform 0.3s ease;
}

.text-link:hover i {
  transform: translateX(4px);
}

/* ---------- NAVBAR ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  z-index: 1000;
  transition: all 0.4s ease;
  background: transparent;
}

.navbar.scrolled {
  background: rgba(10, 14, 39, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1001;
}

.nav-logo .logo-icon {
  width: 40px;
  height: 40px;
  background: var(--gradient-cta);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: white;
  font-weight: var(--weight-bold);
}

.nav-logo .logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.nav-logo .logo-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: var(--weight-extrabold);
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-logo .logo-tagline {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: var(--weight-medium);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-menu a {
  font-size: var(--text-body);
  font-weight: var(--weight-medium);
  color: var(--text-secondary);
  position: relative;
  padding: 4px 0;
  transition: color 0.3s ease;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--brand-primary);
  transition: width 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--text-primary);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

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

.nav-cta .btn {
  padding: 12px 28px;
  font-size: var(--text-sm);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1001;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

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

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

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

/* ---------- HERO SECTION ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 120px 20px 60px;
  background: var(--gradient-hero);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(0, 78, 137, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 50% 80%, rgba(255, 210, 63, 0.06) 0%, transparent 50%);
  z-index: 0;
}

.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.hero-grid-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 107, 53, 0.1);
  border: 1px solid rgba(255, 107, 53, 0.25);
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  font-size: var(--text-sm);
  color: var(--text-secondary);
  margin-bottom: var(--space-7);
  animation: fadeInDown 0.8s ease-out;
}

.trust-badge .separator {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--brand-primary);
}

.hero-title {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: var(--weight-extrabold);
  line-height: 1.15;
  margin-bottom: var(--space-5);
  animation: fadeInUp 0.8s ease-out 0.1s both;
}

.hero-subtitle {
  font-size: var(--text-h4);
  color: rgba(255, 255, 255, 0.8);
  max-width: 700px;
  margin: 0 auto var(--space-7);
  line-height: 1.6;
  font-weight: var(--weight-regular);
  animation: fadeInUp 0.8s ease-out 0.3s both;
}

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.5s both;
}

.scroll-indicator {
  position: absolute;
  bottom: 140px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: var(--text-xs);
  animation: bounce 2s infinite;
}

.scroll-indicator .mouse {
  width: 24px;
  height: 38px;
  border: 2px solid var(--text-muted);
  border-radius: 12px;
  position: relative;
}

.scroll-indicator .mouse::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 8px;
  background: var(--brand-primary);
  border-radius: 2px;
  animation: scrollDown 1.5s infinite;
}

/* Stats Bar */
.stats-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  background: rgba(26, 31, 58, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 2px solid var(--brand-primary);
}

.stats-bar .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  text-align: center;
  padding: 32px 20px;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.stat-number {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: var(--weight-extrabold);
  color: var(--brand-primary);
  display: block;
}

.stat-number .suffix {
  font-size: 24px;
}

.stat-label {
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-top: 4px;
}

/* ---------- SERVICES SNAPSHOT ---------- */
.services-snapshot {
  background: var(--dark-secondary);
  padding: 120px 0;
  position: relative;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: var(--space-7);
}

.service-card {
  background: var(--gradient-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--brand-primary);
  box-shadow: 0 20px 40px rgba(255, 107, 53, 0.15);
}

.service-card .card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: var(--space-5);
  transition: transform 0.3s ease;
}

.service-card:hover .card-icon {
  transform: scale(1.1) rotate(5deg);
}

.service-card h4 {
  font-family: var(--font-primary);
  font-size: var(--text-body);
  font-weight: var(--weight-semibold);
  color: var(--text-primary);
  margin-bottom: var(--space-3);
}

.service-card p {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: var(--space-4);
}

.service-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--text-sm);
  color: var(--brand-primary);
  font-weight: var(--weight-medium);
  transition: gap 0.3s ease;
}

.service-card:hover .card-link {
  gap: 10px;
}

/* ---------- PROCESS SECTION ---------- */
.process-section {
  background: var(--dark-bg);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.process-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 30% 70%, rgba(255, 107, 53, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 70% 30%, rgba(0, 78, 137, 0.05) 0%, transparent 50%);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 50px;
  left: 15%;
  right: 15%;
  height: 2px;
  background: linear-gradient(90deg, var(--brand-primary), var(--brand-secondary), var(--brand-accent), var(--brand-success));
  z-index: 0;
}

.process-step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 80px 24px 40px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}

.process-step:hover {
  border-color: rgba(255, 107, 53, 0.3);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-4px);
}

.step-number {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: var(--weight-extrabold);
  color: white;
  box-shadow: 0 8px 24px rgba(255, 107, 53, 0.4);
}

.step-icon {
  font-size: 48px;
  margin-bottom: var(--space-5);
  display: block;
}

.process-step h4 {
  font-family: var(--font-primary);
  font-size: var(--text-h4);
  font-weight: var(--weight-bold);
  color: var(--text-primary);
  margin-bottom: var(--space-3);
}

.process-step p {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.7;
}

/* ---------- PROOF / RESULTS SECTION ---------- */
.proof-section {
  background: var(--dark-secondary);
  padding: 120px 0;
  position: relative;
}

.proof-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.result-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.result-card {
  background: var(--gradient-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 4px solid var(--brand-primary);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.3s ease;
}

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

.result-card .result-icon {
  font-size: 24px;
  margin-bottom: var(--space-3);
}

.result-card .result-type {
  font-size: var(--text-sm);
  color: var(--text-muted);
  font-weight: var(--weight-medium);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: var(--space-2);
}

.result-card .result-metric {
  font-family: var(--font-display);
  font-size: var(--text-h3);
  font-weight: var(--weight-extrabold);
  color: var(--brand-primary);
  margin-bottom: var(--space-4);
}

.result-card .result-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.result-card .result-details span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--text-sm);
  color: var(--text-secondary);
}

.result-card .result-details span i {
  color: var(--brand-success);
  font-size: 12px;
}

/* Client Logos */
.client-logos-section {
  padding-top: var(--space-6);
}

.client-logos-section h3 {
  font-family: var(--font-primary);
  font-size: var(--text-body-lg);
  font-weight: var(--weight-semibold);
  margin-bottom: var(--space-5);
  color: var(--text-secondary);
}

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

.logo-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.logo-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 107, 53, 0.3);
  transform: scale(1.05);
}

.logo-item span {
  font-size: var(--text-sm);
  color: var(--text-muted);
  font-weight: var(--weight-medium);
  opacity: 0.6;
  transition: opacity 0.3s;
}

.logo-item:hover span {
  opacity: 1;
  color: var(--text-primary);
}

/* Proof Banner */
.proof-banner {
  margin-top: var(--space-8);
  background: var(--gradient-cta);
  border-radius: var(--radius-lg);
  padding: 24px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.proof-banner span {
  font-size: var(--text-body);
  font-weight: var(--weight-semibold);
  color: white;
  display: flex;
  align-items: center;
  gap: 8px;
}

.proof-banner .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
}

/* ---------- WHY CHOOSE US ---------- */
.why-choose {
  background: var(--dark-bg);
  padding: 120px 0;
  position: relative;
}

.why-choose::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 80px 80px;
}

.feature-main {
  background: var(--gradient-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  padding: 48px;
  margin-bottom: var(--space-6);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.feature-main::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-cta);
}

.feature-main h3 {
  font-family: var(--font-display);
  font-size: var(--text-h3);
  font-weight: var(--weight-bold);
  color: var(--text-primary);
  margin-bottom: var(--space-4);
}

.feature-main p {
  font-size: var(--text-body-lg);
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.feature-main .feature-icon-lg {
  font-size: 64px;
  margin-bottom: var(--space-5);
}

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

.feature-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.feature-card:hover {
  border-color: var(--brand-primary);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(255, 107, 53, 0.1);
}

.feature-card .feature-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto var(--space-5);
}

.feature-card h4 {
  font-family: var(--font-primary);
  font-size: var(--text-body);
  font-weight: var(--weight-semibold);
  color: var(--text-primary);
  margin-bottom: var(--space-3);
}

.feature-card p {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.7;
}

.differentiator {
  margin-top: var(--space-8);
  text-align: center;
}

.differentiator h4 {
  font-size: var(--text-body-lg);
  color: var(--text-secondary);
  margin-bottom: var(--space-5);
}

.differentiator-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 32px;
}

.differentiator-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: var(--text-body);
  color: var(--text-primary);
}

.differentiator-list li i {
  color: var(--brand-success);
}

/* ---------- ABOUT PREVIEW ---------- */
.about-preview {
  background: var(--dark-secondary);
  padding: 120px 0;
}

.about-preview-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.about-image-wrapper .about-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-xl);
}

.about-image-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, transparent 60%, rgba(10, 14, 39, 0.5));
}

.about-content .section-badge {
  margin-bottom: var(--space-4);
}

.about-content h2 {
  font-family: var(--font-display);
  font-size: var(--text-h2);
  font-weight: var(--weight-extrabold);
  margin-bottom: var(--space-5);
  line-height: 1.2;
}

.about-content p {
  font-size: var(--text-body);
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-4);
}

.nextify-meaning {
  background: rgba(255, 107, 53, 0.08);
  border-left: 4px solid var(--brand-primary);
  border-radius: var(--radius-md);
  padding: 24px;
  margin: var(--space-6) 0;
}

.nextify-meaning h4 {
  font-family: var(--font-primary);
  font-size: var(--text-body-lg);
  font-weight: var(--weight-semibold);
  color: var(--brand-primary);
  margin-bottom: var(--space-3);
}

.nextify-meaning p {
  font-size: var(--text-body);
  color: var(--text-secondary);
  margin-bottom: var(--space-2);
  font-style: italic;
}

.nextify-meaning .meaning-highlight {
  font-style: normal;
  font-weight: var(--weight-semibold);
  color: var(--text-primary);
  font-size: var(--text-body-lg);
  margin-top: var(--space-3);
}

/* ---------- MISSION & VISION ---------- */
.mission-vision {
  background: var(--dark-bg);
  padding: 100px 0;
  position: relative;
}

.mission-vision::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.01) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.01) 1px, transparent 1px);
  background-size: 40px 40px;
}

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  position: relative;
}

.mv-card {
  background: var(--gradient-card);
  border: 2px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  padding: 48px;
  transition: all 0.3s ease;
}

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

.mv-card.mission-card {
  border-top: 4px solid var(--brand-primary);
}

.mv-card.vision-card {
  border-top: 4px solid var(--brand-secondary);
}

.mv-card .mv-icon {
  font-size: 56px;
  margin-bottom: var(--space-5);
}

.mv-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-h3);
  font-weight: var(--weight-bold);
  margin-bottom: var(--space-3);
}

.mv-card .mv-subtitle {
  font-size: var(--text-body-lg);
  color: var(--text-secondary);
  margin-bottom: var(--space-5);
}

.mv-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: var(--text-body);
  color: var(--text-secondary);
  margin-bottom: var(--space-3);
  line-height: 1.6;
}

.mv-card ul li i {
  color: var(--brand-success);
  margin-top: 4px;
  flex-shrink: 0;
}

.mv-card .mv-bottom-text {
  margin-top: var(--space-5);
  padding-top: var(--space-5);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-style: italic;
  color: var(--text-muted);
  font-size: var(--text-body);
}

/* ---------- TEAM SECTION ---------- */
.team-section {
  background: var(--dark-secondary);
  padding: 120px 0;
}

.team-intro {
  max-width: 700px;
  margin: 0 auto var(--space-8);
  text-align: center;
  font-size: var(--text-body-lg);
  color: var(--text-secondary);
  line-height: 1.8;
}

.team-feature-box {
  background: var(--gradient-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  padding: 64px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.team-feature-box .team-visual {
  font-size: 80px;
  margin-bottom: var(--space-5);
}

.team-feature-box h3 {
  font-family: var(--font-display);
  font-size: var(--text-h3);
  font-weight: var(--weight-bold);
  margin-bottom: var(--space-6);
}

.team-roles {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: var(--space-6);
}

.role-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  font-size: var(--text-sm);
  color: var(--text-secondary);
  transition: all 0.3s ease;
}

.role-badge:hover {
  background: rgba(255, 107, 53, 0.1);
  border-color: rgba(255, 107, 53, 0.3);
  color: var(--text-primary);
}

.role-badge i {
  color: var(--brand-primary);
}

.team-feature-box .team-quote {
  font-size: var(--text-body);
  color: var(--text-muted);
  font-style: italic;
  max-width: 500px;
  margin: 0 auto;
}

/* ---------- TESTIMONIALS ---------- */
.testimonials-section {
  background: var(--dark-bg);
  padding: 120px 0;
  position: relative;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 78, 137, 0.08) 0%, transparent 70%);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 4px solid var(--brand-primary);
  border-radius: var(--radius-lg);
  padding: 40px;
  transition: all 0.3s ease;
}

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

.testimonial-card .quote-icon {
  font-size: 32px;
  color: rgba(255, 107, 53, 0.3);
  margin-bottom: var(--space-4);
}

.testimonial-card .stars {
  color: var(--brand-accent);
  font-size: 16px;
  margin-bottom: var(--space-4);
  letter-spacing: 2px;
}

.testimonial-card .testimonial-text {
  font-size: var(--text-body);
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-5);
  font-style: italic;
}

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

.testimonial-author .author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gradient-cta);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: var(--weight-bold);
  color: white;
}

.testimonial-author .author-info .author-name {
  font-weight: var(--weight-semibold);
  font-size: var(--text-body);
  color: var(--text-primary);
}

.testimonial-author .author-info .author-role {
  font-size: var(--text-sm);
  color: var(--text-muted);
}

/* ---------- CONTACT / LEAD FORM ---------- */
.contact-form-section {
  background: var(--dark-bg);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.contact-form-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.08) 0%, transparent 70%);
}

.contact-form-section::after {
  content: '';
  position: absolute;
  bottom: -200px;
  left: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 78, 137, 0.08) 0%, transparent 70%);
}

.contact-form-wrapper {
  max-width: 620px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.contact-form-card {
  background: rgba(26, 31, 58, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-xl);
}

.contact-form-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-h3);
  font-weight: var(--weight-bold);
  margin-bottom: var(--space-3);
}

.contact-form-card .form-subtitle {
  color: var(--text-muted);
  margin-bottom: var(--space-6);
}

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

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

.form-group .input-wrapper {
  position: relative;
}

.form-group .input-wrapper i {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 16px;
  z-index: 1;
  transition: color 0.3s ease;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  height: 56px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 16px 20px 16px 50px;
  color: var(--text-primary);
  font-size: var(--text-body);
  transition: all 0.3s ease;
}

.form-group textarea {
  height: auto;
  min-height: 120px;
  resize: vertical;
  padding-left: 20px;
}

.form-group select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%237A8BA3' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
}

.form-group select option {
  background: var(--dark-secondary);
  color: var(--text-primary);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.15);
  background: rgba(255, 255, 255, 0.08);
}

.form-group input:focus + i,
.form-group input:focus ~ i {
  color: var(--brand-primary);
}

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

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
  border-color: var(--error);
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15);
}

.error-message {
  font-size: var(--text-xs);
  color: var(--error);
  margin-top: var(--space-1);
  display: block;
  min-height: 0;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: var(--space-6);
  cursor: pointer;
}

.form-checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: var(--brand-primary);
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 2px;
}

.form-checkbox label {
  font-size: var(--text-sm);
  color: var(--text-muted);
  cursor: pointer;
}

.form-checkbox label a {
  color: var(--brand-primary);
  text-decoration: underline;
}

.btn-submit {
  width: 100%;
  padding: 18px;
  font-size: 18px;
  font-weight: var(--weight-bold);
}

.btn-submit .btn-loader {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-submit .btn-loader .spinner {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

/* Alternative Contact */
.alt-contact {
  margin-top: var(--space-7);
  text-align: center;
}

.alt-contact h4 {
  font-size: var(--text-body);
  color: var(--text-muted);
  margin-bottom: var(--space-4);
}

.alt-contact-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.alt-contact-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--text-sm);
  color: var(--text-secondary);
  transition: color 0.3s;
}

.alt-contact-links a:hover {
  color: var(--brand-primary);
}

.alt-contact-links a i {
  color: var(--brand-primary);
  font-size: 18px;
}

/* ---------- FINAL CTA ---------- */
.final-cta {
  background: var(--gradient-cta);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(255,255,255,0.05) 0%, transparent 50%);
}

.final-cta .container {
  position: relative;
  z-index: 1;
}

.final-cta h2 {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: var(--weight-extrabold);
  color: white;
  margin-bottom: var(--space-4);
}

.final-cta p {
  font-size: var(--text-body-lg);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-6);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.final-cta .trust-text {
  margin-top: var(--space-4);
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* ---------- FOOTER ---------- */
.footer {
  background: #060920;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 48px;
  padding-bottom: var(--space-8);
}

.footer-col h4 {
  font-family: var(--font-primary);
  font-size: var(--text-body);
  font-weight: var(--weight-semibold);
  color: var(--text-primary);
  margin-bottom: var(--space-5);
  position: relative;
  padding-bottom: var(--space-3);
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--brand-primary);
}

.footer-col .footer-about p {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: var(--space-4);
}

.footer-col ul li {
  margin-bottom: var(--space-3);
}

.footer-col ul li a {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-col ul li a:hover {
  color: var(--brand-primary);
  padding-left: 6px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: var(--space-4);
}

.footer-contact-item i {
  color: var(--brand-primary);
  font-size: 16px;
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-contact-item span,
.footer-contact-item a {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

.footer-contact-item a:hover {
  color: var(--brand-primary);
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: var(--space-5);
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 16px;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: var(--brand-primary);
  border-color: var(--brand-primary);
  color: white;
  transform: translateY(-3px);
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.3);
  padding: 24px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom .heart {
  color: var(--brand-primary);
}

/* ---------- WHATSAPP FLOATING BUTTON ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 28px;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all 0.3s ease;
  animation: pulse-green 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.6);
}

/* ---------- PAGE HERO (for inner pages) ---------- */
.page-hero {
  background: var(--gradient-hero);
  padding: 160px 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 30% 50%, rgba(255, 107, 53, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 70% 50%, rgba(0, 78, 137, 0.08) 0%, transparent 50%);
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: var(--text-h1);
  font-weight: var(--weight-extrabold);
  margin-bottom: var(--space-5);
}

.page-hero .page-subtitle {
  font-size: var(--text-h4);
  color: rgba(255, 255, 255, 0.8);
  max-width: 700px;
  margin: 0 auto var(--space-4);
}

.page-hero .page-desc {
  font-size: var(--text-body-lg);
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: var(--space-6);
  font-size: var(--text-sm);
  color: var(--text-muted);
}

.breadcrumb a {
  color: var(--text-muted);
  transition: color 0.3s;
}

.breadcrumb a:hover {
  color: var(--brand-primary);
}

.breadcrumb .separator {
  color: rgba(255,255,255,0.3);
}

/* ---------- SERVICES PAGE: Detailed sections ---------- */
.service-detail {
  padding: 100px 0;
  position: relative;
}

.service-detail:nth-child(even) {
  background: var(--dark-secondary);
}

.service-detail:nth-child(odd) {
  background: var(--dark-bg);
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
}

.service-detail:nth-child(even) .service-detail-grid {
  direction: rtl;
}

.service-detail:nth-child(even) .service-detail-grid > * {
  direction: ltr;
}

.service-visual {
  position: relative;
}

.service-visual .visual-card {
  background: var(--gradient-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  padding: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

.service-visual .visual-icon {
  font-size: 120px;
  opacity: 0.9;
}

.service-detail-content .service-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 107, 53, 0.1);
  border: 1px solid rgba(255, 107, 53, 0.25);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-size: var(--text-xs);
  color: var(--brand-primary);
  font-weight: var(--weight-medium);
  margin-bottom: var(--space-4);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.service-detail-content h2 {
  font-family: var(--font-display);
  font-size: var(--text-h2);
  font-weight: var(--weight-extrabold);
  margin-bottom: var(--space-3);
  line-height: 1.2;
}

.service-detail-content .service-tagline {
  font-size: var(--text-body-lg);
  color: var(--text-secondary);
  margin-bottom: var(--space-5);
}

.service-detail-content .service-desc {
  font-size: var(--text-body);
  color: var(--text-muted);
  margin-bottom: var(--space-5);
  line-height: 1.8;
}

.service-checklist {
  margin-bottom: var(--space-5);
}

.service-checklist h4 {
  font-size: var(--text-body);
  font-weight: var(--weight-semibold);
  color: var(--text-primary);
  margin-bottom: var(--space-4);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.service-checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: var(--text-body);
  color: var(--text-secondary);
  margin-bottom: var(--space-3);
  line-height: 1.6;
}

.service-checklist li i {
  color: var(--brand-success);
  font-size: 14px;
  flex-shrink: 0;
}

.best-for-badge {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: var(--space-5);
}

.best-for-badge .badge-label {
  font-size: var(--text-sm);
  color: var(--text-muted);
  font-weight: var(--weight-medium);
  margin-right: 4px;
  display: flex;
  align-items: center;
}

.best-for-badge span:not(.badge-label) {
  background: rgba(255, 107, 53, 0.1);
  border: 1px solid rgba(255, 107, 53, 0.2);
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  font-size: var(--text-xs);
  color: var(--brand-primary);
}

/* ---------- CONTACT PAGE SECTIONS ---------- */
.contact-methods {
  padding: 80px 0;
  background: var(--dark-secondary);
}

.contact-methods-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.contact-method-card {
  background: var(--gradient-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  transition: all 0.3s ease;
}

.contact-method-card:hover {
  border-color: var(--brand-primary);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.contact-method-card .method-icon {
  font-size: 48px;
  color: var(--brand-primary);
  margin-bottom: var(--space-5);
}

.contact-method-card h3 {
  font-family: var(--font-primary);
  font-size: var(--text-h4);
  font-weight: var(--weight-semibold);
  margin-bottom: var(--space-4);
}

.contact-method-card p {
  font-size: var(--text-body);
  color: var(--text-secondary);
  margin-bottom: var(--space-2);
  line-height: 1.6;
}

.contact-method-card .method-sub {
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-bottom: var(--space-5);
}

/* WhatsApp Quick Section */
.whatsapp-section {
  background: var(--dark-bg);
  padding: 60px 0;
}

.whatsapp-card {
  background: rgba(37, 211, 102, 0.08);
  border: 1px solid rgba(37, 211, 102, 0.2);
  border-radius: var(--radius-xl);
  padding: 48px;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.whatsapp-card .whatsapp-icon-lg {
  font-size: 48px;
  color: #25D366;
  margin-bottom: var(--space-4);
}

.whatsapp-card h3 {
  font-size: var(--text-h4);
  font-weight: var(--weight-semibold);
  margin-bottom: var(--space-3);
}

.whatsapp-card p {
  color: var(--text-muted);
  margin-bottom: var(--space-5);
}

/* Map Section */
.map-section {
  padding: 100px 0;
  background: var(--dark-bg);
}

.map-container {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 450px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(0.3) brightness(0.8);
}

.map-overlay-card {
  position: absolute;
  bottom: 40px;
  left: 40px;
  background: white;
  color: var(--dark-bg);
  padding: 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  max-width: 320px;
}

.map-overlay-card h4 {
  font-family: var(--font-primary);
  font-size: var(--text-body-lg);
  font-weight: var(--weight-semibold);
  margin-bottom: var(--space-3);
  color: var(--dark-bg);
}

.map-overlay-card p {
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-bottom: var(--space-4);
  line-height: 1.6;
}

.map-overlay-card .btn-sm {
  font-size: var(--text-sm);
}

/* FAQ Section */
.faq-section {
  padding: 100px 0;
  background: var(--dark-secondary);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  cursor: pointer;
  gap: 16px;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: var(--brand-primary);
}

.faq-question h4 {
  font-family: var(--font-primary);
  font-size: 18px;
  font-weight: var(--weight-semibold);
  color: inherit;
  flex: 1;
}

.faq-question .faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.faq-item.active .faq-question .faq-icon {
  background: var(--brand-primary);
  color: white;
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

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

.faq-answer p {
  font-size: var(--text-body);
  color: var(--text-muted);
  line-height: 1.8;
}

/* ---------- ABOUT PAGE SPECIFIC ---------- */
.story-section {
  background: var(--dark-secondary);
  padding: 120px 0;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
}

.story-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
}

.story-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.story-content h2 {
  font-family: var(--font-display);
  font-size: var(--text-h2);
  font-weight: var(--weight-extrabold);
  margin-bottom: var(--space-5);
}

.story-content p {
  font-size: var(--text-body);
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-4);
}

/* Nextify Meaning - large centered */
.nextify-meaning-section {
  padding: 100px 0;
  background: var(--dark-bg);
}

.nextify-meaning-card {
  max-width: 700px;
  margin: 0 auto;
  background: rgba(255, 107, 53, 0.08);
  border: 2px solid rgba(255, 107, 53, 0.2);
  border-radius: var(--radius-xl);
  padding: 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.nextify-meaning-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.05) 0%, transparent 50%);
  animation: rotate-slow 20s linear infinite;
}

.nextify-meaning-card h2 {
  font-family: var(--font-display);
  font-size: var(--text-h3);
  font-weight: var(--weight-bold);
  margin-bottom: var(--space-6);
  position: relative;
}

.meaning-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: var(--space-4);
  font-size: var(--text-body-lg);
  color: var(--text-secondary);
  position: relative;
}

.meaning-row .keyword {
  font-weight: var(--weight-bold);
  color: var(--brand-primary);
  font-size: var(--text-h4);
}

.meaning-statement {
  margin-top: var(--space-6);
  font-size: var(--text-body-lg);
  font-weight: var(--weight-semibold);
  color: var(--text-primary);
  position: relative;
}

/* About Stats Grid */
.about-stats {
  background: var(--dark-bg);
  padding: 80px 0;
}

.stats-extended-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-card {
  background: var(--gradient-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  transition: all 0.3s ease;
}

.stat-card:hover {
  border-color: rgba(255, 107, 53, 0.3);
  transform: translateY(-4px);
}

.stat-card .stat-icon {
  font-size: 32px;
  margin-bottom: var(--space-3);
}

.stat-card .stat-num {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: var(--weight-extrabold);
  color: var(--brand-primary);
  margin-bottom: var(--space-2);
}

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

/* Values Section */
.values-section {
  background: var(--dark-secondary);
  padding: 100px 0;
}

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

.value-card {
  background: var(--gradient-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 107, 53, 0.3);
  box-shadow: var(--shadow-lg);
}

.value-card .value-icon {
  font-size: 64px;
  margin-bottom: var(--space-5);
}

.value-card h4 {
  font-family: var(--font-primary);
  font-size: var(--text-h4);
  font-weight: var(--weight-semibold);
  margin-bottom: var(--space-3);
}

.value-card p {
  font-size: var(--text-body);
  color: var(--text-muted);
  line-height: 1.7;
}

/* About Mission/Vision full */
.about-mission {
  background: var(--dark-bg);
  padding: 100px 0;
  position: relative;
}

.about-mission .container {
  position: relative;
  z-index: 1;
}

.mission-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.mission-content .mission-icon-lg {
  font-size: 80px;
  margin-bottom: var(--space-5);
}

.mission-content h2 {
  font-family: var(--font-display);
  font-size: var(--text-h2);
  font-weight: var(--weight-extrabold);
  margin-bottom: var(--space-3);
}

.mission-content .mission-subtitle {
  font-size: var(--text-body-lg);
  color: var(--text-secondary);
  margin-bottom: var(--space-6);
}

.mission-checklist {
  text-align: left;
  max-width: 600px;
  margin: 0 auto var(--space-6);
}

.mission-checklist li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  font-size: 18px;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mission-checklist li i {
  color: var(--brand-success);
  font-size: 20px;
  flex-shrink: 0;
}

.mission-statement {
  background: rgba(255, 107, 53, 0.08);
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-radius: var(--radius-lg);
  padding: 24px;
  font-size: var(--text-body-lg);
  color: var(--text-secondary);
  font-style: italic;
  max-width: 600px;
  margin: 0 auto;
}

/* About Vision */
.about-vision {
  background: linear-gradient(135deg, rgba(0, 78, 137, 0.15) 0%, var(--dark-secondary) 100%);
  padding: 100px 0;
}

.vision-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.vision-content .vision-icon-lg {
  font-size: 80px;
  margin-bottom: var(--space-5);
}

.vision-content h2 {
  font-family: var(--font-display);
  font-size: var(--text-h2);
  font-weight: var(--weight-extrabold);
  margin-bottom: var(--space-3);
}

.vision-content .vision-subtitle {
  font-size: var(--text-body-lg);
  color: var(--text-secondary);
  margin-bottom: var(--space-6);
}

.vision-content .vision-text {
  font-size: var(--text-body);
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-6);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.vision-quote {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 32px;
  max-width: 600px;
  margin: 0 auto;
}

.vision-quote blockquote {
  font-size: var(--text-body-lg);
  color: var(--text-secondary);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: var(--space-4);
}

.vision-quote cite {
  font-size: var(--text-sm);
  color: var(--text-muted);
  font-style: normal;
}

/* About Team expanded */
.about-team {
  background: var(--dark-secondary);
  padding: 120px 0;
}

.team-roles-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: var(--space-7) auto 0;
}

.team-role-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 32px 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.team-role-card:hover {
  border-color: rgba(255, 107, 53, 0.3);
  transform: translateY(-4px);
}

.team-role-card .role-icon {
  font-size: 36px;
  margin-bottom: var(--space-3);
  color: var(--brand-primary);
}

.team-role-card h4 {
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  margin-bottom: var(--space-2);
}

.team-role-card p {
  font-size: var(--text-xs);
  color: var(--text-muted);
  line-height: 1.6;
}

/* ---------- ANIMATIONS ---------- */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-12px);
  }
  60% {
    transform: translateX(-50%) translateY(-6px);
  }
}

@keyframes scrollDown {
  0% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(10px);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulse-green {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

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

@keyframes float-up {
  0% {
    transform: translateY(0) translateX(0);
    opacity: 0;
  }
  10% { opacity: 0.6; }
  90% { opacity: 0.6; }
  100% {
    transform: translateY(-100vh) translateX(30px);
    opacity: 0;
  }
}

/* Scroll Animation Classes */
.fade-in-up {
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.scale-in {
  opacity: 0;
  transform: scale(0.85);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(60px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.stagger-children > * {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.stagger-children.visible > *:nth-child(1) { transition-delay: 0.1s; }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.15s; }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.2s; }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.25s; }
.stagger-children.visible > *:nth-child(5) { transition-delay: 0.3s; }
.stagger-children.visible > *:nth-child(6) { transition-delay: 0.35s; }
.stagger-children.visible > *:nth-child(7) { transition-delay: 0.4s; }
.stagger-children.visible > *:nth-child(8) { transition-delay: 0.45s; }

.stagger-children.visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1279px) {
  .container {
    padding: 0 32px;
  }
}

@media (max-width: 1023px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  
  .process-grid::before {
    display: none;
  }
  
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .about-preview-grid,
  .story-grid,
  .service-detail-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .service-detail:nth-child(even) .service-detail-grid {
    direction: ltr;
  }
  
  .mv-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .stats-bar .container {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .stats-extended-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .team-roles-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 767px) {
  :root {
    --text-hero: 36px;
    --text-h1: 32px;
    --text-h2: 28px;
    --text-h3: 24px;
    --text-h4: 20px;
    --text-body-lg: 18px;
  }
  
  .container {
    padding: 0 20px;
  }
  
  /* Navbar mobile */
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(10, 14, 39, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    transition: right 0.4s ease;
    z-index: 999;
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .nav-menu a {
    font-size: 24px;
    font-weight: var(--weight-semibold);
  }
  
  .nav-cta {
    display: none;
  }
  
  .nav-menu.active ~ .nav-cta,
  .nav-menu .mobile-cta {
    display: flex;
  }
  
  .hamburger {
    display: flex;
  }
  
  /* Hero */
  .hero {
    padding: 120px 20px 140px;
    min-height: auto;
  }
  
  .hero-title {
    font-size: 36px;
  }
  
  .hero-subtitle {
    font-size: 18px;
  }
  
  .hero-ctas {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-ctas .btn {
    width: 100%;
  }
  
  .stats-bar .container {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .stat-item {
    padding: 20px;
  }
  
  .stat-number {
    font-size: 28px;
  }
  
  .scroll-indicator {
    display: none;
  }
  
  /* Sections */
  .services-snapshot,
  .process-section,
  .proof-section,
  .why-choose,
  .about-preview,
  .team-section,
  .testimonials-section,
  .contact-form-section {
    padding: 80px 0;
  }
  
  .mission-vision,
  .about-mission,
  .about-vision,
  .nextify-meaning-section,
  .values-section,
  .faq-section,
  .map-section {
    padding: 60px 0;
  }
  
  .service-grid,
  .process-grid,
  .feature-grid,
  .contact-methods-grid,
  .values-grid,
  .stats-extended-grid {
    grid-template-columns: 1fr;
  }
  
  .logo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-col h4::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-social {
    justify-content: center;
  }
  
  .footer-contact-item {
    justify-content: center;
  }
  
  .proof-banner {
    flex-direction: column;
    gap: 12px;
  }
  
  .proof-banner .dot {
    display: none;
  }
  
  .contact-form-card {
    padding: 32px 24px;
  }
  
  .final-cta h2 {
    font-size: 32px;
  }
  
  .team-roles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .map-overlay-card {
    position: relative;
    bottom: auto;
    left: auto;
    margin-top: -40px;
    margin-left: 20px;
    margin-right: 20px;
    border-radius: var(--radius-md);
  }
  
  .differentiator-list {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-particles .particle {
    display: none;
  }
}

@media (max-width: 479px) {
  .trust-badge {
    font-size: 12px;
    padding: 8px 16px;
    gap: 8px;
  }
  
  .stats-bar .container {
    grid-template-columns: 1fr 1fr;
  }
  
  .logo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .alt-contact-links {
    flex-direction: column;
    align-items: center;
  }
  
  .best-for-badge {
    justify-content: flex-start;
  }

  .meaning-row {
    flex-direction: column;
    gap: 8px;
  }
}
