/* 
========================================================================
   TAYYABAAIJAZ.COM - PREMIUM SEO & AEO LANDING PAGE STYLESHEET
   Author: Antigravity AI
   Design: Modern Clean Premium SaaS, Luxury Feel, Heavy Animations
========================================================================
*/

/* 1. IMPORTS & VARIABLES */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800;900&display=swap');

:root {
  /* Color Palette */
  --primary-blue: #2563eb;
  --primary-blue-rgb: 37, 99, 235;
  --primary-purple: #7c3aed;
  --primary-purple-rgb: 124, 58, 237;
  --primary-cyan: #06b6d4;
  --primary-cyan-rgb: 6, 182, 212;
  
  --bg-white: #ffffff;
  --bg-light: #f8fafc;
  --bg-card: rgba(255, 255, 255, 0.8);
  --text-dark: #0f172a;
  --text-muted: #475569;
  --border-color: rgba(226, 232, 240, 0.8);
  --border-focus: rgba(37, 99, 235, 0.5);

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
  --gradient-accent: linear-gradient(135deg, var(--primary-purple), var(--primary-cyan));
  --gradient-glow: linear-gradient(135deg, rgba(37, 99, 235, 0.15), rgba(124, 58, 237, 0.15));
  --gradient-light: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  --gradient-dark-text: linear-gradient(135deg, #0f172a 30%, #475569 100%);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 10px 30px rgba(15, 23, 42, 0.05);
  --shadow-lg: 0 20px 40px rgba(15, 23, 42, 0.08);
  --shadow-glow: 0 10px 25px rgba(37, 99, 235, 0.25);
  --shadow-glow-purple: 0 10px 25px rgba(124, 58, 237, 0.25);

  /* Border Radii */
  --radius-card: 24px;
  --radius-btn: 30px;
  --radius-input: 12px;

  /* Fonts */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 2. BASE RESET & GENERAL */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-white);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

body.no-scroll {
  overflow: hidden !important;
}

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

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

a {
  color: inherit;
  text-decoration: none;
}

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

/* Global Container */
.container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* Sections */
section {
  padding: 7rem 0;
  position: relative;
}

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

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

/* Animated Gradient Background Blobs */
.bg-glow-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  z-index: 0;
  opacity: 0.45;
  pointer-events: none;
  animation: floatBlob 15s infinite alternate ease-in-out;
}

.blob-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(37,99,235,0.4) 0%, rgba(124,58,237,0) 70%);
  top: -100px;
  right: -100px;
}

.blob-2 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(124,58,237,0.35) 0%, rgba(6,182,212,0) 70%);
  bottom: 10%;
  left: -200px;
  animation-delay: -5s;
}

.blob-3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(6,182,212,0.3) 0%, rgba(37,99,235,0) 70%);
  top: 40%;
  right: -100px;
  animation-delay: -10s;
}

@keyframes floatBlob {
  0% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(40px, -60px) scale(1.1);
  }
  100% {
    transform: translate(-20px, 30px) scale(0.9);
  }
}

/* Section Header */
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 4.5rem auto;
  position: relative;
  z-index: 1;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.15);
  color: var(--primary-blue);
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.25rem;
  box-shadow: 0 2px 10px rgba(37, 99, 235, 0.05);
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  background: var(--gradient-dark-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1.25rem;
  font-weight: 800;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  font-weight: 400;
}

/* 3. BUTTONS (PREMIUM DYNAMIC ANIMATED) */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.125rem 2.25rem;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-btn);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: none;
}

/* Gradient Primary Button */
.btn-primary {
  background: var(--gradient-primary);
  color: var(--bg-white);
  box-shadow: var(--shadow-glow);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-accent);
  opacity: 0;
  z-index: -1;
  transition: opacity var(--transition-normal);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow-purple);
  color: var(--bg-white);
}

.btn-primary:hover::before {
  opacity: 1;
}

/* Secondary/Outline Button */
.btn-secondary {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--border-color);
  color: var(--text-dark);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  transform: translateY(-3px);
  border-color: var(--primary-blue);
  color: var(--primary-blue);
  box-shadow: var(--shadow-md);
  background: var(--bg-white);
}

/* Button Animations: Arrow & Ripple & Glow */
.btn svg {
  transition: transform var(--transition-fast) ease-in-out;
}

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

