/* Base Reset & Design Tokens */
:root {
  --bg-dark: #0b1736;
  --bg-navy: #0d2c6c;
  --bg-light-blue: #eef5ff;
  --bg-card: #ffffff;
  --bg-light: #f8fafc;
  --primary: #2563eb;
  --primary-hover: #1d4ed8;
  --secondary: #7c3aed;
  --accent-yellow: #ffe600;
  --accent-gold: #f59e0b;
  --text-main: #0f172a;
  --text-navy: #0d2c6c;
  --text-light: #f8fafc;
  --text-muted: #475569;
  --border-light: #e2e8f0;
  --border-dark: #1e293b;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
  --shadow-card: 0 8px 24px rgba(13, 44, 108, 0.08);
  --shadow-lg: 0 20px 30px -5px rgba(0, 0, 0, 0.12);
}

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

html {
  scroll-behavior: smooth;
  font-family: 'Noto Sans JP', 'Inter', sans-serif;
  color: var(--text-main);
  background-color: var(--bg-light);
  line-height: 1.7;
}

body {
  overflow-x: hidden;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Top Announcement Bar */
.top-bar {
  background: linear-gradient(90deg, #1e3a8a, #3b82f6);
  color: #ffffff;
  text-align: center;
  padding: 8px 16px;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(11, 23, 54, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 14px 0;
}

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

.logo {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.logo-text {
  white-space: nowrap;
}

.logo-link {
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.2s ease;
  white-space: nowrap;
}

.logo-link:hover {
  opacity: 0.9;
}

.logo-badge {
  font-size: 0.75rem;
  padding: 3px 10px;
  background: var(--primary);
  color: white;
  border-radius: 4px;
  font-weight: 800;
  white-space: nowrap;
}

.highlight {
  color: #60a5fa;
}

.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.hamburger-btn span {
  width: 100%;
  height: 2px;
  background-color: #ffffff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger-btn.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.hamburger-btn.active span:nth-child(2) {
  opacity: 0;
}

.hamburger-btn.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: nowrap;
}

.nav a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  white-space: nowrap;
  transition: color 0.2s;
}

.nav a:hover {
  color: #ffffff;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 800;
  border-radius: var(--radius-sm);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s ease;
  border: none;
}

.btn-nav {
  background: var(--primary);
  color: white !important;
  padding: 8px 18px;
  font-size: 0.85rem;
}

.btn-primary {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: white;
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.6);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
}

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

.btn-outline {
  background: white;
  color: var(--bg-navy);
  border: 2px solid var(--bg-navy);
}

.btn-outline:hover {
  background: var(--bg-navy);
  color: white;
}

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

.full-width {
  width: 100%;
}

/* Hero Section */
.hero {
  position: relative;
  background-color: var(--bg-dark);
  color: var(--text-light);
  padding: 70px 0 80px;
  overflow: hidden;
  background-image: linear-gradient(rgba(11, 23, 54, 0.75), rgba(11, 23, 54, 0.88)), url('images/hero_bg_abstract.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-bg-glow {
  position: absolute;
  top: -20%;
  left: 20%;
  width: 800px;
  height: 600px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.22) 0%, rgba(124, 58, 237, 0.12) 50%, transparent 80%);
  filter: blur(80px);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 480px;
  gap: 40px;
  align-items: center;
}

.badge-pill {
  display: inline-block;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  padding: 6px 18px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.chip-tag {
  display: inline-block;
  background: var(--primary);
  color: white;
  font-weight: 800;
  font-size: 0.85rem;
  padding: 4px 14px;
  border-radius: 4px;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}

.hero-title {
  font-size: 2.15rem;
  font-weight: 900;
  line-height: 1.4;
  color: #ffffff;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.headline-line {
  display: inline-block;
  white-space: nowrap;
}

.marker {
  background: linear-gradient(transparent 62%, rgba(255, 230, 0, 0.65) 0);
  padding: 0 6px;
  font-weight: 900;
  color: #ffffff;
}

.hero-desc {
  font-size: 1.05rem;
  color: #cbd5e1;
  margin-bottom: 28px;
  line-height: 1.8;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.hero-bullets {
  display: flex;
  gap: 20px;
  list-style: none;
  color: #e2e8f0;
  font-weight: 700;
  font-size: 0.92rem;
  flex-wrap: wrap;
}

.check-icon {
  color: #ffd400;
  font-weight: 900;
}

/* Hero Visual Column */
.hero-visual-col {
  position: relative;
  width: 100%;
}

.visual-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.15);
  background: #1e293b;
}

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

