/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100..900;1,100..900&display=swap');

/* CSS Variables */
:root {
  --primary-blue: #002878;
  --accent-blue: #014DDE;
  --accent-blue-hover: #003cc2;
  --accent-blue-light: rgba(1, 77, 222, 0.08);
  --dark-text: #1d2b49;
  --body-text: #4e5d78;
  --bg-light: #f4f6fa;
  --bg-white: #ffffff;
  --glass-bg: rgba(255, 255, 255, 0.75);
  --glass-border: rgba(0, 40, 120, 0.08);
  --glass-border-focus: rgba(1, 77, 222, 0.25);
  --shadow-sm: 0 4px 12px rgba(0, 40, 120, 0.03);
  --shadow-md: 0 8px 24px rgba(0, 40, 120, 0.06);
  --shadow-lg: 0 16px 40px rgba(0, 40, 120, 0.09);
  --shadow-inset: inset 0 2px 4px rgba(0, 0, 0, 0.06);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--bg-light);
  color: var(--body-text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  color: var(--primary-blue);
  font-weight: 800;
  line-height: 1.25;
}

h1 {
  font-size: 3rem;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 2.25rem;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
  text-align: center;
}

h3 {
  font-size: 1.5rem;
  font-weight: 700;
}

p {
  font-size: 1rem;
  font-weight: 400;
}

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

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

/* Layout Utilities */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-padding {
  padding: 6.5rem 0;
}

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

/* Grid & Bento Base */
.grid {
  display: grid;
  gap: 1.5rem;
}

/* Header Alert Bar */
.alert-bar {
  background-color: var(--primary-blue);
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.75rem 1rem;
  text-align: center;
  position: relative;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  line-height: 1.4;
}

.alert-bar strong {
  background-color: var(--accent-blue);
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  margin-right: 0.5rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Navbar */
.navbar {
  background-color: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--glass-border);
  position: sticky;
  top: 0;
  z-index: 999;
  padding: 1rem 0;
  transition: var(--transition-fast);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--primary-blue);
}

.logo svg {
  width: 250px;
  height: auto;
}

.hamburger-menu {
  display: none;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  font-weight: 500;
  color: var(--dark-text);
  font-size: 0.95rem;
  padding: 0.5rem 0;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-blue);
  transition: var(--transition-normal);
}

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

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  padding: 1rem 2rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition-normal);
  gap: 0.75rem;
  font-size: 0.95rem;
  border: none;
  outline: none;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--accent-blue);
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(1, 77, 222, 0.25);
}

.btn-primary:hover {
  background-color: var(--accent-blue-hover);
  box-shadow: 0 12px 24px rgba(1, 77, 222, 0.35);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: var(--bg-white);
  color: var(--primary-blue);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background-color: var(--bg-light);
  border-color: rgba(1, 77, 222, 0.3);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-whatsapp {
  background-color: #25D366;
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.2);
}

.btn-whatsapp:hover {
  background-color: #20ba59;
  box-shadow: 0 12px 24px rgba(37, 211, 102, 0.3);
  transform: translateY(-2px);
}

.btn-nav {
  padding: 0.65rem 1.25rem;
  font-size: 0.85rem;
}

/* Cards & Glassmorphism */
.glass-card {
  background-color: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
  pointer-events: none;
  z-index: 1;
}

.glass-card:hover {
  transform: translateY(-4px);
  border-color: rgba(1, 77, 222, 0.2);
  box-shadow: var(--shadow-md);
}

/* Hero Section */
.hero-section {
  position: relative;
  padding: 4rem 0 2rem;
  background: radial-gradient(circle at 80% 20%, rgba(1, 77, 222, 0.05), transparent 45%),
              radial-gradient(circle at 10% 80%, rgba(0, 40, 120, 0.04), transparent 45%);
}

.hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: stretch;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--accent-blue-light);
  color: var(--accent-blue);
  padding: 0.5rem 1rem;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(1, 77, 222, 0.15);
}

.hero-tag span {
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: var(--accent-blue);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 5.5rem;
  height: 100%;
}

