﻿:root {
  --verve-primary: #1D4ED8;
  --verve-primary-hover: #1E40AF;
  --verve-primary-light: #EFF6FF;
  --verve-accent: #0284C7;
  --verve-accent-light: #E0F2FE;
  --verve-dark: #0F172A;
  --verve-gray-900: #1E293B;
  --verve-gray-700: #334155;
  --verve-gray-500: #64748B;
  --verve-gray-200: #E2E8F0;
  --verve-gray-100: #F1F5F9;
  --verve-gray-50: #F8FAFC;
  --verve-white: #FFFFFF;
  --verve-success: #10B981;
  --verve-font-sans: 'Plus Jakarta Sans', 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --verve-shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --verve-shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --verve-shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --verve-shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --verve-radius-sm: 6px;
  --verve-radius-md: 12px;
  --verve-radius-lg: 20px;
  --verve-radius-full: 9999px;
  --verve-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--verve-font-sans);
  color: var(--verve-gray-700);
  background-color: var(--verve-white);
  line-height: 1.75;
  letter-spacing: 0.02em;
  overflow-x: hidden;
}

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

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

button, input, select, textarea {
  font: inherit;
}

.verve-container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.verve-section {
  padding-top: 96px;
  padding-bottom: 96px;
  position: relative;
}

.verve-section--alt {
  background-color: var(--verve-gray-50);
}

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

.verve-header-tag {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--verve-primary);
  background-color: var(--verve-primary-light);
  padding: 6px 14px;
  border-radius: var(--verve-radius-full);
  margin-bottom: 16px;
}

.verve-section--dark .verve-header-tag {
  color: #93C5FD;
  background-color: rgba(37, 99, 235, 0.2);
}

.verve-heading-2 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.3;
  color: var(--verve-dark);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.verve-section--dark .verve-heading-2 {
  color: var(--verve-white);
}

.verve-subheading {
  font-size: 1.125rem;
  color: var(--verve-gray-500);
  max-width: 720px;
  margin-bottom: 56px;
  line-height: 1.8;
}

.verve-section--dark .verve-subheading {
  color: #94A3B8;
}

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

.verve-text-center .verve-subheading {
  margin-left: auto;
  margin-right: auto;
}

/* --- NAV --- */
.verve-nav-bar {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  z-index: 1000;
  border-bottom: 1px solid var(--verve-gray-200);
  transition: var(--verve-transition);
}

.verve-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.verve-brand-logo {
  display: flex;
  align-items: center;
  height: 48px;
}

.verve-brand-logo img {
  height: 44px;
  width: auto;
}

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

.verve-nav-link {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--verve-gray-700);
}

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

.verve-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--verve-radius-md);
  cursor: pointer;
  border: none;
  transition: var(--verve-transition);
  text-align: center;
  line-height: 1.2;
}

.verve-btn--primary {
  background-color: var(--verve-primary);
  color: var(--verve-white);
  box-shadow: 0 4px 12px rgba(29, 78, 216, 0.25);
}

.verve-btn--primary:hover {
  background-color: var(--verve-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(29, 78, 216, 0.35);
}

.verve-btn--secondary {
  background-color: var(--verve-white);
  color: var(--verve-dark);
  border: 1px solid var(--verve-gray-200);
}

.verve-btn--secondary:hover {
  background-color: var(--verve-gray-50);
  border-color: var(--verve-gray-500);
}

.verve-btn--block {
  width: 100%;
}

.verve-mobile-toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}

.verve-mobile-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background-color: var(--verve-dark);
  margin: 5px 0;
  border-radius: 2px;
  transition: var(--verve-transition);
}/* --- HERO (BENTO-MODULAR ARCHETYPE) --- */
.verve-hero {
  padding: 60px 0 96px;
  background: linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 100%);
  position: relative;
  overflow: hidden;
}

.verve-bento-hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 28px;
  align-items: stretch;
}

