/* ===== VARIABLES ===== */
:root {
  --white: #ffffff;
  --off-white: #f7f8f8;
  --gray-100: #eef0f1;
  --gray-200: #dde1e3;
  --gray-300: #bcc3c7;
  --gray-400: #8d979c;
  --gray-500: #5f6d73;
  --gray-600: #3e4e55;
  --gray-700: #2c3a40;
  --gray-800: #1a2a30;
  --gray-900: #0e1c22;
  --coral: #E76F51;
  --coral-dark: #c9563c;
  --teal: #008B9C;
  --teal-dark: #006d7a;
  --teal-light: #00a8bc;
  --gradient-1: linear-gradient(135deg, #E76F51, #c9563c);
  --gradient-2: linear-gradient(135deg, #008B9C, #00a8bc);
  --gradient-3: linear-gradient(135deg, #E76F51, #008B9C);
  --gradient-4: linear-gradient(135deg, #008B9C, #E76F51);
  --gradient-bg: linear-gradient(135deg, rgba(231, 111, 81, 0.04), rgba(0, 139, 156, 0.04), rgba(231, 111, 81, 0.02));
  --gradient-glow: radial-gradient(circle at 30% 40%, rgba(0, 139, 156, 0.08) 0%, transparent 60%),
    radial-gradient(circle at 70% 60%, rgba(231, 111, 81, 0.06) 0%, transparent 50%);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.08);
  --shadow-glow: 0 0 60px rgba(0, 139, 156, 0.1);
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 20px;
  --radius-xl: 24px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--gray-800);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2 {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.2;
}

h3,
h5,
h6,
h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}



p {
  color: var(--gray-600);
  line-height: 1.7;
  font-weight: 400;
}

a {
  text-decoration: none;
  transition: var(--transition);
}

img {
  max-width: 100%;
}

section {
  position: relative;
}

.section-padding,
.hero-form-section {
  padding: 100px 0 !important;
}

.section-label {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 16px;
}

.section-title {
  font-size: 2.75rem;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray-500);
  max-width: 600px;
  line-height: 1.7;
}

.gradient-text {
  background: linear-gradient(135deg, #008B9C, #00a8bc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== BUTTONS ===== */
.btn-gradient {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--gradient-1);
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(231, 111, 81, 0.25);
  position: relative;
  overflow: hidden;
}

.btn-gradient::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--teal-dark), var(--coral-dark));
  opacity: 0;
  transition: var(--transition);
}

.btn-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(231, 111, 81, 0.35);
  color: var(--white);
}

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

.btn-gradient span {
  position: relative;
  z-index: 1;
}

.btn-gradient i {
  position: relative;
  z-index: 1;
}

.btn-outline-gradient {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: transparent;
  color: #000000;
  border: 2px solid var(--gray-200);
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}

.btn-outline-gradient:hover {
  border-color: var(--teal);
  color: var(--teal);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 139, 156, 0.15);
}

/* ===== NAVBAR ===== */
.navbar {
  padding: 16px 0;
  transition: var(--transition);
  background: #fff;
  z-index: 1050;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.06);
  padding: 10px 0;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--gray-900);
}

.navbar-brand .brand-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gradient-1);
  margin-left: 2px;
  vertical-align: super;
}

.navbar-nav .nav-link {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-600);
  padding: 8px 20px;
  letter-spacing: 0.2px;
  transition: var(--transition);
  position: relative;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 20px;
  right: 20px;
  height: 2px;
  background: var(--gradient-1);
  border-radius: 2px;
  transform: scaleX(0);
  transition: var(--transition);
}

.navbar-nav .nav-link:hover {
  color: var(--gray-900);
}

.navbar-nav .nav-link:hover::after {
  transform: scaleX(1);
}

.navbar .btn-gradient {
  padding: 10px 24px;
  font-size: 0.825rem;
}

.navbar-toggler {
  border: none;
  padding: 8px;
  box-shadow: none;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  width: 24px;
  height: 24px;
}

/* ===== HERO ===== */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;

}

.hero-section::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(231, 111, 81, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(0, 139, 156, 0.06);
  border: 1px solid rgba(0, 139, 156, 0.10);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 28px;
  letter-spacing: 0.5px;
}

.hero-badge i {
  font-size: 0.7rem;
}

.hero-title {
  font-size: 3.75rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
  color: var(--gray-900);
}

.hero-subtitle {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--gray-500);
  margin-bottom: 40px;
  max-width: 520px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  z-index: 2;
}

.hero-dashboard {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  padding: 28px;
  border: 1px solid rgba(0, 139, 156, 0.08);
}

.dashboard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.dashboard-dots {
  display: flex;
  gap: 6px;
}

.dashboard-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dashboard-dots span:nth-child(1) {
  background: #f87171;
}

.dashboard-dots span:nth-child(2) {
  background: #fbbf24;
}

.dashboard-dots span:nth-child(3) {
  background: #34d399;
}

.dashboard-label {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--gray-400);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.dashboard-chart {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  height: 160px;
  padding-top: 20px;
}

.chart-bar {
  flex: 1;
  border-radius: 8px 8px 4px 4px;
  background: var(--gradient-1);
  opacity: 0.85;
  transition: var(--transition);
  position: relative;
  animation: barGrow 1.2s ease-out forwards;
  transform-origin: bottom;
}

.chart-bar:nth-child(even) {
  background: var(--gradient-2);
  opacity: 0.7;
}

.chart-bar:hover {
  opacity: 1;
  transform: scaleY(1.05);
}

@keyframes barGrow {
  from {
    transform: scaleY(0);
  }

  to {
    transform: scaleY(1);
  }
}

.dashboard-stats {
  display: flex;
  gap: 16px;
  margin-top: 20px;
}

.stat-card {
  flex: 1;
  background: var(--off-white);
  border-radius: var(--radius-sm);
  padding: 14px;
  text-align: center;
}

.stat-card .stat-value {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--gray-900);
}

.stat-card .stat-label {
  font-size: 0.65rem;
  color: var(--gray-400);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 2px;
}

.hero-float-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-100);
  animation: float 6s ease-in-out infinite;
  z-index: 3;
}

.hero-float-card.card-1 {
  top: -15px;
  right: -20px;
  animation-delay: 0s;
}

.hero-float-card.card-2 {
  bottom: 30px;
  left: -30px;
  animation-delay: 2s;
}

.float-card-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--white);
  margin-bottom: 8px;
}

.float-card-value {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--gray-900);
}

.float-card-label {
  font-size: 0.65rem;
  color: var(--gray-400);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

/* ===== MARQUEE ===== */
.marquee-section {
  padding: 24px 0;
  background: var(--off-white);
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
  overflow: hidden;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 30s linear infinite;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 32px;
  white-space: nowrap;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-400);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.marquee-item .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gradient-1);
  flex-shrink: 0;
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ===== PROBLEM SECTION ===== */
.problem-section {
  background: var(--white);
}

.problem-section .section-title {
  font-size: 2.5rem;
}

.pain-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  height: 100%;
}

.pain-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-1);
  opacity: 0;
  transition: var(--transition);
}

.pain-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0, 139, 156, 0.15);
}

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

.pain-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(0, 139, 156, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--teal);
  margin-bottom: 18px;
}

.pain-card h5 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--gray-800);
}

.pain-card p {
  font-size: 0.875rem;
  color: var(--gray-500);
  margin: 0;
  line-height: 1.6;
}

.problem-cta-text {
  font-size: 1.15rem;
  font-weight: 600;

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

/* ===== SERVICES ===== */
.services-section {
  background: var(--off-white);
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  height: 100%;
  border: 1px solid transparent;
  background-clip: padding-box;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-md);
  padding: 1.5px;
  background: linear-gradient(135deg, rgba(0, 139, 156, 0.25), rgba(231, 111, 81, 0.2));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

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

.service-card:hover::before {
  background: linear-gradient(135deg, rgba(0, 139, 156, 0.5), rgba(231, 111, 81, 0.45));
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 22px;
}

.service-card h4 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
  font-family: 'Inter', sans-serif;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.65;
  margin: 0;
}

.service-card .service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--teal);
  transition: var(--transition);
}

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

/* ===== WHY CHOOSE US ===== */
.why-section {
  background: var(--gradient-bg);
  position: relative;
}

.why-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-glow);
  pointer-events: none;
}

.why-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: var(--transition);
  height: 100%;
}

.why-card:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.why-check {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--gradient-1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.8rem;
  margin-bottom: 16px;
  flex-shrink: 0;
}

.why-card h5 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 6px;
}

.why-card p {
  font-size: 0.85rem;
  color: var(--gray-500);
  margin: 0;
  line-height: 1.6;
}

/* ===== PROCESS ===== */
.process-section {
  background: var(--white);
}

.process-timeline {
  display: flex;
  justify-content: space-between;
  position: relative;
  padding: 20px 0;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 44px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--gray-200), rgba(231, 111, 81, 0.25), rgba(231, 111, 81, 0.2), rgba(0, 139, 156, 0.25), var(--gray-200));
}

.process-step {
  flex: 1;
  text-align: center;
  position: relative;
  padding: 0 12px;
}

.step-number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 800;
  color: var(--gray-400);
  margin: 0 auto 20px;
  position: relative;
  z-index: 2;
  transition: var(--transition);
}

.process-step:hover .step-number {
  background: var(--gradient-1);
  border-color: transparent;
  color: var(--white);
  transform: scale(1.1);
  box-shadow: 0 4px 20px rgba(231, 111, 81, 0.25);
}

.process-step h5 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.process-step p {
  font-size: 0.8rem;
  color: var(--gray-500);
  margin: 0;
  line-height: 1.5;
}

/* ===== METRICS ===== */
.metrics-section {
  background: var(--gradient-bg);
  position: relative;
}

.metrics-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-glow);
  pointer-events: none;
}

.metric-card {
  text-align: center;
  padding: 40px 24px;
  position: relative;
  z-index: 1;
}

.metric-value {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.metric-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-500);
  letter-spacing: 0.5px;
}

/* ===== INDUSTRIES ===== */
.industries-section {
  background: var(--white);
}

.industry-card {
  background: var(--off-white);
  border-radius: var(--radius-sm);
  padding: 24px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid transparent;
  height: 100%;
}

.industry-card:hover {
  background: var(--white);
  border-color: rgba(0, 139, 156, 0.15);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.industry-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(0, 139, 156, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 1.1rem;
  color: var(--teal);
}

.industry-card h6 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gray-700);
  margin: 0;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  background: var(--off-white);
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px;
  transition: var(--transition);
  height: 100%;
  border: 1px solid var(--gray-100);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  font-size: 4rem;
  line-height: 1;
  font-weight: 800;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: absolute;
  top: 20px;
  right: 28px;
  opacity: 0.3;
}

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

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
  color: #fbbf24;
  font-size: 0.8rem;
}

.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--gray-600);
  margin-bottom: 24px;
  font-style: italic;
}

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

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient-1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
}

.author-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gray-800);
}

.author-role {
  font-size: 0.75rem;
  color: var(--gray-400);
  font-weight: 500;
}

/* ===== FINAL CTA ===== */
.cta-section {
  background: var(--gradient-bg);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 139, 156, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -40%;
  right: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(231, 111, 81, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-section .section-title {
  font-size: 2.75rem;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--gray-900);
  padding: 60px 0 0;
}

.footer-top {
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
}

.footer-brand .brand-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gradient-1);
  margin-left: 2px;
  vertical-align: super;
}

.footer-desc {
  font-size: 0.85rem;
  color: var(--gray-400);
  margin-top: 14px;
  line-height: 1.7;
  max-width: 300px;
}

.footer h6 {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gray-400);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 0.875rem;
  color: var(--gray-400);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.footer-contact-item i {
  color: var(--teal);
  margin-top: 3px;
  font-size: 0.85rem;
}

.footer-contact-item span {
  font-size: 0.875rem;
  color: var(--gray-400);
  line-height: 1.6;
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copyright {
  font-size: 0.8rem;
  color: var(--gray-500);
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  font-size: 0.85rem;
  transition: var(--transition);
}

.footer-socials a:hover {
  background: var(--gradient-1);
  color: var(--white);
  transform: translateY(-2px);
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 991.98px) {
  .hero-title {
    font-size: 2.75rem;
  }

  .section-title {
    font-size: 2.25rem;
  }

  .hero-visual {
    margin-top: 48px;
  }

  .hero-float-card.card-1 {
    right: 0;
  }

  .hero-float-card.card-2 {
    left: 0;
  }

  .process-timeline {
    flex-direction: column;
    gap: 32px;
  }

  .process-timeline::before {
    top: 0;
    bottom: 0;
    left: 32px;
    right: auto;
    width: 2px;
    height: auto;
  }

  .process-step {
    text-align: left;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 0;
  }

  .step-number {
    margin: 0;
    flex-shrink: 0;
    width: 56px;
    height: 56px;
  }

  .navbar-collapse {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 20px;
    margin-top: 12px;
    box-shadow: var(--shadow-lg);
  }
}

@media (max-width: 767.98px) {
  .hero-title {
    font-size: 2.25rem;
    letter-spacing: -1px;
  }

  .section-title {
    font-size: 1.85rem;
  }

  .section-padding {
    padding: 70px 0;
  }

  .hero-section {
    min-height: auto;
    padding-top: 120px;
    padding-bottom: 60px;
  }

  .metric-value {
    font-size: 2.25rem;
  }

  .cta-section .section-title {
    font-size: 2rem;
  }

  .hero-float-card {
    display: none;
  }

  .footer-bottom {
    justify-content: center;
    text-align: center;
  }
}

/* =============================================
   INNER PAGE STYLES
   ============================================= */

/* ===== PAGE HERO BANNER (Inner Pages) ===== */
.page-hero-banner {
  padding: 100px 0 120px;
  position: relative;
  overflow: hidden;
  background: var(--gray-900);

}

.page-hero-banner::before {
  content: '';
  position: absolute;
  top: -40%;
  left: -15%;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 139, 156, 0.18) 0%, transparent 65%);
  pointer-events: none;
}

.page-hero-banner::after {
  content: '';
  position: absolute;
  bottom: -35%;
  right: -10%;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(231, 111, 81, 0.12) 0%, transparent 65%);
  pointer-events: none;
}

.page-hero-banner .hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 139, 156, 0.08) 0%, transparent 60%);
  pointer-events: none;
  filter: blur(60px);
}

.page-hero-banner .hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin: 0 auto;
}

.page-hero-banner .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 22px;
  background: rgba(0, 139, 156, 0.12);
  border: 1px solid rgba(0, 139, 156, 0.2);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--teal-light);
  margin-bottom: 28px;
  letter-spacing: 0.5px;
}

.page-hero-banner .hero-badge i {
  font-size: 0.7rem;
}

.page-hero-banner .hero-title {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 24px;
  color: var(--white);
}

.page-hero-banner .hero-title .gradient-text-banner {
  background: linear-gradient(135deg, var(--coral), #f4a261);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-hero-banner .hero-subtitle {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--gray-300);
  margin-bottom: 20px;
  max-width: 600px;

}

.page-hero-banner .hero-tagline {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 40px;
  letter-spacing: 0.3px;
}

.page-hero-banner .hero-buttons {
  display: flex;
  gap: 16px;

  flex-wrap: wrap;
  margin-bottom: 60px;
}

.page-hero-banner .btn-outline-gradient {
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.page-hero-banner .btn-outline-gradient:hover {
  border-color: var(--coral);
  color: var(--coral);
  box-shadow: 0 4px 20px rgba(231, 111, 81, 0.2);
}

/* Banner stat strip */
.banner-stats {
  display: flex;

  gap: 15px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

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

.banner-stat-value {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}

.banner-stat-value .coral {
  color: var(--coral);
}

.banner-stat-label {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--gray-400);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Banner bottom wave/divider */
.banner-divider {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  z-index: 3;
  line-height: 0;
}

.banner-divider svg {
  display: block;
  width: 100%;
  height: 60px;
}

/* Shape cards below banner */
.banner-cards-strip {
  background: var(--white);
  position: relative;
  z-index: 4;
  margin-top: 5%;
  padding-bottom: 5%;
}

.abstract-shape-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.shape-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: 28px 22px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.shape-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-3);
  opacity: 0;
  transition: var(--transition);
}

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

.shape-card:hover::after {
  opacity: 1;
}

.shape-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 14px;
}

.shape-card h6 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 4px;
}

.shape-card p {
  font-size: 0.875rem;
  color: var(--gray-400);
  margin: 0;
  line-height: 1.5;
}

.shape-card.featured {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--gradient-bg);
  border-color: rgba(0, 139, 156, 0.1);
}

.shape-card.featured .shape-card-icon {
  margin-bottom: 0;
}

/* ===== CONTENT INTRO ===== */
.content-intro {
  background: var(--off-white);
}

.intro-highlight {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 48px;
  position: relative;
  overflow: hidden;
}

.intro-highlight::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gradient-3);
}

.intro-highlight h3 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--gray-900);
  font-family: 'Inter', sans-serif;
}

.intro-highlight p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--gray-500);
}

.intro-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}

.intro-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.6;
}

.intro-list li i {
  color: var(--teal);
  font-size: 0.8rem;
  margin-top: 5px;
  flex-shrink: 0;
}

/* ===== SPLIT CONTENT ===== */
.split-content {
  background: var(--white);
}

.split-block {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 48px;
  height: 100%;
  border: 1px solid var(--gray-100);
  transition: var(--transition);
}

.split-block:hover {
  box-shadow: var(--shadow-md);
}

.split-block-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 22px;
}

.split-block h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 14px;
  font-family: 'Inter', sans-serif;
}

.split-block p {
  font-size: 0.925rem;
  color: var(--gray-500);
  line-height: 1.7;
}

.split-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
}

.split-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 0;
  font-size: 0.875rem;
  color: var(--gray-600);
}

.split-list li i {
  color: var(--coral);
  font-size: 0.7rem;
}

/* ===== SOLUTIONS CARDS ===== */
.solutions-section {
  background: var(--off-white);
}

.solution-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 30px;
  height: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
}

.solution-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-md);
  padding: 1.5px;
  background: linear-gradient(135deg, rgba(0, 139, 156, 0.2), rgba(231, 111, 81, 0.2));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

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

.solution-card:hover::before {
  background: linear-gradient(135deg, rgba(0, 139, 156, 0.45), rgba(231, 111, 81, 0.45));
}

.solution-card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 20px;
}

.solution-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  font-family: 'Inter', sans-serif;
}

.solution-card p {
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.65;
  margin-bottom: 16px;
}

.solution-ideal {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray-400);
  letter-spacing: 0.3px;
  padding-top: 12px;
  border-top: 1px solid var(--gray-100);
}

.solution-ideal strong {
  color: var(--teal);
  font-weight: 700;
}

/* ===== INCLUDED / CHECKLIST ===== */
.included-section {
  background: var(--gradient-bg);
  position: relative;
}

.included-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-glow);
  pointer-events: none;
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  position: relative;
  z-index: 1;
}

.included-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-sm);
  padding: 18px 22px;
  transition: var(--transition);
}

.included-item:hover {
  background: rgba(255, 255, 255, 0.92);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.included-check {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--gradient-3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.7rem;
  flex-shrink: 0;
}

.included-item span {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-700);
}

/* ===== FAQ ACCORDION ===== */
.faq-section {
  background: var(--white);
}

.faq-accordion .accordion-item {
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-sm) !important;
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-accordion .accordion-item:hover {
  border-color: rgba(0, 139, 156, 0.2);
}

.faq-accordion .accordion-button {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-800);
  background: var(--white);
  padding: 22px 28px;
  border: none;
  box-shadow: none;
  transition: var(--transition);
}

.faq-accordion .accordion-button:not(.collapsed) {
  background: linear-gradient(135deg, rgba(0, 139, 156, 0.04), rgba(231, 111, 81, 0.02));
  color: var(--teal);
  box-shadow: none;
}

.faq-accordion .accordion-button::after {
  background-image: none;
  content: '\F282';
  font-family: 'bootstrap-icons';
  font-size: 0.85rem;
  color: var(--gray-400);
  transition: var(--transition);
  width: auto;
  height: auto;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
  content: '\F286';
  color: var(--teal);
  transform: none;
}

.faq-accordion .accordion-body {
  padding: 15px 28px 24px;
  font-size: 0.925rem;
  color: var(--gray-500);
  line-height: 1.75;
}

.faq-accordion .accordion-collapse {
  border-top: none;
}

/* ===== INNER PAGE PROCESS ===== */
.inner-process-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  height: 100%;
  transition: var(--transition);
  position: relative;
}

.inner-process-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0, 139, 156, 0.15);
}

.inner-process-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gradient-3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  margin: 0 auto 18px;
}

.inner-process-card h5 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.inner-process-card p {
  font-size: 0.85rem;
  color: var(--gray-500);
  margin: 0;
  line-height: 1.6;
}

/* ===== INNER PAGE METRICS ===== */
.inner-metrics {
  background: var(--gray-900);
  position: relative;
  overflow: hidden;
}

.inner-metrics::before {
  content: '';
  position: absolute;
  top: -40%;
  left: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 139, 156, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.inner-metrics::after {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -5%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(231, 111, 81, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.inner-metric-card {
  text-align: center;
  padding: 36px 20px;
  position: relative;
  z-index: 1;
}

.inner-metric-value {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}

.inner-metric-value .accent {
  color: var(--coral);
}

.inner-metric-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray-400);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ===== RESPONSIVE INNER PAGES ===== */
@media (max-width: 991.98px) {
  .page-hero-banner .hero-title {
    font-size: 2.75rem;
  }

  .page-hero-banner {
    padding: 160px 0 100px;
  }

  .banner-stats {
    gap: 32px;
  }

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

  .intro-highlight {
    padding: 32px;
  }

  .split-block {
    padding: 32px;
  }
}

@media (max-width: 767.98px) {
  .page-hero-banner {
    padding: 140px 0 90px;
  }

  .page-hero-banner .hero-title {
    font-size: 2rem;
    letter-spacing: -0.5px;
  }

  .page-hero-banner .hero-subtitle {
    font-size: 1rem;
  }

  .banner-stats {
    gap: 20px;
  }

  .banner-stat-value {
    font-size: 1.5rem;
  }

  .banner-divider svg {
    height: 30px;
  }

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

  .abstract-shape-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .shape-card.featured {
    grid-column: auto;
  }

  .inner-metric-value {
    font-size: 2rem;
  }
}

@media (max-width: 575.98px) {
  .abstract-shape-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .shape-card.featured {
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: flex-start;
  }

  .shape-card.featured .shape-card-icon {
    margin-bottom: 12px;
  }

  .banner-stats {
    gap: 16px;
  }

  .banner-stat-value {
    font-size: 1.25rem;
  }
}

/* =============================================
   SEO PAGE STYLES
   ============================================= */

/* ===== HERO WITH FORM ===== */
.hero-form-section {
  padding: 140px 0 100px;
  position: relative;
  overflow: hidden;
  background: var(--gray-900);
}

.hero-form-section::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -12%;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 139, 156, 0.16) 0%, transparent 65%);
  pointer-events: none;
}

