/* Import Modern Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

/* CSS Custom Properties / Design System */
:root {
  --primary-orange: #EA5707;
  --soft-orange: #FF8A3D;
  --deep-black: #1A1A18;
  --dark-gray: #333333;
  --light-gray: #F5F5F5;
  --white: #FFFFFF;
  --success-green: #22C55E;
  --error-red: #EF4444;
  --whatsapp-green: #25D366;
  --whatsapp-green-hover: #20BA5A;
  --font-headings: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --container-width: 1400px;
  --nav-height: 80px;
  --border-radius: 12px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --box-shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --box-shadow-md: 0 10px 20px rgba(0, 0, 0, 0.08);
  --box-shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.12);
  --gradient-orange: linear-gradient(135deg, #EA5707 0%, #FF8A3D 100%);
  
  /* Fluid Typography Variables */
  --font-size-hero-title: clamp(1.85rem, 1.35rem + 2.5vw, 3.6rem);
  --font-size-hero-text: clamp(0.95rem, 0.88rem + 0.35vw, 1.2rem);
  --font-size-section-title: clamp(1.7rem, 1.55rem + 0.75vw, 2.2rem);
  --font-size-section-desc: clamp(0.95rem, 0.89rem + 0.3vw, 1.15rem);
  --font-size-faq-q: clamp(0.95rem, 0.92rem + 0.15vw, 1.05rem);
  --font-size-founder-title: clamp(1.55rem, 1.4rem + 0.75vw, 2rem);
}

/* Reset and Global Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background-color: var(--white);
  color: var(--dark-gray);
  line-height: 1.65;
  overflow-x: hidden;
  padding-bottom: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headings);
  color: var(--deep-black);
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

input, select, textarea, button {
  font-family: inherit;
  font-size: inherit;
}

.container, .container-full {
  max-width: min(var(--container-width), 94%);
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

.section-bg-light {
  background-color: var(--light-gray);
  background-image: radial-gradient(circle, rgba(0, 0, 0, 0.07) 2px, transparent 2px);
  background-size: 24px 24px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-subtitle {
  color: var(--primary-orange);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.13em;
  margin-bottom: 12px;
  display: inline-block;
}

.section-subtitle.light {
  color: rgba(255, 255, 255, 0.8);
}

.section-title {
  font-size: var(--font-size-section-title);
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--deep-black);
  letter-spacing: -0.3px;
}

.section-description {
  font-size: var(--font-size-section-desc);
  color: var(--dark-gray);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  font-weight: 600;
  font-size: 1.05rem;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  gap: 8px;
}

.btn-primary {
  background: var(--primary-orange);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--soft-orange);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(234, 87, 7, 0.3);
}

.btn-secondary {
  background: transparent;
  border-color: var(--deep-black);
  color: var(--deep-black);
}

.btn-secondary:hover {
  background: var(--deep-black);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--primary-orange);
}

.btn-white:hover {
  background: var(--light-gray);
  color: var(--deep-black);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.btn-black {
  background: var(--deep-black);
  color: var(--white);
}

.btn-black:hover {
  background: #333333;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn-whatsapp {
  background-color: var(--whatsapp-green);
  color: var(--white);
}

.btn-whatsapp:hover {
  background-color: var(--whatsapp-green-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.wa-icon {
  width: 18px;
  height: 18px;
}

/* Header & Navigation */
header {
  height: var(--nav-height);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: var(--box-shadow-sm);
  transition: var(--transition);
}

header.scrolled {
  height: 70px;
  box-shadow: var(--box-shadow-md);
}

header .container, header .container-full {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  max-width: 100%;
  width: 100%;
  padding: 0 40px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 60px;
  width: auto;
  transition: var(--transition);
  max-width: 200px;
  object-fit: contain;
}

header.scrolled .logo img {
  height: 50px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-weight: 600;
  color: var(--deep-black);
  font-size: 1.05rem;
  position: relative;
  padding: 8px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-orange);
  transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
  color: var(--primary-orange);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.nav-cta {
  padding: 10px 20px; 
  font-size: 1rem; 
  margin-left: 10px;
}

.hamburger {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  padding: 13px 10px;
  box-sizing: content-box;
}

.hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: var(--deep-black);
  border-radius: 2px;
  transition: var(--transition);
}

/* Hero Section */
.hero {
  padding-top: calc(var(--nav-height) + 60px);
  padding-bottom: 80px;
  background-color: var(--white);
  background-image: radial-gradient(circle, rgba(234, 87, 7, 0.14) 2px, transparent 2px);
  background-size: 24px 24px;
  min-height: 85vh;
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  max-width: 850px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(234, 87, 7, 0.08);
  color: var(--primary-orange);
  padding: 8px 16px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 24px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background-color: var(--primary-orange);
  border-radius: 50%;
  display: inline-block;
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.9); opacity: 0.6; }
  50% { transform: scale(1.2); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0.6; }
}