/* Ripple Click Effect (JS triggered class) */
.ripple {
  position: absolute;
  background: rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  transform: scale(0);
  animation: ripple-effect 0.6s linear;
  pointer-events: none;
}

@keyframes ripple-effect {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

.mobile-text {
  display: none;
}

.desktop-text {
  display: inline;
}

/* 4. HEADER (STICKY & SCROLLING) */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 0;
  z-index: 1000;
  transition: all 0.4s ease;
  background: transparent;
}

.header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-blue), var(--primary-purple), var(--primary-cyan));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.header.scrolled {
  padding: 0.85rem 0;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.header.scrolled::after {
  opacity: 1;
}

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

/* Logo */
.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.logo-dot {
  width: 10px;
  height: 10px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 10px rgba(37,99,235,0.6);
}

.logo-img {
  height: 56px;
  width: auto;
  display: block;
  transition: height var(--transition-fast) ease;
}

.header.scrolled .logo-img {
  height: 46px;
}

.footer-logo-badge {
  background: #ffffff;
  padding: 0.5rem 1rem;
  border-radius: 12px;
  display: inline-block;
  margin-bottom: 1.5rem;
}

.footer-logo-img {
  height: 40px;
  width: auto;
  display: block;
}

/* Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
  position: relative;
  padding: 0.5rem 0;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width var(--transition-fast);
}

.nav-link:hover {
  color: var(--text-dark);
}

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

.header-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  background: rgba(15, 23, 42, 0.05);
  border: none;
  cursor: pointer;
  z-index: 1100;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: all var(--transition-fast) ease;
}

.mobile-toggle:hover {
  background: rgba(15, 23, 42, 0.1);
  transform: scale(1.05);
}

.mobile-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background-color: var(--text-dark);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
}

.mobile-toggle span:nth-child(2) {
  width: 14px;
  align-self: flex-start;
  margin-left: 11px;
}

.mobile-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  width: 20px;
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
  width: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* 5. HERO SECTION */
.hero {
  min-height: 100vh;
  padding-top: 9rem;
  padding-bottom: 5rem;
  display: flex;
  align-items: center;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 3.85rem);
  font-weight: 900;
  line-height: 1.15;
  background: var(--gradient-dark-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1.5rem;
}

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

.hero-subtitle {
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

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

/* Trust Badges */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 2rem;
  margin-bottom: 3.5rem;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.trust-badge svg {
  color: var(--primary-cyan);
}

/* Animated Stats */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  border-top: 1px solid var(--border-color);
  padding-top: 2rem;
}

.stat-item {
  text-align: left;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--primary-blue);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Hero Badge Custom styling */
.hero-badge {
  background: rgba(37, 99, 235, 0.08);
  border-color: rgba(37, 99, 235, 0.15);
  color: var(--primary-blue);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 0.5rem 1.25rem;
  width: fit-content;
  margin-bottom: 1.5rem;
}
.badge-spark {
  margin-right: 4px;
}

/* Headline accent lead styling */
.hero-accent-lead {
  border-left: 4px solid var(--primary-purple);
  padding-left: 1.25rem;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2rem;
  line-height: 1.4;
  position: relative;
  z-index: 1;
}

/* Paragraph styling */
.hero-paragraph {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

/* CTAs Container */
.hero-ctas-container {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}
.hero-cta-note {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 600;
}
.hero-cta-note .note-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue);
}

/* Hero Portrait Image Frame & Floating Badges */
.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
  z-index: 5;
}

.hero-image-card {
  width: 100%;
  border-radius: 36px;
  background: linear-gradient(180deg, #f1f7ff 0%, #e1edff 100%);
  border: 4px solid rgba(255, 255, 255, 0.9);
  padding: 0;
  box-shadow: 0 25px 55px rgba(37, 99, 235, 0.15);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4 / 4.8;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 2;
  transition: transform var(--transition-normal);
}

.hero-image-wrapper:hover .hero-image-card {
  transform: translateY(-8px);
  box-shadow: 0 35px 70px rgba(37, 99, 235, 0.22);
}

.hero-image-wrapper:hover .hero-image {
  transform: scale(1.03);
}

/* Floating Badges */
.floating-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.08);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 10;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.badge-top-right {
  top: 15%;
  right: -25px;
  padding: 0.85rem 1.25rem;
  text-align: center;
  flex-direction: column;
  gap: 0.15rem;
}