.hero-form-section::after {
  content: '';
  position: absolute;
  bottom: -25%;
  right: -8%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(231, 111, 81, 0.1) 0%, transparent 65%);
  pointer-events: none;
}

.hero-form-section .hero-content {
  position: relative;
  z-index: 2;
}

.hero-form-section .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 22px;
  background: rgba(0, 139, 156, 0.12);
  border: 1px solid rgba(0, 139, 156, 0.2);
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--teal-light);
  margin-bottom: 28px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.page-hero-banner .hero-content h1 {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 2.85rem;
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.5px;
  margin-bottom: 22px;
  color: var(--white);
}

.page-hero-banner em {
  background: linear-gradient(135deg, var(--coral), #f4a261);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-form-section .hero-title {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 2.85rem;
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.5px;
  margin-bottom: 22px;
  color: var(--white);
}

.hero-form-section .hero-title .ht-accent {
  background: linear-gradient(135deg, var(--coral), #f4a261);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-form-section .hero-subtitle {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--gray-300);
  margin-bottom: 32px;
  max-width: 500px;
}

.hero-form-section .hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-form-section .btn-outline-gradient {
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.hero-form-section .btn-outline-gradient:hover {
  border-color: var(--coral);
  color: var(--coral);
}

/* Trust indicators */
.hero-trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.hero-trust-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray-300);
}

.hero-trust-list li i {
  color: var(--coral);
  font-size: 0.75rem;
}

/* ===== CONSULTATION FORM CARD ===== */
.form-card-wrapper {
  position: relative;
  z-index: 2;
}

.consultation-form-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
}

.consultation-form-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  padding: 1.5px;
  background: linear-gradient(135deg, rgba(0, 139, 156, 0.3), rgba(231, 111, 81, 0.2), rgba(0, 139, 156, 0.1));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.form-card-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: 10px;
  display: block;
}

.form-card-title {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
  line-height: 1.3;
}

.form-card-sub {
  font-size: 0.85rem;
  color: var(--gray-400);
  margin-bottom: 28px;
}

.consultation-form-card .form-control,
.consultation-form-card .form-select {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 13px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: var(--white);
  transition: var(--transition);
}

.consultation-form-card .form-control::placeholder {
  color: var(--gray-400);
}

.consultation-form-card .form-control:focus,
.consultation-form-card .form-select:focus {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(0, 139, 156, 0.4);
  box-shadow: 0 0 0 3px rgba(0, 139, 156, 0.1);
  color: var(--white);
  outline: none;
}

.consultation-form-card .form-select {
  color: var(--gray-400);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%238d979c' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 12px;
  appearance: none;
  -webkit-appearance: none;
}

.consultation-form-card .form-select option {
  background: var(--gray-800);
  color: var(--white);
}

.consultation-form-card .form-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray-300);
  margin-bottom: 6px;
  letter-spacing: 0.3px;
}

.consultation-form-card textarea.form-control {
  min-height: 90px;
  resize: vertical;
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 4px;
}

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

.form-consent label {
  font-size: 0.72rem;
  color: var(--gray-400);
  line-height: 1.5;
  cursor: pointer;
}

.form-consent label a {
  color: var(--teal-light);
  text-decoration: underline;
}

.btn-form-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 15px 28px;
  background: var(--gradient-1);
  color: var(--white);
  border: none;
  border-radius: 12px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 24px rgba(231, 111, 81, 0.3);
  margin-top: 20px;
}

.btn-form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(231, 111, 81, 0.4);
}

.form-trust-footer {
  text-align: center;
  font-size: 0.7rem;
  color: var(--gray-500);
  margin-top: 16px;
  letter-spacing: 0.3px;
}

.form-trust-footer i {
  color: var(--teal);
  margin-right: 2px;
}

/* ===== PAIN POINTS 2-COL ===== */
.pain-grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.pain-grid-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: 26px 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: var(--transition);
}

.pain-grid-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0, 139, 156, 0.15);
}

.pain-grid-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(231, 111, 81, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--coral);
  font-size: 1rem;
  flex-shrink: 0;
}

.pain-grid-card h6 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 4px;
}

.pain-grid-card p {
  font-size: 0.8rem;
  color: var(--gray-500);
  margin: 0;
  line-height: 1.55;
}

/* ===== SEO FRAMEWORK TIMELINE ===== */
.seo-timeline {
  position: relative;
  padding: 20px 0;
}

.seo-timeline::before {
  content: '';
  position: absolute;
  top: 60px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gray-200), rgba(0, 139, 156, 0.25), rgba(231, 111, 81, 0.25), rgba(0, 139, 156, 0.25), var(--gray-200));
}

.seo-timeline-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

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

.seo-step-num {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gradient-3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--white);
  margin: 0 auto 18px;
  position: relative;
  z-index: 2;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(0, 139, 156, 0.2);
}

.seo-timeline-step:hover .seo-step-num {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(231, 111, 81, 0.3);
}

.seo-timeline-step h5 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.seo-timeline-step p {
  font-size: 0.78rem;
  color: var(--gray-500);
  margin: 0;
  line-height: 1.5;
  max-width: 180px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== SEO SERVICES GRID ===== */
.seo-service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 34px 28px;
  height: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
}

.seo-service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-md);
  padding: 1.5px;
  background: linear-gradient(135deg, rgba(0, 139, 156, 0.2), rgba(231, 111, 81, 0.15));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

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

.seo-service-card:hover::before {
  background: linear-gradient(135deg, rgba(0, 139, 156, 0.45), rgba(231, 111, 81, 0.35));
}

.seo-service-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 20px;
}

.seo-service-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  font-family: 'Inter', sans-serif;
}

.seo-service-card p {
  font-size: 0.85rem;
  color: var(--gray-500);
  line-height: 1.65;
  margin-bottom: 14px;
}

.seo-service-card .service-goal {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--teal);
  padding-top: 12px;
  border-top: 1px solid var(--gray-100);
}

.seo-service-card .service-goal strong {
  color: var(--gray-700);
}

/* ===== SEO RESPONSIVE ===== */
@media (max-width: 991.98px) {
  .hero-form-section .hero-title {
    font-size: 2.25rem;
  }

  .hero-form-section {
    padding: 130px 0 80px;
  }

  .form-card-wrapper {
    margin-top: 48px;
  }

  .pain-grid-2col {
    grid-template-columns: 1fr;
  }

  .seo-timeline-row {
    flex-direction: column;
    gap: 28px;
  }

  .seo-timeline::before {
    top: 0;
    bottom: 0;
    left: 30px;
    right: auto;
    width: 2px;
    height: auto;
  }

  .seo-timeline-step {
    text-align: left;
    display: flex;
    align-items: flex-start;
    gap: 20px;
  }

  .seo-step-num {
    margin: 0;
    flex-shrink: 0;
    width: 52px;
    height: 52px;
  }

  .seo-timeline-step p {
    max-width: none;
    margin-left: 0;
  }
}

@media (max-width: 767.98px) {
  .hero-form-section {
    padding: 120px 0 60px;
  }

  .hero-form-section .hero-title {
    font-size: 1.85rem;
  }

  .consultation-form-card {
    padding: 28px 22px;
  }

  .hero-trust-list {
    gap: 8px 16px;
  }
}

/* =============================================
   pm.css — Performance Marketing Page
   ============================================= */

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

.pm-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.pm-hero-glow-a {
  position: absolute;
  top: 15%;
  right: 8%;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: rgba(231, 111, 81, 0.08);
  filter: blur(90px);
  pointer-events: none;
}

.pm-hero-glow-b {
  position: absolute;
  bottom: 10%;
  left: 4%;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(0, 139, 156, 0.1);
  filter: blur(90px);
  pointer-events: none;
}

.pm-hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 840px;
  margin: 0 auto;
}

.pm-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 20px;
  border: 1px solid rgba(231, 111, 81, 0.3);
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 32px;
}

.pm-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
  animation: pmPulse 2s ease-in-out infinite;
}

@keyframes pmPulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.35;
    transform: scale(0.6);
  }
}

.pm-hero-title {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 3.75rem;
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.pm-hero-title .pm-accent {
  background: linear-gradient(135deg, var(--coral), #f4a261);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pm-hero-sub {
  font-size: 1.1rem;
  color: var(--gray-300);
  line-height: 1.8;
  max-width: 640px;
  margin: 0 auto 40px;
}

.pm-hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.pm-hero-btns .btn-outline-gradient {
  border-color: rgba(255, 255, 255, 0.15);
  color: var(--white);
}

.pm-hero-btns .btn-outline-gradient:hover {
  border-color: var(--coral);
  color: var(--coral);
}

/* ===== HERO DASHBOARD ===== */
.pm-dash {
  position: relative;
  z-index: 2;
  max-width: 920px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 24px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.pm-dash-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.pm-dash-dots {
  display: flex;
  gap: 6px;
}

.pm-dash-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.pm-dash-dots span:nth-child(1) {
  background: #f87171;
}

.pm-dash-dots span:nth-child(2) {
  background: #fbbf24;
}

.pm-dash-dots span:nth-child(3) {
  background: #34d399;
}

.pm-dash-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-400);
}

.pm-dash-live {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  color: #34d399;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.pm-dash-live .ld {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #34d399;
  animation: pmPulse 1.5s ease-in-out infinite;
}

.pm-dash-kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.pm-kpi {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-sm);
  padding: 20px 14px;
  text-align: center;
  transition: var(--transition);
}

.pm-kpi:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(0, 139, 156, 0.2);
}

.pm-kpi-val {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}

.pm-kpi-val .arrow {
  color: #34d399;
  font-size: 0.65rem;
  font-weight: 700;
  vertical-align: super;
  margin-left: 3px;
}

.pm-kpi-name {
  font-size: 0.63rem;
  font-weight: 600;
  color: var(--gray-400);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.pm-dash-bars {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 80px;
  margin-top: 18px;
}

.pm-bar {
  flex: 1;
  border-radius: 3px 3px 1px 1px;
  transition: var(--transition);
  animation: barGrow 1.4s ease-out forwards;
  transform-origin: bottom;
}

.pm-bar.c {
  background: linear-gradient(180deg, var(--coral), rgba(231, 111, 81, 0.35));
}

.pm-bar.t {
  background: linear-gradient(180deg, var(--teal), rgba(0, 139, 156, 0.35));
}

.pm-bar:hover {
  opacity: 0.75;
  transform: scaleY(1.06);
}

/* ===== TICKER ===== */
.pm-ticker {
  background: var(--gray-900);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 14px 0;
  overflow: hidden;
}

.pm-ticker-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 42s linear infinite;
}

.pm-ticker-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 40px;
  white-space: nowrap;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gray-400);
}

.pm-ticker-item .tv {
  color: var(--coral);
  font-size: 1rem;
  font-weight: 800;
}

.pm-ticker-item .sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}

/* ===== PROBLEM / SOLUTION — ASYMMETRIC SPLIT ===== */
.pm-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.pm-split-dark {
  background: var(--gray-900);
  padding: 90px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.pm-split-dark::after {
  content: '';
  position: absolute;
  bottom: -20%;
  right: -15%;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(231, 111, 81, 0.06);
  filter: blur(60px);
  pointer-events: none;
}

.pm-split-light {
  background: var(--white);
  padding: 90px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pm-split-tag {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.pm-split-dark .pm-split-tag {
  color: var(--coral);
}

.pm-split-light .pm-split-tag {
  color: var(--teal);
}

.pm-split-dark h2 {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 2.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.25;
}

.pm-split-dark h2 .hl {
  color: var(--coral);
}

.pm-split-light h2 {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 2.15rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 24px;
  line-height: 1.25;
}

.pm-pain-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pm-pain-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.9rem;
  color: var(--gray-300);
  transition: var(--transition);
}

.pm-pain-list li:last-child {
  border-bottom: none;
}

.pm-pain-list li:hover {
  padding-left: 6px;
  color: var(--white);
}

.pm-pain-list li i {
  color: var(--coral);
  font-size: 0.85rem;
  flex-shrink: 0;
}

.pm-sol-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pm-sol-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-100);
  transition: var(--transition);
}

.pm-sol-list li:last-child {
  border-bottom: none;
}

.pm-sol-list li:hover {
  padding-left: 6px;
}

.pm-sol-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(0, 139, 156, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.pm-sol-list li strong {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 2px;
}

.pm-sol-list li span {
  font-size: 0.8rem;
  color: var(--gray-500);
  line-height: 1.5;
}

/* ===== SERVICES — WIDGET CARDS ===== */
.pm-widget {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 100%;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  position: relative;
}

.pm-widget:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0, 139, 156, 0.15);
}

.pm-widget-bar {
  height: 5px;
  background: var(--gradient-3);
}

.pm-widget-hd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px 0;
}

.pm-widget-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--white);
}

.pm-widget-tag {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  color: #34d399;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.pm-widget-tag .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #34d399;
}

.pm-widget-bd {
  padding: 18px 24px 14px;
}

.pm-widget-bd h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  font-family: 'Inter', sans-serif;
}

.pm-widget-bd p {
  font-size: 0.82rem;
  color: var(--gray-500);
  line-height: 1.6;
  margin: 0;
}

.pm-widget-ft {
  padding: 0 24px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pm-widget-stat {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--gray-400);
}

.pm-widget-stat strong {
  color: var(--teal);
  font-size: 1.1rem;
  margin-right: 3px;
}

.pm-spark {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 28px;
}

.pm-spark span {
  width: 4px;
  border-radius: 2px;
  background: var(--teal);
  opacity: 0.5;
  animation: barGrow 1s ease-out forwards;
  transform-origin: bottom;
}

.pm-spark span:nth-child(even) {
  background: var(--coral);
  opacity: 0.4;
}

/* ===== PROCESS CARDS ===== */
.pm-step {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: 32px 22px 28px;
  text-align: center;
  position: relative;
  z-index: 1;
  transition: var(--transition);
  height: 100%;
}

.pm-step:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0, 139, 156, 0.2);
}

.pm-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gradient-3);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  box-shadow: 0 4px 16px rgba(231, 111, 81, 0.2);
  transition: var(--transition);
}

.pm-step:hover .pm-step-num {
  transform: scale(1.12);
  box-shadow: 0 6px 24px rgba(231, 111, 81, 0.3);
}

.pm-step h5 {
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.pm-step p {
  font-size: 0.8rem;
  color: var(--gray-500);
  margin: 0;
  line-height: 1.55;
}

/* ===== PLATFORMS ===== */
.pm-platforms {
  background: var(--gray-900);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.pm-platforms::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 139, 156, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.pm-plat-card {
  text-align: center;
  padding: 30px 18px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.03);
  transition: var(--transition);
  height: 100%;
}

.pm-plat-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(0, 139, 156, 0.2);
  transform: translateY(-4px);
}

.pm-plat-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--white);
  margin: 0 auto 16px;
}

.pm-plat-card h6 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.pm-plat-card p {
  font-size: 0.72rem;
  color: var(--gray-400);
  margin: 0;
  line-height: 1.45;
}

/* ===== RESULTS ===== */
.pm-result {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid var(--gray-100);
  height: 100%;
}

.pm-result::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-3);
}

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

.pm-result-val {
  font-family: 'Montserrat', sans-serif;
  font-size: 3.25rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
  background: var(--gradient-3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pm-result-label {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 8px;
}

.pm-result-desc {
  font-size: 0.8rem;
  color: var(--gray-500);
  margin: 0;
  line-height: 1.55;
}

/* ===== FORM SECTION ===== */
.pm-form-section {
  background: var(--gradient-bg);
  position: relative;
  overflow: hidden;
}

.pm-form-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-glow);
  pointer-events: none;
}

.pm-form-wrap {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 0 auto;
}

.pm-form-box {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-100);
}

.pm-form-box .form-control,
.pm-form-box .form-select {
  background: var(--off-white);
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  padding: 13px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: var(--gray-800);
  transition: var(--transition);
}

.pm-form-box .form-control::placeholder {
  color: var(--gray-400);
}

.pm-form-box .form-control:focus,
.pm-form-box .form-select:focus {
  background: var(--white);
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0, 139, 156, 0.08);
  outline: none;
}

.pm-form-box .form-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 6px;
}

.pm-form-box textarea.form-control {
  min-height: 90px;
  resize: vertical;
}

.pm-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 4px;
}

.pm-consent input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  accent-color: var(--teal);
  flex-shrink: 0;
  cursor: pointer;
}

.pm-consent label {
  font-size: 0.72rem;
  color: var(--gray-500);
  line-height: 1.5;
  cursor: pointer;
}

.pm-consent label a {
  color: var(--teal);
  text-decoration: underline;
}

.pm-form-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 15px 28px;
  background: var(--gradient-1);
  color: var(--white);
  border: none;
  border-radius: 12px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 24px rgba(231, 111, 81, 0.3);
  margin-top: 20px;
}

.pm-form-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(231, 111, 81, 0.4);
}

.pm-form-note {
  text-align: center;
  font-size: 0.7rem;
  color: var(--gray-400);
  margin-top: 16px;
}

.pm-form-note i {
  color: var(--teal);
  margin-right: 2px;
}

/* ===== PM RESPONSIVE ===== */
@media (max-width: 991.98px) {
  .pm-hero-title {
    font-size: 2.75rem;
  }

  .pm-hero {
    min-height: auto;
    padding: 140px 0 70px;
  }

  .pm-dash-kpis {
    grid-template-columns: repeat(2, 1fr);
  }

  .pm-split {
    grid-template-columns: 1fr;
  }

  .pm-split-dark,
  .pm-split-light {
    padding: 60px 32px;
  }

  .pm-form-box {
    padding: 36px 28px;
  }
}

@media (max-width: 767.98px) {
  .pm-hero-title {
    font-size: 2.1rem;
    letter-spacing: -0.5px;
  }

  .pm-hero {
    padding: 130px 0 60px;
  }

  .pm-hero-sub {
    font-size: 1rem;
  }

  .pm-dash-kpis {
    gap: 10px;
  }

  .pm-kpi {
    padding: 14px 10px;
  }

  .pm-kpi-val {
    font-size: 1.3rem;
  }

  .pm-dash-bars {
    height: 50px;
  }

  .pm-split-dark,
  .pm-split-light {
    padding: 48px 20px;
  }

  .pm-split-dark h2,
  .pm-split-light h2 {
    font-size: 1.7rem;
  }

  .pm-result-val {
    font-size: 2.5rem;
  }

  .pm-form-box {
    padding: 28px 20px;
  }
}

/* =============================================
   CRO PAGE — OPTIMIZATION LAB AESTHETIC
   ============================================= */

/* CRO Accent Palette */
.cro-page {
  --cro-blue: #E76F51;
  --cro-lavender: #008B9C;

  --cro-pale: #eef2ff;
  --cro-glow: rgba(104, 129, 232, 0.08);
  --cro-gradient: linear-gradient(135deg, #E76F51, #008B9C);
  --cro-gradient-2: linear-gradient(135deg, #008B9C, #E76F51);
}

/* ===== CRO HERO FORM OVERRIDES ===== */
.cro-page .hero-form-section::before {
  background: radial-gradient(circle at 30% 40%, rgba(0, 139, 156, 0.08) 0%, transparent 60%),
    radial-gradient(circle at 70% 60%, rgba(231, 111, 81, 0.06) 0%, transparent 50%);
}

.cro-page .hero-form-section::after {
  background: radial-gradient(circle at 30% 40%, rgba(0, 139, 156, 0.08) 0%, transparent 60%),
    radial-gradient(circle at 70% 60%, rgba(231, 111, 81, 0.06) 0%, transparent 50%);
}

.cro-page .hero-badge {
  background: rgba(104, 129, 232, 0.12);
  border-color: rgba(104, 129, 232, 0.25);
  color: #008B9C;
}

.cro-page .hero-title .ht-accent {

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cro-page .hero-trust-list li i {
  color: #008B9C;
}

.cro-page .consultation-form-card::before {
  background: radial-gradient(circle at 30% 40%, rgba(0, 139, 156, 0.08) 0%, transparent 60%),
    radial-gradient(circle at 70% 60%, rgba(231, 111, 81, 0.06) 0%, transparent 50%);
  ;
}

.cro-page .form-card-label {
  color: #E76F51;
}

.cro-page .consultation-form-card .form-control:focus,
.cro-page .consultation-form-card .form-select:focus {
  border-color: rgba(104, 129, 232, 0.4);
  box-shadow: 0 0 0 3px rgba(104, 129, 232, 0.1);
}

.cro-page .btn-form-submit {
  background: var(--cro-gradient);
  box-shadow: 0 4px 24px rgba(104, 129, 232, 0.3);
}

.cro-page .btn-form-submit:hover {
  box-shadow: 0 8px 32px rgba(104, 129, 232, 0.4);
}

/* ===== FRICTION FLOW SECTION ===== */
.cro-friction {
  background: var(--white);
}

.friction-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  position: relative;
  transition: var(--transition);
  height: 100%;
  overflow: hidden;
}

.friction-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #f87171, #fbbf24);
  opacity: 0.6;
}

.friction-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 24px rgba(248, 113, 113, 0.08);
  border-color: rgba(248, 113, 113, 0.15);
}

.friction-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--gray-100);
  line-height: 1;
  margin-bottom: 12px;
}

.friction-card h5 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--gray-800);
}

.friction-card p {
  font-size: 0.82rem;
  color: var(--gray-500);
  margin: 0;
  line-height: 1.55;
}

.friction-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-300);
  font-size: 1.2rem;
  padding-top: 40px;
}

/* ===== WHY CRO MATTERS — LAB CARDS ===== */
.cro-lab-section {
  background: var(--cro-pale);
  position: relative;
  overflow: hidden;
}

.cro-lab-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(104, 129, 232, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(167, 139, 250, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.lab-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.lab-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--cro-gradient);
  opacity: 0;
  transition: var(--transition);
}

.lab-card:hover {
  background: rgba(255, 255, 255, 0.95);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(104, 129, 232, 0.08);
}

.lab-card:hover::after {
  opacity: 1;
}

.lab-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--cro-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.lab-card h5 {
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.lab-card p {
  font-size: 0.82rem;
  color: var(--gray-500);
  margin: 0;
  line-height: 1.55;
}

/* ===== CRO FRAMEWORK — EXPERIMENT STEPS ===== */
.cro-framework {
  background: var(--white);
}

.experiment-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 0;
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
}

.experiment-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(104, 129, 232, 0.08);
  border-color: rgba(104, 129, 232, 0.15);
}

.experiment-top {
  background: var(--cro-pale);
  padding: 24px 24px 18px;
  text-align: center;
  border-bottom: 1px solid var(--gray-100);
  position: relative;
}

.experiment-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--cro-gradient);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
  box-shadow: 0 4px 16px rgba(104, 129, 232, 0.25);
}

.experiment-top h5 {
  font-size: 0.9rem;
  font-weight: 700;
  margin: 0;
}

.experiment-body {
  padding: 20px 24px 24px;
}

.experiment-body p {
  font-size: 0.82rem;
  color: var(--gray-500);
  margin: 0;
  line-height: 1.6;
}