.hero-title {
  font-size: var(--font-size-hero-title);
  font-weight: 800;
  margin-bottom: 24px;
  letter-spacing: -1.5px;
  line-height: 1.1;
}

.hero-title span {
  color: var(--primary-orange);
}

.hero-text {
  font-size: var(--font-size-hero-text);
  color: var(--dark-gray);
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-trust-bar {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--border-color);
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-weight: 600;
  color: var(--deep-black);
}

.trust-icon {
  width: 18px;
  height: 18px;
  color: var(--success-green);
  flex-shrink: 0;
  margin-top: 2px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  margin-bottom: 10px;
}

.cta-badge-text {
  font-size: 0.85rem;
  color: var(--success-green);
  font-weight: 600;
}

.hero-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-bg {
  position: absolute;
  width: 110%;
  height: 110%;
  background: var(--primary-orange);
  opacity: 0.05;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  filter: blur(10px);
  z-index: 1;
  max-width: 100vw;
}

.hero-card {
  position: relative;
  z-index: 2;
  background: var(--white);
  border-radius: 20px;
  padding: 36px;
  box-shadow: var(--box-shadow-lg);
  border: 1px solid rgba(0,0,0,0.03);
  max-width: 420px;
  width: 100%;
}

.hero-card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: var(--primary-orange);
}

.hero-card p {
  color: var(--dark-gray);
  margin-bottom: 24px;
  font-size: 0.95rem;
}

.consultation-mini-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.consultation-mini-form input {
  padding: 14px 16px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  outline: none;
  transition: var(--transition);
  background-color: var(--light-gray);
}

.consultation-mini-form input:focus {
  border-color: var(--primary-orange);
  background-color: var(--white);
  box-shadow: 0 0 0 3px rgba(234, 87, 7, 0.1);
}

.form-secure-text {
  font-size: 0.8rem;
  color: var(--dark-gray);
  text-align: center;
  display: block;
}

/* 2. Client Logos Ticker Section */
.ticker-section {
  padding: 30px 0;
  background-color: var(--light-gray);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  overflow: hidden;
  width: 100%;
}

.ticker-title {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--dark-gray);
  letter-spacing: 2.5px;
  margin-bottom: 20px;
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: scroll-logo-ticker 30s linear infinite;
}

.ticker-logos {
  display: flex;
  align-items: center;
  gap: 30px;
  padding-right: 30px;
}

.ticker-logo-card {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--box-shadow-sm);
  height: 95px;
  width: 230px;
  flex-shrink: 0;
  transition: var(--transition);
}

.ticker-logo-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--box-shadow-md);
  border-color: var(--primary-orange);
}

.ticker-img {
  max-height: 65px;
  max-width: 175px;
  object-fit: contain;
  filter: none;
  opacity: 1;
}

.ticker-logo {
  font-family: var(--font-headings);
  font-size: 1.6rem;
  font-weight: 800;
  color: #a0a09e;
  letter-spacing: -0.5px;
  white-space: nowrap;
}

@keyframes scroll-logo-ticker {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

.ticker-logo.highlight {
  color: var(--primary-orange);
  font-size: 1.2rem;
}

/* 3. Pain Section */
.pain-columns-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: start;
}

.pain-banner-column {
  display: flex;
  justify-content: center;
  width: 100%;
}

.pain-banner-column .pain-banner {
  background: var(--white);
  border-left: 5px solid var(--primary-orange);
  padding: 40px;
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  box-shadow: var(--box-shadow-md);
  width: 100%;
}

.pain-banner-column .pain-banner h3 {
  font-size: 1.55rem;
  color: var(--primary-orange);
  margin-bottom: 12px;
  line-height: 1.35;
}

.pain-banner-column .pain-banner p {
  font-size: 1.05rem;
  color: var(--dark-gray);
  line-height: 1.6;
}

@media (max-width: 992px) {
  .pain-columns-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.pain-description {
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.pain-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.pain-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 1.05rem;
}

.pain-cross {
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.pain-banner {
  background: var(--white);
  border-left: 4px solid var(--primary-orange);
  padding: 24px;
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  box-shadow: var(--box-shadow-sm);
}

.pain-banner h3 {
  font-size: 1.25rem;
  color: var(--primary-orange);
  margin-bottom: 8px;
}

.pain-banner p {
  font-size: 0.95rem;
  color: var(--dark-gray);
}

/* 4. Outcomes Section */
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media (max-width: 1024px) {
  .outcomes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .outcomes-grid {
    grid-template-columns: 1fr;
  }
}

.outcome-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: 12px;
  padding: 28px;
  box-shadow: var(--box-shadow-sm);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.outcome-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow-md);
  border-color: var(--primary-orange);
}

