/* =====================================================
   ADNOX GROUP - London Digital Marketing Agency
   Premium, Colourful, Animated Stylesheet
   ===================================================== */

:root {
  /* Primary Palette */
  --navy: #0a1628;
  --midnight: #0f1c3f;
  --deep-navy: #06101f;
  --electric: #3b82f6;
  --cyan: #06b6d4;
  --purple: #8b5cf6;
  --magenta: #d946ef;
  --coral: #f97316;
  --orange: #fb923c;
  --gold: #fbbf24;
  --white: #ffffff;
  --soft-grey: #f1f5f9;
  --slate: #64748b;
  --dark-slate: #1e293b;
  
  /* Gradients */
  --grad-primary: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 50%, #d946ef 100%);
  --grad-hero: linear-gradient(135deg, #0a1628 0%, #1e3a5f 40%, #0f1c3f 100%);
  --grad-cyan: linear-gradient(135deg, #06b6d4, #3b82f6);
  --grad-purple: linear-gradient(135deg, #8b5cf6, #d946ef);
  --grad-warm: linear-gradient(135deg, #f97316, #fbbf24);
  --grad-dark: linear-gradient(180deg, #0a1628 0%, #06101f 100%);
  
  /* Typography */
  --font-primary: 'Poppins', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  
  /* Spacing & Radius */
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shadow: 0 10px 40px rgba(0,0,0,0.15);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.25);
  --glass: rgba(255,255,255,0.08);
  --glass-border: rgba(255,255,255,0.12);
}

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

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

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

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

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

ul, ol {
  list-style: none;
}

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

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.25rem; }

p { margin-bottom: 1rem; color: rgba(255,255,255,0.85); }

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
  position: relative;
}

.section-light {
  background: var(--soft-grey);
  color: var(--navy);
}

.section-light p { color: var(--dark-slate); }
.section-light h2, .section-light h3 { color: var(--navy); }

/* ========== HEADER ========== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 22, 40, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: all 0.3s ease;
}

.header.scrolled {
  background: rgba(6, 16, 31, 0.95);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-primary);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
}

.logo img {
  height: 40px;
  width: auto;
}

.logo span {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.6rem 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  border-radius: 8px;
  transition: all 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

.nav-link svg {
  width: 12px;
  height: 12px;
  transition: transform 0.25s;
}

.nav-item:hover .nav-link svg {
  transform: rotate(180deg);
}

/* Dropdown */
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: rgba(15, 28, 63, 0.98);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 0.75rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  box-shadow: var(--shadow-lg);
}

.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown a {
  display: block;
  padding: 0.7rem 1rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  border-radius: 8px;
  transition: all 0.2s;
}

.dropdown a:hover {
  background: rgba(59, 130, 246, 0.2);
  color: var(--white);
  padding-left: 1.25rem;
}

/* Header CTA */
.header-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #25D366;
  color: white !important;
  padding: 0.7rem 1.4rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  transition: all 0.3s ease;
}

.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
  background: #20bd5a;
}

.header-cta svg {
  width: 20px;
  height: 20px;
}

/* Mobile Menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s;
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--deep-navy);
  z-index: 999;
  padding: 100px 1.5rem 2rem;
  overflow-y: auto;
}

.mobile-nav.active {
  display: block;
}

.mobile-nav a {
  display: block;
  padding: 1rem 0;
  font-size: 1.2rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1rem 2rem;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 1rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-primary {
  background: var(--grad-primary);
  color: white;
  box-shadow: 0 8px 30px rgba(59, 130, 246, 0.35);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(59, 130, 246, 0.5);
}

.btn-whatsapp {
  background: #25D366;
  color: white !important;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.35);
}

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

.btn-outline {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.3);
}

.btn-outline:hover {
  border-color: white;
  background: rgba(255,255,255,0.08);
}

.btn-lg {
  padding: 1.2rem 2.5rem;
  font-size: 1.1rem;
}

/* ========== HERO ========== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  background: var(--grad-hero);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 150%;
  background: radial-gradient(ellipse, rgba(59,130,246,0.15) 0%, transparent 60%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 60%;
  height: 100%;
  background: radial-gradient(ellipse, rgba(139,92,246,0.12) 0%, transparent 60%);
  pointer-events: none;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(59,130,246,0.15);
  border: 1px solid rgba(59,130,246,0.3);
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--cyan);
  margin-bottom: 1.5rem;
}

.hero h1 {
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #fff 0%, #a5b4fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 2.5rem;
  max-width: 540px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
}

.hero-stat strong {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-stat span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}

/* Hero Visual */
.hero-visual {
  position: relative;
  height: 500px;
}