/* ===== AREAS WE OPTIMIZE — MODULAR PATHWAY ===== */
.cro-areas {
  background: var(--off-white);
}

.pathway-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 26px;
  height: 100%;
  transition: var(--transition);
  border: 1px solid var(--gray-100);
  position: relative;
  overflow: hidden;
}

.pathway-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--cro-gradient);
  opacity: 0;
  transition: var(--transition);
}

.pathway-card:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 24px rgba(104, 129, 232, 0.06);
}

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

.pathway-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--cro-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  margin-bottom: 16px;
  transition: var(--transition);
}

.pathway-card:hover .pathway-icon {
  background: var(--cro-gradient);
  color: var(--white);
}

.pathway-icon i {
  color: var(--cro-blue);
  transition: var(--transition);
}

.pathway-card:hover .pathway-icon i {
  color: var(--white);
}

.pathway-card h5 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.pathway-card p {
  font-size: 0.82rem;
  color: var(--gray-500);
  margin: 0;
  line-height: 1.55;
}

/* ===== CRO RESULTS — SPLIT METRIC CARDS ===== */
.cro-results {
  background: var(--gray-900);
  position: relative;
  overflow: hidden;
}

.cro-results::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(104, 129, 232, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.cro-results::after {
  content: '';
  position: absolute;
  bottom: -25%;
  right: -8%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(167, 139, 250, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cro-metric {
  text-align: center;
  padding: 40px 20px;
  position: relative;
  z-index: 1;
}

.cro-metric-val {
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
  background: var(--cro-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cro-metric-label {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.cro-metric-desc {
  font-size: 0.72rem;
  color: var(--gray-400);
  margin: 0;
}

/* ===== CRO WHY CHOOSE US ===== */
.cro-choose {
  background: var(--white);
}

.choose-card {
  background: var(--cro-pale);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: var(--transition);
  height: 100%;
  border: 1px solid transparent;
}

.choose-card:hover {
  background: var(--white);
  border-color: rgba(104, 129, 232, 0.15);
  box-shadow: 0 4px 20px rgba(104, 129, 232, 0.06);
  transform: translateY(-3px);
}

.choose-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--cro-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.75rem;
  margin-bottom: 14px;
}

.choose-card h6 {
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.choose-card p {
  font-size: 0.78rem;
  color: var(--gray-500);
  margin: 0;
  line-height: 1.5;
}

/* ===== CRO FAQ accent ===== */
.cro-page .faq-accordion .accordion-button:not(.collapsed) {
  background: linear-gradient(135deg, rgba(104, 129, 232, 0.04), rgba(167, 139, 250, 0.02));
  color: var(--cro-blue);
}

.cro-page .faq-accordion .accordion-button:not(.collapsed)::after {
  color: var(--cro-blue);
}

/* ===== CRO CTA ===== */
.cro-cta {
  background: linear-gradient(135deg, rgba(104, 129, 232, 0.06), rgba(167, 139, 250, 0.04), rgba(34, 211, 238, 0.03));
  position: relative;
  overflow: hidden;
}

.cro-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 40%, rgba(104, 129, 232, 0.06) 0%, transparent 60%),
    radial-gradient(circle at 70% 60%, rgba(167, 139, 250, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

.cro-cta .btn-gradient {
  background: var(--cro-gradient);
  box-shadow: 0 4px 20px rgba(104, 129, 232, 0.3);
}

.cro-cta .btn-gradient:hover {
  box-shadow: 0 8px 30px rgba(104, 129, 232, 0.4);
}

.cro-cta .btn-outline-gradient:hover {
  border-color: var(--cro-blue);
  color: var(--cro-blue);
  box-shadow: 0 4px 20px rgba(104, 129, 232, 0.15);
}

/* ===== CRO RESPONSIVE ===== */
@media (max-width: 767.98px) {
  .friction-arrow {
    display: none;
  }

  .cro-metric-val {
    font-size: 2.25rem;
  }
}

/* =============================================
   DIGITAL GROWTH CONSULTING PAGE
   ============================================= */

/* ===== CONSTRAINT CARDS ===== */
.constraint-section {
  background: var(--white);
}

.constraint-card {
  background: var(--off-white);
  border-radius: var(--radius-md);
  padding: 32px 26px;
  height: 100%;
  transition: var(--transition);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}

.constraint-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gradient-3);
  opacity: 0;
  transition: var(--transition);
}

.constraint-card:hover {
  background: var(--white);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

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

.constraint-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(0, 139, 156, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--teal);
  margin-bottom: 18px;
  transition: var(--transition);
}

.constraint-card:hover .constraint-icon {
  background: var(--gradient-3);
  color: var(--white);
}

.constraint-card h5 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.constraint-card p {
  font-size: 0.82rem;
  color: var(--gray-500);
  margin: 0;
  line-height: 1.6;
}

/* ===== COST OF UNCERTAINTY — DARK SPLIT ===== */
.uncertainty-section {
  background: var(--gray-900);
  position: relative;
  overflow: hidden;
}

.uncertainty-section::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 139, 156, 0.12) 0%, transparent 65%);
  pointer-events: none;
}

.uncertainty-question {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: var(--transition);
}

.uncertainty-question:last-child {
  border-bottom: none;
}

.uncertainty-question:hover {
  padding-left: 6px;
}

.uncertainty-question .q-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(231, 111, 81, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--coral);
  font-size: 0.75rem;
  flex-shrink: 0;
}

.uncertainty-question span {
  font-size: 0.9rem;
  color: var(--gray-300);
  line-height: 1.5;
}

.clarity-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
}

.clarity-card h3 {
  color: var(--white);
  font-size: 1.75rem;
  margin-bottom: 16px;
  font-family: 'Inter', sans-serif;
}

.clarity-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}

.clarity-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 0.88rem;
  color: var(--gray-300);
}

.clarity-list li i {
  color: var(--teal-light);
  font-size: 0.8rem;
  flex-shrink: 0;
}

/* ===== HOW WE WORK — ENGAGEMENT MODULES ===== */
.engagement-section {
  background: var(--off-white);
}

.engage-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 100%;
  transition: var(--transition);
  border: 1px solid var(--gray-100);
  position: relative;
}

.engage-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0, 139, 156, 0.15);
}

.engage-top {
  background: linear-gradient(135deg, rgba(0, 139, 156, 0.04), rgba(231, 111, 81, 0.02));
  padding: 24px 26px 20px;
  border-bottom: 1px solid var(--gray-100);
  display: flex;
  align-items: center;
  gap: 16px;
}

.engage-top-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--white);
  flex-shrink: 0;
}

.engage-top h4 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
  font-family: 'Inter', sans-serif;
}

.engage-body {
  padding: 22px 26px 26px;
}

.engage-body p {
  font-size: 0.84rem;
  color: var(--gray-500);
  line-height: 1.65;
  margin: 0;
}

/* ===== WHO THIS IS FOR — TAG PILLS ===== */
.whofor-section {
  background: var(--white);
}

.whofor-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--off-white);
  border: 1px solid var(--gray-100);
  border-radius: 60px;
  padding: 14px 24px;
  transition: var(--transition);
}

.whofor-pill:hover {
  background: var(--white);
  border-color: rgba(0, 139, 156, 0.2);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}

.whofor-pill i {
  color: var(--teal);
  font-size: 0.85rem;
  flex-shrink: 0;
}

.whofor-pill span {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-700);
}

/* ===== OUTCOMES — CHECKMARK GRID ===== */
.outcomes-section {
  background: linear-gradient(135deg, rgba(0, 139, 156, 0.04), rgba(231, 111, 81, 0.02));
  position: relative;
}

.outcomes-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 25% 35%, rgba(0, 139, 156, 0.05) 0%, transparent 55%),
    radial-gradient(circle at 75% 65%, rgba(231, 111, 81, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.outcome-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-sm);
  padding: 18px 22px;
  transition: var(--transition);
}

.outcome-item:hover {
  background: rgba(255, 255, 255, 0.95);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.outcome-check {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--gradient-3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.65rem;
  flex-shrink: 0;
}

.outcome-item span {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-700);
}

.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  position: relative;
  z-index: 1;
}

/* ===== CONSULTING RESPONSIVE ===== */
@media (max-width: 767.98px) {
  .outcomes-grid {
    grid-template-columns: 1fr;
  }

  .clarity-card {
    padding: 28px 22px;
  }

  .clarity-card h3 {
    font-size: 1.4rem;
    font-family: 'Inter', sans-serif;
  }
}



/* =============================================
   UTILITY CLASSES (replaces inline styles)
   ============================================= */

/* Gradient backgrounds for icons */
.bg-grad-teal {
  background: linear-gradient(135deg, #008B9C, #00a8bc);
}

.bg-grad-coral {
  background: linear-gradient(135deg, #E76F51, #c9563c);
}

.bg-grad-teal-dark {
  background: linear-gradient(135deg, #008B9C, #006d7a);
}

.bg-grad-coral-light {
  background: linear-gradient(135deg, #E76F51, #e09080);
}

.bg-grad-teal-coral {
  background: linear-gradient(135deg, #008B9C, #E76F51);
}

.bg-grad-primary {
  background: var(--gradient-1);
}

/* Section backgrounds */
.bg-white-section {
  background: var(--white);
}

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

/* Text colors */
.text-white {
  color: var(--white);
}

.text-coral {
  color: var(--coral);
}

.text-gray-400 {
  color: var(--gray-400);
}

/* CTA tagline */
.cta-tagline {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: #000000;
  margin-bottom: 32px;
}

.cta-tagline-lg {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #000000;
  margin-bottom: 32px;
}

/* Dashboard bar heights */
.bar-h25 {
  height: 25%;
}

.bar-h30 {
  height: 30%;
}

.bar-h35 {
  height: 35%;
}

.bar-h38 {
  height: 38%;
}

.bar-h40 {
  height: 40%;
}

.bar-h42 {
  height: 42%;
}

.bar-h45 {
  height: 45%;
}

.bar-h48 {
  height: 48%;
}

.bar-h50 {
  height: 50%;
}

.bar-h55 {
  height: 55%;
}

.bar-h58 {
  height: 58%;
}

.bar-h60 {
  height: 60%;
}

.bar-h62 {
  height: 62%;
}

.bar-h65 {
  height: 65%;
}

.bar-h68 {
  height: 68%;
}

.bar-h70 {
  height: 70%;
}

.bar-h72 {
  height: 72%;
}

.bar-h75 {
  height: 75%;
}

.bar-h78 {
  height: 78%;
}

.bar-h80 {
  height: 80%;
}

.bar-h82 {
  height: 82%;
}

.bar-h85 {
  height: 85%;
}

.bar-h88 {
  height: 88%;
}

.bar-h90 {
  height: 90%;
}

.bar-h92 {
  height: 92%;
}

.bar-h95 {
  height: 95%;
}

.bar-h96 {
  height: 96%;
}

/* Spark bar heights */
.spark-h25 {
  height: 25%;
}

.spark-h30 {
  height: 30%;
}

.spark-h35 {
  height: 35%;
}

.spark-h38 {
  height: 38%;
}

.spark-h40 {
  height: 40%;
}

.spark-h42 {
  height: 42%;
}

.spark-h45 {
  height: 45%;
}

.spark-h48 {
  height: 48%;
}

.spark-h50 {
  height: 50%;
}

.spark-h55 {
  height: 55%;
}

.spark-h58 {
  height: 58%;
}

.spark-h60 {
  height: 60%;
}

.spark-h62 {
  height: 62%;
}

.spark-h65 {
  height: 65%;
}

.spark-h68 {
  height: 68%;
}

.spark-h70 {
  height: 70%;
}

.spark-h72 {
  height: 72%;
}

.spark-h75 {
  height: 75%;
}

.spark-h78 {
  height: 78%;
}

.spark-h80 {
  height: 80%;
}

.spark-h82 {
  height: 82%;
}

.spark-h85 {
  height: 85%;
}

.spark-h88 {
  height: 88%;
}

.spark-h90 {
  height: 90%;
}

.spark-h92 {
  height: 92%;
}

.spark-h95 {
  height: 95%;
}

.spark-h96 {
  height: 96%;
}

/* PM dashboard no border-top */
.no-border-top {
  border-top: none;
}

/* CRO specific inline overrides */
.cro-page .text-accent {
  color: #3b6bfa;
}

.cro-page .text-danger-accent {
  color: #d04060;
}

/* CRO progress bars */
.cro-page .funnel-bar-1 {
  width: 100%;
  background: linear-gradient(90deg, #3b6bfa, #8b78fa);
}

.cro-page .funnel-bar-2 {
  width: 72%;
  background: linear-gradient(90deg, #3b6bfa, #8b78fa);
}

.cro-page .funnel-bar-3 {
  width: 44%;
  background: linear-gradient(90deg, #8b78fa, #38c9e8);
}

.cro-page .funnel-bar-4 {
  width: 24%;
  background: linear-gradient(90deg, #38c9e8, #3b6bfa);
}

.cro-page .funnel-bar-5 {
  width: 18%;
  background: linear-gradient(90deg, #3b6bfa, #38c9e8);
}

.cro-page .funnel-bar-drop {
  width: 6%;
  background: linear-gradient(90deg, #d04060, #e87070);
  opacity: 0.7;
}


/* =============================================
   CRO PAGE — STANDALONE DESIGN SYSTEM
   ============================================= */

/* ===================================================
   CRO PAGE — Conversion Optimization Lab Aesthetic
   Premium · Analytical · Precision-Focused
   =================================================== */

@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

/* ─── CSS Variables ─── */
:root {
  --white: #ffffff;
  --bg-base: #f7f8fc;
  --bg-section: #f0f2f9;
  --text-dark: #12132a;
  --text-mid: #3d3f5c;
  --text-muted: #7a7d9c;
  --accent-blue: #E76F51;
  --accent-lavender: #c9563c;
  --accent-cyan: #008B9C;
  --accent-pale: #dce8ff;
  --glass-bg: rgba(255, 255, 255, 0.72);
  --glass-border: rgba(180, 196, 255, 0.38);
  --glow-blue: rgba(59, 107, 250, 0.12);
  --glow-lavender: rgba(139, 120, 250, 0.10);
  --gradient-hero: linear-gradient(135deg, #edf1ff 0%, #f3f0ff 40%, #e8f6ff 100%);
  --gradient-accent: linear-gradient(135deg, #E76F51, #008B9C);
  --gradient-cyan: linear-gradient(135deg, #008B9C, #E76F51);
  --shadow-card: 0 4px 32px rgba(59, 107, 250, 0.08), 0 1px 4px rgba(12, 13, 42, 0.06);
  --shadow-card-hover: 0 12px 48px rgba(59, 107, 250, 0.14), 0 2px 8px rgba(12, 13, 42, 0.08);
  --radius-card: 20px;
  --radius-sm: 12px;
  --font-heading: 'Libre Baskerville', Georgia, serif;
  --font-body: 'Inter', sans-serif;
  --border-line: 1px solid rgba(180, 196, 255, 0.45);
}

/* ─── Reset & Base ─── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.cro-page html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-base);
  color: var(--text-dark);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ─── Typography ─── */
.cro-page h1,

.cro-page h2,
.cro-page h5 {
  font-family: var(--font-heading);
  line-height: 1.22;
  color: var(--text-dark);
}

.cro-page h4,
cro-page h3 {
  font-family: 'Inter', sans-serif;
}

.cro-page h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 700;
}

.cro-page h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.6rem);
  font-weight: 700;
}

.cro-page h3 {
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 700;
  font-family: 'Inter', sans-serif;
}

.cro-page h4 {
  font-size: 1.08rem;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
}

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

/* ─── Utilities ─── */
.cro-page .text-accent {
  color: var(--accent-blue);
}

.cro-page .text-lavender {
  color: var(--accent-lavender);
}

.cro-page .text-cyan {
  color: var(--accent-cyan);
}

.cro-page .font-serif {
  font-family: var(--font-heading);
}

.cro-page .section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-blue);
  background: rgba(59, 107, 250, 0.08);
  border: 1px solid rgba(59, 107, 250, 0.18);
  border-radius: 100px;
  padding: 0.35rem 1rem;
  margin-bottom: 1.2rem;
}

.cro-page .section-label .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gradient-accent);
  display: inline-block;
}

/* ─── Navbar ─── */
.cro-page .cro-nav {
  background: rgba(247, 248, 252, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: var(--border-line);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0.9rem 0;
}

.cro-page .nav-brand {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  text-decoration: none;
  letter-spacing: -0.01em;
}

.cro-page .nav-brand span {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cro-page .nav-link-item {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-mid);
  text-decoration: none;
  transition: color 0.2s;
  padding: 0.3rem 0.7rem;
}

.cro-page .nav-link-item:hover {
  color: var(--accent-blue);
}

.cro-page .btn-nav-cta {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--white);
  background: var(--gradient-accent);
  border: none;
  border-radius: 100px;
  padding: 0.55rem 1.3rem;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
  display: inline-block;
}

.cro-page .btn-nav-cta:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  color: var(--white);
}

/* ─── Hero Section ─── */
.cro-page .hero-section {
  background: var(--gradient-hero);
  position: relative;
  padding: 5rem 0 6rem;
  overflow: hidden;
}

.cro-page .hero-section::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(139, 120, 250, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.cro-page .hero-section::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(56, 201, 232, 0.10) 0%, transparent 70%);
  pointer-events: none;
}

.cro-page .hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-lavender);
  background: rgba(139, 120, 250, 0.08);
  border: 1px solid rgba(139, 120, 250, 0.22);
  border-radius: 100px;
  padding: 0.35rem 1rem;
  margin-bottom: 1.5rem;
}

.cro-page .hero-title {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1.2rem;
}

.cro-page .hero-title em {
  font-style: italic;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cro-page .hero-subtitle {
  font-size: 1.05rem;
  color: var(--gray-300);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 2rem;
}

.cro-page .hero-trust-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cro-page .hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
}

.cro-page .hero-trust-item svg {
  color: var(--accent-cyan);
}

/* ─── Hero Form Card ─── */
.cro-page .hero-form-card {
  background: var(--glass-bg);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: var(--border-line);
  border-radius: 24px;
  padding: 2.2rem 2rem;
  box-shadow: var(--shadow-card), 0 0 0 1px rgba(255, 255, 255, 0.6) inset;
  position: relative;
  z-index: 2;
}

.cro-page .form-card-header {
  border-bottom: var(--border-line);
  padding-bottom: 1.2rem;
  margin-bottom: 1.5rem;
}

.cro-page .form-card-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-blue);
  margin-bottom: 0.4rem;
}

.cro-page .form-card-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 0.2rem;
}

.cro-page .form-card-sub {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.cro-page .cro-form-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-mid);
  margin-bottom: 0.35rem;
  display: block;
  letter-spacing: 0.02em;
}

.cro-page .cro-form-control {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--text-dark);
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(180, 196, 255, 0.45);
  border-radius: 10px;
  padding: 0.65rem 0.9rem;
  width: 100%;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.cro-page .cro-form-control:focus {
  border-color: rgba(59, 107, 250, 0.55);
  box-shadow: 0 0 0 3px rgba(59, 107, 250, 0.10);
  background: #fff;
}

.cro-page .cro-form-control::placeholder {
  color: #aab0cc;
}

.cro-page .cro-form-select {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--text-dark);
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(180, 196, 255, 0.45);
  border-radius: 10px;
  padding: 0.65rem 0.9rem;
  width: 100%;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237a7d9c' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.cro-page .cro-form-select:focus {
  border-color: rgba(59, 107, 250, 0.55);
  box-shadow: 0 0 0 3px rgba(59, 107, 250, 0.10);
}

.cro-page .form-consent {
  font-size: 0.76rem;
  color: var(--text-muted);
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
}

.cro-page .form-consent a {
  color: var(--accent-blue);
  text-decoration: none;
}

.cro-page .form-consent a:hover {
  text-decoration: underline;
}

.cro-page .form-consent input[type="checkbox"] {
  margin-top: 0.18rem;
  accent-color: var(--accent-blue);
  flex-shrink: 0;
}

.cro-page .btn-cro-primary {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  background: var(--gradient-accent);
  border: none;
  border-radius: 12px;
  padding: 0.85rem 1.5rem;
  width: 100%;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  letter-spacing: 0.01em;
  box-shadow: 0 4px 20px rgba(59, 107, 250, 0.35);
}

.cro-page .btn-cro-primary:hover {
  opacity: 0.93;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(59, 107, 250, 0.42);
}

.cro-page .form-footer-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  margin-top: 0.9rem;
  flex-wrap: wrap;
}

.cro-page .form-footer-item {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.74rem;
  color: var(--text-muted);
  font-weight: 500;
}

.cro-page .form-footer-item svg {
  color: var(--accent-cyan);
}

/* ─── Stats Strip ─── */
.cro-page .stats-strip {
  background: var(--white);
  border-top: var(--border-line);
  border-bottom: var(--border-line);
  padding: 2rem 0;
}

.cro-page .stat-item {
  text-align: center;
  padding: 0.5rem 1rem;
}

.cro-page .stat-value {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  display: block;
}

.cro-page .stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 0.25rem;
  display: block;
}

.cro-page .stat-divider {
  width: 1px;
  height: 40px;
  background: var(--glass-border);
  margin: auto;
}

/* ─── What Is CRO Section ─── */
.cro-page .intro-section {
  padding: 6rem 0;
  background: var(--white);
}

.cro-page .intro-text-lead {
  font-size: 1.18rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.cro-page .intro-highlight-box {
  background: linear-gradient(135deg, rgba(59, 107, 250, 0.05) 0%, rgba(139, 120, 250, 0.05) 100%);
  border-left: 3px solid var(--accent-blue);
  border-radius: 0 12px 12px 0;
  padding: 1.2rem 1.5rem;
  margin: 1.5rem 0;
}

.cro-page .intro-highlight-box p {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text-dark);
  margin: 0;
}

/* Problem/Opportunity Split Card */
.cro-page .split-diagnostic-card {
  background: var(--bg-section);
  border-radius: var(--radius-card);
  overflow: hidden;
  border: var(--border-line);
}

.cro-page .diagnostic-side {
  padding: 2rem 1.8rem;
}

.cro-page .diagnostic-side.problem {
  background: rgba(248, 234, 240, 0.55);
}

.cro-page .diagnostic-side.opportunity {
  background: rgba(234, 240, 255, 0.55);
}

.cro-page .diagnostic-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.cro-page .diagnostic-icon.red {
  background: rgba(220, 80, 100, 0.1);
}

.cro-page .diagnostic-icon.blue {
  background: rgba(59, 107, 250, 0.1);
}

.cro-page .diagnostic-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.cro-page .diagnostic-title.red {
  color: #d04060;
}

.cro-page .diagnostic-title.blue {
  color: var(--accent-blue);
}

.cro-page .diagnostic-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.7rem;
  font-size: 0.88rem;
  color: var(--text-mid);
}

.cro-page .diagnostic-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  margin-top: 0.5rem;
  flex-shrink: 0;
}

.cro-page .diagnostic-dot.red {
  background: #d04060;
}