.outcome-icon {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background-color: rgba(234, 87, 7, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-orange);
  margin-bottom: 16px;
}

.outcome-icon svg {
  width: 20px;
  height: 20px;
}

.outcome-card h4 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--primary-orange);
  font-weight: 600;
}

.outcome-card p {
  font-size: 0.85rem;
  color: var(--dark-gray);
  line-height: 1.5;
}

/* 5. Founder / CA Section */
.founder {
  background-color: var(--white);
}

.founder-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 64px;
  align-items: start;
}

.founder-img-container {
  position: relative;
  padding-right: 14px;
  padding-bottom: 14px;
}

.founder-img-border {
  position: absolute;
  top: 14px;
  left: 14px;
  width: calc(100% - 14px);
  height: calc(100% - 14px);
  border: 3px solid var(--primary-orange);
  border-radius: 20px;
  z-index: 1;
}

.founder-img-wrapper {
  position: relative;
  z-index: 2;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--box-shadow-md);
  background: var(--light-gray);
}

.founder-img-wrapper img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* Name + title */
.founder-content h2 {
  font-size: var(--font-size-founder-title);
  font-weight: 800;
  margin-bottom: 4px;
  line-height: 1.2;
}

.founder-subtitle {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary-orange);
  margin-bottom: 20px;
  letter-spacing: 0.01em;
}

/* Credential pill badges row */
.founder-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.founder-credential-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--light-gray);
  border: 1px solid var(--border-color);
  border-radius: 50px;
  padding: 5px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--dark-gray);
}

.founder-credential-pill svg {
  width: 13px;
  height: 13px;
  color: var(--primary-orange);
  flex-shrink: 0;
}

/* Bio text */
.founder-bio {
  font-size: 0.97rem;
  color: var(--dark-gray);
  line-height: 1.75;
  margin-bottom: 28px;
  border-left: 3px solid var(--primary-orange);
  padding-left: 16px;
}

.founder-bio p {
  margin-bottom: 14px;
}

.founder-bio p:last-child {
  margin-bottom: 0;
}

/* By the Numbers badges */
.founder-badges-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}

.founder-badge-card {
  background: linear-gradient(135deg, var(--light-gray) 0%, #fff 100%);
  border: 1px solid var(--border-color);
  padding: 18px 10px 14px;
  border-radius: 12px;
  text-align: center;
  transition: var(--transition);
}

.founder-badge-card:hover {
  border-color: var(--primary-orange);
  box-shadow: 0 4px 16px rgba(234,87,7,0.10);
  transform: translateY(-2px);
}

.founder-badge-card .badge-num {
  font-size: 1.4rem;
  font-family: var(--font-headings);
  font-weight: 900;
  color: var(--primary-orange);
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}

.founder-badge-card .badge-lbl {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--dark-gray);
  display: block;
  line-height: 1.35;
}

.response-time-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34,197,94,0.2);
  color: var(--success-green);
  padding: 6px 16px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.82rem;
  margin-bottom: 24px;
}

.founder-ctas {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

.li-icon {
  width: 18px;
  height: 18px;
}

/* 6. Social Proof / Metrics Section */
.metrics-banner-section {
  background-color: var(--deep-black);
  padding: 60px 0;
  color: var(--white);
}

.metrics-bar {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px 30px;
}

.metric-block {
  text-align: center;
}

.metric-val {
  font-size: 2.8rem;
  font-family: var(--font-headings);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}

.metric-val span {
  color: var(--primary-orange);
}

.metric-lbl {
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
}

/* Google Rating Box */
.google-rating-box {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 16px 24px;
  border-radius: 12px;
  text-align: center;
}

.google-badge-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 4px;
}

.google-icon-svg {
  width: 20px;
  height: 20px;
}

.rating-num {
  font-size: 1.3rem;
  font-weight: 800;
  font-family: var(--font-headings);
}

.rating-stars {
  color: #fbbc05;
  font-size: 1.1rem;
  margin-bottom: 4px;
  letter-spacing: 2px;
}

.rating-label {
  font-size: 0.75rem;
  color: var(--dark-gray);
  font-weight: 600;
}

.services-columns-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

@media (max-width: 1024px) {
  .services-columns-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .services-columns-grid {
    grid-template-columns: 1fr;
  }
}

.service-col-card {
  background: var(--white);
  border-radius: 0;
  padding: 24px 28px;
  box-shadow: none;
  border: none;
  border-left: 3px solid var(--primary-orange);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  background-color: rgba(234, 87, 7, 0.02);
}

.service-col-card:hover {
  transform: translateX(4px);
  background-color: rgba(234, 87, 7, 0.05);
  border-left-width: 4px;
}

.service-col-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.col-badge-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background-color: rgba(234, 87, 7, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-orange);
  flex-shrink: 0;
}

.col-badge-icon svg {
  width: 20px;
  height: 20px;
}