.floating-badge {
  position: absolute;
  background: rgba(11, 23, 54, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  padding: 10px 16px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
}

.badge-top {
  top: 16px;
  left: 16px;
}

.badge-bottom {
  bottom: 16px;
  right: 16px;
}

.badge-text strong {
  display: block;
  font-size: 0.88rem;
  color: #ffe600;
}

.badge-text span {
  font-size: 0.75rem;
  color: #cbd5e1;
}

/* Problem Section */
.problem-section {
  background-color: var(--bg-light-blue);
  padding: 90px 0;
}

.section-tag-navy {
  display: inline-block;
  background: #ffd400;
  color: var(--bg-navy);
  font-weight: 900;
  font-size: 0.85rem;
  padding: 6px 16px;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.section-title-dark {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--text-navy);
  margin-bottom: 16px;
}

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

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1140px;
  margin: 40px auto 0;
}

.problem-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 28px 20px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(13, 44, 108, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.problem-card-title {
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--text-navy);
  line-height: 1.45;
  margin-bottom: 14px;
}

.problem-highlight {
  color: #0c2d6b;
}

.divider-line {
  width: 90%;
  height: 1px;
  background-color: #e2e8f0;
  margin-bottom: 24px;
}

.problem-img-wrapper {
  width: 100%;
  max-width: 380px;
  border-radius: 12px;
  overflow: hidden;
}

.problem-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Solution Banner */
.solution-banner {
  text-align: center;
  margin-top: 30px;
}

.down-arrow {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: var(--bg-navy);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.2rem;
  margin: 16px 0 24px;
}

.solution-box {
  background: #ffffff;
  border: 2px solid var(--bg-navy);
  border-radius: 16px;
  padding: 36px;
  max-width: 920px;
  margin: 0 auto;
  box-shadow: var(--shadow-card);
}

.solution-title {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--text-navy);
  margin-bottom: 14px;
}

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

/* Reasons Section */
.reasons-section {
  background-color: #ffffff;
  border-bottom: 1px solid var(--border-light);
}

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

.reason-card {
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  position: relative;
  transition: all 0.3s ease;
}

.reason-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: var(--primary);
}

.reason-number {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--primary);
  opacity: 0.85;
  margin-bottom: 12px;
}

.reason-title {
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--text-navy);
  margin-bottom: 12px;
  line-height: 1.4;
}

.reason-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Tools Section */
.tools-section {
  background-color: var(--bg-light-blue);
  padding: 80px 0;
}

.tools-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto;
}

.tool-pill {
  background: #ffffff;
  border: 1px solid rgba(13, 44, 108, 0.12);
  color: var(--text-navy);
  font-weight: 800;
  font-size: 0.95rem;
  padding: 12px 24px;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.tool-dot {
  color: var(--primary);
  font-size: 0.8rem;
}

/* Flow Section */
.flow-section {
  background-color: #ffffff;
}

.flow-timeline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 1140px;
  margin: 0 auto;
}

.flow-step {
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  flex: 1;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.flow-step.featured-step {
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  border: 2px solid var(--primary);
}

.step-num {
  font-size: 0.8rem;
  font-weight: 900;
  color: var(--primary);
  background: #ffffff;
  padding: 4px 12px;
  border-radius: 999px;
  display: inline-block;
  margin-bottom: 12px;
  box-shadow: var(--shadow-sm);
}

.step-title {
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--text-navy);
  margin-bottom: 10px;
}

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

.flow-arrow {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--primary);
  opacity: 0.5;
}

/* Security Section */
.security-section {
  background-color: #ffffff;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.security-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.security-card {
  background: #f8fafc;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 28px;
}

.security-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.security-card h3 {
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--text-navy);
  margin-bottom: 10px;
}

.security-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* Services */
.section {
  padding: 90px 0;
}

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

.section-tag {
  color: var(--primary);
  font-weight: 900;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
  display: block;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--text-navy);
  margin-bottom: 16px;
}

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

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(37, 99, 235, 0.3);
}

.card-image-box {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #f1f5f9;
}

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

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

.card-content {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--primary);
  background: #eff6ff;
  padding: 4px 10px;
  border-radius: 4px;
  width: fit-content;
  margin-bottom: 12px;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--text-navy);
  margin-bottom: 12px;
  line-height: 1.4;
}

.card-desc {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 20px;
  line-height: 1.7;
}

.card-list {
  list-style: none;
  margin-top: auto;
}

.card-list li {
  font-size: 0.88rem;
  font-weight: 700;
  color: #334155;
  margin-bottom: 8px;
}