.cro-page .diagnostic-dot.blue {
  background: var(--accent-blue);
}

/* ─── Optimization Framework ─── */
.cro-page .framework-section {
  padding: 6rem 0;
  background: var(--bg-section);
  position: relative;
  overflow: hidden;
}

.cro-page .framework-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%233b6bfa' fill-opacity='0.025'%3E%3Ccircle cx='30' cy='30' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.cro-page .framework-step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.8rem;
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: var(--border-line);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  transition: transform 0.25s, box-shadow 0.25s;
  height: 100%;
}

.cro-page .framework-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.cro-page .step-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  min-width: 48px;
  padding-top: 0.1rem;
}

.cro-page .step-content h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
  font-family: 'Inter', sans-serif;
}

.cro-page .step-content p {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

.cro-page .step-connector {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.4rem 0;
}

.cro-page .step-connector-arrow {
  width: 1px;
  height: 28px;
  background: linear-gradient(to bottom, rgba(59, 107, 250, 0.3), rgba(59, 107, 250, 0));
  position: relative;
}

/* ─── Services / Lab Cards ─── */
.cro-page .services-section {
  padding: 6rem 0;
  background: var(--white);
}

.cro-page .lab-card {
  background: var(--glass-bg);
  border: var(--border-line);
  border-radius: var(--radius-card);
  padding: 2rem 1.8rem;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
  box-shadow: var(--shadow-card);
}

.cro-page .lab-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-accent);
  opacity: 0;
  transition: opacity 0.25s;
}

.cro-page .lab-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card-hover);
}

.cro-page .lab-card:hover::before {
  opacity: 1;
}

.cro-page .lab-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(59, 107, 250, 0.1) 0%, rgba(139, 120, 250, 0.1) 100%);
  border: 1px solid rgba(59, 107, 250, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  font-size: 1.3rem;
}

.cro-page .lab-card-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-lavender);
  margin-bottom: 0.5rem;
}

.cro-page .lab-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.7rem;
  font-family: 'Inter', sans-serif;
}

.cro-page .lab-card p {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.cro-page .lab-card-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: auto;
}

.cro-page .lab-pill {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--accent-blue);
  background: rgba(59, 107, 250, 0.07);
  border: 1px solid rgba(59, 107, 250, 0.15);
  border-radius: 100px;
  padding: 0.25rem 0.7rem;
}

/* Featured Lab Card */
.cro-page .lab-card-featured {
  background: linear-gradient(145deg, #1a1d3a 0%, #2a2060 100%);
  border-color: rgba(139, 120, 250, 0.25);
}

.cro-page .lab-card-featured .lab-card-tag {
  color: var(--accent-cyan);
}

.cro-page .lab-card-featured h3 {
  color: var(--white);
  font-family: 'Inter', sans-serif;
}

.cro-page .lab-card-featured p {
  color: rgba(255, 255, 255, 0.6);
}

.cro-page .lab-card-featured .lab-card-icon {
  background: rgba(139, 120, 250, 0.2);
  border-color: rgba(139, 120, 250, 0.35);
}

.cro-page .lab-card-featured .lab-pill {
  color: var(--accent-lavender);
  background: rgba(139, 120, 250, 0.12);
  border-color: rgba(139, 120, 250, 0.25);
}

/* ─── Metrics / Results Section ─── */
.cro-page .results-section {
  padding: 6rem 0;
  background: linear-gradient(160deg, #eef1ff 0%, #f3f0ff 50%, #e8f7ff 100%);
  position: relative;
  overflow: hidden;
}

.cro-page .results-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 30%, rgba(59, 107, 250, 0.07) 0%, transparent 60%),
    radial-gradient(ellipse at 30% 70%, rgba(139, 120, 250, 0.07) 0%, transparent 60%);
  pointer-events: none;
}

.cro-page .metric-card {
  background: var(--white);
  border: var(--border-line);
  border-radius: var(--radius-card);
  padding: 1.8rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}

.cro-page .metric-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.cro-page .metric-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-cyan);
  opacity: 0.6;
}

.cro-page .metric-value {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  display: block;
  margin-bottom: 0.4rem;
}

.cro-page .metric-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-mid);
  margin-bottom: 0.25rem;
}

.cro-page .metric-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Optimization Pathway Visual */
.cro-page .pathway-visual {
  background: var(--white);
  border: var(--border-line);
  border-radius: var(--radius-card);
  padding: 2rem;
  box-shadow: var(--shadow-card);
}

.cro-page .pathway-step {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 1rem;
  border-radius: var(--radius-sm);
  background: rgba(59, 107, 250, 0.04);
  border: 1px solid rgba(59, 107, 250, 0.10);
  margin-bottom: 0.6rem;
  transition: background 0.2s, border-color 0.2s;
}

.cro-page .pathway-step:hover {
  background: rgba(59, 107, 250, 0.08);
  border-color: rgba(59, 107, 250, 0.22);
}

.cro-page .pathway-step:last-child {
  margin-bottom: 0;
}

.cro-page .pathway-step-icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;

  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
  border: 1px solid #ccc;
}

.cro-page .pathway-step-label {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--text-dark);
}

.cro-page .pathway-step-sub {
  font-size: 0.77rem;
  color: var(--text-muted);
}

.cro-page .pathway-arrow {
  display: flex;
  justify-content: flex-start;
  padding-left: 2.6rem;
  margin-bottom: 0.2rem;
  margin-top: -0.4rem;
}

.cro-page .pathway-arrow svg {
  color: rgba(59, 107, 250, 0.3);
}

/* ─── Why Choose Us ─── */
.cro-page .why-section {
  padding: 6rem 0;
  background: var(--white);
}

.cro-page .why-grid-card {
  background: var(--bg-section);
  border: var(--border-line);
  border-radius: var(--radius-card);
  padding: 1.8rem 1.6rem;
  height: 100%;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: transform 0.2s, box-shadow 0.2s;
}

.cro-page .why-grid-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-hover);
}

.cro-page .why-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(59, 107, 250, 0.1), rgba(139, 120, 250, 0.1));
  border: 1px solid rgba(59, 107, 250, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.cro-page .why-text h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  font-family: 'Inter', sans-serif;
}

.cro-page .why-text p {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

/* ─── FAQ Section ─── */
.cro-page .faq-section {
  padding: 6rem 0;
  background: var(--bg-section);
}

.cro-page .faq-item {
  background: var(--white);
  border: var(--border-line);
  border-radius: var(--radius-sm);
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.cro-page .faq-item:hover {
  box-shadow: var(--shadow-card);
}

.cro-page .faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 1.5rem;
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-dark);
  gap: 1rem;
  list-style: none;
  user-select: none;
}

.cro-page .faq-question::-webkit-details-marker {
  display: none;
}

.cro-page .faq-chevron {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(59, 107, 250, 0.08);
  border: 1px solid rgba(59, 107, 250, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.2s, background 0.2s;
  font-size: 0.75rem;
  color: var(--accent-blue);
}

details[open] .faq-chevron {
  transform: rotate(180deg);
  background: rgba(59, 107, 250, 0.12);
}

.cro-page .faq-answer {
  padding: 0 1.5rem 1.3rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.75;
  border-top: var(--border-line);
  padding-top: 1rem;
}

/* ─── CTA Section ─── */
.cro-page .cta-section {
  padding: 6rem 0;
  background: linear-gradient(145deg, #1a1d3a 0%, #12132a 60%, #1a2050 100%);
  position: relative;
  overflow: hidden;
}

.cro-page .cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(59, 107, 250, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 75% 30%, rgba(139, 120, 250, 0.14) 0%, transparent 50%);
  pointer-events: none;
}

.cro-page .cta-section::after {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-accent);
}

.cro-page .cta-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-cyan);
  margin-bottom: 1rem;
  display: block;
}

.cro-page .cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.cro-page .cta-sub {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 500px;
}

.cro-page .btn-cro-white {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent-blue);
  background: var(--white);
  border: none;
  border-radius: 12px;
  padding: 0.85rem 1.8rem;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
  display: inline-block;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.cro-page .btn-cro-white:hover {
  opacity: 0.93;
  transform: translateY(-2px);
  color: var(--accent-blue);
}

.cro-page .btn-cro-ghost {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 0.85rem 1.8rem;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-block;
}

.cro-page .btn-cro-ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
  transform: translateY(-2px);
}

.cro-page .cta-trust-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.cro-page .cta-trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
}

.cro-page .cta-trust-item svg {
  color: var(--accent-cyan);
}

/* Floating CTA Card */
.cro-page .cta-float-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-card);
  padding: 2.2rem 2rem;
  backdrop-filter: blur(16px);
  position: relative;
  z-index: 2;
}

.cro-page .cta-float-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 0.6rem;
}

.cro-page .cta-float-card p {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 1.5rem;
}

.cro-page .cta-option-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.9rem 1rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 0.7rem;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}

.cro-page .cta-option-item:last-child {
  margin-bottom: 0;
}

.cro-page .cta-option-item:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.16);
}

.cro-page .cta-option-icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.9rem;
}

.cro-page .cta-option-icon.blue {
  background: rgba(59, 107, 250, 0.25);
}

.cro-page .cta-option-icon.lavender {
  background: rgba(139, 120, 250, 0.25);
}

.cro-page .cta-option-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}

.cro-page .cta-option-sub {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ─── Footer ─── */
.cro-page .cro-footer {
  background: #0e0f20;
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.cro-page .footer-copy {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
}

.cro-page .footer-links a {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  transition: color 0.2s;
  margin-left: 1.2rem;
}

.cro-page .footer-links a:hover {
  color: rgba(255, 255, 255, 0.65);
}

/* ─── Funnel Visual Bar ─── */
.cro-page .funnel-bar-wrap {
  padding: 1.5rem 0 0.5rem;
}

.cro-page .funnel-stage {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.7rem;
}

.cro-page .funnel-label {
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--text-mid);
  min-width: 100px;
  text-align: right;
}

.cro-page .funnel-bar {
  height: 10px;
  border-radius: 100px;
  background: var(--gradient-accent);
  opacity: 0.85;
  transition: width 0.6s ease;
}

.cro-page .funnel-pct {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent-blue);
  min-width: 36px;
}

/* ─── Scroll Animation ─── */
.cro-page .reveal {

  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

.cro-page .reveal-delay-1 {
  transition-delay: 0.1s;
}

.cro-page .reveal-delay-2 {
  transition-delay: 0.2s;
}

.cro-page .reveal-delay-3 {
  transition-delay: 0.3s;
}

.cro-page .reveal-delay-4 {
  transition-delay: 0.4s;
}

/* ─── Responsive ─── */
@media (max-width: 991.98px) {
  .cro-page .hero-section {
    padding: 3.5rem 0 4rem;
  }

  .cro-page .hero-form-card {
    margin-top: 2.5rem;
  }

  .cro-page .stat-divider {
    display: none;
  }

  .cro-page .intro-section,

  .cro-page .framework-section,

  .cro-page .services-section,

  .cro-page .results-section,

  .cro-page .why-section,

  .cro-page .faq-section,

  .cro-page .cta-section {
    padding: 4rem 0;
  }
}

@media (max-width: 767.98px) {
  .cro-page .hero-trust-row {
    gap: 1rem;
  }

  .cro-page .metric-card {
    margin-bottom: 1rem;
  }

  .cro-page .cta-float-card {
    margin-top: 2.5rem;
  }

  .cro-page .btn-cro-white,

  .cro-page .btn-cro-ghost {
    width: 100%;
    text-align: center;
    margin-bottom: 0.5rem;
  }

  .cro-page .footer-links {
    margin-top: 0.5rem;
  }

  .cro-page .footer-links a {
    margin-left: 0;
    margin-right: 1rem;
  }
}

/* Additional CRO utility classes */
.cro-page .cro-text-blue {
  color: #3b6bfa;
}

.cro-page .cro-text-red {
  color: #d04060;
}

.cro-page .cro-text-white-sm {
  color: #fff;
  font-size: 0.8rem;
}

.cro-page .cro-text-muted-xs {
  font-size: 0.76rem;
  color: var(--text-muted);
}

.cro-page .cro-text-sm-mb {
  font-size: 0.82rem;
  margin-bottom: 1.5rem;
}

.cro-page .cro-text-sm-mb-muted {
  font-size: 0.82rem;
  margin-bottom: 1.5rem;
  color: var(--text-muted);
}

.cro-page .cro-text-md {
  font-size: 1rem;
}

/* Consulting utility classes */
.consulting-sub-text {
  color: var(--gray-400);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 8px;
}

.consulting-clarity-text {
  color: var(--gray-400);
  font-size: 0.92rem;
  line-height: 1.7;
}

:root {
  --ink: #0e1c22;
  --ink-soft: #5f6d73;
  --cream: #ffffff;
  --cream-dark: #f7f8f8;
  --amber: #008B9C;
  --amber-light: rgba(0, 139, 156, 0.08);
  --amber-mid: #E76F51;
  --white: #ffffff;
  --border: rgba(14, 28, 34, 0.1);
  --radius: 10px;
}


/* HERO */
.hero {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 0;
  min-height: 88vh;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 5vw;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-left {
  padding: 80px 60px 80px 0;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #00a8bc;
  margin-bottom: 28px;
  font-family: 'Montserrat', sans-serif;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--amber);
  flex-shrink: 0;
}

.hero h1 {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: clamp(38px, 4.5vw, 64px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin-bottom: 24px;
}

.hero h1 em {
  font-style: italic;
  background: linear-gradient(135deg, #E76F51, #f4a261);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 18px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.6);
  max-width: 480px;
  margin-bottom: 40px;
}

.stat-row {
  display: flex;
  gap: 32px;
  margin-bottom: 48px;
}

.stat {
  border-left: 3px solid var(--amber-mid);
  padding-left: 14px;
}

.stat-num {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 4px;
  font-family: 'Montserrat', sans-serif;
}

.hero-arrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  font-style: italic;
}

.hero-arrow svg {
  flex-shrink: 0;
}

/* FORM CARD — DARK GLASSMORPHISM */
.form-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px 36px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.form-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 1.5px;
  background: linear-gradient(135deg, rgba(0, 139, 156, 0.3), rgba(231, 111, 81, 0.2), rgba(0, 139, 156, 0.1));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.form-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #E76F51, #c9563c);
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: 20px;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(231, 111, 81, 0.3);
  z-index: 2;
}

.form-title {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 6px;
  color: #ffffff;
}

.form-sub {
  font-size: 13px;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 6px;
  font-family: 'Montserrat', sans-serif;
}

.form-group input {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  outline: none;
  transition: all 0.25s ease;
}

.form-group input:focus {
  border-color: rgba(0, 139, 156, 0.4);
  box-shadow: 0 0 0 3px rgba(0, 139, 156, 0.1);
  background: rgba(255, 255, 255, 0.09);
}

.form-group input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.btn-submit {
  width: 100%;
  margin-top: 8px;
  padding: 16px;
  background: linear-gradient(135deg, #E76F51, #c9563c);
  color: #ffffff;
  border: none;
  border-radius: 12px;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 24px rgba(231, 111, 81, 0.3);
}

.btn-submit:hover {
  background: linear-gradient(135deg, #c9563c, #a84520);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(231, 111, 81, 0.4);
}

.btn-submit:active {
  transform: scale(0.98);
}

.form-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

.form-trust svg {
  color: #008B9C;
}

/* DIVIDER */
.section-divider {
  border: none;
  border-top: 1px solid var(--border);
  max-width: 1280px;
  margin: 0 auto;
}

/* PROBLEM SECTION */
.section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 5vw;
}

.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
}

.section-heading {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--ink);
  max-width: 640px;
  margin-bottom: 20px;
}

.section-body {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 560px;
  margin-bottom: 40px;
}

/* PROBLEM CARDS */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  margin-top: 48px;
}

.problem-card {
  background: var(--cream);
  padding: 32px 28px;
  transition: background 0.18s;
}

.problem-card:hover {
  background: var(--amber-light);
}

.problem-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--amber-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.problem-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--amber);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.problem-card h3 {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--ink);
}

.problem-card p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* WHAT YOU GET */
.deliverables-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.deliverable-list {
  list-style: none;
}

.deliverable-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.deliverable-list li:last-child {
  border-bottom: none;
}

.d-num {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 28px;
  font-weight: 900;
  color: var(--amber-light);
  line-height: 1;
  flex-shrink: 0;
  width: 36px;
}

.d-text h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
}

.d-text p {
  font-size: 14px;
  color: var(--ink-soft);
}

.deliverables-right {
  background: var(--ink);
  border-radius: 12px;
  padding: 48px 40px;
  color: var(--cream);
}

.quote-mark {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 72px;
  line-height: 0.8;
  color: var(--amber);
  margin-bottom: 20px;
  display: block;
}

.pull-quote {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 22px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.5;
  color: var(--cream);
  margin-bottom: 24px;
}

.pull-attr {
  font-size: 13px;
  color: rgba(250, 247, 242, 0.55);
  font-weight: 500;
  letter-spacing: 0.05em;
}

.pull-divider {
  width: 32px;
  height: 2px;
  background: var(--amber);
  margin: 16px 0;
}

/* FOR WHO */
.who-section {
  background: var(--cream-dark);
}

.who-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.who-pill {
  padding: 10px 22px;
  border: 1px solid var(--border);
  border-radius: 40px;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  background: var(--cream);
  transition: all 0.18s;
}

.who-pill:hover {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}

.who-note {
  margin-top: 32px;
  padding: 20px 24px;
  background: var(--amber-light);
  border-left: 3px solid var(--amber);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 15px;
  color: var(--ink);
}

.who-note strong {
  color: var(--amber);
}

/* CTA BOTTOM */
.cta-section {

  padding: 100px 5vw;
}

.cta-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  align-items: center;
}

.cta-left h2 {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--cream);
  margin-bottom: 20px;
}

.cta-left h2 em {
  font-style: italic;
  color: var(--amber-mid);
}

.cta-left p {
  font-size: 17px;
  color: rgba(250, 247, 242, 0.65);
  max-width: 440px;
}

.cta-form {
  background: rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  padding: 36px 32px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-form .form-group label {
  color: rgba(250, 247, 242, 0.6);
}

.cta-form .form-group input {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  color: var(--cream);
}

.cta-form .form-group input::placeholder {
  color: rgba(250, 247, 242, 0.3);
}

.cta-form .form-group input:focus {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--amber-mid);
}



/* RESPONSIVE */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 40px 5vw 60px;
  }

  .hero-left {
    padding: 40px 0 48px;
  }

  .deliverables-wrap {
    grid-template-columns: 1fr;
  }

  .deliverables-right {
    order: -1;
  }

  .cta-inner {
    grid-template-columns: 1fr;
  }

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

  footer {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}


/*start strategy-call*/
:root {
  --ink: #0e1c22;
  --ink-soft: #5f6d73;
  --cream: #ffffff;
  --cream-dark: #f7f8f8;
  --amber: #008B9C;
  --amber-light: rgba(0, 139, 156, 0.08);
  --amber-mid: #E76F51;
  --white: #ffffff;
  --border: rgba(14, 28, 34, 0.1);
  --radius: 10px;
}


/* HERO */
.hero {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 0;
  min-height: 88vh;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 5vw;
  align-items: center;
}

.hero-left {
  padding: 80px 60px 80px 0;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #00a8bc;
  margin-bottom: 28px;
  font-family: 'Montserrat', sans-serif;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--amber);
  flex-shrink: 0;
}

.hero h1 {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: clamp(38px, 4.5vw, 64px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin-bottom: 24px;
}

.hero h1 em {
  font-style: italic;
  background: linear-gradient(135deg, #E76F51, #f4a261);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 18px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.6);
  max-width: 480px;
  margin-bottom: 40px;
}

.stat-row {
  display: flex;
  gap: 32px;
  margin-bottom: 48px;
}

.stat {
  border-left: 3px solid var(--amber-mid);
  padding-left: 14px;
}

.stat-num {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 4px;
  font-family: 'Montserrat', sans-serif;
}

.hero-arrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  font-style: italic;
}

.hero-arrow svg {
  flex-shrink: 0;
}

/* FORM CARD */
.form-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px 36px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.form-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 1.5px;
  background: linear-gradient(135deg, rgba(0, 139, 156, 0.3), rgba(231, 111, 81, 0.2), rgba(0, 139, 156, 0.1));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.form-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #E76F51, #c9563c);
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: 20px;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(231, 111, 81, 0.3);
  z-index: 2;
}

.form-title {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 6px;
  color: #ffffff;
}

.form-sub {
  font-size: 13px;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 6px;
  font-family: 'Montserrat', sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  outline: none;
  transition: all 0.25s ease;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(0, 139, 156, 0.4);
  box-shadow: 0 0 0 3px rgba(0, 139, 156, 0.1);
  background: rgba(255, 255, 255, 0.09);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.form-group select {
  cursor: pointer;
  color: rgba(255, 255, 255, 0.5);
}

.form-group select option {
  background: #0e1c22;
  color: #fff;
}

.form-group textarea {
  resize: vertical;
  min-height: 76px;
}

.btn-submit {
  width: 100%;
  margin-top: 8px;
  padding: 16px;
  background: linear-gradient(135deg, #E76F51, #c9563c);
  color: #ffffff;
  border: none;
  border-radius: 12px;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 4px 24px rgba(231, 111, 81, 0.3);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.18s, transform 0.1s;
}

.btn-submit:hover {
  background: linear-gradient(135deg, #c9563c, #a84520);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(231, 111, 81, 0.4);
}

.btn-submit:active {
  transform: scale(0.98);
}

.form-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

/* DIVIDER */
.section-divider {
  border: none;
  border-top: 1px solid var(--border);
  max-width: 1280px;
  margin: 0 auto;
}

/* SECTIONS */
.section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 5vw;
}

.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
}

.section-heading {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--ink);
  max-width: 640px;
  margin-bottom: 20px;
}

.section-body {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 560px;
  margin-bottom: 40px;
}

/* AGENDA GRID — mirrors problem-grid */
.agenda-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  margin-top: 48px;
}

.agenda-card {
  background: var(--cream);
  padding: 32px 28px;
  transition: background 0.18s;
}

.agenda-card:hover {
  background: var(--amber-light);
}

.agenda-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--amber-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.agenda-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--amber);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.agenda-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--ink);
}

.agenda-card p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* PROCESS — mirrors deliverables-wrap */
.process-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.process-list {
  list-style: none;
}

.process-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.process-list li:last-child {
  border-bottom: none;
}

.p-num {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 28px;
  font-weight: 900;
  color: var(--amber-light);
  line-height: 1;
  flex-shrink: 0;
  width: 36px;
}

.p-text h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
}

.p-text p {
  font-size: 14px;
  color: var(--ink-soft);
}

.process-right {
  background: var(--ink);
  border-radius: 12px;
  padding: 48px 40px;
  color: var(--cream);
}

.quote-mark {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 72px;
  line-height: 0.8;
  color: var(--amber);
  margin-bottom: 20px;
  display: block;
}

.pull-quote {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 22px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.5;
  color: var(--cream);
  margin-bottom: 24px;
}

