:root {
  --blue: #2563EB;
  --blue-hover: #1D4ED8;
  --text: #475569;
  --ink: #0f172a;
  --card: #F8FAFC;
  --bg: #FFFFFF;
  --bg-alt: #F9FAFB;
  --whatsapp: #25D366;
}

* {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
}

a {
  color: var(--blue);
  text-decoration: none
}

a:hover {
  text-decoration: underline
}

.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 32px 24px;

}

.section {
  padding: 80px 0;
  position: relative;
}

/* Enhanced section layouts */
.section .container {
  max-width: 1200px;
}

/* Section headers with better spacing */
.section h2 {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.section h2::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(135deg, var(--blue), var(--blue-hover));
  border-radius: 2px;
}

/* Section descriptions */
.section>.container>p:first-of-type {
  text-align: center;
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto 60px;
  color: var(--text);
  line-height: 1.6;
}

/* Section backgrounds with better visual hierarchy */
.section:nth-of-type(odd) {
  background: var(--bg);
}

.section:nth-of-type(even) {
  background: var(--bg-alt);
}

/* Hero section special styling */
.hero {
  background: linear-gradient(135deg, rgba(64, 64, 64, 0.5), rgba(0, 0, 0, 0.7)), url('./images/hero-banner-1.webp') center center / cover no-repeat !important;
}

/* Enhanced section backgrounds with better visual hierarchy */
#who {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

#why-flags {
  background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
}

#services {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

#process {
  background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
}

#results {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

#plans {
  background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
}

#why {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

#faq {
  padding: 20px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
}

#lead-magnet {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

#book {
  background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
}

h1,
h2,
h3 {
  color: var(--ink);
  line-height: 1.2;
  margin: 0 0 20px;
  font-weight: 700
}

h1 {
  font-size: clamp(38px, 6vw, 60px);
  margin-bottom: 20px;
}

h2 {
  font-size: clamp(30px, 4vw, 42px);
  margin-bottom: 20px;
}

h3 {
  font-size: clamp(24px, 3vw, 28px);
  margin-bottom: 12px;
}

p {
  margin: 0 0 16px;
}

/* Buttons */
.btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--blue), var(--blue-hover));
  color: #fff;
  padding: 12px 24px;
  /* Standardized padding */
  line-height: 1.2;
  /* Standardized line-height */
  border-radius: 10px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: all .2s ease;
  animation: pulse 1s infinite;
  /* Increased frequency */
  text-transform: uppercase;
  letter-spacing: 0.04em;
  position: relative;
  /* Needed for pseudo-element hover effect */
  overflow: hidden;
  /* Hide overflow of pseudo-element */
  z-index: 1;
}

.btn:hover {
  top: -2px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.btn.outline {
  background: linear-gradient(135deg, var(--blue), var(--blue-hover));
  color: #fff;
  border: none;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  padding: 12px 24px;
  /* Same padding as regular button */
  line-height: 1.2;
  /* Standardized line-height */
}

/* Remove WhatsApp icon from outline button */
.btn.outline i {
  display: none !important;
}

.btn.outline:hover {
  top: -2px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.btn.outline i {
  display: none !important;
}

/* Hide WhatsApp icon */

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.4);
  }

  50% {
    transform: scale(1.03);
    box-shadow: 0 0 0 10px rgba(37, 99, 235, 0);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 99, 235, 0);
  }
}

/* Hover effect */
.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: var(--blue-hover);
  /* Darker blue for hover */
  transition: all .3s ease-in-out;
  z-index: -1;
}

.btn:hover::before {
  width: 100%;
}

.btn.outline::before {
  background: var(--blue-hover);
  /* Darker blue for outline button hover */
}

.btn.outline:hover {
  color: #fff;
  /* Ensure white text on hover for outline buttons */
}

.grid {
  display: grid;
  gap: 40px;
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}

/* Enhanced grid layouts for different content types */
.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all .3s ease;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, var(--blue), var(--blue-hover));
  opacity: 0;
  transition: opacity .3s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--blue);
}

.card:hover::before {
  opacity: 1;
}

.proof {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  padding: 16px 24px;
  border-radius: 50px;
  display: inline-flex;
  gap: 16px;
  align-items: center;
  font-weight: 600;
  margin: 24px 0;
  font-size: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(37, 99, 235, 0.1);
}

.header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, .98);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #e5e7eb;
  z-index: 10;
  padding: 12px 0;
  transition: all .3s ease;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px
}

.nav a {
  font-weight: 600;
  color: var(--ink);
  transition: all .3s ease;
  position: relative;
}

.nav div:last-child a:not(.btn) {
  margin-left: 20px;
}

/* Apply margin only to non-button links */
.nav a:hover {
  color: var(--blue);
  text-decoration: none;
  transform: translateY(-2px);
}

/* Underline effect for nav links */
.nav a:not(.btn)::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background: var(--blue);
  transition: width .3s ease;
}

.nav a:not(.btn):hover::after {
  width: 100%;
}

/* Logo styling */
.nav .logo {
  height: 80px;
  width: auto;
  display: block;
}

/* Mobile menu toggle */
.mobile-menu-toggle {
  display: none;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  z-index: 1000;
  color: var(--ink);
  font-size: 20px;
}

.mobile-menu-toggle:hover {
  color: var(--blue);
}

/* Mobile navigation */
.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Hide navigation on mobile by default */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
}



@media (max-width: 768px) {
  .nav {
    justify-content: space-between;
    padding: 0 16px;
    position: relative;
  }

  .nav .logo {
    height: 70px;
    margin: 0 auto;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .mobile-menu-toggle {
    display: flex;
    order: 3;
    z-index: 1001;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(8px);
    flex-direction: column;
    padding: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    border-top: 1px solid #e5e7eb;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
  }

  .nav-links.active {
    display: flex;
    opacity: 1;
    transform: translateY(0);
  }

  .nav-links a {
    font-size: 16px;
    padding: 14px 24px;
    border-bottom: 1px solid #e5e7eb;
    width: 100%;
    text-align: left;
    position: relative;
    transition: all 0.2s ease;
    color: var(--ink);
  }

  .nav-links a:hover {
    background: rgba(37, 99, 235, 0.05);
    color: var(--blue);
  }

  .nav-links a:last-child {
    border-bottom: none;
  }

  .nav-links .btn {
    margin: 8px 24px 16px;
    width: calc(100% - 48px);
    text-align: center;
    padding: 12px 20px;
    font-size: 14px;
  }
}

.hero {
  padding: 30px 50px;
  /* Adjusted padding to bring content up further */
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)), url('./images/hero-banner-1.webp') center center / cover no-repeat;
  text-align: left;
  display: grid;
  grid-template-columns: 1fr;
  /* Default to single column on small screens */
  gap: 30px;
  align-items: center;
  min-height: auto;
}

/* Mobile-specific background adjustment */


@media (min-width: 900px) {
  .hero {
    grid-template-columns: 1fr 500px;
    /* Adjusted column width for form */
    text-align: left;
    gap: 50px;
    min-height: 600px;
  }

  .hero .content {
    text-align: left;
  }

  .hero .form-container {
    padding-left: 0;
    width: 100%;
    max-width: 500px;
    /* Constrain form width on larger screens */
    margin-left: auto;
    margin-right: auto;
  }
}

.form-container .form-heading {
  margin-bottom: 20px;
}

.form-container .form-description {
  margin-bottom: 30px;
}

@media screen and (max-width: 425px) {
  .form-container .form-heading {
    margin-bottom: 12px;
  }

  .form-container .form-description {
    margin-bottom: 24px;
  }
}

.hero h1 {
  margin-bottom: 16px
}

.hero .cta {
  justify-content: flex-start;
  /* Align CTA buttons to the left within the content div */
}

.small {
  font-size: 15px;
  opacity: .8;
}