.hero-content h1 {
  margin-bottom: 1.5rem;
  color: var(--primary-blue);
}

.hero-content h1 span {
  color: var(--accent-blue);
}

.hero-subheadline {
  text-align: left;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--body-text);
  margin-bottom: 4rem;
  max-width: 580px;
}

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

.hero-trust-indicators {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  border-top: 1px solid var(--glass-border);
  padding-top: 2rem;
  margin-top: auto;
  width: 100%;
}

.trust-item {
  display: flex;
  flex-direction: column;
}

.trust-number {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.75rem;
  color: var(--primary-blue);
  line-height: 1.1;
}

.trust-label {
  font-size: 0.8rem;
  color: var(--body-text);
  margin-top: 0.25rem;
}

/* DeFi Bento Dashboard mockup on the right */
.hero-dashboard {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto auto;
  gap: 1.25rem;
}

.bento-main {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.6));
}

.bento-card {
  padding: 1.5rem;
}

.bento-card-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.status-badge {
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.status-badge.success {
  background-color: rgba(37, 211, 102, 0.12);
  color: #1eb852;
}

.status-badge.warning {
  background-color: rgba(255, 171, 0, 0.12);
  color: #e09700;
}

.status-badge.danger {
  background-color: rgba(255, 86, 48, 0.12);
  color: #ff5630;
}

/* Filing Timeline Dashboard Item */
.timeline-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(0, 40, 120, 0.04);
}

.timeline-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.timeline-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.timeline-icon {
  width: 32px;
  height: 32px;
  background-color: var(--accent-blue-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-blue);
}

.timeline-text h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--dark-text);
}

.timeline-text p {
  font-size: 0.75rem;
  color: var(--body-text);
}

/* Mini Chart Element */
.chart-container {
  height: 100px;
  position: relative;
  display: flex;
  align-items: flex-end;
  gap: 0.5rem;
  margin-top: 1rem;
}

.chart-bar {
  flex: 1;
  background-color: rgba(1, 77, 222, 0.15);
  border-radius: 4px 4px 0 0;
  height: 20%;
  position: relative;
  transition: height 1s ease-out;
}

.chart-bar.filled {
  background-color: var(--accent-blue);
}

.chart-bar::after {
  content: attr(data-label);
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--body-text);
  white-space: nowrap;
}

.chart-tooltip {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--primary-blue);
  color: #fff;
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  font-size: 0.65rem;
  font-weight: 700;
}

/* Circular Progress ring */
.circle-progress-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.svg-circle-container {
  position: relative;
  width: 90px;
  height: 90px;
  margin-bottom: 0.5rem;
}

.svg-circle-container svg {
  transform: rotate(-90deg);
}

.circle-bg {
  fill: none;
  stroke: rgba(0, 40, 120, 0.05);
  stroke-width: 8;
}

.circle-val {
  fill: none;
  stroke: var(--accent-blue);
  stroke-width: 8;
  stroke-dasharray: 220;
  stroke-dashoffset: 66; /* 70% complete */
  stroke-linecap: round;
  transition: stroke-dashoffset 1s ease-out;
}

.circle-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--primary-blue);
}

/* Section Header styling */
.section-header {
  max-width: 700px;
  margin: 0 auto 3.5rem;
}

.section-header p {
  color: var(--body-text);
  font-size: 1.1rem;
  margin-top: 0.75rem;
}

/* Who Should File Section */
.criteria-grid {
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
}

.criteria-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card-icon-wrapper {
  width: 48px;
  height: 48px;
  background-color: var(--accent-blue-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-blue);
  margin-bottom: 1.5rem;
  border: 1px solid rgba(1, 77, 222, 0.15);
}

.criteria-card h3 {
  color: var(--primary-blue);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.criteria-card p {
  font-size: 0.95rem;
  color: var(--body-text);
  flex-grow: 1;
}

/* Why Filing Early Matters Section */
.why-early-section {
  background-color: var(--bg-white);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  position: relative;
  padding: 4rem 0;
}

.why-early-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 5rem;
  align-items: start;
}

