/* ===== Reset & Base ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #004b8c;
  --primary-light: #1a6bb5;
  --primary-dark: #003366;
  --secondary: #2AA89A;
  --secondary-light: #3DBDAE;
  --highlight: #5BA3D9;
  --highlight-dark: #4691C7;
  --accent: #E8F4FD;
  --neutral-50: #F8FAFB;
  --neutral-100: #F0F4F7;
  --neutral-200: #E1E8ED;
  --neutral-300: #C5D0D8;
  --neutral-400: #8A9BAA;
  --neutral-500: #5F7385;
  --neutral-600: #3D5166;
  --neutral-700: #2A3B4C;
  --neutral-800: #1A2836;
  --neutral-900: #0F1922;
  --white: #ffffff;
}

html {
  font-size: 20px;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--neutral-300) transparent;
}

html::-webkit-scrollbar {
  width: 6px;
}

html::-webkit-scrollbar-track {
  background: transparent;
}

html::-webkit-scrollbar-thumb {
  background: var(--neutral-300);
  border-radius: 3px;
}

html::-webkit-scrollbar-thumb:hover {
  background: var(--neutral-400);
}

body {
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--neutral-800);
  background: var(--white);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

main {
  flex: 1;
}

/* ===== Container ===== */
.container {
  max-width: 1536px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container { padding: 0 1.5rem; }
}

@media (min-width: 1024px) {
  .container { padding: 0 2rem; }
}

/* ===== Header ===== */
.header {
  background: var(--white);
  border-bottom: 1px solid var(--neutral-200);
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: var(--primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1.375rem;
}

.logo-text {
  display: block;
}

.logo-name {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--neutral-800);
  line-height: 1.2;
}

.logo-sub {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--neutral-800);
  line-height: 1.2;
}

@media (min-width: 768px) {
  .logo-name { font-size: 1.5rem; }
  .logo-sub { font-size: 1.5rem; }
}

/* Desktop Nav */
.nav-desktop {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

@media (min-width: 1024px) {
  .nav-desktop { display: flex; }
}

.nav-link {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--neutral-600);
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
  background: var(--accent);
}

/* Mobile Menu Button */
.menu-btn {
  display: flex;
  padding: 0.5rem;
  border: none;
  background: none;
  border-radius: 6px;
  color: var(--neutral-600);
  cursor: pointer;
  transition: color 0.2s, background 0.2s;
}

.menu-btn:hover {
  color: var(--primary);
  background: var(--accent);
}

@media (min-width: 1024px) {
  .menu-btn { display: none; }
}

.menu-btn svg {
  width: 24px;
  height: 24px;
}

/* Mobile Nav */
.nav-mobile {
  display: none;
  border-top: 1px solid var(--neutral-200);
  background: var(--white);
  padding: 0.75rem 1rem;
}

.nav-mobile.open {
  display: block;
}

@media (min-width: 1024px) {
  .nav-mobile { display: none !important; }
}

.nav-mobile a {
  display: block;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--neutral-600);
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}

.nav-mobile a:hover {
  color: var(--primary);
  background: var(--accent);
}

/* ===== Footer ===== */
.footer {
  background: var(--primary-dark);
  color: var(--white);
}

.footer-bottom {
  padding: 1rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: center;
  }
}

.footer-bottom p {
  color: var(--neutral-400);
  font-size: 0.875rem;
}

/* ===== Page Header ===== */
.page-header {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
  color: var(--white);
  padding: 2.5rem 0;
}

@media (min-width: 768px) {
  .page-header { padding: 3rem 0; }
}

.page-header h1 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .page-header h1 { font-size: 2.25rem; }
}

.page-header p {
  color: #bfdbfe;
  font-size: 1rem;
  line-height: 1.7;
  max-width: 44rem;
}

@media (min-width: 768px) {
  .page-header p { font-size: 1.125rem; }
}

.page-header-expanded {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
  padding: 2.5rem 0;
}

@media (min-width: 768px) {
  .page-header-expanded { padding: 3rem 0; }
}

.two-col.two-col-light h2 {
  color: var(--white);
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .two-col.two-col-light h2 { font-size: 2.25rem; }
}

.two-col.two-col-light p {
  color: #bfdbfe;
  font-size: 1rem;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .two-col.two-col-light p { font-size: 1.125rem; }
}

/* ===== Hero Section ===== */
.hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
  color: var(--white);
  padding: 2.5rem 0;
}

@media (min-width: 768px) {
  .hero { padding: 3rem 0; }
}

.hero h1 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .hero h1 { font-size: 2.25rem; }
}