/* Fit Section */
.fit-section {
  background-color: var(--bg-navy);
  color: white;
}

.fit-section .section-title {
  color: white;
}

.fit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.fit-item {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 20px 24px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 700;
  font-size: 1.05rem;
}

.fit-icon {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: #ffd400;
  color: var(--bg-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  flex-shrink: 0;
}

/* Simulator Section */
.simulator-section {
  background-color: var(--bg-light-blue);
}

.simulator-box {
  background: white;
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
}

.sim-header {
  margin-bottom: 40px;
}

.sim-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.control-group {
  margin-bottom: 28px;
}

.control-group label {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.highlight-val {
  color: var(--primary);
  font-size: 1.2rem;
}

input[type=range] {
  width: 100%;
  accent-color: var(--primary);
  height: 8px;
}

select {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
  font-size: 1rem;
  font-family: inherit;
  background-color: #f8fafc;
}

.sim-results {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.result-card {
  background: #ffffff;
  color: var(--text-main);
  padding: 28px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: 0 6px 18px rgba(13, 44, 108, 0.06);
}

.result-card.secondary {
  background: #ffffff;
  color: var(--text-main);
  border: 1px solid var(--border-light);
  box-shadow: 0 6px 18px rgba(13, 44, 108, 0.06);
}

.result-title {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 800;
  letter-spacing: 0.05em;
}

.result-price {
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--primary);
  margin: 6px 0;
}

.result-time {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--text-navy);
  margin: 6px 0;
}

.result-sub {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* Pricing Section */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: stretch;
}

.pricing-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 40px 32px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  position: relative;
}

.pricing-card.featured {
  border: 2px solid var(--primary);
  box-shadow: var(--shadow-lg);
  transform: scale(1.03);
  background: #ffffff;
}

.featured-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: white;
  font-size: 0.8rem;
  font-weight: 800;
  padding: 4px 16px;
  border-radius: 999px;
}

.plan-name {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--text-navy);
  margin-bottom: 12px;
}

.plan-price {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--text-main);
  margin-bottom: 12px;
}

.plan-price span {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 500;
}

.plan-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  min-height: 48px;
}

.plan-features {
  list-style: none;
  margin-bottom: 36px;
  flex-grow: 1;
}

.plan-features li {
  font-size: 0.92rem;
  color: #334155;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px dashed var(--border-light);
}

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

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

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

.faq-answer {
  padding: 0 24px 20px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Contact Section & Privacy Consent */
.contact-section {
  background-color: var(--bg-dark);
  color: white;
}

.contact-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 60px;
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
}

.contact-info h2 {
  font-size: 2.2rem;
  font-weight: 900;
  margin-bottom: 16px;
}

.contact-info p {
  color: #94a3b8;
  margin-bottom: 32px;
}

.contact-bullets {
  list-style: none;
}

.contact-bullets li {
  font-size: 1rem;
  color: #cbd5e1;
  margin-bottom: 12px;
  font-weight: 700;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: #cbd5e1;
}

.required {
  color: #ef4444;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-dark);
  background: #1e293b;
  color: white;
  font-family: inherit;
  font-size: 0.95rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.3);
}

.privacy-consent-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-dark);
  padding: 14px 16px;
  border-radius: var(--radius-sm);
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: #cbd5e1;
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--primary);
}

.checkbox-label a {
  color: #60a5fa;
  text-decoration: underline;
}

.privacy-notice-text {
  font-size: 0.78rem;
  color: #94a3b8;
  margin-top: 8px;
  line-height: 1.5;
}

/* Footer & Privacy Modal */
.footer {
  background-color: #060a12;
  color: #64748b;
  padding: 40px 0;
  border-top: 1px solid var(--border-dark);
  font-size: 0.9rem;
}

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

.footer-privacy-link {
  color: #94a3b8;
  text-decoration: underline;
  margin-bottom: 8px;
  display: block;
}

.modal-backdrop {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal-backdrop.active {
  display: flex;
}

.modal-content {
  background: white;
  color: var(--text-main);
  border-radius: var(--radius-md);
  max-width: 680px;
  width: 100%;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: var(--shadow-lg);
}

.modal-content h2 {
  padding: 24px 28px 16px;
  font-size: 1.3rem;
  font-weight: 900;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-navy);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 1.8rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #64748b;
}

.modal-body {
  padding: 24px 28px;
  overflow-y: auto;
  font-size: 0.92rem;
  line-height: 1.8;
  color: #334155;
}