.verve-bento-card {
  background: var(--verve-white);
  border: 1px solid var(--verve-gray-200);
  border-radius: var(--verve-radius-lg);
  padding: 40px;
  position: relative;
  box-shadow: var(--verve-shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.verve-bento-card--lead {
  background: linear-gradient(135deg, #FFFFFF 0%, #F1F5F9 100%);
  border: 1px solid #CBD5E1;
  box-shadow: var(--verve-shadow-md);
}

.verve-hero-title {
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  font-weight: 800;
  line-height: 1.25;
  color: var(--verve-dark);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.verve-hero-title span {
  color: var(--verve-primary);
  display: block;
}

.verve-hero-description {
  font-size: 1.125rem;
  color: var(--verve-gray-700);
  line-height: 1.8;
  margin-bottom: 36px;
}

.verve-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
}

.verve-trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--verve-gray-200);
}

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

.verve-trust-number {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--verve-primary);
}

.verve-trust-label {
  font-size: 0.8125rem;
  color: var(--verve-gray-500);
  font-weight: 600;
}

.verve-bento-side-grid {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 24px;
}

.verve-bento-media-card {
  padding: 0;
  overflow: hidden;
  position: relative;
  min-height: 260px;
}

.verve-bento-media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.verve-bento-media-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(0deg, rgba(15, 23, 42, 0.85) 0%, transparent 100%);
  color: var(--verve-white);
  padding: 24px 20px 16px;
  font-size: 0.875rem;
  font-weight: 600;
}

.verve-bento-feature-card {
  background-color: var(--verve-dark);
  color: var(--verve-white);
  border: none;
}

.verve-bento-feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: #93C5FD;
}

.verve-bento-feature-card p {
  font-size: 0.9375rem;
  color: #CBD5E1;
  line-height: 1.6;
}

/* --- PROBLEM SECTION --- */
.verve-problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.verve-problem-card {
  background: var(--verve-white);
  border: 1px solid var(--verve-gray-200);
  border-radius: var(--verve-radius-md);
  padding: 28px;
  box-shadow: var(--verve-shadow-sm);
  position: relative;
  border-top: 4px solid #EF4444;
}

.verve-problem-icon {
  width: 44px;
  height: 44px;
  background-color: #FEE2E2;
  color: #EF4444;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  margin-bottom: 16px;
  font-weight: 800;
  font-size: 1.25rem;
}

.verve-problem-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--verve-dark);
  margin-bottom: 12px;
}

.verve-problem-card p {
  font-size: 0.9375rem;
  color: var(--verve-gray-500);
  line-height: 1.7;
}

/* --- VALUE PROP / BENEFITS GRID (8 BLOCKS) --- */
.verve-benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.verve-benefit-card {
  background: var(--verve-white);
  border: 1px solid var(--verve-gray-200);
  border-radius: var(--verve-radius-lg);
  padding: 32px;
  transition: var(--verve-transition);
  position: relative;
}

.verve-benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--verve-shadow-lg);
  border-color: #BFDBFE;
}

.verve-benefit-icon-wrapper {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background-color: var(--verve-primary-light);
  color: var(--verve-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.verve-benefit-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--verve-dark);
  margin-bottom: 12px;
}

.verve-benefit-card p {
  font-size: 0.9375rem;
  color: var(--verve-gray-700);
  line-height: 1.75;
}/* --- SERVICES & FEATURES (6 DETAILED MODULES) --- */
.verve-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 32px;
}

.verve-service-card {
  background: var(--verve-white);
  border: 1px solid var(--verve-gray-200);
  border-radius: var(--verve-radius-lg);
  overflow: hidden;
  box-shadow: var(--verve-shadow-sm);
  display: flex;
  flex-direction: column;
}

.verve-service-header {
  padding: 32px 32px 20px;
  border-bottom: 1px solid var(--verve-gray-100);
}