.badge-bottom-left {
  bottom: 8%;
  left: -35px;
  padding: 0.95rem 1.25rem;
  align-items: center;
}

.badge-num {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.1;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.badge-num .small-text {
  font-size: 0.85rem;
  font-weight: 600;
  -webkit-text-fill-color: var(--text-dark);
}

.badge-txt {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.badge-bottom-left .badge-txt {
  color: var(--primary-blue);
}

.badge-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(37, 99, 235, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue);
  flex-shrink: 0;
}

.hero-image-wrapper:hover .badge-top-right {
  transform: translate(8px, -5px);
}

.hero-image-wrapper:hover .badge-bottom-left {
  transform: translate(-8px, 5px);
}

/* Hero Right: Lead Form Card */
.lead-card-container {
  position: relative;
  z-index: 10;
}

.lead-card {
  background: var(--bg-card);
  backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow-lg);
  padding: 2.5rem;
  border-radius: var(--radius-card);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.lead-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.12);
  border-color: rgba(37, 99, 235, 0.25);
}

.lead-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--gradient-primary);
}

.lead-card-title {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  text-align: center;
}

.lead-card-subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 2rem;
}

/* Form Styles */
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.form-full {
  grid-column: span 2;
}

.form-group {
  position: relative;
}

.form-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.875rem 1.125rem;
  background: rgba(248, 250, 252, 0.8);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-input);
  font-family: var(--font-body);
  font-size: 0.925rem;
  color: var(--text-dark);
  transition: all var(--transition-fast);
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23475569' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.125rem center;
  background-size: 1.1rem;
  padding-right: 2.5rem;
}

.form-textarea {
  resize: none;
  height: 90px;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  background: var(--bg-white);
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.lead-card-btn {
  width: 100%;
  margin-top: 1.5rem;
  padding: 1.125rem;
}

.form-note {
  font-size: 0.775rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-top: 1.5rem;
  border-top: 1px dashed var(--border-color);
  padding-top: 1.25rem;
}

.form-note strong {
  color: var(--text-dark);
}

.form-note-contact {
  display: flex;
  justify-content: space-between;
  margin-top: 0.75rem;
  font-weight: 600;
  color: var(--text-dark);
  flex-wrap: wrap;
  gap: 0.5rem;
}

.form-note-contact a {
  transition: color var(--transition-fast);
}

.form-note-contact a:hover {
  color: var(--primary-blue);
}

/* Secure Badges Below Form */
.secure-badges {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.5rem;
  padding: 0 0.5rem;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.secure-badge {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.secure-badge svg {
  color: #10b981;
}

/* Form Success & Loading States overlay */
.form-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.95);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal) ease;
  padding: 2.5rem;
  text-align: center;
}

.form-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 4px solid rgba(37, 99, 235, 0.1);
  border-left-color: var(--primary-blue);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 1.5rem;
}

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

.form-overlay-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

/* Floating SEO graphics in background */
.floating-element {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
  animation: floatAnim 8s infinite ease-in-out;
}

.fe-1 {
  top: 15%;
  left: 5%;
  animation-duration: 9s;
}

.fe-2 {
  bottom: 20%;
  left: 45%;
  animation-duration: 7s;
}

.fe-3 {
  top: 25%;
  right: 5%;
  animation-duration: 11s;
}

@keyframes floatAnim {
  0% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
  100% { transform: translateY(0) rotate(0deg); }
}

/* 6. TRUSTED BY / LOGOS */
.trusted {
  padding: 3rem 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  overflow: hidden;
}

.trusted-title {
  text-align: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 2rem;
}

.logo-marquee-container {
  display: flex;
  overflow: hidden;
  user-select: none;
  position: relative;
}

.logo-marquee-container::before, .logo-marquee-container::after {
  content: '';
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.logo-marquee-container::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-white), transparent);
}

.logo-marquee-container::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-white), transparent);
}

.logo-marquee {
  display: flex;
  align-items: center;
  gap: 6rem;
  animation: marquee-scroll 30s linear infinite;
  min-width: 100%;
}

.logo-item {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: #94a3b8;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.7;
  transition: opacity 0.3s ease, color 0.3s ease;
  white-space: nowrap;
}

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