.kicker {
  font-weight: 700;
  color: var(--blue);
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: 14px;
  margin-bottom: 10px
}

ul.clean {
  padding-left: 20px;
  margin: 0;
}

ul.clean li {
  margin-bottom: 12px;
  font-size: 16px;
  line-height: 1.6;
}

/* Enhanced process section styling */
#process ol {
  max-width: 800px;
  margin: 0 auto 60px;
  padding-left: 0;
  list-style: none;
  counter-reset: process-counter;
}

#process ol li {
  counter-increment: process-counter;
  position: relative;
  padding: 24px 32px 24px 80px;
  margin-bottom: 24px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border-left: 4px solid var(--blue);
  font-size: 16px;
  line-height: 1.6;
}

#process ol li::before {
  content: counter(process-counter);
  position: absolute;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--blue), var(--blue-hover));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
}

#process ol li strong {
  color: var(--ink);
  font-weight: 700;
}

/* Sticky bar */
.sticky {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: min(100% - 32px, 1100px);
  background: #1f2937;
  color: #fff;
  padding: 18px 24px;
  border-radius: 16px;
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.3);
  font-size: 17px;
}

.sticky .btn {
  background: #fff;
  color: var(--ink);
  animation: none;
}

.sticky .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Form */
label {
  display: block;
  font-weight: 600;
  margin: 6px 0 3px;
  /* Adjusted margin */
  color: var(--ink);
  font-size: 13px;
  /* Adjusted font size */
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  font: inherit;
  color: var(--ink);
  background: #ffffff;
  box-sizing: border-box;
  transition: all .3s ease;
  font-size: 15px;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
  transform: translateY(-1px);
}

.form-steps {
  display: grid;
  gap: 12px
}

/* Adjusted gap */
.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px
}

/* Adjusted gap */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: stretch;
  width: 100%;
}

.chips.platform-chips {
  flex-direction: column;
  gap: 8px;
  align-items: stretch;
  width: 100%;
}

/* Ensure platform and issue cards are the same size */
.chips.platform-chips label,
.chips label {
  min-height: 48px;
  min-width: 120px;
  padding: 14px 18px;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  justify-content: center;
  flex: 1;
  max-width: none;
}

.chips input {
  display: none
}

.chips label {
  border: 1px solid #cdd5e1;
  padding: 14px 18px;
  border-radius: 12px;
  cursor: pointer;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  transition: all .3s ease;
  font-weight: 500;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  min-width: 120px;
  text-align: center;
  line-height: 1.3;
  flex: 1;
  max-width: 200px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* Remove any icon styling to ensure no logos show */
.chips label i {
  display: none !important;
}

.chips input:checked+label {
  background: linear-gradient(135deg, var(--blue), var(--blue-hover));
  color: #fff;
  border-color: var(--blue);
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.3);
  transform: translateY(-2px);
}