.why-early-infographic {
  background: radial-gradient(circle at center, rgba(1, 77, 222, 0.02), transparent 70%);
  padding: 1rem;
  position: sticky;
  top: 120px;
}

.fbr-comparison-box {
  background-color: #ffffff;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 1.75rem;
}

.compliance-status {
  padding: 1rem;
  border-radius: var(--radius-md);
  margin-bottom: 1.25rem;
  border: 1px solid transparent;
}

.compliance-status.bad {
  background-color: rgba(255, 86, 48, 0.04);
  border-color: rgba(255, 86, 48, 0.15);
}

.compliance-status.good {
  background-color: rgba(37, 211, 102, 0.04);
  border-color: rgba(37, 211, 102, 0.15);
}

.compliance-status-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.compliance-status-header h4 {
  font-size: 0.95rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.compliance-status.bad h4 { color: #ff5630; }
.compliance-status.good h4 { color: #1eb852; }

.compliance-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 0.75rem;
  border-top: 1px dashed rgba(0, 0, 0, 0.08);
  padding-top: 0.75rem;
}

.metric-item {
  font-size: 0.75rem;
}

.metric-item span {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-blue);
}

.early-text h2 {
  text-align: center;
}

.early-copy {
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.early-copy p {
  margin-bottom: 1rem;
}

.fbr-citation {
  background-color: var(--bg-light);
  border-left: 4px solid var(--accent-blue);
  padding: 1rem;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-size: 0.85rem;
  color: var(--primary-blue);
  font-style: italic;
  margin-bottom: 2rem;
}

.early-bullets {
  display: grid;
  gap: 1.25rem;
}

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

.bullet-check {
  width: 24px;
  height: 24px;
  background-color: var(--accent-blue-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-blue);
  flex-shrink: 0;
}

.bullet-content h4 {
  font-size: 1rem;
  color: var(--dark-text);
  margin-bottom: 0.25rem;
}

.bullet-content p {
  font-size: 0.9rem;
  color: var(--body-text);
}

/* Our Services Section */
.services-grid {
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.service-card {
  padding: 2.25rem 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  color: var(--primary-blue);
}

.service-card p {
  font-size: 0.9rem;
  color: var(--body-text);
  flex-grow: 1;
}

/* How It Works Section */
.process-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.process-step {
  position: relative;
  background-color: var(--bg-white);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 2.25rem 2rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.process-step:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(1, 77, 222, 0.15);
}

.process-number {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 0.85rem;
  color: var(--accent-blue);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
  display: inline-block;
  background-color: var(--accent-blue-light);
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
}

.process-step h3 {
  font-size: 1.25rem;
  color: var(--primary-blue);
  margin-bottom: 0.75rem;
}

.process-step p {
  color: var(--body-text);
  font-size: 0.9rem;
  line-height: 1.5;
}

@media (max-width: 991px) {
  .process-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .process-container {
    grid-template-columns: 1fr;
  }
}

/* Documents Section */
.docs-tabs-container {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.tab-btn {
  background: var(--bg-white);
  border: 1px solid var(--glass-border);
  padding: 0.75rem 1.5rem;
  border-radius: 100px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--body-text);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.tab-btn:hover {
  background-color: var(--bg-light);
  border-color: rgba(1, 77, 222, 0.2);
}

.tab-btn.active {
  background-color: var(--accent-blue);
  border-color: var(--accent-blue);
  color: #ffffff;
  box-shadow: 0 6px 15px rgba(1, 77, 222, 0.2);
}

.tab-content {
  display: none;
  animation: fadeIn 0.4s ease-in-out forwards;
}

.tab-content.active {
  display: block;
}

.doc-list-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
}

.doc-item {
  background-color: var(--bg-white);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  min-height: 80px;
  width: 280px;
  max-width: 100%;
}

.doc-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: rgba(1, 77, 222, 0.15);
}

.doc-check-icon {
  width: 24px;
  height: 24px;
  background-color: var(--accent-blue-light);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-blue);
  flex-shrink: 0;
}

.doc-item span {
  font-weight: 500;
  color: var(--dark-text);
  font-size: 0.95rem;
}

/* Why Choose Us Section */
.choose-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

.choose-info {
  position: sticky;
  top: 120px;
}

.choose-info h2 {
  text-align: left;
}

.choose-quote {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--accent-blue);
  line-height: 1.4;
  margin-top: 1rem;
}