.logo-item svg {
  fill: currentColor;
}

@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* 7. PROBLEMS SECTION */
.problems-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.problem-card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  padding: 2.5rem;
  border-radius: var(--radius-card);
  transition: all var(--transition-normal);
  position: relative;
}

.problem-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-card);
  border: 2px solid transparent;
  transition: all var(--transition-normal);
  pointer-events: none;
}

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

.problem-card:hover::before {
  border-color: rgba(239, 68, 68, 0.2);
}

.problem-icon-wrapper {
  width: 56px;
  height: 56px;
  background: rgba(239, 68, 68, 0.08);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ef4444;
  margin-bottom: 1.5rem;
}

.problem-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

/* 8. SOLUTIONS SECTION */
.solution-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.solution-left {
  position: relative;
}

.solution-badge {
  background: rgba(16, 185, 129, 0.08);
  border-color: rgba(16, 185, 129, 0.15);
  color: #10b981;
}

.solution-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  list-style: none;
  margin-top: 2rem;
}

.solution-item {
  display: flex;
  gap: 1rem;
}

.solution-item-check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #10b981;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.solution-item-text h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.solution-right {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.sol-card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  padding: 2rem;
  border-radius: var(--radius-card);
  transition: all var(--transition-normal);
  text-align: center;
}

.sol-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-cyan);
}

.sol-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(6, 182, 212, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-cyan);
  margin-bottom: 1.25rem;
}

.sol-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.sol-card p {
  font-size: 0.85rem;
}

/* 9. SERVICES SECTION */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.service-card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-card);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all var(--transition-normal);
  height: 100%;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(124, 58, 237, 0.2);
}

.service-icon-wrapper {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(124, 58, 237, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-purple);
  margin-bottom: 1.5rem;
  transition: transform 0.4s ease;
}

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

.service-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.service-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.service-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.25rem;
  border-top: 1px solid var(--border-color);
  padding-top: 1.25rem;
}

.service-learn-more {
  font-family: var(--font-heading);
  font-size: 0.825rem;
  font-weight: 700;
  color: var(--text-dark);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  cursor: pointer;
  transition: color 0.2s ease;
}

.service-learn-more:hover {
  color: var(--primary-purple);
}

.service-cta-btn {
  font-family: var(--font-heading);
  font-size: 0.775rem;
  font-weight: 700;
  color: var(--primary-blue);
  background: rgba(37, 99, 235, 0.06);
  padding: 0.45rem 1rem;
  border-radius: 9999px;
  transition: all 0.2s ease;
}

.service-cta-btn:hover {
  background: var(--primary-blue);
  color: var(--bg-white);
}

/* 10. WHY CHOOSE ME */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.why-card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-card);
  padding: 2.5rem;
  display: flex;
  gap: 1.5rem;
  transition: all var(--transition-normal);
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(37, 99, 235, 0.15);
}

.why-check {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue);
  flex-shrink: 0;
}

.why-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.why-desc {
  font-size: 0.95rem;
}

/* 11. PROCESS SECTION */
.timeline-wrapper {
  position: relative;
  margin: 4rem auto 0 auto;
  z-index: 1;
}

/* Progress bar backdrop line */
.timeline-line {
  position: absolute;
  top: 50px;
  left: 5%;
  right: 5%;
  height: 4px;
  background: rgba(226, 232, 240, 0.8);
  z-index: -1;
  border-radius: 99px;
  overflow: hidden;
}

.timeline-line-active {
  height: 100%;
  width: 0%;
  background: var(--gradient-primary);
  transition: width 1.5s ease-in-out;
}

.timeline-steps {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1rem;
}

.timeline-step {
  text-align: center;
  position: relative;
}

.step-number-node {
  width: 104px;
  height: 104px;
  border-radius: 50%;
  background: var(--bg-white);
  border: 4px solid rgba(226, 232, 240, 0.8);
  margin: 0 auto 1.5rem auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  position: relative;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: var(--shadow-sm);
}

.step-number {
  font-size: 1.5rem;
  font-weight: 800;
  color: #94a3b8;
  line-height: 1;
  transition: color 0.5s ease;
}

.step-label-small {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #94a3b8;
  letter-spacing: 0.05em;
  line-height: 1;
  margin-top: 2px;
}