.hero-scene {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, rgba(30,58,95,0.6), rgba(15,28,63,0.8));
  border: 1px solid rgba(255,255,255,0.1);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.skyline {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 180px;
  background: linear-gradient(to top, rgba(6,16,31,0.9), transparent);
}

.floating-card {
  position: absolute;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 1rem 1.25rem;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
  animation: float 6s ease-in-out infinite;
}

.floating-card.seo { top: 8%; left: 5%; animation-delay: 0s; }
.floating-card.social { top: 15%; right: 8%; animation-delay: 1.5s; }
.floating-card.ads { bottom: 30%; left: 10%; animation-delay: 3s; }
.floating-card.web { bottom: 20%; right: 12%; animation-delay: 2s; }

.floating-card .icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.floating-card.seo .icon { background: var(--grad-cyan); }
.floating-card.social .icon { background: var(--grad-purple); }
.floating-card.ads .icon { background: var(--grad-warm); }
.floating-card.web .icon { background: var(--grad-primary); }

.floating-card strong {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.15rem;
}

.floating-card span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
}

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

/* ========== SECTION HEADERS ========== */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3.5rem;
}

.section-header .badge {
  display: inline-block;
  background: rgba(59,130,246,0.15);
  color: var(--cyan);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
}

.section-light .section-header p {
  color: var(--slate);
}