/* Hover effect for chips */
.chips label:hover {
  border-color: var(--blue);
  background: linear-gradient(135deg, #e0e7ff 0%, #dbeafe 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.15);
}

/* FAQ */
details.card {
  cursor: pointer;
  padding: 24px 32px;
  border-left: 4px solid transparent;
  transition: all .3s ease;
}

details.card:hover {
  border-left-color: var(--blue);
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

details.card summary {
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
  cursor: pointer;
  font-size: 18px;
  position: relative;
  padding-right: 30px;
}

details.card[open] summary::after {
  transform: translateY(-50%) rotate(180deg);
}

details.card[open] {
  border-left: 4px solid var(--blue);
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

/* Footer */
.footer {
  background: #0f172a;
  color: #a3b3cc;
  padding: 60px 0 30px;
}

.footer a {
  color: #93c5fd;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer a:hover {
  color: #c0dfff;
  text-decoration: underline;
}

.footer .container {
  padding: 40px 24px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
  text-align: left;
}

.footer-brand,
.footer-contact,
.footer-links {
  padding: 0;
}

.footer-brand p,
.footer-contact p,
.footer-links p {
  margin: 8px 0;
  line-height: 1.8;
}

.footer-brand strong {
  color: #ffffff;
  font-size: 22px;
  display: block;
  margin-bottom: 12px;
}

.footer-contact h3,
.footer-links h3 {
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
  margin-top: 0;
}

.footer-contact p i,
.footer-links p i {
  margin-right: 8px;
  color: #93c5fd;
  width: 20px;
  display: inline-block;
}

.footer-bottom {
  border-top: 1px solid rgba(163, 179, 204, 0.2);
  padding-top: 24px;
  margin-top: 24px;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  font-size: 14px;
}

@media (max-width: 768px) {
  .footer {
    padding: 40px 0 20px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 32px;
    text-align: center;
  }

  .footer-brand,
  .footer-contact,
  .footer-links {
    text-align: center;
  }

  .footer-contact p,
  .footer-links p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }
}

.hidden {
  display: none !important
}

@media (max-width: 768px) {
  .nav a {
    margin-left: 12px;
  }

  .hero {
    padding: 60px 0 30px;
    gap: 20px;
    grid-template-columns: 1fr !important;
    /* Force single column on mobile */
    text-align: center;
    background-size: cover;
    /* keep full coverage */
    background-position: top center;
    /* show top part instead of zoomed center */
    background-repeat: no-repeat;
  }

  .sticky {
    width: calc(100% - 24px);
    padding: 14px 18px;
  }

  .sticky span {
    font-size: 15px;
  }

  .proof {
    margin: 16px 0;
    padding: 10px 16px;
    font-size: 14px;
    gap: 10px;
  }

  /* General typography adjustments for smaller screens */
  h1 {
    font-size: clamp(32px, 8vw, 48px);
    margin-bottom: 16px;
  }

  h2 {
    font-size: clamp(28px, 6vw, 36px);
    margin-bottom: 16px;
  }

  h3 {
    font-size: clamp(22px, 5vw, 26px);
    margin-bottom: 10px;
  }

  p {
    font-size: 15px;
    margin-bottom: 12px;
  }

  /* Grid adjustments for smaller screens */
  .grid {
    gap: 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .chips {
    justify-content: center;
  }

  .hero .content h1 {
    font-size: clamp(32px, 8vw, 48px);
  }

  .hero .content p {
    font-size: 15px;
  }

  .hero .content .cta {
    justify-content: center;
  }

  /* Adjustments for the sticky buttons on smaller screens */
  .fab-container {
    bottom: 90px;
    /* To prevent overlap with the mobile sticky footer */
    right: 16px;
    gap: 10px;
    z-index: 1001;
    /* Ensure it's above mobile footer */
  }

  .fab {
    width: 52px;
    height: 52px;
    font-size: 18px;
    display: flex !important;
    /* Force display on mobile */
  }

  .fab.whatsapp {
    display: flex !important;
    /* Always visible on mobile */
    background: #25D366;
  }

  .fab.whatsapp i {
    font-size: 20px !important;
    color: white !important;
  }

  /* Ensure no horizontal scrolling on mobile */
  body {
    overflow-x: hidden;
    width: 100%;
  }

  .container {
    max-width: 100%;
    padding: 20px;
  }
}

@media (max-width: 900px) {
  .hero {
    padding: 60px 24px 30px;
    gap: 30px;
    grid-template-columns: 1fr !important;
    /* Force single column */
    min-height: auto;
    /* Remove min-height constraint on mobile */
    background-position: top center;
    text-align: center;
  }

  .hero .content {
    text-align: center;
  }

  .hero .cta {
    justify-content: center;
  }

  .hero .form-container {
    padding: 20px;
    /* Adjusted padding for small screens */
    max-width: 100%;
    margin: 0;
  }

  .hero .form-container h2 {
    font-size: clamp(22px, 5vw, 26px);
    /* Adjusted font size for small screens */
  }

  .form-steps {
    gap: 16px;
    /* Adjusted gap for small screens */
  }

  .form-row {
    gap: 10px;
    /* Adjusted gap for small screens */
    grid-template-columns: 1fr;
    /* Stack form rows on small screens */
  }

  .chips label {
    padding: 8px 14px;
    /* Adjusted padding for small screens */
    font-size: 13px;
    /* Adjusted font size for small screens */
  }
}

@media (max-width: 480px) {
  .chips.platform-chips {
    align-items: stretch;
    /* Stretch platform chips to uniform width */
    width: 100%;
  }

  .chips.platform-chips label {
    width: 100%;
    justify-content: center;
    min-height: 44px;
    min-width: 100px;
    padding: 12px 16px;
  }

  /* Ensure issue chips also have uniform sizing on mobile */
  .chips label {
    min-height: 44px;
    min-width: 100px;
    padding: 12px 16px;
    width: 100%;
    justify-content: center;
  }

  .fab-container {
    bottom: 80px;
    /* Further adjust for very small screens */
    right: 12px;
    gap: 8px;
    z-index: 1001;
    /* Ensure it's above mobile footer */
  }

  .fab {
    width: 48px;
    height: 48px;
    font-size: 16px;
    display: flex !important;
    /* Force display on very small screens */
  }

  .fab.whatsapp {
    display: flex !important;
    /* Always visible on very small screens */
    background: #25D366;
  }

  .fab.whatsapp i {
    font-size: 18px !important;
    color: white !important;
  }
}

@media (prefers-reduced-motion:no-preference) {

  .btn,
  .chips label,
  .card {
    transition: all .2s ease
  }
}

.sticky .btn {
  animation: none;
  box-shadow: none;
  transition: all .2s ease;
}

.sticky .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.hero .form-container {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  padding: 32px 28px;
  border-radius: 20px;
  border: 1px solid rgba(37, 99, 235, 0.1);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
}

.hero .form-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, var(--blue), var(--blue-hover));
}

.hero .form-container h2,
.hero .form-container p {
  text-align: center;
  /* margin-bottom: 4px; */
  font-size: clamp(18px, 4vw, 22px);
}

.hero .form-container p {
  margin-bottom: 8px;
  font-size: 14px;
}

@media (min-width: 900px) {
  .hero .form-container {
    padding: 24px 28px;
    /* Slightly increased vertical padding for large screens */
  }

  .hero .form-container h2 {
    font-size: clamp(22px, 3vw, 26px);
  }
}

@media (max-width: 900px) {
  .hero .form-container h2 {
    font-size: clamp(20px, 5vw, 24px);
    /* Adjusted for small screens */
  }

  .form-steps {
    gap: 10px;
  }

  .form-row {
    gap: 8px;
  }

  .chips label {
    padding: 7px 14px;
    font-size: 12px;
  }

  .hero {
    background-position: top center;
  }
}

.hero .content {
  text-align: left;
  color: #fff;
  /* White text for better contrast */
  text-shadow: none;
}

.hero .content h1 {
  margin-bottom: 16px;
  color: #fff;
  /* White text for better contrast */
  text-shadow: none;
}

.hero .content p {
  margin-bottom: 20px;
  color: #fff;
  /* White text for better contrast */
  text-shadow: none;
}

.hero .content .proof {
  margin: 20px 0;
  background: rgba(255, 255, 255, 0.9);
  /* Lighter, more opaque background for visibility */
  color: var(--ink);
  /* Dark text for contrast against light proof bar */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.hero .content .cta {
  margin-top: 24px;
  /* Slightly reduced margin-top */
  display: flex;
  gap: 12px;
  /* Reduced gap between buttons */
  flex-wrap: wrap;
  justify-content: flex-start;
  /* Align CTA buttons to the left within the content div */
}

/* Global button alignment for various contexts */
.cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  /* Default to center alignment for generic CTA groups */
  margin-top: 40px;
}

.cta-group.align-left {
  justify-content: flex-start;
}

.cta-group.align-right {
  justify-content: flex-end;
}

/* Enhanced section CTAs */
.section .cta-group {
  margin-top: 60px;
}

.section .cta-group .btn {
  min-width: 200px;
  text-align: center;
}

@media (max-width: 900px) {
  .hero {
    padding: 60px 24px 30px;
    gap: 30px;
    grid-template-columns: 1fr;
    min-height: auto;
    /* Remove min-height constraint on mobile */
  }

  .hero .content {
    text-align: center;
  }

  .hero .cta {
    justify-content: center;
  }

  .hero .form-container {
    padding: 20px;
    /* Adjusted padding for small screens */
    max-width: 100%;
    margin: 0;
  }

  .hero .form-container h2 {
    font-size: clamp(22px, 5vw, 26px);
    /* Adjusted font size for small screens */
  }

  .form-steps {
    gap: 16px;
    /* Adjusted gap for small screens */
  }

  .form-row {
    gap: 10px;
    /* Adjusted gap for small screens */
    grid-template-columns: 1fr;
    /* Stack form rows on small screens */
  }

  .chips label {
    padding: 8px 14px;
    /* Adjusted padding for small screens */
    font-size: 13px;
    /* Adjusted font size for small screens */
  }
}

/* Hero section responsive layout */
@media (max-width: 1200px) {
  .hero {
    gap: 40px;
  }

  .hero .form-container {
    max-width: 450px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 50px 20px 30px;
    gap: 25px;
  }

  .hero .form-container {
    padding: 18px 20px;
  }

  .hero .content h1 {
    font-size: clamp(32px, 8vw, 48px);
  }

  .hero .content p {
    font-size: 15px;
  }

  .hero .content .cta {
    justify-content: center;
    gap: 10px;
  }

  .hero .content .cta .btn {
    padding: 10px 20px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 40px 16px 25px;
    gap: 20px;
  }

  .hero .form-container {
    padding: 16px 18px;
  }

  .hero .content .cta {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .hero .content .cta .btn {
    width: 100%;
    max-width: 280px;
  }

  .chips.platform-chips {
    align-items: center;
    /* Center platform chips on very small screens */
    width: 100%;
  }

  .chips.platform-chips label {
    width: 100%;
    justify-content: center;
  }
}

/* Better responsive container and sections */
@media (max-width: 768px) {
  .container {
    padding: 24px 20px;
  }

  .section {
    padding: 80px 0;
  }

  .section h2 {
    margin-bottom: 40px;
  }

  .section>.container>p:first-of-type {
    margin-bottom: 40px;
    font-size: 16px;
  }

  .grid-3,
  .grid-2,
  .grid-4 {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .cta-group {
    margin-top: 20px;
    gap: 12px;
  }

  .section .cta-group {
    margin-top: 40px;
  }

  #process ol li {
    padding: 20px 24px 20px 70px;
    margin-bottom: 20px;
  }

  #process ol li::before {
    width: 35px;
    height: 35px;
    font-size: 16px;
    left: 20px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 20px 16px;
  }

  .section {
    padding: 60px 0;
  }

  .card {
    padding: 24px;
  }

  .section h2 {
    margin-bottom: 30px;
  }

  .section>.container>p:first-of-type {
    margin-bottom: 30px;
    font-size: 15px;
  }

  .cta-group .btn {
    min-width: 100%;
  }
}

/* Floating Action Buttons */
.fab-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 1000;
  pointer-events: auto;
}

.fab {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex !important;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  font-size: 20px;
  color: white;
}