.pull-attr {
  font-size: 13px;
  color: rgba(250, 247, 242, 0.55);
  font-weight: 500;
  letter-spacing: 0.05em;
}

.pull-divider {
  width: 32px;
  height: 2px;
  background: var(--amber);
  margin: 16px 0;
}

/* WHO */
.who-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.who-pill {
  padding: 10px 22px;
  border: 1px solid var(--border);
  border-radius: 40px;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  background: var(--cream);
  transition: all 0.18s;
}

.who-pill:hover {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}

.who-note {
  margin-top: 32px;
  padding: 20px 24px;
  background: var(--amber-light);
  border-left: 3px solid var(--amber);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 15px;
  color: var(--ink);
}

.who-note strong {
  color: var(--amber);
}

/* FAQ */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  margin-top: 48px;
}

.faq-card {
  background: var(--cream);
  padding: 32px 28px;
}

.faq-q {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.faq-bullet {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--amber-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.faq-bullet svg {
  width: 10px;
  height: 10px;
  stroke: var(--amber);
  fill: none;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.faq-a {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.65;

}

/* CTA BOTTOM */
.cta-section {

  padding: 100px 5vw;
}

.cta-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  align-items: center;
}

.cta-left h2 {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--cream);
  margin-bottom: 20px;
}

.cta-left h2 em {
  font-style: italic;
  color: var(--amber-mid);
}

.cta-left p {
  font-size: 17px;
  color: rgba(250, 247, 242, 0.65);
  max-width: 440px;
}

.cta-form {
  background: rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  padding: 36px 32px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-form .form-group label {
  color: rgba(250, 247, 242, 0.6);
}

.cta-form .form-group input,
.cta-form .form-group select,
.cta-form .form-group textarea {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  color: var(--cream);
}

.cta-form .form-group input::placeholder,
.cta-form .form-group textarea::placeholder {
  color: rgba(250, 247, 242, 0.3);
}

.cta-form .form-group input:focus,
.cta-form .form-group select:focus,
.cta-form .form-group textarea:focus {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--amber-mid);
}

.cta-form .form-group select option {
  background: #0e1c22;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 40px 5vw 60px;
  }

  .hero-left {
    padding: 40px 0 48px;
  }

  .process-wrap {
    grid-template-columns: 1fr;
  }

  .process-right {
    order: -1;
  }

  .cta-inner {
    grid-template-columns: 1fr;
  }

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

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

  .stat-row {
    flex-wrap: wrap;
    gap: 20px;
  }

  footer {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

/* Utility classes */
.sc-hero-bg {
  background: #0e1c22;
  position: relative;
  overflow: hidden;
}

.sc-hero-bg::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -12%;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 139, 156, 0.16) 0%, transparent 65%);
  pointer-events: none;
}

.sc-hero-bg::after {
  content: '';
  position: absolute;
  bottom: -25%;
  right: -8%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(231, 111, 81, 0.1) 0%, transparent 65%);
  pointer-events: none;
}

.hero {
  position: relative;
  z-index: 2;
}

.sc-whofor-bg {
  background: var(--cream-dark);
  padding: 80px 0;
}

.sc-whofor-inner {
  padding-top: 0;
  padding-bottom: 0;
}

.sc-body-flush {
  margin-bottom: 0;
}

.sc-list-mt {
  margin-top: 36px;
}

.sc-testimonial-footer {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.sc-delivered-label {
  font-size: 13px;
  color: rgba(250, 247, 242, 0.5);
  margin-bottom: 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
}

.sc-claim-btn {
  display: block;
  text-align: center;
  padding: 14px;
  background: linear-gradient(135deg, #E76F51, #c9563c);
  color: #ffffff;
  text-decoration: none;
  border-radius: 10px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all 0.25s ease;
}

.sc-claim-btn:hover {
  background: linear-gradient(135deg, #c9563c, #a84520);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(231, 111, 81, 0.3);
}

.sc-cta-privacy {
  font-size: 12px;
  text-align: center;
  margin-top: 12px;
  color: rgba(250, 247, 242, 0.4);
}

.sc-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(14, 28, 34, 0.85);
  z-index: 999;
  align-items: center;
  justify-content: center;
}

.sc-overlay-card {
  background: #fff;
  border-radius: 16px;
  padding: 48px 40px;
  max-width: 440px;
  width: 90%;
  text-align: center;
}

.sc-overlay-icon {
  width: 60px;
  height: 60px;
  background: rgba(0, 139, 156, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.sc-overlay-icon svg {
  stroke: #008B9C;
}

.sc-overlay-card h3 {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 12px;
}

.sc-overlay-card p {
  color: #5f6d73;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 28px;
}

.sc-overlay-close {
  padding: 12px 28px;
  background: #0e1c22;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.sc-overlay-close:hover {
  background: #008B9C;
}

/*end strategy call*/

/* start contact page */
.contact-us-banner {
  background: url(../img/contact/banner.jpg) top left no-repeat;
  background-size: cover;
  padding-top: 8%;
  color: #fff;
  height: 300px;
  margin-bottom: 4%;


}

.contact-us-banner h1 {
  font-size: 3.2em;
  font-weight: 700;
  color: #fff;
}

.contact-us-banner h2 {
  font-size: 1.5em;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  color: #fff;
}

.contact-us-wrap span {
  background: linear-gradient(to right, rgb(225, 226, 230), rgba(255, 255, 255, 0.0));
  color: #0049ff;
  border-radius: 50px;
  padding: 6px 17px;
  margin-bottom: 4%;
  display: inline-block;
  font-weight: 600;
}


.contact-us-details {
  margin-top: 6%;
  background-color: #0049ff1a;
  padding: 30px;
  border-radius: 20px;
  margin-bottom: 5%;
}

.contact-us-details b {
  font-size: 1.2em;
  text-align: center;
  font-weight: 600;
}

.contact-us-details-flag img {
  display: inline-flex;
  width: 100px;
  height: 100px;
  border-radius: 50px;
  margin-right: 10px;
}

.contact-us-details h5 {
  border-bottom: 2px solid #000;
  padding: 10px 0;
}

.contact-us-details .col-lg-3 {
  padding: 0 50px;
}

.work-together {
  background: linear-gradient(to right, #f7693c, #c74e45, #7d3785, #0049ff, #0049ff);
  color: #fff;
  border-radius: 50px;
  padding: 20px 15px;
  text-transform: uppercase;
  margin-top: 8%;
}

.work-together a {
  color: #fff;
  text-decoration: underline;
}

.work-together h5 {
  font-size: 1.2em;
  display: block;
}


.contact-us-form-wrap {
  background: linear-gradient(to right, #000000, #151515, #222222, #303030, #3e3e3e);
  padding: 45px 30px;
  color: #fff;
  border-radius: 30px;
}

.form-control,
.form-select {
  padding: 0.890rem .75rem;
  border-radius: 10px;

}

.contact-us-form-wrap button {
  width: 100%;
  margin-top: 3%;
  background: #0049ff;
  border: none;
  padding: 10px 0;
}

.contact-us-form-wrap button:hover {
  background: #fff;
  color: #000;
  transition: all 0.3s linear;
}

.contact-us-form h2 {
  color: #fff;
}

.privacy-policy {
  margin-top: 7%;
}

.privacy-policy p,
.privacy-policy li,
.tandc p,
.tandc li {
  font-size: 0.885rem;
  font-weight: 400;
  letter-spacing: 0.4px;
}

.privacy-policy h3,
.tandc h3 {
  font-size: 1.4rem;
}

.tandc {
  margin-top: 5%;
  padding-bottom: 5%;
}


/* end contact page */


/*menu start here*/
.navbar {
  background: #fff;
  border-bottom: 1px solid #e0e0e0;
  padding-top: 0;
  padding-bottom: 0;
  box-shadow: 0 5px 15px 0 #0000002c;
  z-index: 5;
}

.navbar-brand svg {
  height: 52px;
  width: auto;
}

.navbar-nav .nav-link {
  font-size: 1.1em;
  font-weight: 500;
  color: #111;
  padding: 1.3rem 0.9rem;
  white-space: nowrap;
  margin: 0 7px;
}

.navbar-nav .nav-link:hover {
  color: #008B9C;
}

.nav-link .bi-chevron-down {
  font-size: 0.62rem;
  margin-left: 2px;
  vertical-align: middle;
}

/* ===== DESKTOP MEGA DROPDOWN ===== */
.nav-item.dropdown>.mega-menu {
  display: block;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  position: fixed;
  top: auto;
  left: 10%;
  transform: translateY(6px);
  width: 80vw;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  margin: 0;
  box-shadow: none;
  z-index: 1050;
}

.navbar-brand img {
  width: 35%;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.nav-item.dropdown:hover>.mega-menu {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* White card centred inside the full-width bar */
.mega-card {
  background: #fff;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  margin: 0 2rem;

  overflow: hidden;
  display: flex;
}

/* ── LEFT panel ── */
.mega-card-left {
  background: #edf0f7;
  padding: 1.8rem 1.6rem;
  min-width: 200px;
  max-width: 220px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}

.mega-card-left .eu-map-img {
  width: 72px;
  margin-bottom: 1rem;
}

.mega-card-left .panel-title {
  font-size: 1rem;
  font-weight: 700;
  color: #111;
  line-height: 1.35;
  margin-bottom: 0.5rem;
}

.mega-card-left .panel-desc {
  font-size: 0.77rem;
  color: #555;
  line-height: 1.6;
  margin: 0;
}

/* ── CENTER grid ── */
.mega-card-center {
  flex: 1;
  padding: 1.4rem;
  background: #f7f9fc;
}

.mega-link-item {
  padding: 0.6rem 0;
  border-bottom: 1px solid #e4e8f0;
}

.mega-link-item:last-child {
  border-bottom: none;
}

.mega-link-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #111;
  text-decoration: none;
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 2px;
}

.mega-link-title .bi-caret-right-fill {
  font-size: 0.55rem;
  color: #008B9C;
  flex-shrink: 0;
}

.mega-link-title:hover {
  color: #008B9C;
}

.mega-link-desc {
  font-size: 0.80rem;
  color: #2e2e2e;
  line-height: 1.45;
  margin: 0;
}

/* ── RIGHT panel ── */
.mega-card-right {
  background: #fff;
  padding: 1.4rem;
  min-width: 245px;
  max-width: 255px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  border-left: 1px solid #eee;
}

.mega-card-right .right-img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  border-radius: 0.35rem;
  margin-bottom: 0.85rem;
}

.mega-card-right .right-title {
  font-size: 1rem;
  font-weight: 700;
  color: #111;
  line-height: 1.35;
  margin-bottom: 0.4rem;
}

.mega-card-right .right-title span {
  color: #008B9C;
}

.mega-card-right .right-desc {
  font-size: 0.85rem;
  color: #555;
  line-height: 1.55;
  margin-bottom: 0.4rem;
}

.mega-card-right .right-tagline {
  font-size: 0.85rem;
  color: #008B9C;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 0.8rem;
}

.btn-connect-now {
  background: #008B9C;
  color: #fff;
  border: none;
  border-radius: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.45rem 1rem;
  text-decoration: none;
  display: inline-block;
  margin-top: auto;
}

.btn-connect-now:hover {
  background: #62c4d1;
  color: #fff;
}

/* ===== RIGHT SIDE ACTIONS ===== */
.navbar-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
  flex-grow: 0.1;
}

.phone-link {
  font-size: 1.1rem;
  font-weight: 600;
  color: #111;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
  margin-right: 2%;
}

.phone-link .bi-telephone-fill {
  color: #008B9C;
}

.phone-link:hover {
  color: #008B9C;
}

.btn-contact-us {
  background: #008B9C;
  color: #fff;
  border: none;
  border-radius: 2rem;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.38rem 1rem;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  text-decoration: none;
}

.btn-contact-us:hover {
  background: #292a2a;
  color: #fff;
  transition: all 0.3s linear;
}

.btn-whatsapp {
  background: #25d366;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  text-decoration: none;
  flex-shrink: 0;
}

.btn-whatsapp:hover {
  background: #171717;
  color: #fff;
  transition: all 0.3s linear;
  transform: scale(1.05);
}

/* ===== MOBILE ( max 991px ) ===== */
@media (max-width: 991.98px) {

  /* Reset absolute positioning — become normal block */
  .nav-item.dropdown>.mega-menu {
    position: static;
    visibility: visible;
    opacity: 1;
    transform: none;
    width: 100%;
    pointer-events: auto;
    transition: none;
    display: none;
  }

  /* Bootstrap adds .show on click */
  .nav-item.dropdown>.mega-menu.show {
    display: block;
  }

  /* Remove card styling */
  .mega-card {
    flex-direction: column;
    margin: 0;
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
  }

  /* Hide left & right panels */
  .mega-card-left,
  .mega-card-right {
    display: none;
  }

  /* Center section full width */
  .mega-card-center {
    padding: 0;
    background: #f7f9fc;
  }

  .mega-card-center .row {
    margin: 0;
  }

  /* Each col becomes full width — ek ke niche ek */
  .mega-card-center .col-6 {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
  }

  .mega-link-item {
    padding: 1rem 1.2rem;
    border-bottom: 1px solid #e0e4ee;
  }

  .mega-link-item:last-child {
    border-bottom: 1px solid #e0e4ee;
  }

  .mega-link-title {
    font-size: 0.88rem;
  }

  .mega-link-desc {
    font-size: 0.77rem;
  }

  /* Phone — hide number, show icon only */
  .phone-link .phone-text {
    display: none;
  }

  .navbar-actions {
    padding: 0.75rem 0;
  }
}

/*menu end here*/

/* ── freeweb-styles.css ── */


:root {
  --primary: #008B9C;
  --primary-dark: #006b79;
  --primary-light: #5bbfca;
  --primary-bg: rgba(0, 139, 156, 0.1);
  --accent: #E76F51;
  --accent-dark: #c55537;
  --accent-light: #f0a08a;
  --red: #E24B4A;
  --gold: #BA7517;
  --dark: #0D1117;
  --dark2: #161B22;
  --white: #ffffff;
  --gray: #F5F5F3;
  --text: #1a1a1a;
  --text-muted: #6B7280;
  --border: rgba(0, 0, 0, 0.08);
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
  --shadow-md: 0 8px 40px rgba(0, 0, 0, 0.12);
}



/* ── NAVBAR ── */
.freeweb-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248, 247, 244, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.freeweb-nav-logo {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
}

.freeweb-nav-logo span {
  color: var(--primary);
}

.freeweb-nav-cta {
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 9px 18px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background 0.2s;
}

.freeweb-nav-cta:hover {
  background: var(--primary-dark);
}

/* ── WRAPPER ── */
.freeweb-container {

  margin: 0 auto;
  padding: 0 5%;
}

.freeweb-container--narrow {
  max-width: 860px;
}

/* ── HERO ── */
.freeweb-hero {
  background: var(--dark);
  position: relative;
  overflow: hidden;
  padding: 90px 5% 80px;
}

.freeweb-hero-bg-circle1 {
  position: absolute;
  top: -120px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 139, 156, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

.freeweb-hero-bg-circle2 {
  position: absolute;
  bottom: -80px;
  left: 10%;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(231, 111, 81, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.freeweb-hero-inner {
  max-width: 1080px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
}

.freeweb-hero-content {
  max-width: 720px;
  text-align: center;
}

.freeweb-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(0, 139, 156, 0.2);
  color: var(--primary-light);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid rgba(91, 191, 202, 0.25);
  margin-bottom: 24px;
}

.freeweb-hero h1 {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 700;
  color: #fff;
  line-height: 1.18;
  margin-bottom: 20px;
}

.freeweb-hero h1 .freeweb-accent {
  color: var(--accent-light);
}

.freeweb-hero h1 .freeweb-accent2 {
  color: var(--primary-light);
}

.freeweb-hero-sub {
  color: rgba(255, 255, 255, 0.58);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.freeweb-hero-cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.freeweb-btn-primary {
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 15px 26px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s, transform 0.15s;
  text-decoration: none;
}

.freeweb-btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.freeweb-btn-primary--shrink {
  flex-shrink: 0;
}

.freeweb-btn-primary--large {
  font-size: 16px;
  padding: 17px 32px;
}

.freeweb-btn-primary--centered {
  margin: 0 auto;
  display: inline-flex;
}

.freeweb-hero-trust {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  gap: 6px;
}

.freeweb-hero-trust i {
  color: var(--primary-light);
}

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

.freeweb-stat-pill {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 16px 14px;
}

.freeweb-stat-num {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  display: block;
}

.freeweb-stat-lbl {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.42);
  margin-top: 4px;
  line-height: 1.45;
  display: block;
}

/* ── SECTION WRAPPER ── */
.freeweb-section {
  padding: 72px 5%;
}

.freeweb-section--white {
  background: #fff;
}

.freeweb-sec-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  margin-bottom: 10px;
}

.freeweb-sec-label--center {
  text-align: center;
}

.freeweb-sec-title {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 10px;
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 2.75rem;
}

.freeweb-sec-title--center {
  text-align: center;
  max-width: 100%;
}

.freeweb-sec-sub {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 580px;
  margin-bottom: 40px;
}

.freeweb-sec-sub--center {
  text-align: center;
  margin: 0 auto 50px;
}

/* ── PAIN POINTS ── */
.freeweb-pain-split {
  display: grid;
  grid-template-columns: 1.85fr 1fr;
  gap: 48px;
  align-items: start;
}

.freeweb-pain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: start;
}

.freeweb-pain-card {
  background: #fff;
  border: 1px solid var(--border);
  border-left: 4px solid var(--primary);
  border-radius: 12px;
  padding: 20px;
  transition: box-shadow 0.2s, transform 0.2s;
}

.freeweb-pain-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.freeweb-pain-icon {
  font-size: 22px;
  color: var(--primary);

}

.freeweb-pain-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.freeweb-pain-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 0;
}

/* ── BEFORE / AFTER ── */
.freeweb-ba-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.freeweb-ba-card {
  border-radius: 14px;
  padding: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.freeweb-ba-before {
  background: #FFF5F5;
  border: 1px solid #FCA5A5;
}

.freeweb-ba-after {
  background: #F0FFFE;
  border: 1px solid #5bbfca;
}

.freeweb-ba-label {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.freeweb-ba-before .freeweb-ba-label {
  color: #B91C1C;
}

.freeweb-ba-after .freeweb-ba-label {
  color: var(--primary-dark);
}

.freeweb-ba-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.freeweb-ba-list {
  margin: 0 0 0 2%;
  padding: 0;
}

.freeweb-ba-list li {
  font-size: 0.875rem;
  line-height: 1.55;
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.freeweb-ba-before .freeweb-ba-list li {
  color: #7F1D1D;
}

.freeweb-ba-after .freeweb-ba-list li {
  color: var(--primary-dark);
}

.freeweb-ba-list li i {
  flex-shrink: 0;
  font-size: 15px;
  margin-top: 1px;
}

/* ── WHAT'S INCLUDED ── */
.freeweb-included-bg {
  background: var(--dark);
  padding: 72px 5%;
}

.freeweb-included-bg .freeweb-sec-label {
  color: var(--primary-light);
}

.freeweb-included-bg .freeweb-sec-title {
  color: #fff;
}

.freeweb-included-bg .freeweb-sec-sub {
  color: rgba(255, 255, 255, 0.5);
}

.freeweb-audit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.freeweb-audit-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.freeweb-audit-num {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--primary-light);
  background: rgba(0, 139, 156, 0.2);
  border-radius: 6px;
  padding: 4px 9px;
  flex-shrink: 0;
  margin-top: 2px;
}

.freeweb-audit-text strong {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  display: block;
  margin-bottom: 5px;
}

.freeweb-audit-text span {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.55;
}

/* ── HOW IT WORKS ── */
.freeweb-steps-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.freeweb-steps-wrap::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), var(--border), transparent);
  z-index: 0;
}

.freeweb-step-card {
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}

.freeweb-step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 0 0 6px rgba(0, 139, 156, 0.12);
}

.freeweb-step-card h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.freeweb-step-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── WHO IT'S FOR ── */
.freeweb-who-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.freeweb-who-card {
  background: #008B9C1F;
  border-radius: 12px;
  padding: 18px 20px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.freeweb-who-icon {
  font-size: 20px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.freeweb-who-card strong {
  font-size: 1rem;
  font-weight: 600;
  display: block;
  margin-bottom: 4px;
}

.freeweb-who-card span {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* ── TESTIMONIALS ── */
.freeweb-testi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.freeweb-testi-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px;
  transition: box-shadow 0.2s;
}

.freeweb-testi-card:hover {
  box-shadow: var(--shadow);
}

.freeweb-testi-stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.freeweb-testi-quote {
  font-size: 14px;
  font-style: italic;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 16px;
  border-left: 3px solid var(--primary-bg);
  padding-left: 12px;
}

.freeweb-testi-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.freeweb-testi-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}

.freeweb-av1 {
  background: #ddf2f4;
  color: var(--primary-dark);
}

.freeweb-av2 {
  background: #fde8e1;
  color: var(--accent-dark);
}

.freeweb-av3 {
  background: #ddf2f4;
  color: var(--primary-dark);
}

.freeweb-av4 {
  background: #FEF3C7;
  color: #92400E;
}

.freeweb-testi-name {
  font-size: 13px;
  font-weight: 600;
}

.freeweb-testi-role {
  font-size: 12px;
  color: var(--text-muted);
}

/* ── FAQ ── */
.freeweb-faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.freeweb-faq-item {
  border-bottom: 1px solid var(--border);
  cursor: pointer;
}

.freeweb-faq-item:last-child {
  border-bottom: none;
}

.freeweb-faq-q {
  font-size: 15px;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  transition: color 0.2s;
}

.freeweb-faq-q i {
  font-size: 16px;
  color: var(--text-muted);
  transition: transform 0.25s;
  flex-shrink: 0;
}

.freeweb-faq-item.open .freeweb-faq-q {
  color: var(--primary);
}

.freeweb-faq-item.open .freeweb-faq-q i {
  transform: rotate(45deg);
  color: var(--primary);
}

.freeweb-faq-a {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s;
}

.freeweb-faq-item.open .freeweb-faq-a {
  max-height: 200px;
  padding-bottom: 20px;
}

/* ── URGENCY ── */
.freeweb-urgency-section {
  background: var(--dark);
  padding: 50px 5%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.freeweb-urgency-inner {
  max-width: 1080px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}

.freeweb-urgency-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(226, 75, 74, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.freeweb-urgency-icon-wrap i {
  font-size: 28px;
  color: var(--red);
}

.freeweb-urgency-text strong {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  display: block;
  margin-bottom: 6px;
}

.freeweb-urgency-text p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 10px;
}

.freeweb-spots {
  display: flex;
  gap: 6px;
}

.freeweb-spot {
  width: 32px;
  height: 10px;
  border-radius: 5px;
}

.freeweb-spot--taken {
  background: var(--red);
}

.freeweb-spot--free {
  background: rgba(255, 255, 255, 0.15);
}

/* ── MAIN FORM ── */
.freeweb-form-section {
  background: #F8F7F4;
  padding: 72px 5%;
}

.freeweb-form-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
  max-width: 1080px;
  margin: 0 auto;
}

.freeweb-form-left .freeweb-sec-title {
  margin-bottom: 16px;
}

.freeweb-form-left .freeweb-sec-sub {
  margin-bottom: 28px;
}

.freeweb-value-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.freeweb-value-list li {
  font-size: 14px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.freeweb-value-list li i {
  color: var(--primary);
  font-size: 16px;
  margin-top: 1px;
  flex-shrink: 0;
}

.freeweb-form-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.freeweb-form-top {
  background: var(--dark);
  padding: 22px 26px;
}

.freeweb-form-top h3 {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 5px;
}

.freeweb-form-top p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.48);
}

.freeweb-form-body {
  padding: 24px 22px;
}

.freeweb-frow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.freeweb-fg {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 12px;
}

.freeweb-fg label {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
}

.freeweb-fg input,
.freeweb-fg select,
.freeweb-fg textarea {
  font-size: 14px;
  padding: 11px 14px;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  outline: none;
  width: 100%;
  background: #FAFAFA;
  transition: border-color 0.2s, background 0.2s;
}

.freeweb-fg textarea {
  resize: none;
  line-height: 1.55;
}

.freeweb-fg input:focus,
.freeweb-fg select:focus,
.freeweb-fg textarea:focus {
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(0, 139, 156, 0.1);
}

.freeweb-submit-btn {
  width: 100%;
  padding: 15px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 4px;
  transition: background 0.2s, transform 0.15s;
}

.freeweb-submit-btn:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.freeweb-trust-row {
  display: flex;
  gap: 14px;
  margin-top: 14px;
  flex-wrap: wrap;
}

.freeweb-trust-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--text-muted);
}