.step-number-node::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 4px solid transparent;
  background: var(--gradient-primary) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.timeline-step.active .step-number-node {
  transform: scale(1.1);
  border-color: transparent;
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.15);
}

.timeline-step.active .step-number-node::after {
  opacity: 1;
}

.timeline-step.active .step-number {
  color: var(--primary-blue);
}

.timeline-step.active .step-label-small {
  color: var(--primary-blue);
}

.step-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  transition: color 0.5s ease;
}

.timeline-step.active .step-title {
  color: var(--primary-blue);
}

.step-desc {
  font-size: 0.825rem;
  color: var(--text-muted);
  max-width: 140px;
  margin: 0 auto;
}

/* 12. RESULTS SECTION */
.results-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.result-stat-card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  padding: 3rem 2rem;
  border-radius: var(--radius-card);
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-sm);
}

.result-stat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(37, 99, 235, 0.15);
}

.result-number {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.result-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.result-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* 13. PACKAGES */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  max-width: 1050px;
  margin: 4rem auto 0 auto;
}

.package-card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-card);
  padding: 3.5rem 3rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  position: relative;
}

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(37, 99, 235, 0.2);
}

.package-card.featured {
  background: linear-gradient(var(--bg-white), var(--bg-white)) padding-box,
              var(--gradient-primary) border-box;
  border: 2px solid transparent;
  box-shadow: 0 20px 45px rgba(124, 58, 237, 0.08);
}

.package-card.featured:hover {
  box-shadow: 0 25px 50px rgba(124, 58, 237, 0.14);
}

.package-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 0.725rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.45rem 1rem;
  border-radius: 9999px;
  background: #f1f5f9;
  color: var(--text-muted);
}

.package-badge.popular {
  background: var(--gradient-primary);
  color: var(--bg-white);
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.2);
}

.package-name {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.package-price {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--text-dark);
  margin: 1.5rem 0 0.5rem 0;
  line-height: 1;
}

.package-price .currency {
  font-size: 1.75rem;
  font-weight: 700;
  vertical-align: super;
  margin-right: 2px;
}

.package-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.package-features {
  list-style: none;
  margin-bottom: 3rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.package-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 0.925rem;
  color: var(--text-dark);
  line-height: 1.4;
}

.package-features li svg {
  color: #10b981;
  flex-shrink: 0;
  margin-top: 2px;
}

.package-features li.highlight-feature {
  color: var(--primary-purple);
}

.package-features li.highlight-feature strong {
  font-weight: 700;
}

.package-cta {
  margin-top: auto;
}

.package-btn {
  width: 100%;
  padding: 1rem 2rem;
  justify-content: center;
}

/* 14. TESTIMONIALS SECTION (DOUBLE ROW MARQUEE) */
.testimonials {
  overflow: hidden;
  padding-bottom: 8rem;
}

.marquee-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 4rem;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.marquee-row {
  display: flex;
  overflow: hidden;
  user-select: none;
  width: 100%;
}

.marquee-inner {
  display: flex;
  gap: 2rem;
  animation: marquee-left 70s linear infinite;
  padding-right: 2rem;
}

.marquee-row.reverse .marquee-inner {
  animation: marquee-right 70s linear infinite;
}

@keyframes marquee-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes marquee-right {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.testimonial-card {
  width: 360px;
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  padding: 2rem;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

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

.stars {
  color: #fbbf24;
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.reviewer-meta {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border-color);
  padding-top: 1rem;
}

.reviewer-name {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
}

.reviewer-details {
  font-size: 0.775rem;
  color: var(--text-muted);
  margin-top: 0.15rem;
}

/* Pause marquee on hover */
.marquee-row:hover .marquee-inner {
  animation-play-state: paused;
}

/* 15. FAQ SECTION */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: relative;
  z-index: 1;
}

.faq-item {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  overflow: hidden;
  transition: all var(--transition-normal);
}

.faq-item:hover {
  border-color: rgba(37, 99, 235, 0.25);
  box-shadow: var(--shadow-md);
}

.faq-trigger {
  width: 100%;
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  outline: none;
}

.faq-question {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  transition: color var(--transition-fast);
}

.faq-item.active .faq-question {
  color: var(--primary-blue);
}

.faq-icon-node {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
  transition: all var(--transition-normal);
}

.faq-item.active .faq-icon-node {
  background: var(--primary-blue);
  color: var(--bg-white);
  transform: rotate(45deg);
}

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

.faq-content-inner {
  padding: 0 1.5rem 1.5rem 1.5rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* 16. FINAL CTA */
.final-cta {
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}

.final-cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #2563eb 0%, #7c3aed 50%, #06b6d4 100%);
  opacity: 0.05;
  z-index: 0;
}

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

.final-cta-card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  padding: 5rem 4rem;
  border-radius: var(--radius-card);
  text-align: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.final-cta-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--primary-blue), var(--primary-purple), var(--primary-cyan));
}