.fab:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.fab.scroll-top {
  background: linear-gradient(135deg, #1f2937, #374151);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.fab.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Ensure FAB buttons are visible on desktop */
@media (min-width: 769px) {
  .fab-container {
    display: flex !important;
    z-index: 1000;
  }

  .fab {
    display: flex !important;
  }

  .fab.whatsapp {
    display: flex !important;
  }
}

.fab.whatsapp {
  background: #25D366;
  display: flex !important;
  /* Always visible */
}

/* Font Awesome icon styles for FAB buttons */
.fab i {
  font-size: 20px;
  color: white;
  display: block;
}

.fab.whatsapp i {
  font-size: 22px;
  color: white !important;
}

.fab.scroll-top i {
  font-size: 18px;
  color: white !important;
}

/* Ensure WhatsApp button is always visible */
.fab.whatsapp {
  display: flex !important;
  background: #25D366 !important;
  z-index: 1001;
}

/* Mobile Sticky Footer */
.mobile-sticky-footer {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1f2937;
  padding: 16px 20px;
  z-index: 999;
  border-top: 1px solid #374151;
}

.mobile-sticky-footer .footer-buttons {
  display: flex;
  gap: 1px;
  background: #374151;
  border-radius: 8px;
  overflow: hidden;
}

.mobile-sticky-footer .footer-btn {
  flex: 1;
  background: #1f2937;
  color: white;
  border: none;
  padding: 14px 16px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.mobile-sticky-footer .footer-btn:hover {
  background: #374151;
}

.mobile-sticky-footer .footer-btn:first-child {
  border-radius: 8px 0 0 8px;
}

.mobile-sticky-footer .footer-btn:last-child {
  border-radius: 0 8px 8px 0;
}

/* Show mobile footer only on mobile */
@media (max-width: 768px) {
  .mobile-sticky-footer {
    display: block;
  }

  /* Adjust FAB position to avoid overlap with mobile footer */
  .fab-container {
    bottom: 90px;
  }
}

/* Hide mobile footer on desktop */
@media (min-width: 769px) {
  .mobile-sticky-footer {
    display: none !important;
  }

  /* Reset FAB position for desktop */
  .fab-container {
    bottom: 20px;
  }
}

/* Section Subtitle */
.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: var(--text);
  margin-bottom: 50px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* Flag Timeline - New Design */
.flag-timeline {
  position: relative;
  margin: 60px 0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.flag-timeline::before {
  content: '';
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, #e5e7eb, #d1d5db, #e5e7eb);
  z-index: 1;
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
  padding-left: 80px;
  transition: all 0.3s ease;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-marker {
  position: absolute;
  left: 0;
  top: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
  border: 3px solid white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 2;
  transition: all 0.3s ease;
}

.timeline-marker i {
  font-size: 20px;
  color: #6b7280;
  transition: all 0.3s ease;
}

.timeline-item:hover .timeline-marker {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.timeline-item:hover .timeline-marker i {
  color: white;
}

.timeline-content {
  background: white;
  padding: 24px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.timeline-item:hover .timeline-content {
  transform: translateX(8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-color: #3b82f6;
}

.timeline-content h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}

.timeline-content p {
  color: var(--text);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 12px;
}

.risk-level {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.risk-level.high {
  background: linear-gradient(135deg, #fef2f2, #fee2e2);
  color: #dc2626;
  border: 1px solid rgba(220, 38, 38, 0.2);
}

.risk-level.medium {
  background: linear-gradient(135deg, #fffbeb, #fef3c7);
  color: #d97706;
  border: 1px solid rgba(217, 119, 6, 0.2);
}

.risk-level.low {
  background: linear-gradient(135deg, #f0fdf4, #dcfce7);
  color: #16a34a;
  border: 1px solid rgba(22, 163, 74, 0.2);
}

/* Flag Insights */
.flag-insights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 60px 0 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.insight-card {
  padding: 32px 24px;
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.insight-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.insight-card.primary {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid rgba(59, 130, 246, 0.1);
}

.insight-card.primary::before {
  background: linear-gradient(90deg, #3b82f6, #1d4ed8);
}

.insight-card.secondary {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid rgba(16, 185, 129, 0.1);
}

.insight-card.secondary::before {
  background: linear-gradient(90deg, #10b981, #059669);
}

.insight-card.tertiary {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid rgba(245, 158, 11, 0.1);
}

.insight-card.tertiary::before {
  background: linear-gradient(90deg, #f59e0b, #d97706);
}

.insight-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.insight-card:hover::before {
  transform: scaleX(1);
}

.insight-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.3s ease;
}

.insight-card.primary .insight-icon {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.insight-card.secondary .insight-icon {
  background: linear-gradient(135deg, #10b981, #059669);
}

.insight-card.tertiary .insight-icon {
  background: linear-gradient(135deg, #f59e0b, #d97706);
}

.insight-icon i {
  font-size: 24px;
  color: white;
}

.insight-card:hover .insight-icon {
  transform: scale(1.1) rotate(5deg);
}

.insight-content h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}

.insight-content p {
  color: var(--text);
  font-size: 14px;
  line-height: 1.6;
}

/* Responsive Design for Flag Timeline */
@media (max-width: 768px) {
  .flag-timeline {
    margin: 40px 0;
    padding: 0 16px;
  }

  .flag-timeline::before {
    left: 25px;
  }

  .timeline-item {
    padding-left: 60px;
    margin-bottom: 30px;
  }

  .timeline-marker {
    width: 50px;
    height: 50px;
    left: -5px;
  }

  .timeline-marker i {
    font-size: 16px;
  }

  .timeline-content {
    padding: 20px;
  }

  .timeline-content h3 {
    font-size: 16px;
  }

  .flag-insights {
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 40px 0 30px;
    padding: 0 16px;
  }

  .insight-card {
    padding: 24px 20px;
  }

  .insight-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 16px;
  }

  .insight-icon i {
    font-size: 20px;
  }

  .insight-content h3 {
    font-size: 18px;
  }

  .section-subtitle {
    font-size: 16px;
    margin-bottom: 40px;
    padding: 0 16px;
  }
}

@media (max-width: 1024px) {
  .flag-timeline {
    margin: 50px 0;
  }

  .timeline-item {
    margin-bottom: 35px;
  }

  .flag-insights {
    gap: 20px;
    margin: 50px 0 35px;
  }
}




/* Responsive Design for Services */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto auto;
    gap: 24px;
    margin: 50px 0;
  }

  .service-card:nth-child(4) {
    grid-column: 1 / 2;
    grid-row: 3;
    justify-self: stretch;
    max-width: none;
  }

  .service-card:nth-child(5) {
    grid-column: 2 / 3;
    grid-row: 3;
    justify-self: stretch;
    max-width: none;
  }

  .service-card {
    padding: 28px 20px;
    min-height: 300px;
  }

  .services-stats {
    gap: 40px;
    margin: 50px 0 35px;
  }
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 40px 0;
    padding: 0 16px;
  }

  .service-card {
    padding: 24px 20px;
    min-height: auto;
  }

  .service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
  }

  .service-icon i {
    font-size: 24px;
  }

  .service-content h3 {
    font-size: 18px;
  }

  .services-stats {
    gap: 20px;
    margin: 40px 0 30px;
    padding: 0 16px;
  }

  .stat-item {
    padding: 20px 16px;
    min-width: 100px;
  }

  .stat-number {
    font-size: 28px;
  }
}

/* Process Flow - Horizontal Design */
.process-flow {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 24px;
  margin: 60px 0;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.process-flow::before {
  display: none;
}

.flow-step {
  flex: 1;
  background: white;
  border-radius: 20px;
  padding: 32px 24px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid #e5e7eb;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
  text-align: center;
}

.flow-step:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
  border-color: #3b82f6;
}

.step-header {
  margin-bottom: 24px;
  position: relative;
}

.step-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  transition: all 0.3s ease;
}

.step-icon i {
  font-size: 24px;
  color: white;
}

.flow-step:hover .step-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.step-badge {
  background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
  color: #3b82f6;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 20px;
  display: inline-block;
}

.step-body h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}

.step-duration {
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  color: #d97706;
  font-weight: 600;
  font-size: 13px;
  padding: 4px 10px;
  border-radius: 16px;
  display: inline-block;
  margin-bottom: 16px;
}

.step-summary {
  color: var(--text);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.step-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text);
}

.detail-item i {
  color: #10b981;
  font-size: 12px;
}

.step-connector {
  position: absolute;
  right: -12px;
  top: 50%;
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
  z-index: 3;
  transform: translateY(-50%);
}

.step-connector i {
  color: white;
  font-size: 12px;
}

.flow-step:last-child .step-connector {
  display: none;
}

/* Process Highlights */
.process-highlights {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin: 60px 0 40px;
  flex-wrap: wrap;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid rgba(59, 130, 246, 0.1);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  min-width: 200px;
}

.highlight-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  border-color: rgba(59, 130, 246, 0.2);
}

.highlight-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.highlight-icon i {
  color: white;
  font-size: 16px;
}

.highlight-content h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
}

.highlight-content p {
  font-size: 13px;
  color: var(--text);
}

/* Responsive Design for Process Flow */
@media (max-width: 1024px) {
  .process-flow {
    flex-direction: column;
    gap: 20px;
    margin: 50px 0;
  }

  .process-flow::before {
    display: none;
  }

  .flow-step {
    text-align: left;
    padding: 24px 20px;
  }

  .step-icon {
    margin: 0 0 16px 0;
  }

  .step-connector {
    display: none;
  }

  .process-highlights {
    gap: 20px;
    margin: 50px 0 35px;
  }
}

@media (max-width: 768px) {
  .process-flow {
    margin: 40px 0;
    padding: 0 16px;
  }

  .flow-step {
    padding: 20px 16px;
  }

  .step-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 12px;
  }

  .step-icon i {
    font-size: 20px;
  }

  .step-body h3 {
    font-size: 18px;
  }

  .process-highlights {
    gap: 16px;
    margin: 40px 0 30px;
    padding: 0 16px;
  }

  .highlight-item {
    padding: 16px;
    min-width: auto;
    flex: 1;
  }

  .highlight-icon {
    width: 35px;
    height: 35px;
  }

  .highlight-icon i {
    font-size: 14px;
  }

  .highlight-content h4 {
    font-size: 14px;
  }

  .highlight-content p {
    font-size: 12px;
  }
}

/* Target Audience Grid - Interactive Cards */
.target-audience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin: 60px 0;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.audience-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid rgba(37, 99, 235, 0.1);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.audience-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--blue-hover));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.audience-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  border-color: rgba(37, 99, 235, 0.2);
}

.audience-card:hover::before {
  transform: scaleX(1);
}

.card-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--blue), var(--blue-hover));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  transition: all 0.3s ease;
}