.freeweb-trust-item i {
  color: var(--primary);
  font-size: 13px;
}

.freeweb-success-box {
  display: none;
  background: #F0FFFE;
  border: 1px solid var(--primary-light);
  border-radius: 18px;
  padding: 48px 32px;
  text-align: center;
}

.freeweb-success-box i {
  font-size: 48px;
  color: var(--primary);
  margin-bottom: 16px;
  display: block;
}

.freeweb-success-box h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 8px;
}

.freeweb-success-box p {
  font-size: 14px;
  color: var(--primary);
  line-height: 1.7;
}

/* ── FINAL CTA ── */
.freeweb-final-cta {
  background: var(--dark);
  padding: 90px 5%;
  text-align: center;
}

.freeweb-final-cta .freeweb-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(0, 139, 156, 0.15);
  color: var(--primary-light);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid rgba(91, 191, 202, 0.2);
  margin-bottom: 20px;
}

.freeweb-final-cta h2 {
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 16px;
}

.freeweb-final-cta p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 32px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* ── FOOTER ── */
.freeweb-footer {
  background: #0A0D12;
  padding: 28px 5%;
  text-align: center;
}

.freeweb-footer p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
}

.freeweb-footer a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
}

/* ── SCROLL REVEAL ── */
.freeweb-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.freeweb-reveal.freeweb-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ── ANIMATIONS ── */
@keyframes freeweb-fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.freeweb-hero-content>* {
  animation: freeweb-fadeUp 0.6s ease both;
}

.freeweb-hero-badge {
  animation-delay: 0.05s;
}

.freeweb-hero h1 {
  animation-delay: 0.15s;
}

.freeweb-hero-sub {
  animation-delay: 0.25s;
}

.freeweb-hero-cta-row {
  animation-delay: 0.35s;
}

.freeweb-hero-stats {
  animation-delay: 0.45s;
}

/* ── RESPONSIVE ── */
@media (max-width: 860px) {
  .freeweb-hero-inner {
    grid-template-columns: 1fr;
  }

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

  .freeweb-pain-grid {
    grid-template-columns: 1fr 1fr;
  }

  .freeweb-audit-grid {
    grid-template-columns: 1fr 1fr;
  }

  .freeweb-steps-wrap {
    grid-template-columns: 1fr 1fr;
  }

  .freeweb-steps-wrap::before {
    display: none;
  }

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

  .freeweb-urgency-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 560px) {

  .freeweb-pain-grid,
  .freeweb-audit-grid,
  .freeweb-testi-grid,
  .freeweb-who-grid,
  .freeweb-ba-grid {
    grid-template-columns: 1fr;
  }

  .freeweb-steps-wrap {
    grid-template-columns: 1fr;
  }

  .freeweb-frow {
    grid-template-columns: 1fr;
  }

  .freeweb-hero {
    padding: 60px 5% 50px;
  }
}

/*end freeweb-hero*/

/*start free brand per */


:root {
  --ink: #1A1A2E;
  --ink2: #2C2C44;
  --muted: #6B7280;
  --muted2: #9CA3AF;
  --cream: #F8FAFB;
  --cream2: #EFF6F7;
  --warm: #E0F0F2;
  --gold: var(--coral);
  --gold-lt: #008B9C;
  --gold-dk: var(--coral);

  --coral-lt: #F5C4B8;
  --teal: #008B9C;
  --teal-lt: #A8DDE3;
  --border: rgba(0, 139, 156, 0.15);
  --border2: rgba(0, 139, 156, 0.08);
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 4px 28px rgba(0, 139, 156, 0.1);
  --shadow-lg: 0 16px 60px rgba(0, 139, 156, 0.18);
}

.free-brand-hero {

  position: relative;
  overflow: hidden;
  padding: 96px 6% 88px;
  background: var(--ink) url(../img/free-brand/free-brand.png)top right no-repeat;
  background-size: cover;
}

.free-brand-hero-texture {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(ellipse 60% 50% at 80% 30%, rgba(0, 139, 156, 0.15) 0%, transparent 70%), radial-gradient(ellipse 40% 60% at 10% 80%, rgba(231, 111, 81, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

.free-brand-hero-inner {

  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.free-brand-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(0, 139, 156, 0.5);
  color: var(--gold-lt);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 26px;
}

.free-brand-hero h1 {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: clamp(30px, 4.2vw, 52px);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
}

.free-brand-hero h1 em {
  font-style: italic;
  color: var(--gold-lt);
}

.free-brand-hero h1 .free-brand-strike {
  position: relative;
  color: rgb(255, 255, 255);

  text-decoration-color: var(--coral);
}

.free-brand-hero-sub {
  color: rgba(255, 255, 255, 0.55);
  font-size: 16px;
  line-height: 1.8;
  max-width: 500px;
  margin-bottom: 36px;
  font-weight: 300;
}

.free-brand-hero-sub strong {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

.free-brand-hero-cta-group {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.free-brand-btn-gold {
  background: var(--gold);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 15px 28px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}

.free-brand-btn-gold:hover {
  background: var(--gold-lt);
  transform: translateY(-2px);
}

.free-brand-hero-note {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.38);
  display: flex;
  align-items: center;
  gap: 7px;
}

.free-brand-hero-note i {
  color: var(--teal-lt);
}

.free-brand-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  overflow: hidden;
}

.free-brand-hstat {
  background: rgba(255, 255, 255, 0.04);
  padding: 20px 16px;
  text-align: center;
}

.free-brand-hstat-num {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--gold-lt);
  display: block;
}

.free-brand-hstat-lbl {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 4px;
  line-height: 0;
}

/* SHARED */
.free-brand-container {

  margin: 0 auto;

}

section {
  padding: 80px 6%;
}

.free-brand-sec-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dk);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.free-brand-sec-eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.free-brand-sec-title {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.free-brand-sec-title em {
  font-style: italic;
  color: var(--gold-dk);
}

.free-brand-sec-sub {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
  max-width: 580px;
  margin-bottom: 44px;
  font-weight: 300;
}

/* PAIN */
.free-brand-pain-section {
  background: var(--ink);
}

.free-brand-pain-section .free-brand-sec-eyebrow {
  color: var(--gold-lt);
}

.free-brand-pain-section .free-brand-sec-eyebrow::before {
  background: var(--gold-lt);
}

.free-brand-pain-section .free-brand-sec-title {
  color: #fff;
}

.free-brand-pain-section .free-brand-sec-sub {
  color: rgba(255, 255, 255, 0.45);
}

.free-brand-pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  overflow: hidden;
}

.free-brand-pain-card {
  background: rgba(255, 255, 255, 0.03);
  padding: 28px 24px;
  transition: background 0.25s;
}

.free-brand-pain-card:hover {
  background: rgba(255, 255, 255, 0.065);
}

.free-brand-pain-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(0, 139, 156, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.free-brand-pain-icon i {
  font-size: 22px;
  color: var(--gold-lt);
}

.free-brand-pain-card h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
}

.free-brand-pain-card p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.42);
  line-height: 1.65;
}

/* REALITY */
.free-brand-reality-section {
  background: var(--cream2);
}

.free-brand-reality-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;

  margin: 0 auto;
}

.free-brand-pbar-row {
  margin-bottom: 18px;
}

.free-brand-pbar-label {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 6px;
}

.free-brand-pbar-label span:last-child {
  color: var(--muted2);
}

.free-brand-pbar-track {
  background: var(--warm);
  border-radius: 100px;
  height: 10px;
  overflow: hidden;
}

.free-brand-pbar-fill {
  height: 100%;
  border-radius: 100px;
}

.free-brand-pbar-fill.gold {
  background: linear-gradient(90deg, var(--gold-dk), var(--gold));
}

.free-brand-pbar-fill.coral {
  background: linear-gradient(90deg, var(--coral), #E8937E);
}

.free-brand-pbar-fill.teal {
  background: linear-gradient(90deg, var(--teal), #4AA08A);
}

.free-brand-reality-quote {
  background: var(--ink);
  border-radius: 14px;
  padding: 24px;
  margin-top: 20px;
  position: relative;
}

.free-brand-reality-quote::before {
  content: '\201C';
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 72px;
  color: var(--gold);
  position: absolute;
  top: -12px;
  left: 18px;
  line-height: 1;
}

.free-brand-reality-quote p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  padding-top: 20px;
  font-style: italic;
}

.free-brand-reality-quote cite {
  font-size: 12px;
  color: var(--muted2);
  margin-top: 10px;
  display: block;
  font-style: normal;
}

/* BA */
.free-brand-ba-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.free-brand-ba-card {
  border-radius: 16px;
  padding: 24px 22px;
}

.free-brand-ba-before {
  background: #FFF8F7;
  border: 1px solid var(--coral-lt);
}

.free-brand-ba-after {
  background: #F0FAFA;
  border: 1px solid var(--teal-lt);
}

.free-brand-ba-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.free-brand-ba-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}

.free-brand-ba-before .free-brand-ba-icon {
  background: var(--coral-lt);
  color: var(--coral);
}

.free-brand-ba-after .free-brand-ba-icon {
  background: var(--teal-lt);
  color: var(--teal);
}

.free-brand-ba-top h4 {
  font-size: 15px;
  font-weight: 700;
}

.free-brand-ba-before .free-brand-ba-top h4 {
  color: var(--coral);
}

.free-brand-ba-after .free-brand-ba-top h4 {
  color: var(--teal);
}


.free-brand-ba-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.free-brand-ba-list li {
  font-size: 13px;
  line-height: 1.55;
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.free-brand-ba-before .free-brand-ba-list li {
  color: #8B2500;
}

.free-brand-ba-after .free-brand-ba-list li {
  color: var(--teal);

}

.free-brand-ba-list li i {
  flex-shrink: 0;
  font-size: 14px;
  margin-top: 2px;
}

/* INCLUDED */
.free-brand-included-section {
  background: #fff;
}

.free-brand-audit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.free-brand-audit-card {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px 20px;
  transition: box-shadow 0.2s, transform 0.2s;
  background: #fff;
}

.free-brand-audit-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.free-brand-audit-num {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--cream2);
  margin-bottom: 12px;
  line-height: 1;
  -webkit-text-stroke: 1.5px var(--gold);
}

.free-brand-audit-card h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 7px;
}

.free-brand-audit-card p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.6;
}

/* PROCESS */
.free-brand-process-section {
  background: var(--cream2);
}

.free-brand-process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.free-brand-process-steps::before {
  content: '';
  position: absolute;
  top: 30px;
  left: calc(12.5% + 16px);
  right: calc(12.5% + 16px);
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--gold) 0, var(--gold) 6px, transparent 6px, transparent 14px);
  z-index: 0;
}

.free-brand-process-step {
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.free-brand-process-num {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #EFF6F7;
  color: var(--gold-lt);
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  border: 2px solid var(--gold);
}

.free-brand-process-step h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.free-brand-process-step p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.65;
}

/* WHO */
.free-brand-who-section {
  background: #fff;
}

.free-brand-who-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.free-brand-who-card {
  background: var(--cream);
  border: 1px solid var(--border2);
  border-radius: 12px;
  padding: 20px 22px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: border-color 0.2s;
}

.free-brand-who-card:hover {
  border-color: var(--gold);
}

.free-brand-who-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(0, 139, 156, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 22px;
  color: var(--gold-dk);
}

.free-brand-who-card strong {
  font-size: 1.1rem;
  font-weight: 600;
  display: block;
  margin-bottom: 4px;
}

.free-brand-who-card span {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.55;
}

/* PROOF */
.free-brand-proof-section {
  background: var(--ink);
}

.free-brand-proof-section .free-brand-sec-eyebrow {
  color: var(--gold-lt);
}

.free-brand-proof-section .free-brand-sec-eyebrow::before {
  background: var(--gold-lt);
}

.free-brand-proof-section .free-brand-sec-title {
  color: #fff;
}

.free-brand-proof-section .free-brand-sec-sub {
  color: rgba(255, 255, 255, 0.4);
}

.free-brand-testi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.free-brand-testi-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 24px;
  transition: background 0.2s;
}

.free-brand-testi-card:hover {
  background: rgba(255, 255, 255, 0.07);
}

.free-brand-testi-stars {
  color: var(--gold);
  letter-spacing: 3px;
  font-size: 13px;
  margin-bottom: 14px;
}

.free-brand-testi-q {
  font-size: 14px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.75;
  margin-bottom: 18px;
  border-left: 2px solid var(--gold);
  padding-left: 14px;
}

.free-brand-testi-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.free-brand-testi-av {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}

.free-brand-av1 {
  background: rgba(0, 139, 156, 0.2);
  color: var(--gold-lt);
}

.free-brand-av2 {
  background: rgba(231, 111, 81, 0.2);
  color: #E76F51;
}

.free-brand-av3 {
  background: rgba(0, 139, 156, 0.2);
  color: var(--teal-lt);
}

.free-brand-av4 {
  background: rgba(0, 139, 156, 0.15);
  color: var(--gold-lt);
}

.free-brand-testi-name {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
}

.free-brand-testi-role {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.38);
}

/* FAQ */
.free-brand-faq-section {
  background: var(--cream2);
}

.free-brand-faq-wrap {
  max-width: 740px;
  margin: 0 auto;
}

.free-brand-faq-item {
  border-bottom: 1px solid var(--border);
}

.free-brand-faq-item:last-child {
  border-bottom: none;
}

.free-brand-faq-q {
  font-size: 15px;
  font-weight: 500;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  transition: color 0.2s;
}

.free-brand-faq-q i {
  font-size: 14px;
  color: var(--muted2);
  transition: transform 0.25s, color 0.2s;
  flex-shrink: 0;
}

.free-brand-faq-item.open .free-brand-faq-q {
  color: var(--gold-dk);
}

.free-brand-faq-item.open .free-brand-faq-q i {
  transform: rotate(45deg);
  color: var(--gold-dk);
}

.free-brand-faq-a {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s;
}

.free-brand-faq-item.open .free-brand-faq-a {
  max-height: 220px;
  padding-bottom: 20px;
}

/* URGENCY */
.free-brand-urgency-band {
  background: var(--gold);
  padding: 28px 6%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.free-brand-urgency-band p {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 8px;
}

.free-brand-spots-row {
  display: flex;
  gap: 6px;
  align-items: center;
}

.free-brand-spot {
  width: 30px;
  height: 10px;
  border-radius: 100px;
}

.free-brand-spot.gone {
  background: var(--ink);
  opacity: 0.45;
}

.free-brand-spot.left {
  background: var(--ink);
}

.free-brand-btn-dark-sm {
  background: var(--ink);
  color: var(--gold-lt);
  border: none;
  border-radius: 8px;
  padding: 11px 20px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background 0.2s;
}

.free-brand-btn-dark-sm:hover {
  background: var(--ink2);
}

/* FORM */
.free-brand-form-section {
  background: #fff;
  padding: 88px 6%;
}

.free-brand-form-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}

.free-brand-value-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 8px;
}

.free-brand-value-list li {
  font-size: 14px;
  display: flex;
  gap: 11px;
  align-items: flex-start;
}

.free-brand-value-list li i {
  color: var(--teal);
  font-size: 16px;
  margin-top: 1px;
  flex-shrink: 0;
}

.free-brand-form-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.free-brand-form-header {
  background: var(--ink);
  padding: 26px 28px;
  position: relative;
  overflow: hidden;
}

.free-brand-form-header::after {
  content: '';
  position: absolute;
  top: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(0, 139, 156, 0.12);
}

.free-brand-form-header h3 {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 19px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
  position: relative;
  z-index: 1;
}

.free-brand-form-header p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  position: relative;
  z-index: 1;
}

.free-brand-form-body {
  padding: 26px 28px;
}

.free-brand-frow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.free-brand-fg {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 12px;
}

.free-brand-fg label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}

.free-brand-fg input,
.free-brand-fg select,
.free-brand-fg textarea {
  font-size: 14px;
  padding: 12px 14px;
  border-radius: 9px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  outline: none;
  width: 100%;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.free-brand-fg textarea {
  resize: none;
  line-height: 1.6;
}

.free-brand-fg input:focus,
.free-brand-fg select:focus,
.free-brand-fg textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(0, 139, 156, 0.12);
}

.free-brand-submit-btn {
  width: 100%;
  padding: 15px;
  background: #E76F51;

  color: #fff;
  border: none;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.2s, transform 0.15s;
}

.free-brand-submit-btn:hover {
  background: var(--ink2);
  transform: translateY(-1px);
}

.free-brand-trust-chips {
  display: flex;
  gap: 12px;
  margin-top: 14px;
  flex-wrap: wrap;
}

.free-brand-trust-chip {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: var(--muted2);
}

.free-brand-trust-chip i {
  color: var(--teal);
  font-size: 12px;
}

.free-brand-success-box {
  display: none;
  background: #F0FAFA;
  border: 1px solid var(--teal-lt);
  border-radius: 20px;
  padding: 52px 32px;
  text-align: center;
}

.free-brand-success-box i.big {
  font-size: 52px;
  color: var(--teal);
  margin-bottom: 18px;
  display: block;
}

.free-brand-success-box h3 {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--gold-dk);
  margin-bottom: 10px;
}

.free-brand-success-box p {
  font-size: 14px;
  color: var(--teal);
  line-height: 1.75;
  max-width: 380px;
  margin: 0 auto;
}

/* FINAL CTA */
.free-brand-final-cta {
  background: var(--ink);
  padding: 96px 6%;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.free-brand-final-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 139, 156, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.free-brand-final-cta .free-brand-eyebrow {
  margin: 0 auto 20px;
}

.free-brand-final-cta h2 {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.free-brand-final-cta h2 em {
  font-style: italic;
  color: var(--gold-lt);
}

.free-brand-final-cta p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 36px;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 300;
  position: relative;
  z-index: 1;
}



footer p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.25);
}

footer a {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .free-brand-hero-inner {
    grid-template-columns: 1fr;
  }

  .free-brand-hero-card {
    display: none;
  }

  .free-brand-pain-grid,
  .free-brand-audit-grid {
    grid-template-columns: 1fr 1fr;
  }

  .free-brand-process-steps {
    grid-template-columns: 1fr 1fr;
  }

  .free-brand-process-steps::before {
    display: none;
  }

  .free-brand-form-layout,
  .free-brand-reality-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 580px) {

  .free-brand-pain-grid,
  .free-brand-audit-grid,
  .free-brand-testi-grid,
  .free-brand-who-grid,
  .free-brand-ba-grid {
    grid-template-columns: 1fr;
  }

  .free-brand-frow {
    grid-template-columns: 1fr;
  }

  .free-brand-hero {
    padding: 64px 5% 52px;
  }

  section {
    padding: 60px 5%;
  }

  .free-brand-form-section {
    padding: 60px 5%;
  }
}

/* ANIMATIONS */
.free-brand-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.free-brand-hero-content>* {
  animation: fadeUp 0.65s ease both;
}

.free-brand-eyebrow {
  animation-delay: 0.05s;
}

.free-brand-hero h1 {
  animation-delay: 0.18s;
}

.free-brand-hero-sub {
  animation-delay: 0.30s;
}

.free-brand-hero-cta-group {
  animation-delay: 0.42s;
}

.free-brand-hero-stats {
  animation-delay: 0.54s;
}

/* UTILITY CLASSES (replacing inline styles) */
.free-brand-sec-sub-reality {
  margin-bottom: 24px;
}

.free-brand-pbar-89 {
  width: 89%;
}

.free-brand-pbar-23 {
  width: 23%;
}

.free-brand-pbar-72 {
  width: 72%;
}

.free-brand-pbar-60 {
  width: 60%;
}

.free-brand-ba-grid-spaced {
  margin-top: 20px;
}

.free-brand-sec-eyebrow-center {
  justify-content: center;
}

.free-brand-sec-title-center {
  text-align: center;
  max-width: 100%;
}

.free-brand-sec-sub-center {
  text-align: center;
  margin: 0 auto 52px;
}

.free-brand-sec-sub-faq {
  text-align: center;
  margin: 0 auto 40px;
}

.free-brand-sec-title-white {
  color: #fff;
}

.free-brand-final-eyebrow {
  display: inline-flex;
}

.free-brand-btn-gold-lg {
  font-size: 16px;
  padding: 17px 34px;
}

/*end free brand per */

/*start online presence*/

/* ── online-presence2.css ── */

:root {
  --primary: #008B9C;
  --primary-dk: #006B79;
  --primary-lt: #33A8B7;
  --primary-bg: rgba(0, 139, 156, 0.09);
  --accent: #E76F51;
  --accent-lt: #ED9075;
  --accent-dk: #C45A3E;
  --accent-bg: rgba(231, 111, 81, 0.09);
  --navy: #0D3B44;
  --navy2: #124F5C;
  --navy3: #092E36;
  --white: #FFFFFF;
  --cream: #F7FAFB;
  --cream2: #EEF4F5;
  --text: #0D3B44;
  --muted: #4A6A72;
  --muted2: #7A9AA3;
  --border: rgba(0, 139, 156, 0.14);
  --border2: rgba(0, 139, 156, 0.07);
  --shadow: 0 4px 24px rgba(0, 139, 156, 0.10);
  --shadow-md: 0 10px 48px rgba(0, 139, 156, 0.14);
  --shadow-lg: 0 20px 80px rgba(0, 139, 156, 0.18);
  --radius: 16px;
  --radius-sm: 10px;

  /* Teal-tinted before/after replacements */
  --after-bg: rgba(0, 139, 156, 0.08);
  --after-border: rgba(0, 139, 156, 0.2);
  --after-text: #005C6B;
  --before-bg: rgba(231, 111, 81, 0.08);
  --before-border: rgba(231, 111, 81, 0.2);
  --before-text: #8B3A24;
}

