﻿:root {
  --primary-dark: #090d16;
  --primary-surface: #0f172a;
  --primary-card: #1e293b;
  --accent-red: #e11d48;
  --accent-red-hover: #be123c;
  --accent-cyan: #0284c7;
  --accent-amber: #f59e0b;
  --text-main: #0f172a;
  --text-muted: #64748b;
  --text-light: #f8fafc;
  --text-light-muted: #94a3b8;
  --bg-page: #f8fafc;
  --bg-white: #ffffff;
  --border-color: #e2e8f0;
  --border-dark: #334155;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  --container-max: 1200px;
  --font-base: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Plus Jakarta Sans', 'Noto Sans JP', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-main);
  background-color: var(--bg-page);
  font-family: var(--font-base);
}

body {
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.2s ease;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header & Nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
}

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

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

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-desktop a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-main);
}

.nav-desktop a:hover {
  color: var(--accent-red);
}

.nav-cta-btn {
  background: var(--accent-red);
  color: #ffffff !important;
  padding: 0.7rem 1.4rem;
  border-radius: var(--radius-full);
  font-weight: 700 !important;
  font-size: 0.9rem;
  box-shadow: 0 4px 14px rgba(225, 29, 72, 0.25);
}

.nav-cta-btn:hover {
  background: var(--accent-red-hover);
  transform: translateY(-1px);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-main);
  padding: 0.5rem;
}

.mobile-drawer {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  background: #ffffff;
  border-bottom: 1px solid var(--border-color);
  padding: 1.5rem;
  box-shadow: var(--shadow-xl);
  z-index: 99;
}

.mobile-drawer.open {
  display: block;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

/* Hero Section */
.hero-section {
  position: relative;
  background: linear-gradient(135deg, var(--primary-dark) 0%, #111827 100%);
  color: #ffffff;
  padding: 5rem 0 6rem;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(rgba(225, 29, 72, 0.15) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.on-air-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(225, 29, 72, 0.15);
  border: 1px solid rgba(225, 29, 72, 0.4);
  color: #fda4af;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}

.on-air-dot {
  width: 8px;
  height: 8px;
  background: #f43f5e;
  border-radius: 50%;
  animation: pulse 1.6s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.9); opacity: 0.6; }
  50% { transform: scale(1.3); opacity: 1; box-shadow: 0 0 10px #f43f5e; }
  100% { transform: scale(0.9); opacity: 0.6; }
}

.hero-title {
  font-size: 2.75rem;
  font-weight: 900;
  line-height: 1.35;
  margin-bottom: 1.5rem;
  letter-spacing: -0.5px;
}

.hero-title span {
  background: linear-gradient(90deg, #fb7185, #fda4af);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-lead {
  font-size: 1.12rem;
  line-height: 1.85;
  color: var(--text-light-muted);
  margin-bottom: 2.2rem;
}

.hero-actions {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: var(--accent-red);
  color: #ffffff;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 1rem 2rem;
  border-radius: var(--radius-full);
  box-shadow: 0 10px 25px rgba(225, 29, 72, 0.35);
  transition: all 0.25s ease;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--accent-red-hover);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(225, 29, 72, 0.45);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-weight: 600;
  font-size: 1.05rem;
  padding: 1rem 1.8rem;
  border-radius: var(--radius-full);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
}

.hero-visual {
  position: relative;
}

.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  border: 1px solid var(--border-dark);
}

.hero-image-wrapper img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.hero-floating-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid var(--border-dark);
  backdrop-filter: blur(10px);
  padding: 1rem 1.4rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: var(--shadow-xl);
}

.badge-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-red);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.badge-text-title {
  font-size: 0.8rem;
  color: var(--text-light-muted);
}

.badge-text-val {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
}

/* Trust Bar */
.trust-strip {
  background: #0f172a;
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
  padding: 2.2rem 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #ffffff;
}

.trust-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #38bdf8;
}

.trust-label {
  font-size: 0.78rem;
  color: var(--text-light-muted);
}

.trust-title {
  font-size: 0.98rem;
  font-weight: 700;
  color: #f8fafc;
}

/* Section Header Styles */
.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3.5rem;
}