.card-icon i {
  font-size: 32px;
  color: white;
}

.audience-card:hover .card-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

.audience-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}

.spend-range {
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
  color: var(--blue);
  font-weight: 600;
  font-size: 14px;
  padding: 8px 16px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 16px;
}

.card-description {
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 24px;
}

.card-stats {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stat {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text);
  font-weight: 500;
}

.stat i {
  color: var(--blue);
  font-size: 14px;
}

/* Trust Indicators */
.trust-indicators {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin: 60px 0 40px;
  flex-wrap: wrap;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  border-radius: 12px;
  border: 1px solid rgba(37, 99, 235, 0.1);
  transition: all 0.3s ease;
}

.trust-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  border-color: rgba(37, 99, 235, 0.2);
}

.trust-item i {
  font-size: 20px;
  color: var(--blue);
}

.trust-item span {
  font-weight: 600;
  color: var(--ink);
  font-size: 15px;
}

/* Responsive Design for Interactive Cards */
@media (max-width: 1024px) {
  .target-audience-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin: 50px 0;
  }

  .audience-card {
    padding: 28px 20px;
    min-height: 300px;
  }

  .trust-indicators {
    gap: 32px;
    margin: 50px 0 35px;
  }
}

@media (max-width: 768px) {
  .target-audience-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 40px 0;
    padding: 0 16px;
  }

  .audience-card {
    padding: 24px 20px;
  }

  .card-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
  }

  .card-icon i {
    font-size: 24px;
  }

  .audience-card h3 {
    font-size: 18px;
  }

  .trust-indicators {
    gap: 16px;
    margin: 40px 0 30px;
    padding: 0 16px;
  }

  .trust-item {
    padding: 12px 16px;
    font-size: 14px;
    flex: 1;
    min-width: 140px;
    justify-content: center;
  }

  .trust-item {
    padding: 12px 16px;
    font-size: 14px;
  }
}

/* Enhanced Services Section Styles */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin: 60px 0;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.service-card {
  background: white;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  height: 240px;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, var(--blue), var(--blue-hover));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  border-color: rgba(37, 99, 235, 0.2);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--blue), var(--blue-hover));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

.service-icon i {
  font-size: 28px;
  color: white;
}

.service-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.3;
}

.service-description {
  color: var(--text);
  font-size: 15px;
  line-height: 1.4;
  margin-bottom: 16px;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: row;
  gap: 16px;
  flex-wrap: wrap;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text);
  white-space: nowrap;
}

.service-features li i {
  color: var(--blue);
  font-size: 12px;
  width: 14px;
  flex-shrink: 0;
}



/* Services CTA Section */
.services-cta {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  border-radius: 20px;
  padding: 48px;
  text-align: center;
  margin-top: 60px;
  border: 1px solid rgba(37, 99, 235, 0.1);
}

.services-cta .cta-content h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 16px;
}

.services-cta .cta-content p {
  font-size: 18px;
  color: var(--text);
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.services-cta .cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Responsive Design for Services */
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    margin: 40px 0;
  }

  .service-card {
    height: auto;
    padding: 24px;
  }
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin: 40px 0;
  }

  .service-card {
    padding: 16px;
    min-height: auto;
  }

  .service-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 20px;
  }

  .service-icon i {
    font-size: 24px;
  }

  .service-content h3 {
    font-size: 20px;
  }

  .services-cta {
    padding: 32px 24px;
    margin-top: 40px;
  }

  .services-cta .cta-content h3 {
    font-size: 24px;
  }

  .services-cta .cta-content p {
    font-size: 16px;
  }

  .services-cta .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .services-cta .cta-buttons .btn {
    width: 100%;
    max-width: 300px;
  }
}

/* Plans Section - Aligned Buttons */
.grid.grid-3 .card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.grid.grid-3 .card .cta-group {
  margin-top: auto;
}

.clean {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Consultation Options Styles */
.consultation-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 40px 0;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.option-card {
  background: white;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.option-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  border-color: rgba(37, 99, 235, 0.2);
}

.option-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--blue), var(--blue-hover));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  transition: all 0.3s ease;
}

.option-card:hover .option-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

.option-icon i {
  font-size: 28px;
  color: white;
}

.option-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 16px;
}

.option-card p {
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
}

.option-card .btn {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.consultation-note {
  text-align: center;
  margin-top: 30px;
  padding: 20px;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  border-radius: 12px;
  border: 1px solid rgba(37, 99, 235, 0.1);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.consultation-note p {
  margin: 0;
  color: var(--text);
  font-size: 16px;
}

/* Responsive Consultation Options */
@media (max-width: 1024px) {
  .consultation-options {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .consultation-options {
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 30px 0;
  }

  .option-card {
    padding: 24px 20px;
  }

  .option-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 20px;
  }

  .option-icon i {
    font-size: 24px;
  }

  .option-card h3 {
    font-size: 18px;
  }

  .consultation-note {
    margin-top: 20px;
    padding: 16px;
  }

  .consultation-note p {
    font-size: 14px;
  }
}

/* ...all your existing styles ... */


/* ========================= */
/* Hero CTA Button Overrides */
/* ========================= */
/* Scoped only to hero CTA buttons */
/* ========================= */
/* Hero CTA Button Overrides */
/* ========================= */
/* Improve hero CTA buttons */
/* ========================= */
/* Hero CTA Button Overrides */
/* ========================= */
.hero .cta-group .btn {
  all: unset;
  /* reset global .btn styles */
  display: inline-block;
  font-size: 16px;
  /* slightly larger */
  font-weight: 600;
  padding: 16px 32px;
  /* more comfortable spacing */
  border-radius: 9999px;
  /* pill shape */
  cursor: pointer;
  transition: all 0.25s ease-in-out;
  text-align: center;
  line-height: 1.2;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  /* subtle depth */
}

/* Left button (primary: blue → white on hover) */
.hero .cta-group .btn:first-child {
  background: linear-gradient(135deg, var(--blue), var(--blue-hover));
  color: #fff;
  border: 2px solid var(--blue);
}

.hero .cta-group .btn:first-child:hover {
  background: #fff;
  color: var(--blue);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.25);
  /* glow */
}

/* Right button (secondary: white → blue on hover) */
.hero .cta-group .btn:last-child {
  background: #fff;
  color: var(--blue);
  border: 2px solid var(--blue);
}

.hero .cta-group .btn:last-child:hover {
  background: linear-gradient(135deg, var(--blue), var(--blue-hover));
  color: #fff;
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.25);
}