.service-col-header h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--deep-black);
}

.service-col-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
  flex-grow: 1;
}

.service-col-list li {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--dark-gray);
}

.service-col-cta {
  width: 100%;
  text-align: center;
  padding: 10px 16px;
  font-size: 0.85rem;
  font-weight: 700;
}

/* 8. Process Section (Timeline) */
.process-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  position: relative;
}

/* Horizontal Connector Line for timeline */
.process-timeline::after {
  content: '';
  position: absolute;
  top: 30px;
  left: 10%;
  width: 80%;
  height: 2px;
  background-color: var(--border-color);
  z-index: 1;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 2;
}

.step-badge {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--primary-orange);
  color: var(--white);
  font-family: var(--font-headings);
  font-size: 1.5rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 4px 10px rgba(234, 87, 7, 0.2);
}

.process-step h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.process-step p {
  font-size: 0.85rem;
  color: var(--dark-gray);
  line-height: 1.6;
}

/* 9. Testimonials */
.testimonials {
  background-color: var(--deep-black);
  color: var(--white);
}

.testimonials .section-title {
  color: var(--white);
}

.testimonials .section-description {
  color: rgba(255,255,255,0.7);
}

.testimonials-marquee-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
  padding: 20px 0;
}

.testimonials-track {
  display: flex;
  width: max-content;
  animation: scroll-testimonials 60s linear infinite;
}

.testimonials-track:hover {
  animation-play-state: paused;
}

.testimonials-list {
  display: flex;
  gap: 30px;
  padding-right: 30px;
}

.testimonial-card {
  background-color: #262624;
  border-radius: var(--border-radius);
  padding: 36px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  display: flex;
  flex-direction: column;
  position: relative;
  width: 420px;
  flex-shrink: 0;
}

@keyframes scroll-testimonials {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

.testimonial-card::before {
  content: '“';
  position: absolute;
  top: 15px;
  right: 30px;
  font-size: 8rem;
  font-family: var(--font-headings);
  color: rgba(234, 87, 7, 0.08);
  line-height: 1;
}

.stars {
  display: flex;
  gap: 4px;
  color: var(--primary-orange);
  margin-bottom: 20px;
}

.stars svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.testimonial-text {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 30px;
  font-style: italic;
  line-height: 1.75;
  flex-grow: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.author-initials {
  width: 48px;
  height: 48px;
  background: var(--primary-orange);
  color: var(--white);
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-headings);
  font-size: 1.1rem;
}

.author-info h4 {
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
}

.author-info p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

/* 10. FAQ Accordion Section */
.faq-section {
  background-color: var(--white);
}

.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border-color);
  padding: 12px 0;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 16px 8px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-headings);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--deep-black);
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--primary-orange);
}

.faq-icon-arrow {
  font-size: 1.5rem;
  color: var(--primary-orange);
  font-family: monospace;
  font-weight: 400;
  transition: transform 0.3s ease;
  line-height: 1;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
}

.faq-answer p {
  padding: 0 8px 16px;
  font-size: 0.95rem;
  color: var(--dark-gray);
  line-height: 1.6;
}

/* FAQ Active state (controlled by script.js) */
.faq-item.active .faq-answer {
  max-height: 500px; /* high value to accommodate content */
  transition: max-height 0.5s cubic-bezier(1, 0, 1, 0);
}

.faq-item.active .faq-icon-arrow {
  transform: rotate(45deg);
}

/* 11. Final CTA Section (Orange gradient, White form card, Black submit button) */
.final-cta-section {
  background: var(--primary-orange);
  position: relative;
  overflow: hidden;
}

.contact-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.05;
  background-image: radial-gradient(var(--white) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
}

.final-cta-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.final-cta-text {
  color: var(--white);
}

.final-cta-text h2 {
  color: var(--white);
  font-size: 3rem;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.final-cta-text p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.2rem;
  margin-bottom: 40px;
}

.risk-reversal-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.risk-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(5px);
  padding: 12px 20px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-weight: 600;
  font-size: 0.95rem;
}

.contact-form-card {
  background-color: var(--white);
  border-radius: 20px;
  padding: 44px;
  box-shadow: var(--box-shadow-lg);
}

.contact-form-card h3 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--primary-orange);
}

.contact-form-card p {
  color: var(--dark-gray);
  margin-bottom: 28px;
  font-size: 0.95rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--deep-black);
}

.form-control {
  padding: 14px 16px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  outline: none;
  background-color: var(--light-gray);
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--primary-orange);
  background-color: var(--white);
  box-shadow: 0 0 0 3px rgba(234, 87, 7, 0.1);
}

textarea.form-control {
  resize: vertical;
  min-height: 100px;
}

.form-message {
  padding: 12px;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  display: none;
}

.form-message.success {
  background-color: rgba(34, 197, 94, 0.1);
  color: var(--success-green);
  border: 1px solid rgba(34, 197, 94, 0.2);
  display: block;
}