.hero p {
  font-size: 1rem;
  color: #bfdbfe;
  line-height: 1.7;
  max-width: 44rem;
}

@media (min-width: 768px) {
  .hero p { font-size: 1.125rem; }
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.75rem;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: box-shadow 0.3s, background 0.3s;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.btn:hover {
  box-shadow: 0 16px 48px rgba(0,0,0,0.18);
}

.btn-primary {
  background: #7EEAE3;
  color: var(--primary-dark);
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  transition: all 0.3s;
}

.btn-primary:hover {
  background: #5DD8D0;
  box-shadow: 0 12px 36px rgba(0,0,0,0.14);
}

.btn-secondary {
  background: #7EEAE3;
  color: var(--primary-dark);
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.btn-secondary:hover {
  background: #5DD8D0;
  box-shadow: 0 12px 36px rgba(0,0,0,0.14);
}

.btn-outline {
  background: var(--white);
  color: var(--primary);
  border: 1px solid var(--neutral-200);
}

.btn-outline:hover {
  background: var(--neutral-50);
  box-shadow: 0 16px 48px rgba(0,0,0,0.18);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

/* ===== Section Utilities ===== */
.section {
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .section { padding: 4rem 0; }
}

.section-gray { background: var(--neutral-50); }
.section-light-blue { background: var(--accent); }
.section-accent { background: var(--accent); }
.section-white { background: var(--white); }

.section-dark {
  background: var(--neutral-800);
  color: var(--white);
  padding: 3.5rem 0;
}

@media (min-width: 768px) {
  .section-dark { padding: 4.5rem 0; }
}

.section-dark .section-title {
  color: var(--white);
}

.section-dark p {
  color: var(--neutral-300);
}

.section-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--neutral-800);
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .section-title { font-size: 2.25rem; }
}

.section-subtitle {
  color: var(--neutral-700);
  font-size: 1.125rem;
  max-width: 56rem;
}

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mb-4 { margin-bottom: 1rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }

/* ===== Card Grid ===== */
.grid {
  display: grid;
  row-gap: 3.5rem;
  column-gap: 4rem;
}

.grid-2 { grid-template-columns: 1fr; }

@media (min-width: 768px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
}
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }

/* ===== Cards ===== */
.card {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid var(--neutral-200);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  transition: box-shadow 0.3s, transform 0.3s;
}

.card:hover {
  box-shadow: 0 16px 48px rgba(0,0,0,0.18);
}

.card-icon {
  width: 48px;
  height: 48px;
  background: #7EEAE3;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 1.25rem;
}

.card-icon svg {
  width: 32px;
  height: 32px;
}

.card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--neutral-800);
  margin-bottom: 0.75rem;
}

.card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.card-header .card-icon {
  margin-bottom: 0;
  flex-shrink: 0;
}

.card-header h3 {
  margin-bottom: 0;
}

.card p {
  color: var(--neutral-600);
  font-size: 1.125rem;
  line-height: 1.7;
}

.card-detail {
  font-size: 0.875rem;
  color: var(--neutral-400);
  margin-bottom: 0.5rem;
  margin-top: 1rem;
}

.card-action {
  color: var(--primary);
  font-weight: 500;
}

/* ===== Plan Steps ===== */
.step-number {
  width: 64px;
  height: 64px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1.5rem;
  margin: 0 auto 1.5rem;
}

/* ===== Chevron Track ===== */
.chevron-track {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 768px) {
  .chevron-track {
    flex-direction: row;
    gap: 0.5rem;
  }
}

.chevron-step {
  flex: 1;
  position: relative;
  background: var(--primary);
  color: var(--white);
  padding: 1.5rem 1.5rem 1.5rem 2rem;
}

@media (min-width: 768px) {
  .chevron-step {
    clip-path: polygon(0 0, calc(100% - 40px) 0, 100% 50%, calc(100% - 40px) 100%, 0 100%, 40px 50%);
    padding: 2rem 2.5rem 2rem 3.5rem;
  }

  .chevron-first {
    clip-path: polygon(0 0, calc(100% - 40px) 0, 100% 50%, calc(100% - 40px) 100%, 0 100%, 40px 50%);
    padding-left: 3.5rem;
  }

  .chevron-last {
    clip-path: polygon(0 0, calc(100% - 40px) 0, 100% 50%, calc(100% - 40px) 100%, 0 100%, 40px 50%);
  }
}

.chevron-step:nth-child(1) { background: var(--primary-light); }
.chevron-step:nth-child(2) { background: var(--primary); }
.chevron-step:nth-child(3) { background: var(--primary-dark); }