.verve-service-tag {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--verve-accent);
  background-color: var(--verve-accent-light);
  padding: 4px 10px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 12px;
}

.verve-service-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--verve-dark);
  line-height: 1.3;
}

.verve-service-body {
  padding: 24px 32px 32px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.verve-service-body p {
  font-size: 0.95rem;
  color: var(--verve-gray-700);
  line-height: 1.75;
  margin-bottom: 24px;
}

.verve-service-list {
  list-style: none;
  background-color: var(--verve-gray-50);
  padding: 16px 20px;
  border-radius: var(--verve-radius-md);
  margin-bottom: 20px;
}

.verve-service-list li {
  font-size: 0.875rem;
  color: var(--verve-gray-900);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.verve-service-list li:last-child {
  margin-bottom: 0;
}

.verve-service-list li svg {
  color: var(--verve-primary);
  flex-shrink: 0;
}

/* --- PROCESS TIMELINE (5 PHASES) --- */
.verve-timeline {
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 900px;
  margin: 0 auto;
}

.verve-timeline-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  background: var(--verve-white);
  border: 1px solid var(--verve-gray-200);
  border-radius: var(--verve-radius-lg);
  padding: 28px 32px;
  box-shadow: var(--verve-shadow-sm);
  align-items: start;
}

.verve-timeline-num {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--verve-primary) 0%, var(--verve-accent) 100%);
  color: var(--verve-white);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
}

.verve-timeline-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--verve-dark);
  margin-bottom: 8px;
}

.verve-timeline-content p {
  font-size: 0.95rem;
  color: var(--verve-gray-700);
  line-height: 1.7;
}

/* --- CASE SCENARIOS (3 DETAILED PROFILES) --- */
.verve-scenarios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

.verve-scenario-card {
  background: var(--verve-white);
  border: 1px solid var(--verve-gray-200);
  border-radius: var(--verve-radius-lg);
  overflow: hidden;
  box-shadow: var(--verve-shadow-sm);
}

.verve-scenario-img-wrap {
  height: 200px;
  position: relative;
}

.verve-scenario-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.verve-scenario-pill {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(15, 23, 42, 0.85);
  color: var(--verve-white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: var(--verve-radius-full);
}

.verve-scenario-content {
  padding: 28px;
}

.verve-scenario-content h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--verve-dark);
  margin-bottom: 12px;
}

.verve-scenario-content p {
  font-size: 0.9375rem;
  color: var(--verve-gray-700);
  line-height: 1.75;
  margin-bottom: 16px;
}

.verve-scenario-highlight {
  background-color: var(--verve-primary-light);
  border-left: 4px solid var(--verve-primary);
  padding: 12px 16px;
  border-radius: 0 var(--verve-radius-sm) var(--verve-radius-sm) 0;
  font-size: 0.875rem;
  color: var(--verve-primary-hover);
  font-weight: 600;
}/* --- INTERACTIVE READINESS QUIZ --- */
.verve-quiz-box {
  background: var(--verve-white);
  border: 1px solid var(--verve-gray-200);
  border-radius: var(--verve-radius-lg);
  padding: 40px;
  max-width: 840px;
  margin: 0 auto;
  box-shadow: var(--verve-shadow-md);
}

.verve-quiz-question {
  margin-bottom: 28px;
}

.verve-quiz-q-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--verve-dark);
  margin-bottom: 16px;
}

.verve-quiz-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.verve-quiz-opt {
  display: flex;
  align-items: center;
  padding: 14px 18px;
  border: 1px solid var(--verve-gray-200);
  border-radius: var(--verve-radius-md);
  cursor: pointer;
  transition: var(--verve-transition);
  font-size: 0.9375rem;
  color: var(--verve-gray-700);
}

.verve-quiz-opt:hover {
  background-color: var(--verve-primary-light);
  border-color: var(--verve-primary);
}

.verve-quiz-opt input {
  margin-right: 12px;
}