/* Simple form layout */
/* White card style for form */
.simple-form {
  display: grid;
  gap: 20px;
  /* more space between fields */
  background: #fff;
  padding: 32px 28px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  max-width: 500px;
  /* prevent form from being too wide */
  margin: 0 auto;
  /* center it */
}

/* Form heading */
.simple-form .form-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--ink);
  text-align: center;
}

/* Form row spacing */
.simple-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  /* spacing between two inputs */
}

@media screen and (max-width: 425px) {
  .simple-form .form-row {
    gap: 0;
  }
}

/* Input, select, textarea */
.simple-form input,
.simple-form select,
.simple-form textarea {
  width: 100%;
  padding: 14px 16px;
  /* more padding inside */
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  font: inherit;
  font-size: 15px;
  line-height: 1.4;
  background: #fff;
  transition: all 0.3s ease;
}

.simple-form textarea {
  min-height: 80px;
  /* taller textarea */
  resize: vertical;
}

.simple-form input:focus,
.simple-form select:focus,
.simple-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
  outline: none;
}


.simple-form textarea {
  resize: vertical;
}

.simple-form .cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
}

/* SLA confirmation message */
.sla-message {
  margin-top: 16px;
  text-align: center;
  color: #4b5563;
  /* neutral gray */
  font-size: 14px;
  line-height: 1.4;
}

.hidden {
  display: none;
}

/* Best For section */
.best-for {
  padding: 60px 0;
  background: #f9fafb;
}

.best-for .section-title {
  text-align: center;
  font-weight: 700;
  margin-bottom: 40px;
}

.best-for .cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  align-items: stretch;
}

.best-for .card {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  /* flexbox layout */
  flex-direction: column;
  /* stack content vertically */
}

.best-for .card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.1);
}

.best-for .card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--blue);
}

.best-for .card p {
  font-size: 15px;
  color: #4b5563;
  margin-bottom: 24px;
  line-height: 1.5;
  flex-grow: 1;
  /* take available space, pushes button to bottom */
}

.best-for .card .btn {
  margin-top: auto;
  /* push to bottom */
  align-self: center;
  /* center horizontally */
  border-radius: 9999px;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 600;
  width: auto;
  /* button only as wide as its text */
  display: inline-block;
  /* prevent stretching */
}

/* Proven Results */
/* Proven Results */
.proven-results {
  padding: 30px 0;
  /* taller section */
  background: #578cff;
  /* dark background */
  color: #fff;
  text-align: center;
}

.proven-results .section-title {
  /* font-size: 32px; */
  /* font-weight: 700; */
  margin-bottom: 50px;
  color: #fff;
  /* force title to be white */
}

.proven-results .results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
}

.proven-results .result-card h3 {
  font-size: 36px;
  /* bigger numbers */
  font-weight: 700;
  margin-bottom: 12px;
  color: #fff;
  /* highlight */
}

.proven-results .result-card p {
  font-size: 16px;
  color: #fff;
  /* lighter gray for readability */
}

/* ======================== */
/* Ad Policies Section      */
/* ======================== */
.ad-policies {
  padding: 80px 0;
  background: #fff;
  text-align: center;
}

.ad-policies .section-title {
  /* font-size: 28px; */
  /* font-weight: 700; */
  margin-bottom: 40px;
  color: #111827;
}

.ad-policies .policies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.ad-policies .policy-card {
  background: #fff;
  border-left: 5px solid var(--blue);
  /* accent left border */
  border-radius: 8px;
  padding: 20px 20px 20px 28px;
  /* extra left padding so text doesn’t touch border */
  text-align: left;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ad-policies .policy-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}


.ad-policies .policy-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 8px;
}

.ad-policies .policy-card p {
  font-size: 14px;
  line-height: 1.5;
  color: #4b5563;
}

/* Simplified Process Section */
.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  /* always 5 columns */
  gap: 30px;
  align-items: stretch;
  /* make all items same height */
}