.final-cta-title {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 900;
  margin-bottom: 1.25rem;
  background: var(--gradient-dark-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.final-cta-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 3rem auto;
}

.final-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* 16.5 AUDIT SECTION */
.audit-section {
  padding: 8rem 0;
  background-color: var(--bg-light);
  border-top: 1px solid var(--border-color);
  position: relative;
  z-index: 1;
}

.audit-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 5rem;
  align-items: center;
}

.audit-info {
  display: flex;
  flex-direction: column;
}

.audit-badge {
  align-self: flex-start;
  background: rgba(37, 99, 235, 0.08);
  border-color: rgba(37, 99, 235, 0.15);
  color: var(--primary-blue);
  margin-bottom: 1.5rem;
}

.audit-benefits {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin: 2.5rem 0;
}

.audit-benefit {
  display: flex;
  gap: 1.25rem;
}

.benefit-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(37, 99, 235, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue);
  flex-shrink: 0;
}

.benefit-text h4 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: var(--text-dark);
}

.benefit-text p {
  font-size: 0.925rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.audit-mini-testimonial {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  padding: 1.75rem;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.audit-mini-testimonial .stars {
  display: flex;
  gap: 0.25rem;
  color: #f59e0b;
}

.mini-testimonial-text {
  font-size: 0.95rem;
  font-style: italic;
  color: var(--text-muted);
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.mini-testimonial-author {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.mini-testimonial-author strong {
  color: var(--text-dark);
}

.audit-form-container {
  position: relative;
  z-index: 5;
}

@media (max-width: 1100px) {
  .audit-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .audit-form-container {
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
  }
}

/* 17. FOOTER */
.footer {
  background: #090d16;
  color: #94a3b8;
  padding: 5rem 0 2.5rem 0;
  font-size: 0.9rem;
  border-top: 1px solid #1e293b;
  position: relative;
  z-index: 1;
}

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

.footer-logo {
  color: var(--bg-white);
  margin-bottom: 1.5rem;
}

.footer-about-text {
  line-height: 1.6;
  margin-bottom: 1.75rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  transition: all var(--transition-fast);
}

.social-link:hover {
  background: var(--primary-blue);
  color: var(--bg-white);
  transform: translateY(-3px);
}

.footer-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--bg-white);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-link {
  transition: color var(--transition-fast);
}

.footer-link:hover {
  color: var(--bg-white);
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.footer-contact-item svg {
  color: var(--primary-blue);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.footer-contact-item a {
  transition: color 0.2s ease;
}

.footer-contact-item a:hover {
  color: var(--bg-white);
}

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

.footer-legal-links {
  display: flex;
  gap: 1.5rem;
}

/* 18. ENTRANCE EFFECTS (SCROLL-BASED) */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }
.delay-400 { transition-delay: 400ms; }
.delay-500 { transition-delay: 500ms; }

/* 19. RESPONSIVE MEDIA QUERIES */

@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  
  .lead-card-container {
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
  }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .timeline-steps {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem 1rem;
  }
  
  .timeline-line {
    display: none; /* Hide linear timeline line on wrap */
  }

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

@media (max-width: 820px) {
  .hero-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-badge {
    margin: 0 auto 1.5rem auto !important;
  }

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

  .hero-accent-lead {
    border-left: 4px solid var(--primary-purple);
    padding-left: 1.25rem;
    text-align: center;
    margin: 0 auto 2rem auto;
    max-width: fit-content;
  }

  .hero-paragraph {
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-ctas-container {
    justify-content: center;
    gap: 1.5rem;
    width: 100%;
  }

  .hero-ctas {
    justify-content: center;
    margin-bottom: 1.5rem;
    width: 100%;
  }

  .trust-badges {
    justify-content: center;
  }

  .header {
    background: rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: blur(20px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4) !important;
    padding: 0.85rem 0 !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03) !important;
  }

  .header::after {
    opacity: 1 !important;
  }

  .logo-img {
    height: 48px;
  }

  .header-cta .btn {
    display: inline-flex !important;
    padding: 0.5rem 1.15rem !important;
    font-size: 0.8rem !important;
    border-radius: 9999px !important;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
  }

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

  .mobile-text {
    display: inline;
  }

  .desktop-text {
    display: none;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--bg-white);
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 2.5rem;
    box-shadow: -10px 0 30px rgba(0,0,0,0.05);
    transition: right 0.4s ease;
    z-index: 999;
    overflow-y: auto;
    gap: 1.5rem;
  }

  .nav-menu.active {
    right: 0;
  }

  .mobile-toggle {
    display: flex;
  }

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

  .solution-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .packages-grid {
    grid-template-columns: 1fr;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
    gap: 2.5rem;
  }

  /* Timeline responsive style */
  .timeline-steps {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    position: relative;
    padding-left: 1rem;
  }
  
  .timeline-steps::before {
    content: '';
    position: absolute;
    top: 15px;
    bottom: 15px;
    left: 36px;
    width: 2px;
    background: rgba(226, 232, 240, 0.8);
    z-index: 0;
  }
  
  .timeline-step {
    display: flex;
    text-align: left;
    align-items: flex-start;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
  }
  
  .step-number-node {
    margin: 0;
    flex-shrink: 0;
    width: 54px;
    height: 54px;
    border-width: 3px;
  }
  
  .step-number {
    font-size: 1.15rem;
  }
  
  .step-label-small {
    display: none;
  }
  
  .step-title {
    margin-bottom: 0.25rem;
    font-size: 1.15rem;
  }
  
  .step-desc {
    max-width: 100%;
    margin: 0;
    font-size: 0.85rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 580px) {
  .header .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .logo-img {
    height: 38px;
  }

  .header-cta {
    gap: 0.5rem;
  }

  .header-cta .btn {
    padding: 0.4rem 0.8rem !important;
    font-size: 0.75rem !important;
    gap: 0.35rem !important;
  }

  .header-cta .btn svg {
    display: none !important;
  }

  section {
    padding: 5rem 0;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    width: 100%;
    margin-bottom: 2rem;
  }

  .hero-ctas .btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

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

  .form-full {
    grid-column: span 1;
  }

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

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

  .results-row {
    grid-template-columns: 1fr;
  }
  
  .final-cta-card {
    padding: 3.5rem 1.5rem;
  }
}

/* ========================================================================
   ZAIN SABIR ADDITIONAL STYLES
   ======================================================================== */

/* CSS Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}
.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.logo-name {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-dark);
}
.logo-tagline {
  font-size: 0.725rem;
  font-weight: 700;
  color: #0d9488;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Meet Me Section */
.meet-me-section {
  padding: 6rem 0;
  position: relative;
  background-color: var(--bg-white);
}
.meet-me-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 250, 252, 0.7));
  border: 1px solid rgba(226, 232, 240, 0.8);
  backdrop-filter: blur(20px);
  border-radius: 32px;
  padding: 3.5rem;
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 4rem;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}
.meet-me-img-wrapper {
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  border: 4px solid white;
  box-shadow: var(--shadow-md);
  position: relative;
}
.meet-me-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.meet-me-content h2 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  color: var(--text-dark);
  margin-bottom: 1.25rem;
  font-weight: 800;
}
.meet-me-content p {
  font-size: 1.1rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.meet-me-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2rem;
}