.verve-quiz-result {
  display: none;
  background-color: #ECFDF5;
  border: 1px solid #A7F3D0;
  border-radius: var(--verve-radius-md);
  padding: 24px;
  margin-top: 24px;
  text-align: center;
}

.verve-quiz-result h4 {
  font-size: 1.25rem;
  color: #065F46;
  margin-bottom: 8px;
}

.verve-quiz-result p {
  font-size: 0.9375rem;
  color: #047857;
  margin-bottom: 16px;
}

/* --- GLOSSARY & COMPARISON --- */
.verve-glossary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.verve-glossary-item {
  background: var(--verve-white);
  border: 1px solid var(--verve-gray-200);
  border-radius: var(--verve-radius-md);
  padding: 24px;
}

.verve-glossary-term {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--verve-primary);
  margin-bottom: 8px;
}

.verve-glossary-def {
  font-size: 0.9rem;
  color: var(--verve-gray-700);
  line-height: 1.7;
}

.verve-compare-table-wrap {
  overflow-x: auto;
  background: var(--verve-white);
  border-radius: var(--verve-radius-lg);
  border: 1px solid var(--verve-gray-200);
  box-shadow: var(--verve-shadow-sm);
}

.verve-compare-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.verve-compare-table th, .verve-compare-table td {
  padding: 20px 24px;
  border-bottom: 1px solid var(--verve-gray-200);
  font-size: 0.9375rem;
}

.verve-compare-table th {
  background-color: var(--verve-gray-50);
  font-weight: 700;
  color: var(--verve-dark);
}

.verve-compare-table tr:last-child td {
  border-bottom: none;
}

.verve-badge-pos {
  color: #059669;
  font-weight: 700;
}

.verve-badge-neg {
  color: #94A3B8;
}

/* --- TESTIMONIALS (6 DETAILED VOICES) --- */
.verve-reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

.verve-review-card {
  background: var(--verve-white);
  border: 1px solid var(--verve-gray-200);
  border-radius: var(--verve-radius-lg);
  padding: 32px;
  box-shadow: var(--verve-shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.verve-review-rating {
  color: #F59E0B;
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.verve-review-text {
  font-size: 0.95rem;
  color: var(--verve-gray-700);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

.verve-reviewer {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--verve-gray-100);
}

.verve-reviewer-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.verve-reviewer-info h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--verve-dark);
}

.verve-reviewer-info p {
  font-size: 0.8125rem;
  color: var(--verve-gray-500);
}/* --- FAQ ACCORDION (12 ITEMS IN 2 THEMED GROUPS) --- */
.verve-faq-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.verve-faq-group h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--verve-dark);
  margin-bottom: 20px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--verve-primary);
}

.verve-faq-item {
  background: var(--verve-white);
  border: 1px solid var(--verve-gray-200);
  border-radius: var(--verve-radius-md);
  margin-bottom: 12px;
  overflow: hidden;
}

.verve-faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 18px 20px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--verve-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.verve-faq-question svg {
  transition: var(--verve-transition);
  flex-shrink: 0;
  margin-left: 12px;
}

.verve-faq-item.active .verve-faq-question svg {
  transform: rotate(180deg);
}

.verve-faq-answer {
  display: none;
  padding: 0 20px 20px;
  font-size: 0.9rem;
  color: var(--verve-gray-700);
  line-height: 1.75;
  border-top: 1px solid var(--verve-gray-100);
  padding-top: 14px;
}

.verve-faq-item.active .verve-faq-answer {
  display: block;
}

/* --- SPLIT LEAD FORM SECTION --- */
.verve-form-split-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  background: var(--verve-white);
  border: 1px solid var(--verve-gray-200);
  border-radius: var(--verve-radius-lg);
  box-shadow: var(--verve-shadow-xl);
  overflow: hidden;
}