.process-step {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 32px 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.process-step h3 {
  margin: 16px 0;
  min-height: 48px;
  /* keeps headings the same height */
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-step p {
  flex-grow: 1;
  /* makes paragraph take remaining space */
  display: flex;
  align-items: flex-start;
  /* align top */
  justify-content: center;
}

.process-step {
  background: #fff;
  padding: 32px 24px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.process-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.step-number {
  background: linear-gradient(135deg, var(--blue), var(--blue-hover));
  color: #fff;
  font-weight: 700;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 18px;
}

/* Form responsive fix */
/* Force form fields to stack on mobile */
@media (max-width: 768px) {
  .form-row {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
  }

  .form-row input,
  .form-row select,
  .form-row textarea {
    width: 100% !important;
    margin: 8px 0 !important;
    box-sizing: border-box;
  }
}

/* --- Fix cramped form fields --- */
.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 10px;
  /* increased gap */
  margin-bottom: 10px;
}

input,
select,
textarea {
  width: 100%;
  padding: 8px 12px;
  margin-bottom: 8px;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  font-size: 15px;
}

.hero .form-container {
  padding: 20px 24px;
  gap: 20px;
}

@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  input,
  select,
  textarea {
    margin-bottom: 16px;
  }
}

/* Force Name + Email to stack vertically */
.form-row:first-of-type {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.form-row:first-of-type input {
  max-width: 400px;
  width: 100%;
}

/* Keep CTA buttons side by side */
/* Force CTA buttons to stay side by side */
/* Fix CTA buttons inside form */
@media (max-width: 480px) {
  .cta-group {
    flex-wrap: nowrap;
    /* keep them in one row */
    justify-content: center;
    /* center horizontally */
    gap: 12px;
    /* spacing between buttons */
  }

  .cta-group .btn {
    min-width: auto !important;
    /* remove forced 100% width */
    flex: 0 1 auto;
    /* allow shrink/grow naturally */
    max-width: 330px;
    /* optional: prevent overly wide buttons */
  }
}

.simple-form h2,
.simple-form h3,
.simple-form p {
  margin-bottom: 12px;
  /* was 20–30px */
}

/* Fix form buttons on mobile */
@media (max-width: 768px) {
  .form-container .cta-group {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }

  .form-container .cta-group .btn {
    width: 100%;
    max-width: 100%;
    font-size: 15px;
    padding: 14px;
    text-align: center;
  }
}

.new-line {
  display: block;
}

.process-flow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  /* space between rows */
}

.row {
  display: flex;
  justify-content: center;
  gap: 40px;
  /* space between steps */
}

.process-step {
  width: 260px;
  min-height: 240px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.step-number {
  background: #2563eb;
  color: #fff;
  font-weight: bold;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

/* Arrows between steps in the top row (01 → 02 → 03) */
.top-row .process-step:not(:last-child) {
  position: relative;
}

.top-row .process-step:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: -30px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  color: #2563eb;
  font-weight: bold;
}

/* Arrow between 04 → 05 */
.bottom-row .process-step:first-child {
  position: relative;
}

.bottom-row .process-step:first-child::after {
  content: "→";
  position: absolute;
  right: -30px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  color: #2563eb;
  font-weight: bold;
}

.process-flow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

/* rows */
.row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  /* allows wrapping on small screens */
}

/* step boxes */
.process-step {
  flex: 1 1 260px;
  /* shrink/grow, min width 260px */
  max-width: 300px;
  min-height: 220px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* step number */
.step-number {
  background: #2563eb;
  color: #fff;
  font-weight: bold;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

/* arrows between steps */
.top-row .process-step:not(:last-child)::after,
.bottom-row .process-step:first-child::after {
  content: "→";
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  color: #2563eb;
  font-weight: bold;
}

/* make sure each step is positioned relative */
.process-step {
  position: relative;
}

/* 📱 Mobile adjustments */
@media (max-width: 768px) {

  .top-row,
  .bottom-row {
    flex-direction: column;
    gap: 16px;
  }

  .process-step::after {
    content: none !important;
    /* hide arrows on small screens */
  }
}

/* === Process Flow Layout === */
.process-flow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.row {
  display: grid;
  grid-auto-flow: column;
  justify-content: center;
  gap: 40px;
}

.process-step {
  width: 260px;
  /* fixed equal width */
  min-height: 240px;
  /* equal height */
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  /* required for arrows */
}

.step-number {
  background: #2563eb;
  color: #fff;
  font-weight: bold;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

/* Arrows only in correct places */
.top-row .process-step:not(:last-child)::after,
.bottom-row .process-step:first-child::after {
  content: "→";
  position: absolute;
  right: -28px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  color: #2563eb;
  font-weight: bold;
}

/* 📱 Responsive: stack on mobile */
@media (max-width: 900px) {
  .row {
    grid-auto-flow: row;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .process-step {
    width: 100%;
  }

  .process-step::after {
    content: none !important;
  }
}

/* === 5 Step Flow All in One Row === */
.process-flow {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  /* always 5 in a row on desktop */
  gap: 30px;
  width: 100%;
  margin-left: -5px;
  align-items: stretch
}


.process-step {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 260px;
  /* ensures same height */
}

.step-number {
  background: #2563eb;
  color: #fff;
  font-weight: bold;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

/* arrows between steps */
.process-step:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  color: #2563eb;
  font-weight: bold;
}

.process-step {
  position: relative;
}

/* 📱 Responsive for smaller screens */
@media (max-width: 1100px) {
  .process-flow {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .process-step::after {
    content: none !important;
    /* hide arrows on small screens */
  }
}

/* Desktop: shift left */
.process-flow {
  transform: translateX(-40px);
}

/* Tablet: smaller shift */
@media (max-width: 1024px) {
  .process-flow {
    transform: translateX(-20px);
  }
}

/* Mobile: no shift */
@media (max-width: 768px) {
  .process-flow {
    transform: none;
  }
}

.process-flow {
  display: flex;
  justify-content: center;
  /* center all children as a block */
  gap: 24px;
  flex-wrap: nowrap;
  /* keep them in one row */
  margin: 60px auto;
  max-width: 1200px;
}

.process-step {
  flex: 0 0 200px;
  /* each step has a fixed width */
  text-align: center;
}

/* Unsuspension Blueprint */
.blueprint-flow {
  display: flex;
  justify-content: center;
  align-items: stretch;
  /* equal height for all cards */
  gap: 24px;
  flex-wrap: nowrap;
  max-width: 1320px;
  /* upgraded to standard width */
  margin: 60px auto;
}

.blueprint-item {
  flex: 1 1 0;
  /* 👈 all cards take equal width */
  min-width: 220px;
  /* prevents shrinking too small */
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  border: 1px solid #e5e7eb;
  transition: transform .3s ease, box-shadow .3s ease;

  display: flex;
  flex-direction: column;
  align-items: center;
}

.blueprint-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border-color: #2563EB;
}

.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563EB, #1D4ED8);
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 16px;
}

/* Equal heading alignment */
.blueprint-item h3 {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
  min-height: 3em;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 12px;
}

/* Paragraph alignment */
.blueprint-item p {
  flex-grow: 1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  text-align: center;
}

/* Responsive */
@media (max-width: 1024px) {
  .blueprint-flow {
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
  }

  .blueprint-item {
    flex: 1 1 45%;
    /* two per row */
  }
}

@media (max-width: 600px) {
  .blueprint-item {
    flex: 1 1 100%;
    /* full width on mobile */
  }
}

/* Testimonials Section */
/* Testimonials Section */
/* Testimonials Section */
/* Testimonials Section */
.testimonials {
  background: linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
  padding: 100px 0;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 24px;
  padding: 40px 32px;
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(229, 231, 235, 0.6);
  position: relative;
  backdrop-filter: blur(6px);
  transition: transform .3s ease, box-shadow .3s ease, border .3s ease;
  overflow: hidden;
}

/* Gradient accent top border */
.testimonial-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 6px;
  width: 100%;
  background: linear-gradient(90deg, #2563EB, #4F46E5);
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
}

.testimonial-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 14px 40px rgba(37, 99, 235, 0.15);
  border-color: #2563EB;
}



.testimonial-text {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #1f2937;
  margin-bottom: 32px;
  font-style: italic;
  position: relative;
  z-index: 2;
}

/* Author info with accent underline */
.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
}

.testimonial-author strong {
  font-weight: 700;
  color: #111827;
  font-size: 1.05rem;
  position: relative;
}

.testimonial-author strong::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #2563EB, #4F46E5);
  margin-top: 6px;
  border-radius: 2px;
}

.testimonial-author span {
  font-size: 0.9rem;
  color: #6b7280;
  letter-spacing: 0.3px;
}

/* Proven Results Section */
#proven-results {
  background: #1D4ED8;
  /* keep section blue */
  color: #fff;
  /* ensure text inside defaults to white */
}

#proven-results .result-card {
  /* background: #fff; */
  /* make cards white */
  color: #fff;
  /* dark text inside */
  /* border-radius: 12px; */
  /* padding: 32px; */
  /* box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1); */
  text-align: center;
  transition: all 0.3s ease;
}

#proven-results .result-card:hover {
  /* transform: translateY(-6px); */
  scale: 1.04;
  /* box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2); */
}