.form-message.error {
  background-color: rgba(239, 68, 68, 0.1);
  color: var(--error-red);
  border: 1px solid rgba(239, 68, 68, 0.2);
  display: block;
}

.form-contact-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 10px;
}

.form-wa-btn, .form-call-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.form-wa-btn {
  background-color: var(--whatsapp-green);
  color: var(--white);
  border-color: var(--whatsapp-green);
}

.form-wa-btn:hover {
  background-color: var(--whatsapp-green-hover);
  border-color: var(--whatsapp-green-hover);
  color: var(--white);
}

.form-call-btn {
  background-color: var(--primary-orange);
  color: var(--white);
  border-color: var(--primary-orange);
}

.form-call-btn:hover {
  background-color: var(--soft-orange);
  border-color: var(--soft-orange);
  color: var(--white);
}

.form-icon-svg {
  width: 16px;
  height: 16px;
}

/* 10b. GDPR Section */
.gdpr-section {
  background-color: var(--white);
}

.gdpr-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: start;
}

.gdpr-intro-p {
  font-size: 1.05rem;
  color: var(--dark-gray);
  line-height: 1.7;
  margin-bottom: 16px;
}

.gdpr-sub-title {
  font-family: var(--font-headings);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--deep-black);
  margin: 30px 0 20px;
}

.gdpr-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.gdpr-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 1.05rem;
  line-height: 1.5;
}