/* ── BASE ── */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  background: var(--cream);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1,
h2 {
  font-family: 'Libre Baskerville', Georgia, serif;
}

h3,
h4,
h5,
h6 {
  font-family: 'Inter', sans-serif;
}

h4 {
  font-size: 1.1rem;
}

/* ── NAV ── */
.op-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 250, 251, 0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border2);
  height: 66px;
}

.op-logo {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
  text-decoration: none;
}

.op-logo span {
  color: var(--accent);
}

.btn-nav {
  background: var(--accent);
  color: var(--white);
  border: none;
  border-radius: 8px;
  padding: 10px 20px;
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: background .2s, transform .15s, box-shadow .2s;
}

.btn-nav:hover {
  background: var(--accent-dk);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
  color: var(--white);
}

/* ── HERO ── */
.op-hero {
  background: var(--ink) url(../img/online-presence/online-presence.png)top right no-repeat;
  position: relative;
  overflow: hidden;
  padding: 88px 0 80px;
  background-size: cover;
}


.hero-glow {
  position: absolute;
  top: -80px;
  right: -60px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(231, 111, 81, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 70% at 30% 40%, black 30%, transparent 80%);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent-lt);
  border: 1px solid rgba(231, 111, 81, 0.35);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero-eyebrow .pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2.2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(231, 111, 81, .5);
  }

  50% {
    opacity: .7;
    box-shadow: 0 0 0 5px rgba(231, 111, 81, 0);
  }
}

.op-hero h1 {
  font-size: clamp(1.875rem, 4.2vw, 3.25rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 22px;
}

.op-hero h1 em {
  font-style: italic;
  color: var(--accent-lt);
}

.underline-word {
  position: relative;
  display: inline-block;
}

.underline-word::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-lt));
  border-radius: 2px;
}

.hero-sub {
  font-size: 1.0625rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.8;
  max-width: 500px;
  margin-bottom: 36px;
}

.hero-sub strong {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.btn-accent {
  background: var(--accent);
  color: var(--white);
  border: none;
  border-radius: 10px;
  padding: 16px 28px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: background .2s, transform .2s, box-shadow .2s;
  letter-spacing: .01em;
}

.btn-accent:hover {
  background: var(--accent-dk);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(231, 111, 81, .35);
  color: var(--white);
}

.hero-note {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.38);
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-note i {
  color: var(--primary-lt);
}

/* Proof strip */
.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  overflow: hidden;
}

.ps-cell {
  background: rgba(255, 255, 255, 0.04);
  padding: 18px 14px;
  text-align: center;
}

.ps-num {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 1.625rem;
  font-weight: 700;
  color: var(--accent-lt);
  display: block;
}

.ps-lbl {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.38);
  margin-top: 3px;
  line-height: 1.4;
}

/* Hero card */
.hero-card {
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .4);
}

.hc-top {
  background: linear-gradient(135deg, var(--accent-dk), var(--accent));
  padding: 22px 24px;
}

.hc-top h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.hc-top p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.65);
}

.hc-body {
  padding: 22px 24px;
}

.hf {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 11px;
}

.hf label {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--muted);
}

.hf input,
.hf select {
  font-size: 0.875rem;
  padding: 11px 13px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--cream);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  outline: none;
  width: 100%;
  transition: border-color .2s, box-shadow .2s;
}

.hf input:focus,
.hf select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 139, 156, 0.12);
  background: var(--white);
}

.hf input::placeholder {
  color: var(--muted2);
}

.hc-submit {
  width: 100%;
  padding: 13px;
  background: var(--accent);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  transition: background .2s, transform .15s;
  margin-top: 4px;
}

.hc-submit:hover {
  background: var(--accent-dk);
  transform: translateY(-1px);
}

.hc-trust {
  display: flex;
  gap: 10px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.hc-trust span {
  font-size: 0.6875rem;
  color: var(--muted2);
  display: flex;
  align-items: center;
  gap: 4px;
}

.hc-trust i {
  color: var(--primary);
}

/* ── SECTIONS ── */
.op-section {
  padding: 80px 0;
  position: relative;
}

.s-eyebrow {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent-dk);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.s-eyebrow::before {
  content: '';
  width: 22px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.s-title {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: 12px;
}

.s-title em {
  font-style: italic;
  color: var(--accent-dk);
}

.s-sub {
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 560px;
  margin-bottom: 44px;
  font-weight: 300;
}

/* ── THOUGHT PROCESS ── */
.thought-sec {
  background: var(--cream2);
}

.thought-visual {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
}

.thought-visual h4 {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border2);
}

.search-mock {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.search-mock i {
  color: var(--muted2);
  font-size: 0.875rem;
}

.search-mock span {
  font-size: 0.875rem;
  color: var(--muted);
  font-style: italic;
}

.search-result {
  padding: 14px 0;
  border-bottom: 1px solid var(--border2);
}

.search-result:last-child {
  border-bottom: none;
}

.sr-url {
  font-size: 0.6875rem;
  color: var(--primary);
  margin-bottom: 3px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.sr-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 3px;
}

.sr-desc {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.5;
}

.sr-yours {
  background: rgba(231, 111, 81, 0.07);
  border: 1px dashed rgba(231, 111, 81, 0.4);
  border-radius: 8px;
  padding: 14px;
  text-align: center;
}

.sr-yours-text {
  font-size: 0.875rem;
  color: var(--accent-dk);
  font-weight: 500;
}

.sr-yours-sub {
  font-size: 0.875rem;
  color: var(--muted2);
  margin-top: 4px;
}

/* Looking-for list */
.looking-for {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.lf-item {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border2);
}

.lf-item:last-child {
  border-bottom: none;
}

.lf-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9375rem;
}

.lf-icon.yes {
  background: var(--primary-bg);
  color: var(--primary-dk);
}

.lf-icon.miss {
  background: var(--accent-bg);
  color: var(--accent-dk);
}

.lf-text strong {
  font-size: 1.1rem;
  font-weight: 600;
  display: block;
  margin-bottom: 3px;
}

.lf-text span {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.5;
}

/* ── IMPACT ── */
.impact-sec {
  background: var(--white);
}

.impact-card {
  background: #DFEFF4;
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  padding: 24px 20px;
  border-top: 3px solid transparent;
  transition: border-top-color .2s, box-shadow .2s, transform .2s;
  height: 100%;
}

.impact-card:hover {
  border-top-color: var(--accent);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.impact-icon {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: var(--accent-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  color: var(--accent-dk);
  margin-bottom: 16px;
}

.impact-card h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}

.impact-card p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ── WHAT WE REVIEW ── */
.review-sec {
  background: var(--ink);
}

.review-sec .s-eyebrow {
  color: var(--accent-lt);
}

.review-sec .s-eyebrow::before {
  background: var(--accent-lt);
}

.review-sec .s-title {
  color: var(--white);
}

.review-sec .s-sub {
  color: rgba(255, 255, 255, 0.45);
}

.review-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 22px 20px;
  transition: background .2s, border-color .2s;
  height: 100%;
}

.review-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(231, 111, 81, 0.3);
}

.review-num {
  font-family: 'Inter', sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--accent-lt);
  background: rgba(231, 111, 81, 0.12);
  border: 1px solid rgba(231, 111, 81, 0.2);
  border-radius: 5px;
  padding: 3px 9px;
  display: inline-flex;
  margin-bottom: 14px;
  letter-spacing: .04em;
}

.review-card h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}

.review-card p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.42);
  line-height: 1.65;
}

/* ── OUTCOME / IMAGINE ── */
.imagine-sec {
  background: var(--cream2);
}

.outcome-card {
  background: var(--white);
  border: 1px solid var(--border2);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  transition: box-shadow .2s, transform .2s;
  margin-bottom: 12px;
}

.outcome-card:hover {
  box-shadow: var(--shadow);
  transform: translateX(3px);
}

.outcome-icon {
  width: 34px;
  height: 34px;
  border-radius: 7px;
  flex-shrink: 0;
  background: var(--primary-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9375rem;
  color: var(--primary-dk);
}

.outcome-card strong {
  font-size: 1.1rem;
  font-weight: 600;
  display: block;
  margin-bottom: 3px;
}

.outcome-card span {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.55;
}

/* Before / After */
.ba-card {
  border-radius: var(--radius);
  padding: 24px 22px;
}

.ba-before {
  background: var(--before-bg);
  border: 1px solid var(--before-border);
}

.ba-after {
  background: var(--after-bg);
  border: 1px solid var(--after-border);
}

.ba-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.ba-dot {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9375rem;
  flex-shrink: 0;
}

.ba-before .ba-dot {
  background: rgba(231, 111, 81, 0.15);
  color: var(--accent-dk);
}

.ba-after .ba-dot {
  background: rgba(0, 139, 156, 0.15);
  color: var(--primary-dk);
}

.ba-head h4 {
  font-size: 0.875rem;
  font-weight: 700;
}

.ba-before .ba-head h4 {
  color: var(--accent-dk);
}

.ba-after .ba-head h4 {
  color: var(--primary-dk);
}

.ba-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ba-list li {
  font-size: 0.8125rem;
  line-height: 1.55;
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.ba-before .ba-list li {
  color: var(--before-text);
}

.ba-after .ba-list li {
  color: var(--after-text);
}

.ba-list li i {
  flex-shrink: 0;
  font-size: 0.8125rem;
  margin-top: 2px;
}

/* ── WHO ── */
.who-sec {
  background: var(--white);
}

.who-card {
  background: var(--cream);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  padding: 22px 18px;
  text-align: center;
  transition: border-color .2s, box-shadow .2s, transform .2s;
  height: 100%;
}

.who-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.who-emoji {
  font-size: 1.75rem;
  margin-bottom: 10px;
  display: block;
}

.who-card h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0;
}

/* ── WHY REQUEST ── */
.why-sec {
  background: var(--cream2);
}

.why-quote {
  background: var(--ink);
  border-radius: var(--radius);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
}

.why-quote::before {
  content: '\201C';
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 7.5rem;
  color: rgba(231, 111, 81, 0.15);
  position: absolute;
  top: -20px;
  left: 12px;
  line-height: 1;
  pointer-events: none;
}

.why-quote p {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 1.125rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  position: relative;
  z-index: 1;
  margin-bottom: 16px;
}

.why-quote cite {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.38);
  font-style: normal;
  display: block;
}

.why-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.why-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.why-check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--primary-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 1px;
}

.why-list li strong {
  font-size: 1.1rem;
  font-weight: 600;
  display: block;
  margin-bottom: 3px;
}

.why-list li span {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.55;
}

/* ── TESTIMONIALS ── */
.testi-sec {
  background: var(--white);
}

.testi-card {
  background: var(--cream);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  padding: 26px 22px;
  transition: box-shadow .2s, transform .2s;
  height: 100%;
}

.testi-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.stars {
  color: var(--accent);
  letter-spacing: 3px;
  font-size: 0.8125rem;
  margin-bottom: 14px;
}

.testi-q {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 0.875rem;
  font-style: italic;
  color: var(--navy);
  line-height: 1.75;
  margin-bottom: 18px;
  border-left: 3px solid var(--primary);
  padding-left: 14px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.t-av {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 0.875rem;
  font-weight: 700;
  flex-shrink: 0;
}

.av1 {
  background: rgba(231, 111, 81, 0.15);
  color: var(--accent-dk);
}

.av2 {
  background: rgba(0, 139, 156, 0.12);
  color: var(--primary-dk);
}

.av3 {
  background: rgba(13, 59, 68, 0.1);
  color: var(--navy);
}

.av4 {
  background: rgba(231, 111, 81, 0.1);
  color: var(--accent-dk);
}

.t-name {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--navy);
}

.t-role {
  font-size: 0.75rem;
  color: var(--muted2);
}

.result-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--primary-dk);
  background: var(--primary-bg);
  border-radius: 5px;
  padding: 3px 9px;
  margin-top: 14px;
}

/* ── FAQ ── */
.faq-sec {
  background: var(--cream2);
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-q {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--navy);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  transition: color .2s;
}

.faq-q i {
  font-size: 0.875rem;
  color: var(--muted2);
  transition: transform .25s, color .2s;
  flex-shrink: 0;
}

.faq-item.open .faq-q {
  color: var(--primary-dk);
}

.faq-item.open .faq-q i {
  transform: rotate(45deg);
  color: var(--primary-dk);
}

.faq-a {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.8;
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .25s;
}

.faq-item.open .faq-a {
  max-height: 200px;
  padding-bottom: 20px;
}

/* ── URGENCY ── */
.urgency-band {
  background: linear-gradient(135deg, var(--navy), var(--navy2));
  padding: 30px 5%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  border-top: 3px solid var(--accent);
}

.urgency-band p {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}

.urgency-band i {
  color: var(--accent);
}

.spots-row {
  display: flex;
  gap: 5px;
  align-items: center;
}

.spot {
  width: 28px;
  height: 10px;
  border-radius: 100px;
}

.spot.gone {
  background: rgba(255, 255, 255, 0.15);
}

.spot.left {
  background: var(--accent);
}

.btn-outline {
  background: transparent;
  color: var(--accent-lt);
  border: 2px solid rgba(231, 111, 81, 0.5);
  border-radius: 8px;
  padding: 10px 20px;
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background .2s, border-color .2s;
}

.btn-outline:hover {
  background: rgba(231, 111, 81, 0.1);
  border-color: var(--accent);
  color: var(--accent-lt);
}

/* ── MAIN FORM ── */
.form-sec {
  background: var(--cream);
  padding: 88px 0;
}

.value-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.value-list li {
  font-size: 0.875rem;
  display: flex;
  gap: 11px;
  align-items: flex-start;
  color: var(--muted);
}

.value-list li i {
  color: var(--primary);
  font-size: 0.9375rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.value-list li strong {
  color: var(--navy);
  font-weight: 600;
}

.no-pitch {
  background: var(--primary);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-top: 28px;
}

.no-pitch i {
  color: var(--accent-lt);
  font-size: 1.125rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.no-pitch strong {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white);
  display: block;
  margin-bottom: 4px;
}

.no-pitch span {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.55;
}

.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.form-head {
  background: var(--primary);
  padding: 26px 28px;
  position: relative;
  overflow: hidden;
}

.form-head::after {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(231, 111, 81, 0.15);
}

.form-head h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 1;
}

.form-head p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
  position: relative;
  z-index: 1;
  margin: 0;
}

.form-body {
  padding: 26px 28px;
}

.fg {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 12px;
}

.fg label {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--muted);
}

.fg input,
.fg select,
.fg textarea {
  font-size: 0.875rem;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--cream);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  outline: none;
  width: 100%;
  transition: border-color .2s, box-shadow .2s, background .2s;
}

.fg textarea {
  resize: none;
  line-height: 1.6;
}

.fg input::placeholder,
.fg textarea::placeholder {
  color: var(--muted2);
}

.fg input:focus,
.fg select:focus,
.fg textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 139, 156, 0.12);
  background: var(--white);
}

.wa-note {
  background: rgba(0, 139, 156, 0.07);
  border: 1px solid rgba(0, 139, 156, 0.2);
  border-radius: 7px;
  padding: 10px 13px;
  font-size: 0.75rem;
  color: var(--primary-dk);
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 12px;
}

.wa-note i {
  color: #25D366;
  font-size: 0.875rem;
}

.submit-btn {
  width: 100%;
  padding: 15px;
  background: var(--accent);
  color: var(--white);
  border: none;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background .2s, transform .15s, box-shadow .2s;
  letter-spacing: .01em;
}

.submit-btn:hover {
  background: var(--accent-dk);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(231, 111, 81, .3);
}

.trust-row {
  display: flex;
  gap: 14px;
  margin-top: 14px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.6875rem;
  color: var(--muted2);
}

.trust-item i {
  color: var(--primary);
  font-size: 0.75rem;
}

/* Success box */
.success-box {
  display: none;
  background: var(--primary-bg);
  border: 1px solid rgba(0, 139, 156, 0.25);
  border-radius: 18px;
  padding: 52px 28px;
  text-align: center;
}

.success-box i.big {
  font-size: 3.25rem;
  color: var(--primary);
  margin-bottom: 16px;
  display: block;
}

.success-box h3 {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.success-box p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 360px;
  margin: 0 auto;
}

.success-box .wa-confirm {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--primary-dk);
  background: rgba(0, 139, 156, 0.1);
  border-radius: 8px;
  padding: 9px 16px;
  margin-top: 16px;
}

.success-box .wa-confirm i {
  color: #25D366;
}

/* ── FINAL CTA ── */
.fcta {
  background: var(--ink);
  padding: 92px 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.fcta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(231, 111, 81, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.fcta .hero-eyebrow {
  margin: 0 auto 22px;
}

.fcta h2 {
  font-size: clamp(1.625rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.fcta h2 em {
  font-style: italic;
  color: var(--accent-lt);
}

.fcta p {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 36px;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 300;
  position: relative;
  z-index: 1;
}

/* ── FOOTER ── */
.op-footer {
  background: #081820;
  padding: 28px 5%;
  text-align: center;
}

.op-footer p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.25);
  margin: 0;
}

.op-footer a {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
}

/* ── ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .6s ease, transform .6s ease;
}

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

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(26px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content>* {
  animation: fadeUp .7s ease both;
}

.hero-content>.hero-eyebrow {
  animation-delay: .05s;
}

.hero-content>h1 {
  animation-delay: .2s;
}

.hero-content>.hero-sub {
  animation-delay: .32s;
}

.hero-content>.hero-cta-row {
  animation-delay: .44s;
}

.hero-content>.proof-strip {
  animation-delay: .56s;
}

/* ── RESPONSIVE ── */
@media (max-width: 991px) {
  .hero-card {
    display: none !important;
  }

  .op-hero {
    min-height: auto;
    padding: 72px 0 64px;
  }
}

@media (max-width: 767px) {
  .op-section {
    padding: 60px 0;
  }

  .form-sec {
    padding: 60px 0;
  }

  .proof-strip {
    grid-template-columns: repeat(3, 1fr);
  }
}

/*end online presence*/

/*start Free strategy call*/

/* ── ROOT VARIABLES ── */
:root {
  --fsc-primary: #008B9C;
  --fsc-primary-dk: #006e7c;
  --fsc-primary-lt: #33a8b6;
  --fsc-primary-bg: rgba(0, 139, 156, 0.08);
  --fsc-primary-border: rgba(0, 139, 156, 0.22);
  --fsc-accent: #E76F51;
  --fsc-accent-dk: #c75a3c;
  --fsc-accent-lt: #ed8f76;
  --fsc-accent-bg: rgba(231, 111, 81, 0.09);
  --fsc-accent-border: rgba(231, 111, 81, 0.22);
  --fsc-red: #e03535;
  --fsc-red-bg: rgba(224, 53, 53, 0.07);
  --fsc-white: #ffffff;
  --fsc-bg: #ffffff;
  --fsc-bg2: #f4f7f8;
  --fsc-bg3: #e8f2f4;
  --fsc-panel: #ffffff;
  --fsc-panel2: #edf5f7;
  --fsc-text: #1a2e32;
  --fsc-text-muted: #5a7a80;
  --fsc-text-muted2: #94b0b5;
  --fsc-border: rgba(0, 139, 156, 0.14);
  --fsc-border2: rgba(0, 139, 156, 0.07);
  --fsc-glow: 0 0 40px rgba(0, 139, 156, 0.12);
  --fsc-r: 14px;
  --fsc-rsm: 8px;
}

/* ── ANIMATIONS ── */
@keyframes fsc-blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

@keyframes fsc-fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── NAV ── */
.fsc-nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--fsc-border);
  height: 64px;
}

.fsc-logo {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--fsc-text);
  letter-spacing: -0.03em;
}

.fsc-logo span {
  color: var(--fsc-primary);
}

.fsc-nav-badge {
  font-size: 11px;
  font-weight: 600;
  color: var(--fsc-primary);
  background: var(--fsc-primary-bg);
  border: 1px solid var(--fsc-primary-border);
  padding: 4px 11px;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.fsc-nav-badge .fsc-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--fsc-primary);
  animation: fsc-blink 2s infinite;
}

.fsc-btn-primary {
  background: var(--fsc-accent);
  color: #fff;
  border: none;
  border-radius: var(--fsc-rsm);
  padding: 10px 20px;
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}

.fsc-btn-primary:hover {
  background: var(--fsc-accent-dk);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(231, 111, 81, 0.28);
}

/* ── HERO ── */
.fsc-hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--ink) url(../img/free-strategy/free-strategy.png)top right no-repeat;
  background-size: cover;

}

.fsc-hero-mesh {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 55% at 75% 25%, rgba(0, 139, 156, 0.07) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 15% 75%, rgba(231, 111, 81, 0.05) 0%, transparent 60%),
    radial-gradient(ellipse 30% 30% at 85% 80%, rgba(0, 139, 156, 0.04) 0%, transparent 60%);
}

.fsc-hero-lines {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(0, 139, 156, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 139, 156, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
}

.fsc-hero-inner {
  position: relative;
  z-index: 2;
  padding-bottom: 96px;
}

.fsc-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fsc-primary);
  background: var(--fsc-primary-bg);
  border: 1px solid var(--fsc-primary-border);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.fsc-tag .fsc-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--fsc-primary);
  animation: fsc-blink 2s infinite;
}

.fsc-hero h1 {
  font-size: clamp(34px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 24px;
}

.fsc-hero h1 .fsc-accent-text {
  color: #fff;
}

.fsc-hero h1 .fsc-italic {
  font-style: italic;
  color: var(--fsc-primary);
}

.fsc-hero-sub {
  font-size: 17px;
  font-weight: 300;
  color: #fff;
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 38px;
}

.fsc-hero-sub strong {
  color: #fff;
  font-weight: 500;
}

.fsc-btn-hero {
  background: var(--fsc-accent);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 17px 32px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.fsc-btn-hero:hover {
  background: var(--fsc-accent-dk);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(231, 111, 81, 0.28);
}

.fsc-hero-note {
  font-size: 0.785rem;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 6px;
}

.fsc-hero-note i {
  color: var(--fsc-primary);
}

/* STAT ROW */
.fsc-stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--fsc-border);
  border: 1px solid var(--fsc-border);
  border-radius: 12px;
  overflow: hidden;
}

.fsc-stat-cell {
  background: rgba(255, 255, 255, 0.08);
  padding: 18px 14px;
  text-align: center;
}

.fsc-sn {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--fsc-primary);
  display: block;
  letter-spacing: -0.03em;
}

