/* ==========================================================================
   DESIGN V2 CSS STYLESHEET (AWS BRANDED LIGHT THEME)
   Startup Cloud Credits - Modern Layout matching vv2 style
   ========================================================================== */

:root {
  /* Color System - AWS Colors */
  --primary: hsl(221, 83%, 53%); /* AWS Blue */
  --primary-hover: hsl(224, 76%, 48%);
  --primary-light: hsl(217, 91%, 95%);
  --dark: #111827;
  --dark-light: #374151;
  --text-muted: #6b7280;
  --light: #F8FAFC;
  --white: #FFFFFF;
  --border: #E5E7EB;
  --border-focus: hsl(221, 83%, 53%);
  --accent: hsl(25, 95%, 53%); /* AWS Orange */
  --accent-hover: hsl(25, 95%, 45%);
  --accent-light: hsl(30, 100%, 96%);
  
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-lg: 0 10px 15px -3px rgba(17, 24, 39, 0.05), 0 4px 6px -2px rgba(17, 24, 39, 0.02);
  --shadow-xl: 0 20px 25px -5px rgba(17, 24, 39, 0.08), 0 10px 10px -5px rgba(17, 24, 39, 0.04);
  --shadow-glow: 0 0 25px rgba(59, 130, 246, 0.18);
  --shadow-glow-orange: 0 0 25px rgba(249, 115, 22, 0.18);
  
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --font-headings: 'Manrope', 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --container-max: 1280px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--light);
  color: var(--dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  outline: none;
}

button {
  cursor: pointer;
  background: none;
  border: none;
}

/* Common Layout Elements */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
}

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

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px auto;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 16px;
  letter-spacing: -0.025em;
}

.section-header p {
  font-size: 1.125rem;
  color: var(--text-muted);
}

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background-color: var(--primary-light);
  color: var(--primary);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.badge-orange {
  background-color: var(--accent-light);
  color: var(--accent);
  border-color: rgba(249, 115, 22, 0.3);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  transition: var(--transition);
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background-color: var(--white);
  color: var(--dark-light);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background-color: var(--light);
  border-color: #cbd5e1;
  transform: translateY(-1px);
}

.btn-dark {
  background-color: var(--dark);
  color: var(--white);
}

.btn-dark:hover {
  background-color: #1f2937;
  transform: translateY(-1px);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.875rem;
  border-radius: var(--radius-sm);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1.05rem;
}

.btn-full {
  width: 100%;
}

/* Cards */
.card {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(59, 130, 246, 0.4);
}

/* Forms */
.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--dark-light);
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background-color: var(--white);
  color: var(--dark);
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--border-focus);
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.15);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* Honeypot field (hidden from humans) */
.hp {
  display: none !important;
}

/* Navigation Header - STRICTLY LEFT ALIGNED LOGO */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(248, 250, 252, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.header-scrolled {
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-md);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  width: 100%;
}

.logo-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-right: auto;
}

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

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

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

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

.nav-link.active {
  color: var(--primary);
  font-weight: 600;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary);
  border-radius: var(--radius-full);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: 32px;
}

.menu-toggle {
  display: none;
  font-size: 1.5rem;
  color: var(--dark);
  cursor: pointer;
}

/* Home Hero Section */
.hero-section {
  padding: 80px 0;
  background-color: var(--white);
  border-bottom: 1px solid var(--border);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

.hero-content {
  padding-right: 16px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  line-height: 1.15;
}

.hero-title span {
  background: linear-gradient(135deg, var(--dark) 60%, var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 600px;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}

/* Hero Workflow Diagram */
.hero-visual {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-md);
  margin-top: 24px;
}

.workflow-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding: 20px 0;
}

.workflow-sources {
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 2;
}

.source-node {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 8px 16px;
  font-size: 0.875rem;
  font-weight: 600;
  width: 140px;
  box-shadow: var(--shadow-sm);
}

.workflow-arrows {
  flex-grow: 1;
  height: 120px;
  position: relative;
  min-width: 60px;
}

.workflow-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.flow-path {
  fill: none;
  stroke: var(--border);
  stroke-width: 2;
}