.gdpr-list-icon {
  color: var(--primary-orange);
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.gdpr-right {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.gdpr-card {
  background: var(--light-gray);
  border-radius: 12px;
  padding: 30px;
  border: 1px solid var(--border-color);
}

.gdpr-card.highlight {
  background: #FFF9F5;
  border-color: #FFE6D5;
}

.gdpr-card-icon {
  color: var(--primary-orange);
  width: 36px;
  height: 36px;
  margin-bottom: 20px;
}

.gdpr-card-icon svg {
  width: 32px;
  height: 32px;
}

.gdpr-card h4 {
  font-size: 1.25rem;
  font-family: var(--font-headings);
  font-weight: 700;
  color: var(--deep-black);
  margin-bottom: 12px;
}

.gdpr-card p {
  font-size: 0.9rem;
  color: var(--dark-gray);
  line-height: 1.6;
}

.gdpr-card-bullets {
  margin: 16px 0;
  padding-left: 20px;
  list-style-type: disc;
  font-size: 0.85rem;
  color: var(--dark-gray);
  line-height: 1.6;
}

.gdpr-card-bullets li {
  margin-bottom: 8px;
}

.gdpr-conclude {
  margin-top: 16px;
  font-weight: 700;
  color: var(--primary-orange) !important;
  font-size: 1.05rem !important;
}

/* Mobile responsive query for GDPR */
@media (max-width: 1024px) {
  .gdpr-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* Footer Section */
footer {
  background-color: var(--deep-black);
  color: rgba(255, 255, 255, 0.6);
  padding: 80px 0 30px;
  border-top: 1px solid #262624;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand img {
  height: 48px;
  margin-bottom: 24px;
}

.footer-brand p {
  font-size: 0.95rem;
  margin-bottom: 24px;
  line-height: 1.7;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.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: var(--white);
  transition: var(--transition);
}

.social-link:hover {
  background-color: var(--primary-orange);
  transform: translateY(-2px);
}

.social-link svg {
  width: 18px;
  height: 18px;
}

.footer-links h3, .footer-contact h3 {
  color: var(--primary-orange);
  font-size: 1.15rem;
  margin-bottom: 24px;
  font-weight: 600;
  position: relative;
}

.footer-links h3::after, .footer-contact h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 30px;
  height: 2px;
  background-color: var(--primary-orange);
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-nav a {
  font-size: 0.95rem;
}

.footer-nav a:hover {
  color: var(--primary-orange);
  transform: translateX(4px);
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-contact-item {
  display: flex;
  gap: 14px;
  font-size: 0.95rem;
}

.footer-contact-icon {
  color: var(--primary-orange);
  margin-top: 3px;
}

.footer-contact-icon svg {
  width: 18px;
  height: 18px;
}

.footer-contact-details h4 {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 4px;
}

.footer-bottom {
  border-top: 1px solid #262624;
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 0.85rem;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a:hover {
  color: var(--primary-orange);
}

/* Floating Sticky WhatsApp Widget */
.floating-whatsapp-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background-color: var(--whatsapp-green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
  z-index: 998;
  transition: var(--transition);
}

.floating-whatsapp-widget:hover {
  background-color: var(--whatsapp-green-hover);
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.wa-float-icon {
  width: 28px;
  height: 28px;
}

/* Mobile Sticky bottom action strip */
.mobile-sticky-action-strip {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background-color: var(--white);
  box-shadow: 0 -4px 15px rgba(0,0,0,0.1);
  z-index: 999;
  grid-template-columns: 1.2fr 0.8fr;
  padding: 8px 12px;
  gap: 12px;
}

.sticky-action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  cursor: pointer;
  border: none;
}

.sticky-action-btn.primary-sticky {
  background-color: var(--primary-orange);
}

.sticky-action-btn.whatsapp-sticky {
  background-color: var(--whatsapp-green);
}

.wa-mini-icon {
  width: 16px;
  height: 16px;
}

/* Responsive Design Queries */
@media (max-width: 1024px) {
  .hero-grid, .founder-grid, .final-cta-grid {
    gap: 40px;
  }
  .founder-grid {
    grid-template-columns: 1fr;
    max-width: 640px;
    margin: 0 auto;
  }
  .founder-img-container {
    max-width: 380px;
    margin: 0 auto;
  }
  .founder-img-wrapper img {
    aspect-ratio: 4 / 3;
  }
  .process-timeline {
    grid-template-columns: repeat(3, 1fr);
  }
  .process-timeline::after {
    display: none;
  }
}

@media (max-width: 768px) {
  body {
    padding-bottom: 60px;
  }
  .mobile-sticky-action-strip {
    display: grid;
  }
  .floating-whatsapp-widget {
    display: none !important;
  }
  .section {
    padding: 56px 0;
  }
  /* Hamburger */
  .hamburger {
    display: flex;
  }
  /* Nav menu — account for announcement bar */
  .nav-menu {
    position: fixed;
    top: calc(var(--nav-height) + 36px);
    left: -100%;
    width: 100%;
    height: calc(100vh - var(--nav-height) - 36px);
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 32px 24px;
    gap: 20px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
    transition: left 0.3s ease;
    z-index: 999;
    overflow-y: auto;
  }
  .nav-menu.active {
    left: 0;
  }
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
    width: 0;
  }
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }
  .nav-link {
    font-size: 1.15rem;
    padding: 14px 0;
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }
  header .container, header .container-full {
    padding: 0 20px;
  }
  .desktop-only {
    display: none !important;
  }
  .mobile-only {
    display: block !important;
  }
  /* Hero */
  .hero-grid, .final-cta-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero {
    min-height: auto;
    padding-bottom: 56px;
    overflow: hidden;
  }
  .hero-content {
    text-align: center;
    margin: 0 auto;
  }
  .hero-trust-bar {
    grid-template-columns: 1fr;
    justify-content: center;
    width: max-content;
    max-width: 100%;
    margin: 0 auto 30px;
    padding-left: 10px;
    box-sizing: border-box;
  }
  .hero-ctas {
    justify-content: center;
  }
  .hero-image-wrapper {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }
  /* Hero card full-width on mobile */
  .hero-card {
    max-width: 100%;
    width: 100%;
    padding: 28px 20px;
    margin: 0 auto;
    box-sizing: border-box;
  }
  /* Founder section */
  .founder-bio {
    font-size: 0.93rem;
  }
  .founder-credentials {
    justify-content: center;
  }
  .founder-ctas {
    justify-content: center;
  }
  .founder-ctas .btn {
    flex: 1;
    min-width: 140px;
    text-align: center;
    justify-content: center;
  }
  .response-time-pill {
    display: flex;
    justify-content: center;
  }
  /* Process */
  .process-timeline {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  /* Contact form */
  .contact-form-card {
    padding: 28px 20px;
  }
  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  /* Services */
  .services-columns-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .text-center-mobile {
    text-align: center !important;
    display: block;
  }
}

@media (max-width: 576px) {
  .container, .container-full {
    padding: 0 16px;
  }
  .section {
    padding: 48px 0;
  }
  .hero-ctas {
    flex-direction: column;
    width: 100%;
  }
  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }
  .hero-trust-bar {
    gap: 10px;
  }
  /* Founder badges 2-col on mobile */
  .founder-badges-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .founder-badge-card .badge-num {
    font-size: 1.2rem;
  }
  .founder-content h2 {
    font-size: 1.55rem;
    text-align: center;
  }
  .founder-subtitle {
    text-align: center;
  }
  .founder-bio {
    border-left: none;
    padding-left: 0;
    border-top: 3px solid var(--primary-orange);
    padding-top: 16px;
  }
  /* Forms */
  .form-group-row {
    grid-template-columns: 1fr;
  }
  .form-contact-actions {
    grid-template-columns: 1fr;
  }
  .testimonial-card {
    padding: 20px;
    width: 290px;
    max-width: 100%;
  }
  /* Final CTA */
  .final-cta-text h2 {
    font-size: 1.75rem;
  }
  /* Footer */
  .footer-bottom-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }
  /* Announcement bar smaller on mobile */
  .announcement-bar {
    height: 30px;
    font-size: 0.72rem;
  }
  /* Card Padding Reduction on Mobile */
  .service-col-card {
    padding: 16px 20px;
  }
  .outcome-card {
    padding: 20px;
  }
  .gdpr-card {
    padding: 20px;
  }
  .contact-form-card {
    padding: 24px 16px;
  }
  /* Mobile Metrics Bar Grid */
  .metrics-bar {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 16px;
  }
  .metric-val {
    font-size: 2.2rem;
  }
  .metric-lbl {
    font-size: 0.85rem;
  }
  /* Founder CTAs stacked on mobile */
  .founder-ctas {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 12px;
  }
  .founder-ctas .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 380px) {
  .btn {
    font-size: 0.95rem;
    padding: 14px 22px;
  }
  .founder-badges-grid {
    grid-template-columns: 1fr 1fr;
  }
  .logo img {
    height: 42px;
  }
}

@media (max-width: 360px) {
  .container, .container-full {
    padding: 0 12px;
  }
}

/* Lucide Icon Enhancements */
.lucide {
  width: 18px;
  height: 18px;
  stroke-width: 2.5px;
  vertical-align: middle;
  display: inline-flex;
  align-items: center;
}

.badge-stars {
  display: inline-flex;
  gap: 2px;
  margin-left: 6px;
}

.star-icon {
  width: 12px;
  height: 12px;
  fill: var(--primary-orange);
  color: var(--primary-orange);
}

.zap-icon {
  width: 14px;
  height: 14px;
  color: var(--success-green);
  fill: rgba(34, 197, 94, 0.15);
  margin-right: 4px;
}

.lock-icon {
  width: 13px;
  height: 13px;
  margin-right: 4px;
}

.trust-icon {
  color: var(--success-green);
  width: 18px;
  height: 18px;
  margin-right: 8px;
}

.pain-cross {
  color: var(--error-red);
  width: 20px;
  height: 20px;
  margin-top: 4px;
  flex-shrink: 0;
}

.list-check-icon {
  color: var(--primary-orange);
  width: 16px;
  height: 16px;
  margin-right: 8px;
  display: inline-flex;
  vertical-align: middle;
}

.risk-check-icon {
  color: var(--white);
  width: 18px;
  height: 18px;
  margin-right: 8px;
}

.testimonial-star-icon {
  color: var(--primary-orange);
  fill: var(--primary-orange);
  width: 16px;
  height: 16px;
}

.rating-star-icon {
  color: #fbbc05;
  fill: #fbbc05;
  width: 16px;
  height: 16px;
}

.rating-stars-box {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 4px;
}

.faq-icon-arrow {
  width: 20px;
  height: 20px;
  color: var(--primary-orange);
  transition: transform 0.3s ease;
}

/* Header & Hero layout offsets for top announcement bar */
header {
  top: 36px !important;
}
.hero {
  padding-top: calc(var(--nav-height) + 36px + 60px) !important;
}
.nav-menu {
  top: calc(var(--nav-height) + 36px) !important;
  height: calc(100vh - var(--nav-height) - 36px) !important;
}

@media (max-width: 576px) {
  header {
    top: 30px !important;
  }
  .hero {
    padding-top: calc(var(--nav-height) + 30px + 40px) !important;
  }
  .nav-menu {
    top: calc(var(--nav-height) + 30px) !important;
    height: calc(100vh - var(--nav-height) - 30px) !important;
  }
}

/* Announcement Ticker Bar */
.announcement-bar {
  background-color: var(--deep-black);
  color: var(--white);
  height: 36px;
  font-size: 0.8rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1001;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.announcement-track {
  width: 100%;
  overflow: hidden;
}
.announcement-content {
  display: inline-block;
  white-space: nowrap;
  padding-left: 100%;
  animation: scroll-ticker 35s linear infinite;
}
.announcement-zap {
  color: var(--primary-orange);
  width: 14px;
  height: 14px;
  vertical-align: middle;
  margin-right: 6px;
  display: inline-flex;
}
@keyframes scroll-ticker {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-100%, 0, 0); }
}

/* Live Visitor Counter Widget */
.live-counter {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(34, 197, 94, 0.08);
  color: var(--success-green);
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 500;
  margin-bottom: 18px;
  border: 1px solid rgba(34, 197, 94, 0.12);
  width: fit-content;
}
.live-dot {
  width: 8px;
  height: 8px;
  background-color: var(--success-green);
  border-radius: 50%;
  display: inline-block;
  animation: pulse-green 1.5s infinite;
}
@keyframes pulse-green {
  0% { transform: scale(0.9); opacity: 0.6; }
  50% { transform: scale(1.2); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0.6; }
}
.live-text {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--success-green);
}