.fsc-sl {
  font-size: 10px;
  color: #fff;
  margin-top: 3px;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* HERO FORM */
.fsc-hero-form {
  background: var(--fsc-panel);
  border: 1px solid var(--fsc-border);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 28px 80px rgba(0, 139, 156, 0.1), var(--fsc-glow);
}

.fsc-hf-top {
  background: linear-gradient(135deg, var(--fsc-primary-dk), var(--fsc-primary));
  padding: 22px 24px;
}

.fsc-hf-top h3 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.fsc-hf-top p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.fsc-hf-body {
  padding: 22px 24px;
  background: var(--fsc-bg2);
}

.fsc-hff {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 11px;
}

.fsc-hff label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fsc-text-muted);
}

.fsc-hff input,
.fsc-hff select {
  font-size: 0.875rem;
  padding: 11px 13px;
  border-radius: 7px;
  border: 1px solid var(--fsc-border);
  background: var(--fsc-white);
  color: var(--fsc-text);
  font-family: 'Inter', sans-serif;
  outline: none;
  width: 100%;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.fsc-hff input:focus,
.fsc-hff select:focus {
  border-color: var(--fsc-primary);
  box-shadow: 0 0 0 3px rgba(0, 139, 156, 0.12);
}

.fsc-hff input::placeholder {
  color: var(--fsc-text-muted2);
}

.fsc-hf-btn {
  width: 100%;
  padding: 13px;
  background: var(--fsc-primary);
  color: #fff;
  border: none;
  border-radius: 7px;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  transition: background 0.2s;
  margin-top: 4px;
}

.fsc-hf-btn:hover {
  background: var(--fsc-primary-dk);
}

.fsc-hf-trust {
  display: flex;
  gap: 10px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.fsc-hf-trust span {
  font-size: 11px;
  color: var(--fsc-text-muted2);
  display: flex;
  align-items: center;
  gap: 4px;
}

.fsc-hf-trust i {
  color: var(--fsc-primary-dk);
  font-size: 11px;
}

/* ── SECTIONS ── */
.fsc-section {
  padding: 88px 0;
  position: relative;
  z-index: 1;
}

.fsc-sk {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fsc-primary);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.fsc-sk::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--fsc-primary);
  border-radius: 2px;
  flex-shrink: 0;
}

.fsc-st {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: clamp(24px, 3.2vw, 40px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--fsc-text);
  margin-bottom: 12px;
}

.fsc-st em {
  font-style: italic;
  color: var(--fsc-primary);
}

.fsc-st .fsc-dim {
  color: var(--fsc-text-muted);
}

.fsc-ss {
  font-size: 0.9375rem;
  color: var(--fsc-text-muted);
  line-height: 1.75;
  max-width: 560px;
  margin-bottom: 44px;
  font-weight: 300;
}

/* ── PROBLEM ── */
.fsc-prob-sec {
  background: var(--fsc-bg2);
}

/* GAP visual */
.fsc-gap-visual {
  background: var(--fsc-panel);
  border: 1px solid var(--fsc-border);
  border-radius: var(--fsc-r);
  padding: 28px 24px;
  margin-bottom: 52px;
  position: relative;
  overflow: hidden;
}

.fsc-gap-visual::before {
  content: 'GAP';
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 120px;
  font-weight: 700;
  color: rgba(231, 111, 81, 0.04);
  position: absolute;
  right: -10px;
  bottom: -20px;
  letter-spacing: -0.05em;
  pointer-events: none;
}

.fsc-gap-header {
  display: grid;
  grid-template-columns: 160px 1fr 100px 100px;
  gap: 12px;
  align-items: center;
  padding-bottom: 12px;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--fsc-border);
}

.fsc-gap-header span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--fsc-text-muted);
}

.fsc-gap-header .fsc-gap-col-where {
  color: var(--fsc-accent);
  text-align: center;
}

.fsc-gap-header .fsc-gap-col-could {
  color: var(--fsc-primary);
  text-align: center;
}

.fsc-gap-rows {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.fsc-gap-row {
  display: grid;
  grid-template-columns: 160px 1fr 100px 100px;
  gap: 12px;
  align-items: center;
}

.fsc-gap-label {
  font-size: 13px;
  color: var(--fsc-text);
  font-weight: 500;
}

.fsc-gap-bar-wrap {
  height: 10px;
  background: rgba(0, 139, 156, 0.08);
  border-radius: 100px;
  overflow: hidden;
}

.fsc-gap-bar-fill {
  height: 100%;
  border-radius: 100px;
}

.fsc-gap-bar-fill.fsc-bar-red {
  background: var(--fsc-red);
}

.fsc-gap-bar-fill.fsc-bar-orange {
  background: var(--fsc-accent);
}

.fsc-gap-status-bad {
  font-size: 12px;
  font-weight: 700;
  color: var(--fsc-red);
  text-align: center;
}

.fsc-gap-status-bad.fsc-orange {
  color: var(--fsc-accent);
}

.fsc-gap-status-good {
  font-size: 12px;
  font-weight: 700;
  color: var(--fsc-primary);
  text-align: center;
}

.fsc-gap-footer {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--fsc-border);
  display: flex;
  align-items: center;
  gap: 8px;
}

.fsc-gap-footer i {
  color: var(--fsc-primary);
  font-size: 13px;
  flex-shrink: 0;
}

.fsc-gap-footer span {
  font-size: 12px;
  color: var(--fsc-text-muted);
}

.fsc-prob-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--fsc-border);
  border-radius: var(--fsc-r);
  overflow: hidden;
}

.fsc-prob-card {
  background: var(--fsc-panel);
  padding: 26px 22px;
  transition: background 0.25s;
  position: relative;
  overflow: hidden;
}

.fsc-prob-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: transparent;
  transition: background 0.25s;
}

.fsc-prob-card:hover {
  background: var(--fsc-panel2);
}

.fsc-prob-card:hover::after {
  background: var(--fsc-primary);
}

.fsc-prob-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--fsc-primary-bg);
  border: 1px solid var(--fsc-primary-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.fsc-prob-icon i {
  font-size: 18px;
  color: var(--fsc-primary);
}

.fsc-prob-card h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--fsc-text);
  margin-bottom: 8px;
}

.fsc-prob-card p {
  font-size: 13px;
  color: var(--fsc-text-muted);
  line-height: 1.7;
  margin: 0;
}

/* ── COVER ── */
.fsc-cover-sec {
  background: var(--fsc-bg);
}

.fsc-cover-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.fsc-cover-card {
  background: var(--fsc-panel);
  border: 1px solid var(--fsc-border);
  border-radius: var(--fsc-r);
  padding: 26px 22px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  cursor: default;
}

.fsc-cover-card:hover {
  border-color: var(--fsc-primary-border);
  box-shadow: var(--fsc-glow);
  transform: translateY(-2px);
}

.fsc-cover-numbox {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--fsc-primary);
  background: var(--fsc-primary-bg);
  border: 1px solid var(--fsc-primary-border);
  border-radius: 6px;
  padding: 4px 10px;
  flex-shrink: 0;
  margin-top: 2px;
  letter-spacing: 0.04em;
}

.fsc-cover-card h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--fsc-text);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 7px;
}

.fsc-cover-card h4 i {
  font-size: 13px;
  color: var(--fsc-primary);
}

.fsc-cover-card p {
  font-size: 13px;
  color: var(--fsc-text-muted);
  line-height: 1.65;
  margin: 0;
}

/* ── CALL STRUCTURE ── */
.fsc-call-sec {
  background: var(--fsc-bg2);
}

.fsc-call-card {
  background: var(--fsc-panel);
  border: 1px solid var(--fsc-border);
  border-radius: var(--fsc-r);
  overflow: hidden;
  box-shadow: var(--fsc-glow);
}

.fsc-call-card-head {
  background: var(--fsc-primary-bg);
  border-bottom: 1px solid var(--fsc-primary-border);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.fsc-call-card-head h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--fsc-text);
}

.fsc-call-badge {
  font-size: 11px;
  font-weight: 600;
  color: var(--fsc-primary);
  background: rgba(0, 139, 156, 0.1);
  border: 1px solid var(--fsc-primary-border);
  border-radius: 5px;
  padding: 3px 9px;
  margin-left: auto;
}

.fsc-agenda {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.fsc-ag-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px 24px;
  border-bottom: 1px solid var(--fsc-border2);
}

.fsc-ag-item:last-child {
  border-bottom: none;
}

.fsc-ag-step {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--fsc-primary-bg);
  border: 1px solid var(--fsc-primary-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--fsc-primary);
  flex-shrink: 0;
  margin-top: 1px;
}

.fsc-ag-body {
  flex: 1;
}

.fsc-ag-body strong {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--fsc-text);
  display: block;
  margin-bottom: 3px;
}

.fsc-ag-body span {
  font-size: 12px;
  color: var(--fsc-text-muted);
  line-height: 1.55;
}

.fsc-ag-time {
  font-size: 10px;
  font-weight: 700;
  color: var(--fsc-accent);
  background: var(--fsc-accent-bg);
  border: 1px solid var(--fsc-accent-border);
  border-radius: 5px;
  padding: 3px 8px;
  flex-shrink: 0;
  margin-top: 3px;
  letter-spacing: 0.04em;
}

/* Guarantees */
.fsc-guarantee-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.fsc-guarantee {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--fsc-border2);
}

.fsc-guarantee:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.fsc-g-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
}

.fsc-g-teal {
  background: var(--fsc-primary-bg);
  color: var(--fsc-primary);
}

.fsc-g-orange {
  background: var(--fsc-accent-bg);
  color: var(--fsc-accent);
}

.fsc-g-red {
  background: var(--fsc-red-bg);
  color: var(--fsc-red);
}

.fsc-guarantee strong {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--fsc-text);
  display: block;
  margin-bottom: 4px;
}

.fsc-guarantee p {
  font-size: 13px;
  color: var(--fsc-text-muted);
  line-height: 1.65;
  margin: 0;
}

/* DELIVERABLE */
.fsc-deliverable {
  background: var(--fsc-panel2);
  border: 1px solid var(--fsc-primary-border);
  border-radius: var(--fsc-r);
  padding: 22px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-top: 20px;
}

.fsc-deliverable-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--fsc-primary-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--fsc-primary);
  flex-shrink: 0;
}

.fsc-deliverable strong {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--fsc-primary);
  display: block;
  margin-bottom: 4px;
}

.fsc-deliverable span {
  font-size: 13px;
  color: var(--fsc-text-muted);
  line-height: 1.6;
}

/* ── BEFORE/AFTER ── */
.fsc-ba-sec {
  background: var(--fsc-bg);
}

.fsc-ba-card {
  border-radius: var(--fsc-r);
  padding: 28px 24px;
}

.fsc-ba-before {
  background: rgba(224, 53, 53, 0.04);
  border: 1px solid rgba(224, 53, 53, 0.15);
}

.fsc-ba-after {
  background: rgba(0, 139, 156, 0.04);
  border: 1px solid var(--fsc-primary-border);
}

.fsc-ba-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
}

.fsc-ba-dot {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.fsc-ba-before .fsc-ba-dot {
  background: rgba(224, 53, 53, 0.12);
  color: var(--fsc-red);
}

.fsc-ba-after .fsc-ba-dot {
  background: var(--fsc-primary-bg);
  color: var(--fsc-primary);
}

.fsc-ba-head h4 {
  font-size: 1.1rem;
  font-weight: 700;
}

.fsc-ba-before .fsc-ba-head h4 {
  color: var(--fsc-red);
}

.fsc-ba-after .fsc-ba-head h4 {
  color: var(--fsc-primary);
}

.fsc-ba-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.fsc-ba-list li {
  font-size: 13px;
  line-height: 1.6;
  display: flex;
  gap: 9px;
  align-items: flex-start;
  color: var(--fsc-text-muted);
}

.fsc-ba-list li i {
  flex-shrink: 0;
  font-size: 14px;
  margin-top: 2px;
}

.fsc-ba-before .fsc-ba-list li i {
  color: var(--fsc-red);
}

.fsc-ba-after .fsc-ba-list li i {
  color: var(--fsc-primary);
}

/* ── WHO ── */
.fsc-who-sec {
  background: var(--fsc-bg2);
}

.fsc-who-card {
  background: var(--fsc-panel);
  border: 1px solid var(--fsc-border);
  border-radius: var(--fsc-r);
  padding: 22px 20px;
  transition: border-color 0.2s, transform 0.2s;
}

.fsc-who-card:hover {
  border-color: var(--fsc-primary-border);
  transform: translateY(-2px);
}

.fsc-who-emoji {
  font-size: 26px;
  margin-bottom: 12px;
  display: block;
}

.fsc-who-card h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--fsc-text);
  margin-bottom: 5px;
}

.fsc-who-card p {
  font-size: 13px;
  color: var(--fsc-text-muted);
  line-height: 1.6;
  margin: 0;
}

/* ── RESULTS ── */
.fsc-results-sec {
  background: var(--fsc-bg);
}

.fsc-result-card {
  background: var(--fsc-panel);
  border: 1px solid var(--fsc-border);
  border-radius: var(--fsc-r);
  padding: 26px 22px;
  transition: border-color 0.2s, transform 0.2s;
}

.fsc-result-card:hover {
  border-color: var(--fsc-primary-border);
  transform: translateY(-2px);
}

.fsc-stars {
  color: var(--fsc-accent);
  letter-spacing: 3px;
  font-size: 13px;
  margin-bottom: 14px;
}

.fsc-result-q {
  font-size: 0.875rem;
  color: var(--fsc-text-muted);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 18px;
  padding-left: 14px;
  border-left: 2px solid var(--fsc-primary);
}

.fsc-result-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.fsc-rav {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}

.fsc-av1 {
  background: rgba(0, 139, 156, 0.15);
  color: var(--fsc-primary);
}

.fsc-av2 {
  background: rgba(231, 111, 81, 0.15);
  color: var(--fsc-accent);
}

.fsc-av3 {
  background: rgba(0, 139, 156, 0.1);
  color: var(--fsc-primary-lt);
}

.fsc-av4 {
  background: rgba(231, 111, 81, 0.1);
  color: var(--fsc-accent-lt);
}

.fsc-r-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--fsc-text);
}

.fsc-r-role {
  font-size: 12px;
  color: var(--fsc-text-muted2);
}

.fsc-result-win {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 700;
  color: var(--fsc-primary);
  background: var(--fsc-primary-bg);
  border: 1px solid var(--fsc-primary-border);
  border-radius: 5px;
  padding: 3px 9px;
  margin-top: 14px;
}

/* ── FAQ ── */
.fsc-faq-sec {
  background: var(--fsc-bg2);
}

.fsc-faq-wrap {
  max-width: 760px;
  margin: 0 auto;
}

.fsc-faq-item {
  border-bottom: 1px solid var(--fsc-border);
}

.fsc-faq-item:last-child {
  border-bottom: none;
}

.fsc-faq-q {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--fsc-text);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  transition: color 0.2s;
}

.fsc-faq-q i {
  font-size: 14px;
  color: var(--fsc-text-muted2);
  transition: transform 0.25s, color 0.2s;
  flex-shrink: 0;
}

.fsc-faq-item.open .fsc-faq-q {
  color: var(--fsc-primary);
}

.fsc-faq-item.open .fsc-faq-q i {
  transform: rotate(45deg);
  color: var(--fsc-primary);
}

.fsc-faq-a {
  font-size: 0.875rem;
  color: var(--fsc-text-muted);
  line-height: 1.8;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s;
}

.fsc-faq-item.open .fsc-faq-a {
  max-height: 220px;
  padding-bottom: 20px;
}

/* ── URGENCY ── */
.fsc-urgency {
  background: linear-gradient(135deg, var(--fsc-primary-dk), var(--fsc-primary));
  padding: 28px 5%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.fsc-urgency p {
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}

.fsc-urgency i {
  font-size: 16px;
}

.fsc-spots-row {
  display: flex;
  gap: 5px;
}

.fsc-spot {
  width: 28px;
  height: 10px;
  border-radius: 100px;
}

.fsc-spot.fsc-gone {
  background: rgba(255, 255, 255, 0.3);
}

.fsc-spot.fsc-left {
  background: #fff;
}

.fsc-btn-dark {
  background: #fff;
  color: var(--fsc-primary);
  border: none;
  border-radius: 7px;
  padding: 11px 20px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background 0.2s;
}

.fsc-btn-dark:hover {
  background: var(--fsc-bg2);
  color: var(--fsc-primary);
}

/* ── MAIN FORM ── */
.fsc-form-sec {
  background: var(--fsc-bg);
  padding: 96px 0;
}

.fsc-val-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}

.fsc-val-list li {
  font-size: 0.875rem;
  display: flex;
  gap: 11px;
  align-items: flex-start;
  color: var(--fsc-text-muted);
}

.fsc-val-list li i {
  color: var(--fsc-primary);
  font-size: 14px;
  margin-top: 2px;
  flex-shrink: 0;
}

.fsc-val-list li strong {
  color: var(--fsc-text);
  font-weight: 500;
}

.fsc-no-pitch-box {
  background: var(--fsc-panel);
  border: 1px solid var(--fsc-primary-border);
  border-radius: var(--fsc-rsm);
  padding: 16px 18px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-top: 28px;
}

.fsc-no-pitch-box i {
  color: var(--fsc-primary);
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 1px;
}

.fsc-no-pitch-box strong {
  font-size: 13px;
  font-weight: 600;
  color: var(--fsc-primary);
  display: block;
  margin-bottom: 4px;
}

.fsc-no-pitch-box span {
  font-size: 12px;
  color: var(--fsc-text-muted);
  line-height: 1.55;
}

.fsc-form-card {
  background: var(--fsc-panel);
  border: 1px solid var(--fsc-border);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 72px rgba(0, 139, 156, 0.1), var(--fsc-glow);
}

.fsc-form-top {
  background: linear-gradient(135deg, var(--fsc-primary-dk), var(--fsc-primary));
  padding: 24px 28px;
  position: relative;
  overflow: hidden;
}

.fsc-form-top::after {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.fsc-form-top h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 5px;
  position: relative;
  z-index: 1;
}

.fsc-form-top p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
  position: relative;
  z-index: 1;
  margin: 0;
}

.fsc-form-body {
  padding: 26px 28px;
}

.fsc-fg {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 12px;
}

.fsc-fg label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fsc-text-muted);
}

.fsc-fg input,
.fsc-fg select,
.fsc-fg textarea {
  font-size: 0.875rem;
  padding: 12px 14px;
  border-radius: 7px;
  border: 1px solid var(--fsc-border);
  background: var(--fsc-bg2);
  color: var(--fsc-text);
  font-family: 'Inter', sans-serif;
  outline: none;
  width: 100%;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.fsc-fg textarea {
  resize: none;
  line-height: 1.6;
}

.fsc-fg input::placeholder,
.fsc-fg textarea::placeholder {
  color: var(--fsc-text-muted2);
}

.fsc-fg input:focus,
.fsc-fg select:focus,
.fsc-fg textarea:focus {
  border-color: var(--fsc-primary);
  box-shadow: 0 0 0 3px rgba(0, 139, 156, 0.1);
}

.fsc-submit-btn {
  width: 100%;
  padding: 15px;
  background: var(--fsc-accent);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}

.fsc-submit-btn:hover {
  background: var(--fsc-accent-dk);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(231, 111, 81, 0.28);
}

.fsc-trust-row {
  display: flex;
  gap: 14px;
  margin-top: 14px;
  flex-wrap: wrap;
}

.fsc-tr-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: var(--fsc-text-muted2);
}

.fsc-tr-item i {
  color: var(--fsc-primary-dk);
  font-size: 12px;
}

/* SUCCESS */
.fsc-success-box {
  display: none;
  background: rgba(0, 139, 156, 0.05);
  border: 1px solid var(--fsc-primary-border);
  border-radius: 18px;
  padding: 52px 28px;
  text-align: center;
}

.fsc-success-box i.fsc-big {
  font-size: 52px;
  color: var(--fsc-primary);
  margin-bottom: 16px;
  display: block;
}

.fsc-success-box h3 {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--fsc-text);
  margin-bottom: 10px;
}

.fsc-success-box p {
  font-size: 0.875rem;
  color: var(--fsc-text-muted);
  line-height: 1.75;
  max-width: 360px;
  margin: 0 auto;
}

/* ── FINAL CTA ── */
.fsc-fcta {
  background: var(--fsc-bg2);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.fsc-fcta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 139, 156, 0.06) 0%, transparent 65%);
  pointer-events: none;
}

.fsc-fcta .fsc-tag {
  margin: 0 auto 22px;
}

.fsc-fcta h2 {
  font-size: clamp(28px, 4.5vw, 54px);
  font-weight: 700;
  color: var(--fsc-text);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

.fsc-fcta h2 em {
  font-style: italic;
  color: var(--fsc-primary);
}

.fsc-fcta p {
  font-size: 0.9375rem;
  color: var(--fsc-text-muted);
  margin-bottom: 36px;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
  font-weight: 300;
}

/* ── FOOTER ── */
.fsc-footer {
  background: #f0f5f6;
  padding: 28px 5%;
  text-align: center;
  border-top: 1px solid var(--fsc-border2);
  position: relative;
  z-index: 1;
}

.fsc-footer p {
  font-size: 12px;
  color: var(--fsc-text-muted2);
  margin: 0;
}

.fsc-footer a {
  color: var(--fsc-text-muted);
  text-decoration: none;
}

/* REVEAL */
.fsc-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* HERO ENTRY */
.fsc-hero-content>* {
  animation: fsc-fadeUp 0.7s ease both;
}

.fsc-hero-content>.fsc-tag {
  animation-delay: 0.05s;
}

.fsc-hero-content>h1 {
  animation-delay: 0.18s;
}

.fsc-hero-content>.fsc-hero-sub {
  animation-delay: 0.3s;
}

.fsc-hero-content>.fsc-cta-row {
  animation-delay: 0.42s;
}

.fsc-hero-content>.fsc-stat-row {
  animation-delay: 0.54s;
}

/* ── RESPONSIVE ── */
@media (max-width: 980px) {
  .fsc-hero-form {
    display: none;
  }

  .fsc-hero {
    min-height: auto;
    padding: 80px 0 72px;
  }
}

@media (max-width: 620px) {
  .fsc-section {
    padding: 64px 0;
  }

  .fsc-form-sec {
    padding: 64px 0;
  }

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

/* end Free strategy call*/


/* ─── SUCCESS MESSAGE STYLES FROM YOUR COMPARED SETUP ─── */
.success-message {
  text-align: center;
  padding: 50px 40px;
  border-radius: 16px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  margin-top: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
  animation: fadeInUp 0.4s ease;
}

.success-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: #22c55e;
  color: #fff;
  font-size: 36px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 12px rgba(34, 197, 94, .12);
}

.success-message h3 {
  margin: 0 0 12px;
  font-size: 30px;
  font-weight: 700;
}

.success-message p {
  margin: 0 auto;
  max-width: 500px;
  color: #666;
  line-height: 1.7;
  font-size: 16px;
}

.success-response-time {
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid rgba(0, 0, 0, .08);
  font-size: 14px;
  color: #15803d;
  font-weight: 500;
  text-align: center;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(15px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ─── SUCCESS MESSAGE STYLES FROM YOUR COMPARED SETUP ENDS ─── */

.footer-brand .w-25 {
  width: 35% !important;
}