/* Losing Section */
.losing-section {
  padding: 6rem 0;
  background-color: var(--bg-light);
  position: relative;
}
.losing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto 3rem auto;
}
.losing-card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 1.75rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.losing-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.losing-icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(37, 99, 235, 0.06);
  color: var(--primary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.losing-text {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.4;
}
.losing-banner {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: white;
  border-radius: 20px;
  padding: 2rem;
  max-width: 1000px;
  margin: 0 auto;
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 2.5vw, 1.4rem);
  font-weight: 700;
  box-shadow: var(--shadow-lg);
  text-align: center;
}

/* Audit Grid 7 */
.audit-grid-7 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 2.5rem auto 3rem auto;
}
.audit-card-item {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  text-align: left;
}
.audit-card-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(6, 182, 212, 0.25);
}
.audit-card-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(6, 182, 212, 0.08);
  color: var(--primary-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-family: var(--font-heading);
  flex-shrink: 0;
}
.audit-card-text {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.4;
}
.audit-card-item.double-width {
  grid-column: span 3;
  justify-content: center;
  align-items: center;
  max-width: 600px;
  margin: 0 auto;
  width: 100%;
}
.audit-slots-notice {
  background: rgba(245, 158, 11, 0.06);
  border: 1px solid rgba(245, 158, 11, 0.15);
  color: #b45309;
  border-radius: 16px;
  padding: 1.25rem 2rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto 2.5rem auto;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

/* Expect Section */
.expect-section {
  padding: 6rem 0;
  text-align: center;
  background-color: var(--bg-white);
}
.expect-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}
.expect-card {
  background: #faf5ff;
  border: 1px solid #f3e8ff;
  border-radius: 24px;
  padding: 2.25rem;
  text-align: left;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.expect-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary-purple), transparent);
  clip-path: polygon(0 0, 100% 0, 0 100%);
  border-top-left-radius: 24px;
  opacity: 0.8;
}
.expect-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(124, 58, 237, 0.2);
}
.expect-card-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.4;
  margin-top: 0.5rem;
}