.section-tag {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--accent-red);
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--text-main);
  line-height: 1.4;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* Value Props / Benefits */
.section-benefits {
  padding: 6rem 0;
  background: #ffffff;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.benefit-card {
  background: var(--bg-page);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 2.2rem 1.8rem;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.benefit-card:hover {
  transform: translateY(-5px);
  border-color: rgba(225, 29, 72, 0.3);
  box-shadow: var(--shadow-xl);
}

.benefit-icon-box {
  width: 56px;
  height: 56px;
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-red);
  margin-bottom: 1.5rem;
}

.benefit-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 1rem;
  line-height: 1.45;
}

.benefit-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.85;
}

/* Services / Solutions */
.section-services {
  padding: 6rem 0;
  background: var(--bg-page);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

.service-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.service-card:hover {
  box-shadow: var(--shadow-xl);
}

.service-img-wrapper {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.service-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-card:hover .service-img-wrapper img {
  transform: scale(1.05);
}

.service-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(6px);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.35rem 0.8rem;
  border-radius: var(--radius-full);
}

.service-content {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 1rem;
  line-height: 1.4;
}

.service-description {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 1.5rem;
}

.service-features-list {
  list-style: none;
  margin-top: auto;
  border-top: 1px solid var(--border-color);
  padding-top: 1.2rem;
}

.service-features-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--text-main);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.service-features-list li svg {
  color: var(--accent-red);
  flex-shrink: 0;
}

/* Workflow / How it Works */
.section-process {
  padding: 6rem 0;
  background: #ffffff;
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  position: relative;
}

.process-step {
  background: var(--bg-page);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 2rem 1.4rem;
  position: relative;
  display: flex;
  flex-direction: column;
}

.step-number {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--accent-red);
  margin-bottom: 0.8rem;
  line-height: 1;
}

.step-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 0.8rem;
  line-height: 1.4;
}

.step-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* About / Craftsmanship */
.section-about {
  padding: 6rem 0;
  background: var(--bg-page);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-xl);
}

.about-image-wrapper img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.about-content h3 {
  font-size: 1.85rem;
  font-weight: 900;
  color: var(--text-main);
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

.about-content p {
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 1.4rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

.stat-item h4 {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--accent-red);
  font-family: var(--font-display);
}

.stat-item p {
  font-size: 0.82rem;
  color: var(--text-main);
  font-weight: 700;
  margin-bottom: 0;
}

/* Social Proof */
.section-proof {
  padding: 6rem 0;
  background: #ffffff;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.proof-card {
  background: var(--bg-page);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 2.2rem 1.8rem;
  display: flex;
  flex-direction: column;
}

.proof-rating {
  color: var(--accent-amber);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.proof-quote {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--text-main);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.proof-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  border-top: 1px solid var(--border-color);
  padding-top: 1rem;
}

.author-avatar {
  width: 44px;
  height: 44px;
  background: var(--primary-surface);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
}

.author-info h5 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-main);
}

.author-info span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

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

.faq-wrapper {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.2s ease;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.4rem 1.8rem;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-main);
  cursor: pointer;
  gap: 1rem;
}

.faq-question:hover {
  color: var(--accent-red);
}

.faq-icon {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  color: var(--text-muted);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  color: var(--accent-red);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 1.8rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.85;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: 1.5rem;
}

/* Lead Form Section */
.section-lead {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--primary-dark) 0%, #111827 100%);
  color: #ffffff;
  position: relative;
}

.lead-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 4rem;
  align-items: start;
}

.lead-info h2 {
  font-size: 2.3rem;
  font-weight: 900;
  line-height: 1.35;
  margin-bottom: 1.2rem;
}

.lead-info h2 span {
  color: #fb7185;
}

.lead-info p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text-light-muted);
  margin-bottom: 2rem;
}

.lead-guarantees {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.lead-guarantees li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.95rem;
  color: #f8fafc;
  font-weight: 500;
}

.lead-guarantees li svg {
  color: #38bdf8;
  flex-shrink: 0;
}

.form-box {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 2.8rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  color: var(--text-main);
}

.form-box h3 {
  font-size: 1.45rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  text-align: center;
}

.form-box p.form-subtitle {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 1.8rem;
  text-align: center;
}

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

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

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--text-main);
}