.modal-body h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-navy);
  margin: 18px 0 8px;
}

.modal-body ul {
  padding-left: 20px;
}

.modal-footer {
  padding: 16px 28px;
  border-top: 1px solid var(--border-light);
  text-align: right;
}

/* Tablet & Mobile Media Queries */
@media (max-width: 992px) {
  .hamburger-btn {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 60px;
    right: -100%;
    width: 260px;
    height: calc(100vh - 60px);
    background: rgba(11, 23, 54, 0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 30px 24px;
    gap: 20px;
    align-items: flex-start;
    transition: right 0.3s ease;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    overflow-y: auto;
    z-index: 1000;
  }

  .nav.active {
    right: 0;
  }

  .nav a {
    font-size: 1rem;
    width: 100%;
  }

  .btn-nav {
    text-align: center;
    margin-top: 10px;
  }

  .hero-grid { grid-template-columns: 1fr; }
  .problem-grid, .security-grid, .reasons-grid { grid-template-columns: 1fr; }
  .services-grid, .pricing-grid, .fit-grid { grid-template-columns: 1fr; }
  .sim-grid, .contact-box { grid-template-columns: 1fr; }
  .flow-timeline { flex-direction: column; }
  .flow-arrow { transform: rotate(90deg); margin: 8px 0; }
  .pricing-card.featured { transform: none; }
}

@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }

  .top-bar {
    font-size: 0.75rem;
    padding: 6px 10px;
  }

  .hero {
    padding: 40px 0 60px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .badge-pill {
    font-size: 0.78rem;
    padding: 4px 12px;
  }

  .hero-title {
    font-size: 1.65rem;
    line-height: 1.4;
  }

  .headline-line {
    white-space: normal;
  }

  .hero-desc {
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 20px;
  }

  .hero-ctas {
    flex-direction: column;
    width: 100%;
  }

  .hero-ctas .btn {
    width: 100%;
    font-size: 0.95rem;
    padding: 14px 20px;
  }

  .hero-bullets {
    flex-direction: column;
    gap: 10px;
  }

  .hero-visual-col {
    margin-top: 10px;
  }

  .visual-card {
    border-radius: 16px;
  }

  .floating-badge {
    padding: 8px 12px;
    border-radius: 8px;
  }

  .badge-top {
    top: 10px;
    left: 10px;
  }

  .badge-bottom {
    bottom: 10px;
    right: 10px;
  }

  .badge-text strong {
    font-size: 0.78rem;
  }

  .badge-text span {
    font-size: 0.68rem;
  }

  /* Section Header Mobile */
  .section {
    padding: 60px 0;
  }

  .section-title, .section-title-dark {
    font-size: 1.65rem;
  }

  .section-subtitle, .section-subtitle-dark {
    font-size: 0.9rem;
  }

  /* Problems Section Mobile */
  .problem-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .problem-card {
    padding: 24px 16px;
  }

  .problem-card-title {
    font-size: 1.25rem;
  }

  .solution-box {
    padding: 24px 18px;
  }

  .solution-title {
    font-size: 1.25rem;
  }

  .solution-desc {
    font-size: 0.92rem;
  }

  /* Reasons Grid Mobile */
  .reasons-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .reason-card {
    padding: 24px 20px;
  }

  /* Services Mobile */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Tools Mobile */
  .tools-grid {
    gap: 10px;
  }

  .tool-pill {
    font-size: 0.82rem;
    padding: 8px 16px;
  }

  /* Flow Mobile */
  .flow-timeline {
    flex-direction: column;
    gap: 12px;
  }

  .flow-step {
    width: 100%;
    padding: 20px 16px;
  }

  .flow-arrow {
    transform: rotate(90deg);
    margin: 4px 0;
  }

  /* Security Mobile */
  .security-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .security-card {
    padding: 20px;
  }

  /* Fit Mobile */
  .fit-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .fit-item {
    font-size: 0.92rem;
    padding: 16px 18px;
  }

  /* Simulator Mobile */
  .simulator-box {
    padding: 24px 18px;
  }

  .sim-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .result-price {
    font-size: 2.1rem;
  }

  .result-time {
    font-size: 1.8rem;
  }

  /* Pricing Mobile */
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .pricing-card {
    padding: 32px 20px;
  }

  /* Contact Mobile */
  .contact-box {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 28px 20px;
  }

  .contact-info h2 {
    font-size: 1.65rem;
  }

  .contact-bullets li {
    font-size: 0.9rem;
  }

  /* Footer Mobile */
  .footer-container {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}