/* Exit Intent Modal Styles */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(4px);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.modal-overlay.active {
  display: flex;
  opacity: 1;
}
.modal-card {
  background-color: var(--white);
  border-radius: 16px;
  padding: 40px;
  max-width: 480px;
  width: 100%;
  position: relative;
  box-shadow: var(--box-shadow-lg);
  transform: scale(0.95);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 1px solid var(--border-color);
  text-align: center;
}
.modal-overlay.active .modal-card {
  transform: scale(1);
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--dark-gray);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-close:hover {
  color: var(--primary-orange);
}
.modal-close svg {
  width: 20px;
  height: 20px;
}
.modal-icon {
  width: 48px;
  height: 48px;
  color: var(--primary-orange);
  margin: 0 auto 16px;
}
.modal-header h2 {
  font-size: 1.55rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--deep-black);
  line-height: 1.3;
}
.modal-header p {
  font-size: 0.92rem;
  color: var(--dark-gray);
  line-height: 1.5;
}
.modal-form {
  display: flex;
  flex-direction: column;
}
.section-title span, .founder-content h2 span {
  color: var(--primary-orange);
}

.final-cta-text h2 span {
  color: #FFF3E5;
}

/* Navigation Display Helper Classes */
@media (min-width: 769px) {
  .mobile-only {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .desktop-only {
    display: none !important;
  }
}

/* Responsive Font Scaling (Fluid Typography) */
@media (max-width: 992px) {
  html {
    font-size: 15px;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 14.5px;
  }
}
@media (max-width: 480px) {
  html {
    font-size: 13.5px;
  }
}
@media (max-width: 360px) {
  html {
    font-size: 12.5px;
  }
}
@media (max-width: 320px) {
  html {
    font-size: 12px;
  }
}

/* Responsive Desktop Font Scaling (Reduces whitespace, increases legibility) */
@media (min-width: 1024px) {
  html {
    font-size: 17px;
  }
}
@media (min-width: 1200px) {
  html {
    font-size: 18px;
  }
}
@media (min-width: 1440px) {
  html {
    font-size: 18.5px;
  }
}



/* Premium Gradient Text for Accent Spans */
.hero-content h1 span,
.section-title span,
.founder-content h2 span,
.final-cta-text h2 span {
  background: var(--primary-orange);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* Scroll Reveal Transition System */
.scroll-reveal-init {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 1.0s cubic-bezier(0.16, 1, 0.3, 1), transform 1.0s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.scroll-reveal-active {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered transition delays for grid elements */
.services-columns-grid .service-col-card:nth-child(1) { transition-delay: 0.05s; }
.services-columns-grid .service-col-card:nth-child(2) { transition-delay: 0.1s; }
.services-columns-grid .service-col-card:nth-child(3) { transition-delay: 0.15s; }
.services-columns-grid .service-col-card:nth-child(4) { transition-delay: 0.2s; }
.services-columns-grid .service-col-card:nth-child(5) { transition-delay: 0.25s; }
.services-columns-grid .service-col-card:nth-child(6) { transition-delay: 0.3s; }

.outcomes-grid .outcome-card:nth-child(1) { transition-delay: 0.05s; }
.outcomes-grid .outcome-card:nth-child(2) { transition-delay: 0.12s; }
.outcomes-grid .outcome-card:nth-child(3) { transition-delay: 0.19s; }

.process-timeline .process-step:nth-child(1) { transition-delay: 0.05s; }
.process-timeline .process-step:nth-child(2) { transition-delay: 0.18s; }
.process-timeline .process-step:nth-child(3) { transition-delay: 0.31s; }
.process-timeline .process-step:nth-child(4) { transition-delay: 0.44s; }

.pain-list-column li:nth-child(1) { transition-delay: 0.05s; }
.pain-list-column li:nth-child(2) { transition-delay: 0.1s; }
.pain-list-column li:nth-child(3) { transition-delay: 0.15s; }
.pain-list-column li:nth-child(4) { transition-delay: 0.2s; }

/* Micro-animations and Orange Card Shadows on Hover */
.service-col-card:hover,
.outcome-card:hover,
.gdpr-card:hover,
.testimonial-card:hover,
.contact-form-card:hover {
  box-shadow: 0 20px 40px rgba(234, 87, 7, 0.065), 0 1px 3px rgba(0, 0, 0, 0.02) !important;
}

/* Checklist icon bounces on list element hover */
.pain-list-column li, .gdpr-list li, .service-col-list li {
  transition: var(--transition);
}

.pain-list-column li:hover, .gdpr-list li:hover, .service-col-list li:hover {
  transform: translateX(4px);
}

.list-check-icon, .gdpr-list-icon {
  transition: transform 0.3s var(--transition);
}

.pain-list-column li:hover .list-check-icon,
.service-col-list li:hover .list-check-icon,
.gdpr-list li:hover .gdpr-list-icon {
  transform: scale(1.25) rotate(15deg);
  color: var(--primary-orange);
}