.verve-form-sidebar {
  background: linear-gradient(135deg, var(--verve-dark) 0%, #1E293B 100%);
  color: var(--verve-white);
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.verve-form-sidebar h3 {
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 20px;
  color: #F8FAFC;
}

.verve-form-sidebar p {
  color: #94A3B8;
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 32px;
}

.verve-form-steps-list {
  list-style: none;
}

.verve-form-steps-list li {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  font-size: 0.875rem;
  color: #E2E8F0;
}

.verve-step-badge {
  width: 28px;
  height: 28px;
  background-color: var(--verve-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.verve-form-main {
  padding: 48px;
}

.verve-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.verve-form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.verve-form-group--full {
  grid-column: span 2;
}

.verve-form-label {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--verve-dark);
  margin-bottom: 8px;
}

.verve-form-label span {
  color: #EF4444;
  margin-left: 4px;
}

.verve-input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--verve-gray-200);
  border-radius: var(--verve-radius-md);
  font-size: 0.95rem;
  color: var(--verve-dark);
  background-color: var(--verve-white);
  transition: var(--verve-transition);
}

.verve-input:focus {
  outline: none;
  border-color: var(--verve-primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.verve-consent-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.8125rem;
  color: var(--verve-gray-500);
  line-height: 1.6;
  margin-bottom: 24px;
}

.verve-consent-check input {
  margin-top: 3px;
}

.verve-consent-check a {
  color: var(--verve-primary);
  text-decoration: underline;
}

.verve-form-status {
  display: none;
  padding: 16px;
  border-radius: var(--verve-radius-md);
  font-size: 0.95rem;
  font-weight: 600;
  margin-top: 20px;
  text-align: center;
}

.verve-form-status--success {
  background-color: #ECFDF5;
  color: #065F46;
  border: 1px solid #A7F3D0;
}

.verve-form-status--error {
  background-color: #FEF2F2;
  color: #991B1B;
  border: 1px solid #FECACA;
}

/* --- FOOTER --- */
.verve-footer {
  background-color: var(--verve-dark);
  color: #94A3B8;
  padding: 80px 0 40px;
  border-top: 1px solid #1E293B;
  font-size: 0.875rem;
}

.verve-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 60px;
}

.verve-footer-col h4 {
  color: var(--verve-white);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.verve-footer-links {
  list-style: none;
}

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

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

.verve-footer-bottom {
  padding-top: 32px;
  border-top: 1px solid #1E293B;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.verve-operator-badge {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 16px 20px;
  border-radius: var(--verve-radius-md);
  margin-top: 16px;
  line-height: 1.6;
}

/* --- COOKIE BANNER --- */
.verve-cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  max-width: 420px;
  background: var(--verve-white);
  border: 1px solid var(--verve-gray-200);
  border-radius: var(--verve-radius-lg);
  padding: 24px;
  box-shadow: var(--verve-shadow-xl);
  z-index: 9999;
  display: none;
}

.verve-cookie-content h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--verve-dark);
  margin-bottom: 8px;
}

.verve-cookie-content p {
  font-size: 0.8125rem;
  color: var(--verve-gray-700);
  line-height: 1.6;
  margin-bottom: 16px;
}

.verve-cookie-actions {
  display: flex;
  gap: 10px;
}

/* --- RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 1024px) {
  .verve-bento-hero-grid,
  .verve-form-split-wrap,
  .verve-faq-layout,
  .verve-footer-grid {
    grid-template-columns: 1fr;
  }
  .verve-form-group--full {
    grid-column: span 1;
  }
  .verve-form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .verve-nav-links {
    display: none;
  }
  .verve-mobile-toggle {
    display: block;
  }
  .verve-nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: var(--verve-white);
    padding: 24px;
    border-bottom: 1px solid var(--verve-gray-200);
    box-shadow: var(--verve-shadow-lg);
  }
  .verve-timeline-step {
    grid-template-columns: 1fr;
  }
  .verve-trust-strip {
    grid-template-columns: 1fr;
  }
  .verve-section {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