/* ========== SERVICE CARDS ========== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-primary);
  opacity: 0;
  transition: opacity 0.3s;
}

.service-card:hover {
  transform: translateY(-8px);
  background: rgba(255,255,255,0.07);
  border-color: rgba(59,130,246,0.3);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

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

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.service-card p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 1.25rem;
}

.service-card .link {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--cyan);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.service-card .link:hover {
  gap: 0.7rem;
}

/* Colour variants for icons */
.icon-seo { background: linear-gradient(135deg, #06b6d4, #3b82f6); }
.icon-social { background: linear-gradient(135deg, #8b5cf6, #d946ef); }
.icon-ads { background: linear-gradient(135deg, #f97316, #fbbf24); }
.icon-web { background: linear-gradient(135deg, #3b82f6, #6366f1); }
.icon-brand { background: linear-gradient(135deg, #ec4899, #f43f5e); }
.icon-content { background: linear-gradient(135deg, #14b8a6, #06b6d4); }
.icon-video { background: linear-gradient(135deg, #ef4444, #f97316); }
.icon-ecom { background: linear-gradient(135deg, #8b5cf6, #6366f1); }
.icon-local { background: linear-gradient(135deg, #22c55e, #06b6d4); }
.icon-lead { background: linear-gradient(135deg, #f59e0b, #ef4444); }

/* ========== PROCESS TIMELINE ========== */
.process-timeline {
  display: flex;
  justify-content: space-between;
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem 0;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 5%;
  right: 5%;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--purple), var(--magenta));
  border-radius: 2px;
}

.process-step {
  text-align: center;
  position: relative;
  flex: 1;
  z-index: 2;
}

.process-dot {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--grad-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-weight: 800;
  font-size: 1.1rem;
  box-shadow: 0 0 0 6px rgba(59,130,246,0.2);
  transition: transform 0.3s;
}

.process-step:hover .process-dot {
  transform: scale(1.15);
}

.process-step h4 {
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.process-step p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  max-width: 120px;
  margin: 0 auto;
}

/* ========== INDUSTRY CARDS ========== */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
}

.industry-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 1.75rem;
  text-align: center;
  transition: all 0.35s ease;
}

.industry-card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.08);
  border-color: rgba(139,92,246,0.4);
}

.industry-card .icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  border-radius: 12px;
  background: rgba(139,92,246,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.industry-card h4 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.industry-card p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  margin: 0;
}

/* ========== WHY US ========== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.why-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all 0.3s;
}

.why-card:hover {
  border-color: rgba(59,130,246,0.3);
}

.why-card .num {
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.75rem;
}

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

.faq-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: white;
  padding: 1.25rem 1.5rem;
  font-family: var(--font-primary);
  font-size: 1.05rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-question svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

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

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

.faq-answer-inner {
  padding: 0 1.5rem 1.5rem;
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
}

/* ========== CTA SECTION ========== */
.cta-section {
  background: var(--grad-primary);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.cta-section h2 {
  position: relative;
  margin-bottom: 1rem;
}

.cta-section p {
  position: relative;
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto 2rem;
  color: rgba(255,255,255,0.9);
}

/* ========== FOOTER ========== */
.footer {
  background: var(--deep-navy);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  margin-top: 1rem;
  max-width: 280px;
}

.footer h5 {
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
  color: white;
}

.footer ul li {
  margin-bottom: 0.6rem;
}

.footer ul a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
}

.footer ul a:hover {
  color: var(--cyan);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
}

.footer-bottom a {
  color: rgba(255,255,255,0.55);
  margin-left: 1.25rem;
}

.footer-bottom a:hover {
  color: var(--cyan);
}

.footer-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #25D366 !important;
  font-weight: 600;
}

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

.float-wa:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 35px rgba(37,211,102,0.6);
}

.float-wa svg {
  width: 32px;
  height: 32px;
  fill: white;
}

@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
  50% { box-shadow: 0 0 0 12px rgba(37,211,102,0); }
}

/* Mobile bottom bar */
.mobile-wa-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #25D366;
  padding: 0.9rem;
  text-align: center;
  font-weight: 700;
  font-size: 1rem;
  z-index: 998;
  color: white !important;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}

/* ========== PAGE HERO (inner pages) ========== */
.page-hero {
  padding: 140px 0 80px;
  background: var(--grad-hero);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.page-hero .breadcrumb {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1.5rem;
}

.page-hero .breadcrumb a {
  color: var(--cyan);
}

.page-hero h1 {
  margin-bottom: 1.25rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-hero p {
  font-size: 1.15rem;
  max-width: 650px;
  margin: 0 auto 2rem;
  color: rgba(255,255,255,0.75);
}

/* ========== CONTENT SECTIONS ========== */
.content-section {
  padding: 4rem 0;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.content-grid.reverse {
  direction: rtl;
}

.content-grid.reverse > * {
  direction: ltr;
}

.feature-list {
  margin-top: 1.5rem;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.feature-list li::before {
  content: '✓';
  color: var(--cyan);
  font-weight: 800;
  flex-shrink: 0;
}

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

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .hero-visual {
    height: 380px;
    order: -1;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .process-timeline {
    flex-wrap: wrap;
    gap: 2rem;
  }
  
  .process-timeline::before {
    display: none;
  }
  
  .content-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .content-grid.reverse {
    direction: ltr;
  }
}

@media (max-width: 768px) {
  .nav {
    display: none;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .header-cta span {
    display: none;
  }
  
  .header-cta {
    padding: 0.7rem;
  }
  
  .hero {
    min-height: auto;
    padding: 110px 0 60px;
  }
  
  .hero-stats {
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  
  .float-wa {
    display: none;
  }
  
  .mobile-wa-bar {
    display: block;
  }
  
  body {
    padding-bottom: 60px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .section {
    padding: 3.5rem 0;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .reveal {
    opacity: 1;
    transform: none;
  }
  
  html {
    scroll-behavior: auto;
  }
}

/* Utility */
.text-gradient {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }
.text-center { text-align: center; }