.flow-path-active {
  fill: none;
  stroke: var(--primary);
  stroke-width: 2.5;
  stroke-dasharray: 8 4;
  animation: flowAnimation 20s linear infinite;
}

@keyframes flowAnimation {
  to {
    stroke-dashoffset: -200;
  }
}

.workflow-engine {
  background-color: var(--primary-light);
  border: 2px solid var(--primary);
  border-radius: var(--radius-lg);
  padding: 20px;
  text-align: center;
  width: 190px;
  z-index: 2;
  box-shadow: var(--shadow-md);
  position: relative;
}

.workflow-engine::after {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border: 1px dashed var(--primary);
  border-radius: 24px;
  animation: rotateBorder 30s linear infinite;
}

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

.engine-title {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--dark);
  margin-bottom: 12px;
}

.engine-list {
  list-style: none;
  text-align: left;
  font-size: 0.75rem;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.engine-list li {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--dark-light);
}

.engine-list i {
  color: #10b981;
}

.workflow-destination {
  z-index: 2;
}

.dest-node {
  background-color: var(--dark);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 12px 20px;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 700;
  width: 140px;
  box-shadow: var(--shadow-md);
}

/* Hero Sticky Form Card */
.hero-form-card {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
}

.hero-form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--primary);
}

.form-header {
  margin-bottom: 24px;
}

.form-header h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.form-header p {
  color: var(--text-muted);
  font-size: 0.875rem;
}

/* Trusted Strip */
.trusted-section {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background-color: var(--white);
  padding: 40px 0;
}

.trusted-title {
  text-align: center;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 24px;
  font-weight: 600;
}