.trust-grid {
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.trust-card {
  padding: 1.75rem;
}

.trust-card h3 {
  font-size: 1.15rem;
  color: var(--primary-blue);
  margin-bottom: 0.5rem;
}

.trust-card p {
  font-size: 0.9rem;
  color: var(--body-text);
}

/* Common Mistakes Section */
.mistakes-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.mistake-card {
  border-top: 4px solid #ff5630;
  background-color: var(--bg-white);
  padding: 2rem 1.5rem;
  width: 360px;
  max-width: 100%;
}

.mistake-card:hover {
  border-top-color: #ff3c10;
}

.mistake-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
  color: #ff5630;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  display: inline-block;
  background-color: rgba(255, 86, 48, 0.08);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}

.mistake-card h3 {
  font-size: 1.1rem;
  color: var(--primary-blue);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.mistake-card p {
  font-size: 0.88rem;
  color: var(--body-text);
}

/* Offer & Lead Form Section */
.offer-section {
  background: radial-gradient(circle at 10% 20%, rgba(1, 77, 222, 0.04), transparent 40%),
              radial-gradient(circle at 90% 80%, rgba(0, 40, 120, 0.04), transparent 40%);
  position: relative;
}

.offer-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 4rem;
  align-items: start;
}

.offer-layout-centered {
  display: block;
  max-width: 800px;
  margin: 0 auto;
}

.analytics-dashboard-container {
  max-width: 960px;
  margin: 0 auto;
  width: 100%;
}

.offer-info h2 {
  text-align: left;
  margin-bottom: 1rem;
}

.offer-info p {
  font-size: 1.15rem;
  margin-bottom: 2rem;
}

.offer-box {
  background: linear-gradient(135deg, var(--primary-blue), #0b3485);
  color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}

.offer-tag {
  display: inline-block;
  background-color: var(--accent-blue);
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
  letter-spacing: 0.05em;
  margin-bottom: 1.25rem;
}

.offer-box h3 {
  color: #ffffff;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.offer-desc {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding-bottom: 1.5rem;
}

.offer-benefits-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.offer-benefits {
  list-style: none;
  display: grid;
  gap: 0.85rem;
}

.offer-benefit-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.95rem;
}

.offer-benefit-item svg {
  color: var(--accent-blue);
  background-color: #ffffff;
  border-radius: 50%;
  padding: 0.15rem;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* Form Styling */
.lead-form-card {
  background-color: var(--bg-white);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow-md);
}

.lead-form-card h3 {
  color: var(--primary-blue);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.lead-form-card p {
  color: var(--body-text);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

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

.form-control {
  width: 100%;
  padding: 0.85rem 1.15rem;
  border: 1.5px solid rgba(0, 40, 120, 0.08);
  background-color: var(--bg-light);
  border-radius: var(--radius-md);
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  color: var(--dark-text);
  transition: var(--transition-fast);
  outline: none;
}

.form-control:focus {
  border-color: var(--accent-blue);
  background-color: #ffffff;
  box-shadow: 0 0 0 4px var(--accent-blue-light);
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23002878' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1.2rem;
  padding-right: 2.5rem;
}

.radio-group {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.radio-label {
  flex: 1;
  min-width: 80px;
}

.radio-label input {
  display: none;
}

.radio-btn {
  display: block;
  text-align: center;
  background-color: var(--bg-light);
  border: 1.5px solid rgba(0, 40, 120, 0.08);
  padding: 0.65rem 0.5rem;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--body-text);
  cursor: pointer;
  transition: var(--transition-fast);
}

.radio-label input:checked + .radio-btn {
  background-color: var(--accent-blue-light);
  border-color: var(--accent-blue);
  color: var(--accent-blue);
}

.form-control-msg {
  height: 90px;
  resize: vertical;
}

.btn-form-submit {
  width: 100%;
  margin-top: 1rem;
}

/* Testimonials Section */
.testimonials-grid {
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
}

.testimonial-card {
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.quote-icon {
  color: var(--accent-blue-light);
  margin-bottom: 1rem;
}

.testimonial-quote {
  font-size: 1rem;
  color: var(--dark-text);
  font-style: italic;
  line-height: 1.6;
  flex-grow: 1;
  margin-bottom: 1.5rem;
}

.testimonial-meta {
  border-top: 1px solid var(--glass-border);
  padding-top: 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  background-color: var(--primary-blue);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
}

.testimonial-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--primary-blue);
}

.testimonial-role {
  font-size: 0.8rem;
  color: var(--body-text);
}

/* FAQs Section */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  gap: 1rem;
}

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