.chevron-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--white);
}

.chevron-content p {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
}


/* ===== Comparison (Before/After) ===== */
.comparison-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .comparison-grid { grid-template-columns: 1fr 1fr; }
}

.comparison-card {
  background: var(--neutral-50);
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid var(--neutral-200);
}

.comparison-card-alt {
  background: var(--accent);
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid rgba(42,168,154,0.2);
}

.comparison-label {
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.comparison-label-muted {
  color: var(--neutral-400);
}

.comparison-label-primary {
  color: var(--primary);
}

.comparison-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.5rem 0;
}

.comparison-item svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.comparison-item-negative svg {
  color: #f87171;
}

.comparison-item-negative span {
  color: var(--neutral-500);
}

.comparison-item-positive svg {
  color: var(--secondary);
}

.comparison-item-positive span {
  color: var(--neutral-700);
}

/* ===== CTA Section ===== */
.cta {
  text-align: center;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.cta-buttons .btn {
  min-width: 14rem;
  text-align: center;
  justify-content: center;
}

@media (min-width: 640px) {
  .cta-buttons { flex-direction: row; }
}

/* ===== Two Column Layout ===== */
.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .two-col { grid-template-columns: 1fr 1fr; gap: 5rem; }
}

.two-col h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--neutral-800);
  margin-bottom: 1.5rem;
}

.two-col p {
  color: var(--neutral-600);
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

/* ===== Values (About) ===== */
.value-number {
  width: 48px;
  height: 48px;
  background: var(--primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 1.25rem;
}

/* ===== Team (About) ===== */
.team-card {
  background: var(--neutral-50);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  border: 1px solid var(--neutral-200);
}

.team-avatar {
  width: 96px;
  height: 96px;
  background: var(--neutral-200);
  border-radius: 50%;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-avatar svg {
  width: 48px;
  height: 48px;
  color: var(--neutral-400);
}

.team-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--neutral-800);
  margin-bottom: 0.25rem;
}

.team-role {
  color: var(--secondary);
  font-weight: 500;
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}

.team-card p:last-child {
  color: var(--neutral-500);
  font-size: 0.875rem;
  line-height: 1.7;
}

/* ===== Feature Row (Product) ===== */
.feature-row {
  display: flex;
  gap: 1.25rem;
}

.feature-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: var(--accent);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.feature-icon svg {
  width: 28px;
  height: 28px;
}

.feature-row h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--neutral-800);
  margin-bottom: 0.5rem;
}

.feature-row p {
  color: var(--neutral-500);
  line-height: 1.7;
}

/* ===== Spec Card (Product) ===== */
.spec-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid var(--neutral-200);
}

.spec-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1.25rem;
}

.spec-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--neutral-600);
  padding: 0.375rem 0;
}

.spec-list li svg {
  width: 20px;
  height: 20px;
  color: var(--secondary);
  flex-shrink: 0;
}

/* ===== Contact Form ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .contact-grid { grid-template-columns: 3fr 2fr; gap: 4rem; }
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}

label {
  display: block;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--neutral-600);
  margin-bottom: 0.5rem;
}

input, select, textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--neutral-300);
  border-radius: 8px;
  font-family: inherit;
  font-size: 1.125rem;
  color: var(--neutral-600);
  font-size: 1rem;
  color: var(--neutral-800);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  background: var(--white);
}

input:focus, select:focus, textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(11,61,107,0.1);
}

textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  border: none;
  border-radius: 8px;
  background: #7EEAE3;
  color: var(--primary-dark);
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.form-submit:hover {
  background: #5DD8D0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* ===== Contact Info Sidebar ===== */
.contact-info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
}

.contact-info-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--accent);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.contact-info-icon svg {
  width: 24px;
  height: 24px;
}

.contact-info-item h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--neutral-800);
  margin-bottom: 0.25rem;
}

.contact-info-item p {
  color: var(--neutral-600);
  font-size: 1rem;
  line-height: 1.7;
}

/* ===== Success Message ===== */
.success-message {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  display: none;
}

.success-message.show {
  display: block;
}

.success-message svg {
  width: 48px;
  height: 48px;
  color: #22c55e;
  margin: 0 auto 1rem;
}

.success-message h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--neutral-800);
  margin-bottom: 0.5rem;
}

.success-message p {
  color: var(--neutral-600);
}

/* ===== Note Box ===== */
.note-box {
  margin-top: 2.5rem;
  padding: 1.5rem;
  background: var(--accent);
  border-radius: 12px;
}