.logo-marquee-container {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.logo-marquee {
  display: flex;
  gap: 64px;
  align-items: center;
  width: max-content;
  animation: marquee 25s linear infinite;
}

.logo-marquee:hover {
  animation-play-state: paused;
}

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

.marquee-item {
  font-family: var(--font-headings);
  font-size: 1.35rem;
  font-weight: 800;
  color: #9ca3af;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.marquee-item:hover {
  color: var(--dark);
}

.marquee-item svg, .marquee-item img {
  width: 24px;
  height: 24px;
  opacity: 0.5;
  transition: var(--transition);
}

.marquee-item:hover svg, .marquee-item:hover img {
  opacity: 1;
}

/* Standalone section kicker (used on homepage & other sections) */
.section-kicker {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 56px;
  align-items: flex-end;
}

.package-table {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.package-table article {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}

.package-table article:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(59, 130, 246, 0.4);
}

.package-table article.recommended {
  border: 2px solid var(--primary);
  background: linear-gradient(to bottom, var(--white), var(--primary-light));
  box-shadow: var(--shadow-glow);
}

.package-table article.recommended::before {
  content: 'POPULAR';
  position: absolute;
  top: -12px;
  left: 24px;
  background-color: var(--primary);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  letter-spacing: 0.05em;
  box-shadow: var(--shadow-sm);
}

.package-tier {
  align-self: flex-start;
  padding: 4px 10px;
  background-color: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.package-table article.recommended .package-tier {
  background-color: var(--primary-light);
  color: var(--primary);
  border-color: rgba(59, 130, 246, 0.2);
}

.package-table article h3 {
  font-size: 1.65rem;
  margin-bottom: 12px;
  color: var(--primary);
}

.package-table article p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.package-table article ul {
  list-style: none;
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.package-table article li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 550;
  color: var(--dark-light);
}

.package-table article li::before {
  content: '';
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2310b981'%3E%3Cpath d='M9.86 18a1 1 0 0 1-.73-.32l-4.86-5.17a1 1 0 1 1 1.46-1.37l4.06 4.31L18.2 6.92a1 1 0 1 1 1.48 1.34l-9.06 9.42a1 1 0 0 1-.73.32z'/%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
}

/* Steps Section */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.step-card {
  position: relative;
  padding-top: 48px;
}

.step-number {
  position: absolute;
  top: 32px;
  left: 32px;
  width: 32px;
  height: 32px;
  background-color: var(--primary-light);
  color: var(--primary);
  font-family: var(--font-headings);
  font-weight: 800;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
}

.step-card h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
  margin-top: 16px;
}

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

/* Comparison Section */
.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.comparison-col {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}

.comparison-col.bad-process {
  border-left: 4px solid #ef4444;
}

.comparison-col.good-process {
  border-left: 4px solid var(--primary);
  background: linear-gradient(to bottom, var(--white), #f9fbfd);
}

.comparison-col h3 {
  font-size: 1.5rem;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.comparison-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comparison-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  font-size: 1rem;
}

.bad-process .comparison-list li {
  color: var(--dark-light);
}

.bad-process .comparison-list li i {
  color: #ef4444;
  font-size: 1.25rem;
}

.good-process .comparison-list li {
  color: var(--dark);
  font-weight: 600;
}

.good-process .comparison-list li i {
  color: #10b981;
  font-size: 1.25rem;
}

/* Core features workflow grid */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.feature-card {
  padding: 36px;
}

.feature-icon-wrapper {
  width: 48px;
  height: 48px;
  background-color: var(--primary-light);
  color: var(--primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 1.25rem;
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* FAQ Accordion */
.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.faq-item:hover {
  border-color: rgba(59, 130, 246, 0.5);
}

.faq-question {
  width: 100%;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--dark);
  text-align: left;
  background: none;
  border: none;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
  padding: 0 24px;
}

.faq-answer p {
  padding-bottom: 24px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  transition: max-height 0.3s cubic-bezier(1, 0, 1, 0);
}

.faq-icon {
  font-size: 1.25rem;
  transition: transform 0.25s ease;
  color: var(--text-muted);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: var(--primary-hover);
}

/* Final CTA Section */
.final-cta {
  background-color: var(--dark);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 80px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at top right, rgba(59, 130, 246, 0.12), transparent 50%);
  pointer-events: none;
}

.final-cta h2 {
  color: var(--white);
  font-size: 2.75rem;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.final-cta p {
  color: #9ca3af;
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto 32px auto;
}

.final-cta .btn {
  box-shadow: 0 4px 14px rgba(59, 130, 246, 0.3);
}

/* Page Hero Template */
.page-hero {
  background: linear-gradient(180deg, var(--white) 0%, var(--light) 100%);
  border-bottom: 1px solid var(--border);
  padding: clamp(60px, 8vw, 80px) 0;
  width: 100%;
}

.page-hero.compact {
  text-align: center;
}

.page-hero.compact .container {
  max-width: 900px;
  margin: 0 auto;
}

.page-hero.compact h1 {
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  margin-bottom: 16px;
}

.page-hero.compact p {
  font-size: 1.15rem;
  max-width: 700px;
  margin: 0 auto;
}

/* Service Detail Grid */
.service-grid, .service-detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.card, .detail-card {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.card:hover, .detail-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.card h2, .detail-card h2 {
  font-size: 1.35rem;
  margin-bottom: 16px;
  color: var(--primary);
}

.card p, .detail-card p {
  font-size: 0.95rem;
}

.detail-card ul {
  margin-top: 20px;
  padding-left: 20px;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.9rem;
}

.detail-card.accent {
  background-color: var(--primary);
  border: none;
  color: var(--white);
  box-shadow: var(--shadow-glow);
}

.detail-card.accent h2 {
  color: var(--white);
}

.detail-card.accent p {
  color: rgba(255, 255, 255, 0.9);
}

/* Premium Timeline Layout */
.dark-section {
  background-color: var(--dark);
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.dark-section .section-header h2, .dark-section .section-heading h2 {
  color: var(--white);
}

.premium-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 48px;
  position: relative;
}

.timeline-step {
  background-color: #1f2937;
  border: 1px solid #374151;
  border-radius: var(--radius-md);
  padding: 30px;
  transition: var(--transition);
}

.timeline-step:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
}

.timeline-step span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: var(--primary);
  color: var(--white);
  font-family: var(--font-headings);
  font-weight: 700;
  border-radius: 50%;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}

.timeline-step h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  color: var(--white);
}

.timeline-step p {
  font-size: 0.88rem;
  color: #9ca3af;
}

.notice-band {
  background-color: var(--accent-light);
  border: 1px solid rgba(249, 115, 22, 0.15);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  color: var(--dark-light);
  font-size: 0.95rem;
  margin: 40px clamp(20px, 5vw, 80px) 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.notice-band strong {
  color: var(--accent);
}

/* Success Section */
.success-section {
  background-color: var(--white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.check-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background-color: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-weight: 600;
  color: var(--dark-light);
  font-size: 0.95rem;
}

.check-list li::before {
  content: '';
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2310b981'%3E%3Cpath d='M9.86 18a1 1 0 0 1-.73-.32l-4.86-5.17a1 1 0 1 1 1.46-1.37l4.06 4.31L18.2 6.92a1 1 0 1 1 1.48 1.34l-9.06 9.42a1 1 0 0 1-.73.32z'/%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
}

/* Contact Layout styling */
.contact-hero {
  padding: 80px 0;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.trust-row span {
  background-color: var(--primary-light);
  color: var(--primary);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.trust-row span::before {
  content: '✓';
  font-weight: 700;
}

.contact-card {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-lg);
}

/* Eyebrow / Kicker text */
.eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--primary);
  margin-bottom: 12px;
}

/* Split Section Layout */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* Process List Component */
.process-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.process-list article {
  display: flex;
  gap: 20px;
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.process-list article:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.process-list article span {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background-color: var(--primary-light);
  color: var(--primary);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-headings);
  font-weight: 800;
  font-size: 0.95rem;
}

.process-list article h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--dark);
}

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