.faq-item:hover {
  border-color: rgba(1, 77, 222, 0.15);
  box-shadow: var(--shadow-sm);
}

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

.faq-trigger h3 {
  font-size: 1.05rem;
  color: var(--dark-text);
  font-weight: 700;
  padding-right: 1.5rem;
}

.faq-icon-wrapper {
  color: var(--accent-blue);
  transition: var(--transition-normal);
  flex-shrink: 0;
}

.faq-item.active {
  border-color: rgba(1, 77, 222, 0.2);
  box-shadow: var(--shadow-md);
}

.faq-item.active .faq-icon-wrapper {
  transform: rotate(45deg);
}

.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  padding: 0 1.5rem;
}

.faq-panel-content {
  padding-bottom: 1.5rem;
  font-size: 0.95rem;
  color: var(--body-text);
  border-top: 1px solid rgba(0, 40, 120, 0.04);
  padding-top: 1rem;
}

/* Final CTA Section */
.final-cta-section {
  background-color: var(--primary-blue);
  color: #ffffff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(1, 77, 222, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.final-cta-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.final-cta-content h2 {
  color: #ffffff;
  font-size: 2.75rem;
  margin-bottom: 1.5rem;
}

.final-cta-content p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2.5rem;
}

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

.final-cta-small {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
}

/* Footer Section */
.footer {
  background-color: #07132e;
  color: #a4b3d6;
  padding: 5rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer-col h4 {
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.footer-about {
  max-width: 320px;
}

.footer-about h3 {
  margin-bottom: 1rem;
  color: #ffffff;
}

.footer-links {
  list-style: none;
  display: grid;
  gap: 0.85rem;
}

.footer-link-item a {
  color: #a4b3d6;
  font-size: 0.9rem;
}

.footer-link-item a:hover {
  color: #ffffff;
}

.footer-contact {
  display: grid;
  gap: 1rem;
}

.contact-item {
  display: flex;
  gap: 0.75rem;
  font-size: 0.9rem;
}

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

.contact-label {
  display: block;
  font-weight: 600;
  color: #ffffff;
}

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

/* Modal Styling */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(7, 19, 46, 0.8);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-normal);
}

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

.modal-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 3rem;
  max-width: 500px;
  width: 90%;
  box-shadow: var(--shadow-lg);
  text-align: center;
  position: relative;
  transform: scale(0.9);
  transition: var(--transition-normal);
}

.modal-overlay.active .modal-card {
  transform: scale(1);
}