.note-box h3 {
  font-weight: 600;
  color: var(--neutral-800);
  margin-bottom: 0.5rem;
}

.note-box p {
  color: var(--neutral-500);
  font-size: 0.875rem;
  line-height: 1.7;
}

/* ===== FAQ ===== */
.faq-item {
  background: var(--white);
  border-radius: 12px;
  padding: 1.5rem 2rem;
  border: 1px solid var(--neutral-200);
  margin-bottom: 1.5rem;
}

.faq-item h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--neutral-800);
  margin-bottom: 0.75rem;
}

.faq-item p {
  color: var(--neutral-500);
  line-height: 1.7;
}

/* ===== Stat Boxes ===== */
.stat-box {
  background: var(--accent);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.stat-value {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--neutral-600);
}

/* ===== Capability Pairs ===== */
.capability-pair {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
  row-gap: 3.5rem;
  column-gap: 4rem;
}

.capability-card {
  padding: 2rem;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--neutral-200);
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  transition: box-shadow 0.3s, transform 0.3s;
}

.capability-card:hover {
  box-shadow: 0 12px 36px rgba(0,0,0,0.14);
}

.section-gray .capability-card {
  background: var(--white);
}

.section-white .capability-card {
  background: var(--white);
}

/* ===== Capability Cards (text-only) ===== */
.capability {
  max-width: 48rem;
  margin: 0 auto;
}

.capability-icon {
  width: 56px;
  height: 56px;
  background: var(--accent);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 1.25rem;
}

.capability-icon svg {
  width: 28px;
  height: 28px;
}

.capability-label {
  display: inline-block;
  font-size: 1.125rem;
  font-weight: 600;
  text-transform: none;
  letter-spacing: normal;
  color: var(--primary-dark);
  background: #7EEAE3;
  padding: 0.4rem 1.25rem 0.5rem;
  line-height: 1;
  border-radius: 100px;
  margin-bottom: 0.75rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.capability-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--neutral-800);
  margin-bottom: 1rem;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .capability-title { font-size: 1.5rem; }
}

.capability-desc {
  color: var(--neutral-600);
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* ===== Feature Showcase ===== */
.feature-showcase {
  padding: 5rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .feature-showcase { padding: 7rem 0; }
}

.feature-showcase:nth-child(odd) {
  background: var(--white);
}

.feature-showcase:nth-child(even) {
  background: var(--neutral-50);
}

.feature-showcase-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .feature-showcase-inner { grid-template-columns: 1fr 1fr; gap: 5rem; }
}

@media (min-width: 1024px) {
  .feature-showcase:nth-child(even) .feature-showcase-inner > :first-child { order: 2; }
  .feature-showcase:nth-child(even) .feature-showcase-inner > :last-child { order: 1; }
}

.feature-showcase-content {
  direction: ltr;
}

.feature-showcase-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--highlight);
  background: rgba(59,142,201,0.1);
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  margin-bottom: 0.75rem;
}

.feature-showcase-content h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--neutral-800);
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .feature-showcase-content h2 { font-size: 2.25rem; }
}

.feature-showcase-content > p {
  color: var(--neutral-500);
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.feature-showcase-visual {
  position: relative;
  direction: ltr;
}

.feature-showcase-visual .visual-wrapper {
  background: linear-gradient(135deg, var(--accent) 0%, #d4ecfa 100%);
  border-radius: 16px;
  padding: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .feature-showcase-visual .visual-wrapper { min-height: 360px; padding: 3rem; }
}

.visual-wrapper .visual-icon {
  width: 80px;
  height: 80px;
  color: var(--primary);
  opacity: 0.15;
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
}

.visual-icon-center {
  width: 96px;
  height: 96px;
  background: var(--white);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  position: relative;
  z-index: 1;
}

.visual-icon-center svg {
  width: 48px;
  height: 48px;
  color: var(--primary);
}

/* ===== Feature Checklist ===== */
.checklist {
  list-style: none;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.5rem 0;
  font-size: 1.125rem;
  color: var(--neutral-600);
  line-height: 1.6;
}

.checklist li svg {
  width: 28px;
  height: 28px;
  color: #00CCCC;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

/* ===== Format Tags ===== */
.format-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.format-tag {
  background: var(--accent);
  color: var(--primary);
  padding: 0.375rem 0.75rem;
  border-radius: 6px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* ===== Scroll Reveal Animations (with exit) ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0s; opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: 0.4s; opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(6) { transition-delay: 0.5s; opacity: 1; transform: translateY(0); }

/* ===== Utility ===== */
.max-w-3xl {
  max-width: 48rem;
}