.brand-section {
  text-align: center;
  padding: 50px 0;
  background: linear-gradient(90deg, #ffffff, #ffffff);
}

.brand-section h2 {
  /* font-size: 24px; */
  color: black;
  margin-bottom: 30px;
}

.brand-slider {
  overflow: hidden;
  position: relative;
  max-width: 80%;
  /* 👈 controls total space logos take */
  margin: 0 auto;
  /* center align */
}

.brand-track {
  display: flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  inline-size: inline-flex;
  /* 👈 only as wide as logos */
  animation: scroll 25s linear infinite;
}

.brand-track img {
  height: 100%;
  /* fixed height */
  width: 120px;
  /* 👈 100% width as requested */
  object-fit: contain;
  /* keep logo ratio, no crop */
  margin: 0;
  border-radius: 10px;
  background: #fff;
  border-radius: 10px;
  margin: 0 30px;
  /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
}

@media screen and (max-width: 768px) {
  .brand-track img {
    width: 80px;
    /* smaller logos on mobile */
    margin: 0 20px;
  }
}

.hero-ex-googlers {
  font-size: 1.5rem;
  /* Increase from current size */
  font-weight: 900;
  background: linear-gradient(45deg, #ffffff, #d2fff5, #cda5fa);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textShine 1.5s ease-in-out infinite alternate, fontSizeIncreaseAnimation 0.6s ease-in-out infinite alternate;
}


@keyframes textShine {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 100% 50%;
  }
}

@keyframes fontSizeIncreaseAnimation {
  0% {
    font-size: 1.5rem;
  }

  100% {
    font-size: 1.6rem;
  }
}

/* Team Section Styles */
.team-section {
  background: #f8f9fa;
  padding: 20px 0
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.team-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.team-image {
  width: 100%;
  height: 400px;
  overflow: hidden;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  position: relative;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.3s ease;
}

.team-card:hover .team-image img {
  transform: scale(1.05);
}

.team-content {
  padding: 30px;
  position: relative;
}

.team-name {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 8px 0;
  font-family: 'Montserrat', sans-serif;
}

.team-designation {
  font-size: 1rem;
  font-weight: 600;
  color: #667eea;
  margin: 0 0 4px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.team-subtitle {
  font-size: 0.95rem;
  color: #666;
  margin: 0 0 16px 0;
  font-weight: 500;
}

.team-description {
  font-size: 1rem;
  line-height: 1.7;
  color: #444;
  /* margin: 0 0 20px 0; */
}

.team-linkedin {
  position: absolute;
  top: 16px;
  right: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(0, 119, 181, 0.9);
  color: #fff;
  border-radius: 500px;
  font-size: 1.4rem;
  transition: all 0.3s ease;
  text-decoration: none;
  z-index: 2;
  /* backdrop-filter: blur(4px); */
}

.team-linkedin:hover {
  background: rgba(0, 88, 133, 1);
  transform: scale(1.15);
}

/* Responsive adjustments */
@media (max-width: 900px) {
  .team-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .team-image {
    height: 350px;
  }
}

@media (max-width: 768px) {
  .team-card {
    border-radius: 12px;
  }

  .team-content {
    padding: 24px;
  }

  .team-name {
    font-size: 1.5rem;
  }

  .team-designation {
    font-size: 0.9rem;
  }

  .team-image {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .team-grid {
    gap: 20px;
  }

  .team-content {
    padding: 20px;
  }

  .team-name {
    font-size: 1.3rem;
  }

  .team-description {
    font-size: 0.95rem;
  }

  .team-image {
    height: 280px;
  }
}

/* Contact Section Styles */
.contact-section {
  background: #f8f9fa;
}

.contact-wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 800px;
  margin: 0 auto;
}

/* Contact Information */
.contact-info {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.contact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  padding: 0;
  background: transparent;
  border-radius: 0;
  transition: none;
}

.contact-item:hover {
  transform: none;
}

.contact-icon {
  display: none;
}

.contact-details h3 {
  font-size: 0.9rem;
  font-weight: 600;
  color: #666;
  margin: 0 0 4px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-details a {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a1a1a;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-details a:hover {
  color: #667eea;
  text-decoration: none;
}

/* Contact Form */
.contact-form-wrapper {
  background: #fff;
  padding: 48px 40px;
  border-radius: 16px;
  box-shadow: none;
  border: 2px solid #e0e0e0;
}

.contact-form .form-group {
  margin-bottom: 24px;
}

@media screen and (max-width: 465px) {
  .contact-form .form-group {
    margin-bottom: 0;
  }
}

.contact-form .form-group-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media screen and (max-width: 425px) {
  .contact-form .form-group-row {
    margin-bottom: 0;
  }
}

.contact-form label {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}

.contact-form .required {
  color: #e74c3c;
}

.contact-form input,
.contact-form select {
  width: 100%;
  padding: 14px 16px;
  font-size: 1rem;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  background: #fff;
  font-family: inherit;
}

.contact-form input:focus,
.contact-form select:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.contact-form select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.contact-form .btn-submit {
  width: 100%;
  padding: 16px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
}

/* Responsive adjustments */
@media (max-width: 900px) {
  .contact-wrapper {
    gap: 30px;
  }

  .contact-info {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .contact-form-wrapper {
    padding: 30px 24px;
  }

  .contact-form .form-group-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-info {
    gap: 24px;
  }

  .contact-details a {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .contact-form-wrapper {
    padding: 24px 20px;
  }

  .contact-form input,
  .contact-form select {
    padding: 12px 14px;
    font-size: 0.95rem;
  }

  .contact-info {
    flex-direction: column;
    gap: 20px;
  }

  .contact-details h3 {
    font-size: 0.85rem;
  }

  .contact-details a {
    font-size: 0.95rem;
  }
}

/* Animation */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Tighter spacing between sections on mobile */
@media (max-width: 768px) {
  .section {
    padding: 50px 0;
    /* instead of 80px */
  }
}

@media (max-width: 480px) {
  .section {
    padding: 40px 0;
    /* instead of 60px */
  }
}

/* Default desktop (keep inline) */
#hero-title .line1,
#hero-title .line2 {
  display: inline;
}

/* On mobile, force line break */
@media (max-width: 768px) {

  #hero-title .line1,
  #hero-title .line2 {
    display: block;
  }

  #hero-title .line1 {

    margin-bottom: 6px;
    display: block;
    font-size: 15px;
    /* smaller subheading */
    font-weight: 500;
    /* lighter than main */
    color: #e0e0e0;
    /* softer gray/secondary color */

  }

  #hero-title .line2 {
    font-size: 30px;
  }
}

.hero h1 {
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero h1 .line1 {
  display: block;
  font-size: clamp(20px, 2.5vw, 28px);
  /* smaller subheading */
  font-weight: 500;
  color: #e5e7eb;
  /* lighter shade of white */
  margin-bottom: 8px;
}

.hero h1 .line2 {
  display: block;
  font-size: clamp(32px, 5vw, 60px);
  /* bigger main heading */
  font-weight: 700;
  color: #fff;
}

/* Force hero heading lines to break */
#hero-title .line1,
#hero-title .line2 {
  display: block !important;
  /* overrides inline */
}

#hero-title .line1 {
  font-size: 22px;
  font-weight: 500;
  color: #e5e7eb;
  margin-bottom: 6px;
}

#hero-title .line2 {
  font-size: 48px;
  font-weight: 800;
  color: #fff;
}

.quote-mark {
  font-size: 80px;
  font-weight: bold;
  color: #2079ff;
  /* red */
  position: absolute;
  top: 10px;
  left: 20px;
  line-height: 1;
  font-family: Georgia, serif;
}

/* Push text down so it doesn’t overlap the quote */
.testimonial-text {
  margin-top: 50px;
  font-style: italic;
}

.author {
  margin-top: 20px;
  font-weight: 600;
  color: #1a1a1a;
}

.author-logo {
  max-height: 40px;
  margin-top: 10px;
}

#process {
  padding: 0px 0;
}

.ad-policies {
  padding: 20px 0;
}

#results {
  padding: 20px 0;
}

#why {
  padding: 20px 0;
}

.brand-slider {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  width: 100%;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Duplicate logos for infinite effect */
.brand-track::after {
  content: "";
  display: inline-flex;
  animation: inherit;
}

.brand-track::after {
  content: attr(data-content);
}


/* Neon Glow Effect for Guarantee Text */
.neon-guarantee {
  display: inline-block;
  color: #f0bc4b;
  font-weight: 700;
  font-size: clamp(16px, 3.5vw, 22px);
  text-align: center;
  padding: 8px 16px;
  border-radius: 8px;
  background: rgba(240, 188, 75, 0.05);
  text-shadow:
    0 0 8px rgba(240, 188, 75, 0.4),
    0 0 12px rgba(240, 188, 75, 0.2);
  letter-spacing: 0.4px;
  margin: 12px 0 20px 0;
}

/* Responsive adjustments for neon text */
@media (max-width: 768px) {
  .neon-guarantee {
    font-size: clamp(14px, 4vw, 18px);
    padding: 6px 12px;
    margin: 10px 0 16px 0;
  }
}

@media (max-width: 480px) {
  .neon-guarantee {
    font-size: clamp(13px, 4.5vw, 16px);
    padding: 5px 10px;
    margin: 8px 0 14px 0;
    letter-spacing: 0.3px;
  }
}