.modal-icon {
  width: 64px;
  height: 64px;
  background-color: rgba(37, 211, 102, 0.1);
  color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.modal-card h3 {
  color: var(--primary-blue);
  font-size: 1.6rem;
  margin-bottom: 0.75rem;
}

.modal-card p {
  color: var(--body-text);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

/* Animations */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(1, 77, 222, 0.4);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(1, 77, 222, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(1, 77, 222, 0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Styles */
@media (max-width: 1024px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 3.5rem;
    text-align: center;
  }
  
  .hero-content {
    padding-top: 0;
  }
  
  .hero-subheadline {
    text-align: center;
  }
  
  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-ctas {
    justify-content: center;
  }
  
  .hero-trust-indicators {
    justify-content: center;
  }
  
  .why-early-layout {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  
  .why-early-infographic {
    position: static;
  }
  
  .early-text h2 {
    text-align: center;
  }
  
  .choose-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .choose-info {
    position: static;
  }
  
  .choose-info h2 {
    text-align: center;
  }
  
  .offer-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .offer-info h2 {
    text-align: center;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .footer-col:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  html { font-size: 15px; }
  h1 { font-size: 2rem; line-height: 1.3; word-break: keep-all; }
  h2 { font-size: 1.5rem; line-height: 1.3; word-break: keep-all; }
  
  .logo svg {
    width: 180px;
  }
  
  .btn {
    white-space: normal;
    text-align: center;
    padding: 0.85rem 1.25rem;
    font-size: 0.9rem;
    width: 100%;
  }
  
  .section-padding { padding: 4.5rem 0; }
  .container { padding: 0 1.25rem; }
  
  .navbar { padding: 0.75rem 0; position: relative; }
  
  .hamburger-menu {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    outline: none;
    z-index: 1001;
  }
  
  .hamburger-menu.active svg {
    stroke: var(--accent-blue);
  }
  
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--bg-white);
    border-bottom: 1.5px solid var(--glass-border);
    padding: 1.5rem 2rem 2.5rem;
    gap: 1.25rem;
    box-shadow: var(--shadow-md);
    z-index: 998;
  }
  
  .nav-links.active {
    display: flex;
  }
  
  .nav-link {
    display: block;
    width: 100%;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 40, 120, 0.04);
  }
  
  .btn-nav {
    margin-top: 0.5rem;
    width: 100%;
  }
  
  .hero-dashboard {
    grid-template-columns: 1fr;
  }
  
  .criteria-grid {
    grid-template-columns: 1fr;
  }
  
  .form-grid-2 {
    grid-template-columns: 1fr;
  }
  
  .lead-form-card {
    padding: 2rem 1.5rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ==========================================
   SCROLL REVEAL & INTERACTIVE MICRO-EFFECTS
   ========================================== */

/* Scroll Reveal Core Classes */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger entrance delays for grids and bullet points */
.stagger-1 { transition-delay: 50ms; }
.stagger-2 { transition-delay: 100ms; }
.stagger-3 { transition-delay: 150ms; }
.stagger-4 { transition-delay: 200ms; }
.stagger-5 { transition-delay: 250ms; }
.stagger-6 { transition-delay: 300ms; }
.stagger-7 { transition-delay: 350ms; }
.stagger-8 { transition-delay: 400ms; }
.stagger-9 { transition-delay: 450ms; }

/* Global transition overrides for interactive objects */
.glass-card {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
              border-color 0.3s ease, 
              box-shadow 0.4s ease, 
              backdrop-filter 0.4s ease;
}

.btn {
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), 
              box-shadow 0.3s ease, 
              background-color 0.2s ease;
}

/* Custom interactive hover behaviors */
.glass-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 20px 35px rgba(0, 40, 120, 0.12);
  border-color: rgba(1, 77, 222, 0.18);
}

/* SVG icons spring rotation on hover */
.glass-card .card-icon-wrapper svg,
.glass-card .lc-icon svg,
.glass-card .timeline-icon svg {
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), color 0.3s ease;
}

.glass-card:hover .card-icon-wrapper svg,
.glass-card:hover .lc-icon svg,
.glass-card:hover .timeline-icon svg {
  transform: scale(1.2) rotate(4deg);
  color: var(--accent-blue);
}

/* Process Timeline step cards slide effect on hover */
.process-step {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.process-step:hover {
  transform: translateX(8px);
}

.process-step:hover::before {
  transform: scale(1.2);
  border-color: var(--accent-blue-hover);
}

/* FAQ item subtle lift and border hover interaction */
.faq-item {
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(1, 77, 222, 0.18);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

/* Mistake cards hover custom color shadow */
.mistake-card:hover {
  border-top-color: #ff3c10;
  box-shadow: 0 20px 35px rgba(255, 86, 48, 0.08);
}

/* Document check items micro hover */
.doc-item {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}

.doc-item:hover {
  transform: translateY(-3px) scale(1.02);
}