/* Form Styles Extension */
.form-group-icon {
  position: relative;
}
.form-group-icon .form-input-icon {
  position: absolute;
  left: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  pointer-events: none;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.form-group-icon .form-input {
  padding-left: 3rem;
}
.form-input-help {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
  display: block;
}
.form-note-box a:hover {
  text-decoration: underline !important;
}
.testimonial-card-v2:hover {
  transform: translateY(-8px);
  border-color: rgba(37, 99, 235, 0.25) !important;
  box-shadow: var(--shadow-lg) !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .meet-me-card {
    grid-template-columns: 1fr;
    padding: 2.5rem 1.5rem;
    gap: 2rem;
    text-align: center;
  }
  .meet-me-content {
    order: 1;
  }
  .meet-me-img-wrapper {
    order: 2;
    max-width: 280px;
    margin: 0 auto;
  }
  .losing-grid {
    grid-template-columns: 1fr;
  }
  .losing-card {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
  }
  .audit-grid-7 {
    grid-template-columns: repeat(2, 1fr);
  }
  .audit-card-item.double-width {
    grid-column: span 2;
  }
  .expect-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  .audit-grid-7 {
    grid-template-columns: 1fr;
  }
  .audit-card-item.double-width {
    grid-column: span 1;
  }
}

/* ========================================================================
   WORDPRESS FOOTER WIDGET STYLING
   ======================================================================== */
.footer-widgets {
  color: #94a3b8;
  font-size: 0.9rem;
}
.footer-widgets .widget {
  margin-bottom: 2rem;
}
.footer-widgets .widgettitle,
.footer-widgets .widget-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.footer-widgets ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-widgets ul li {
  margin-bottom: 0.75rem;
  padding-left: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  padding-bottom: 0.5rem;
}
.footer-widgets ul li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.footer-widgets ul li a {
  color: #94a3b8;
  transition: color var(--transition-fast), padding-left var(--transition-fast);
  display: inline-block;
}
.footer-widgets ul li a:hover {
  color: #ffffff;
  padding-left: 4px;
}
/* WordPress Default Widget elements (Search Form, input, buttons) */
.footer-widgets .search-form {
  display: flex;
  gap: 0.5rem;
  max-width: 100%;
}
.footer-widgets .search-field {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-input);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}
.footer-widgets .search-field::placeholder {
  color: #64748b;
}
.footer-widgets .search-field:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.2);
}
.footer-widgets .search-submit {
  background: var(--gradient-primary);
  border: none;
  color: #ffffff;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-input);
  font-family: var(--font-heading);
  font-weight: 600;
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}
.footer-widgets .search-submit:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}
.footer-widgets select {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  padding: 0.75rem;
  border-radius: var(--radius-input);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
}
.footer-widgets select option {
  background: #090d16;
  color: #ffffff;
}