/* Responsive 2-Column package table (for eligibility page) */
.package-table-2col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* Mobile CTA Helper */
.mobile-cta-only {
  display: none;
}

/* Unified Contact Grid */
.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.contact-info-col {
  padding-right: 32px;
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
  .hero-grid, .contact-hero, .contact-grid, .success-section, .split-section, .comparison-grid {
    grid-template-columns: 1fr !important;
    gap: 40px;
  }
  
  .package-table, .package-table-2col {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .metrics-band {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-container {
    padding: 0 20px;
  }
  
  .logo-img {
    height: 34px !important;
  }
  
  .menu-toggle {
    display: block;
  }
  
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: calc(100vh - 80px);
    background-color: var(--white) !important;
    flex-direction: column;
    justify-content: flex-start;
    padding: 40px 20px;
    gap: 24px;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 99;
    overflow-y: auto;
    border-top: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
  }
  
  .nav-menu.mobile-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .nav-link {
    font-size: 1.2rem;
    width: 100%;
    text-align: center;
    padding: 12px 0;
  }
  
  .nav-cta {
    display: none; /* In mobile, CTA is hidden or placed inside menu */
  }
  
  .mobile-cta-only {
    display: block;
  }
  
  .section-kicker {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .evidence-grid, .feature-grid, .steps-grid {
    grid-template-columns: 1fr;
  }
  
  .form-grid {
    grid-template-columns: 1fr;
  }
  
  .package-table, .package-table-2col, .package-grid {
    grid-template-columns: 1fr;
  }
  
  .premium-timeline {
    grid-template-columns: 1fr;
  }
  
  .service-grid, .service-detail-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-proof {
    grid-template-columns: 1fr !important;
    gap: 12px;
  }
  
  .section {
    padding: 60px 0;
  }
  
  .final-cta {
    margin: 0;
    border-radius: 0;
    padding: 60px 24px;
  }
}

@media (max-width: 580px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  
  .metrics-band {
    grid-template-columns: 1fr;
  }
  
  h1 {
    font-size: 2.2rem !important;
  }
  
  h2 {
    font-size: 1.8rem !important;
  }
}

/* Footer styling */
.footer, .site-footer {
  background-color: var(--white);
  border-top: 1px solid var(--border);
  padding: 80px 0 48px 0;
  width: 100%;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  margin-bottom: 64px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-top: 16px;
  margin-bottom: 24px;
}

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

.social-link {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
}

.social-link:hover {
  color: var(--dark);
  border-color: #cbd5e1;
  background-color: var(--light);
}

.footer-col h2, .footer-col h4 {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 24px;
}

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

.footer-links a {
  font-size: 0.95rem;
  color: var(--dark-light);
}

.footer-links a:hover {
  color: var(--dark);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.footer-legal {
  display: flex;
  gap: 24px;
}