.form-group label span.req {
  color: var(--accent-red);
  margin-left: 0.2rem;
}

.form-control {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: inherit;
  background: #ffffff;
  color: var(--text-main);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-red);
  box-shadow: 0 0 0 3px rgba(225, 29, 72, 0.15);
}

.consent-group {
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}

.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
  cursor: pointer;
}

.consent-label input[type="checkbox"] {
  margin-top: 0.2rem;
  accent-color: var(--accent-red);
}

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

.submit-btn {
  width: 100%;
  padding: 1.05rem;
  background: var(--accent-red);
  color: #ffffff;
  border: none;
  border-radius: var(--radius-full);
  font-size: 1.05rem;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 8px 20px rgba(225, 29, 72, 0.3);
}

.submit-btn:hover {
  background: var(--accent-red-hover);
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(225, 29, 72, 0.4);
}

.submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.form-status {
  margin-top: 1.2rem;
  padding: 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  display: none;
  text-align: center;
}

.form-status.success {
  display: block;
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.form-status.error {
  display: block;
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

/* Site Footer */
.site-footer {
  background: #090d16;
  color: var(--text-light-muted);
  padding: 5rem 0 2rem;
  border-top: 1px solid var(--border-dark);
}

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

.footer-brand img {
  height: 44px;
  width: auto;
  margin-bottom: 1.2rem;
  filter: brightness(0) invert(1);
}

.footer-about {
  font-size: 0.88rem;
  line-height: 1.85;
  color: var(--text-light-muted);
  margin-bottom: 1.5rem;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: #f8fafc;
  margin-bottom: 0.6rem;
}

.footer-col h4 {
  font-size: 1.05rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1.2rem;
}

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

.footer-links a {
  font-size: 0.88rem;
  color: var(--text-light-muted);
}

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

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

.back-to-top {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: all 0.2s;
}

.back-to-top:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* Legal Pages Styling */
.legal-page-header {
  background: #090d16;
  color: #ffffff;
  padding: 4rem 0 3rem;
  border-bottom: 1px solid var(--border-dark);
}

.legal-page-title {
  font-size: 2.2rem;
  font-weight: 900;
  margin-bottom: 0.6rem;
}

.legal-updated {
  font-size: 0.85rem;
  color: var(--text-light-muted);
}

.legal-content-wrap {
  padding: 4rem 0 6rem;
  background: #ffffff;
}

.legal-body {
  max-width: 860px;
  margin: 0 auto;
  font-size: 0.98rem;
  line-height: 2;
  color: #334155;
}

.legal-body h2 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-main);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--border-color);
}

.legal-body h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-main);
  margin-top: 1.8rem;
  margin-bottom: 0.8rem;
}

.legal-body p {
  margin-bottom: 1.2rem;
}

.legal-body ul, .legal-body ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.legal-body li {
  margin-bottom: 0.5rem;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  max-width: 580px;
  background: rgba(15, 23, 42, 0.96);
  border: 1px solid var(--border-dark);
  backdrop-filter: blur(16px);
  color: #ffffff;
  padding: 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  z-index: 9999;
  display: none;
  flex-direction: column;
  gap: 1rem;
}

.cookie-banner.active {
  display: flex;
}

.cookie-text {
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--text-light-muted);
}

.cookie-text a {
  color: #38bdf8;
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 0.8rem;
  justify-content: flex-end;
}

.cookie-btn-accept {
  background: var(--accent-red);
  color: #ffffff;
  border: none;
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
}

.cookie-btn-decline {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-grid, .lead-grid, .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .benefits-grid, .proof-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-timeline {
    grid-template-columns: repeat(2, 1fr);
  }
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .nav-desktop {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .hero-title {
    font-size: 2.1rem;
  }
  .section-title {
    font-size: 1.8rem;
  }
  .benefits-grid, .services-grid, .proof-grid, .process-timeline, .form-row-2 {
    grid-template-columns: 1fr;
  }
  .trust-grid {
    grid-template-columns: 1fr;
  }
  .form-box {
    padding: 1.8rem;
  }
  .hero-image-wrapper img {
    height: 280px;
  }
}
