/* ============================================
   JDLTC — Apple-Inspired Design System
   Clean · Confident · Conversion-Focused
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Noto+Sans+JP:wght@300;400;500;700&display=swap');

/* — Design Tokens — */
:root {
  --navy: #0d1b3e;
  --navy-95: rgba(13, 27, 62, 0.95);
  --accent-red: #c41e3a;
  --accent-red-hover: #a01830;

  --white: #ffffff;
  --off-white: #fafafa;
  --gray-50: #f5f5f7;
  --gray-100: #e8e8ed;
  --gray-200: #d2d2d7;
  --gray-400: #86868b;
  --gray-600: #6e6e73;
  --text-primary: #1d1d1f;
  --text-secondary: #6e6e73;
  --text-on-dark: #f5f5f7;

  --trust-green: #1b873f;
  --star-gold: #f5a623;

  --max-width: 980px;
  --border-radius: 18px;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.12);

  --trust-blue: #0071e3;
  --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
  --spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* — Pulse animation for CTA — */
@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 4px 16px rgba(196, 30, 58, 0.3);
  }

  50% {
    box-shadow: 0 4px 24px rgba(196, 30, 58, 0.5);
  }
}

/* — Selection color — */
::selection {
  background: rgba(196, 30, 58, 0.15);
  color: var(--navy);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', 'Noto Sans JP', -apple-system, sans-serif;
  color: var(--text-primary);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* — Animations — */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   NAVIGATION — Ultra minimal
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 0.5px solid rgba(0, 0, 0, 0.08);
  transition: all 0.4s var(--ease);
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.92);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 48px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-logo .logo-icon {
  width: 32px;
  height: 32px;
  background: var(--navy);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.nav-logo .logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.nav-logo .logo-name {
  font-size: 14px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.3px;
}

.nav-logo .logo-full-name {
  font-size: 9px;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
}

.btn-nav-cta {
  font-size: 12px;
  font-weight: 600;
  color: var(--white);
  background: var(--navy);
  border: none;
  border-radius: 980px;
  padding: 7px 16px;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
}

.btn-nav-cta:hover {
  background: var(--accent-red);
  transform: scale(1.02);
}

/* ============================================
   HERO — Cinematic, single focus
   ============================================ */
.hero {
  padding: 160px 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--off-white) 0%, var(--white) 60%, rgba(13, 27, 62, 0.02) 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(196, 30, 58, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.hero h1 {
  font-size: clamp(48px, 8vw, 80px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--navy);
  margin-bottom: 24px;
  animation: fadeInUp 0.8s var(--ease) both;
}

.hero .hero-line2 {
  color: var(--accent-red);
}

.hero-subtitle {
  font-size: clamp(17px, 2.2vw, 21px);
  font-weight: 400;
  color: var(--text-secondary);
  max-width: 540px;
  margin: 0 auto 40px;
  line-height: 1.55;
  animation: fadeInUp 0.8s var(--ease) 0.1s both;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent-red);
  color: var(--white);
  font-size: 17px;
  font-weight: 600;
  padding: 16px 36px;
  border-radius: 980px;
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  box-shadow: 0 4px 16px rgba(196, 30, 58, 0.3);
  animation: fadeInUp 0.8s var(--ease) 0.2s both;
}

.btn-hero:hover {
  background: var(--accent-red-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(196, 30, 58, 0.4);
}

.hero-countries {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 48px;
  animation: fadeIn 1s var(--ease) 0.5s both;
}

.hero-country {
  font-size: 28px;
  transition: transform 0.3s var(--spring);
  cursor: default;
}

.hero-country:hover {
  transform: scale(1.3);
}

/* ============================================
   VALUE SECTION — Why JDLTC
   ============================================ */
.value-section {
  padding: 120px 0;
  background: var(--white);
}

.value-header,
.steps-header,
.pricing-header,
.reviews-header,
.faq-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-red);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}

.section-eyebrow.light {
  color: rgba(255, 255, 255, 0.5);
}

.section-headline {
  font-size: clamp(28px, 4.5vw, 48px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--navy);
}

.section-headline.light {
  color: var(--white);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.value-card {
  background: var(--gray-50);
  border-radius: var(--border-radius);
  padding: 40px 32px;
  transition: all 0.4s var(--ease);
}

.value-card:hover {
  background: var(--white);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.value-icon {
  font-size: 32px;
  margin-bottom: 16px;
}

.value-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.value-card p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ============================================
   STEPS SECTION
   ============================================ */
.steps-section {
  padding: 120px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.steps-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(196, 30, 58, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.steps-row {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
}

.step-item {
  flex: 1;
  text-align: center;
  padding: 0 20px;
}

.step-num {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--accent-red), var(--accent-red-hover));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 800;
  color: white;
  margin: 0 auto 20px;
}

.step-item h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.step-item p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
}

.step-divider {
  width: 1px;
  height: 100px;
  background: rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
  margin-top: 20px;
}

/* ============================================
   PRICING — Single clear card
   ============================================ */
.pricing-section {
  padding: 120px 0;
  background: var(--off-white);
}

.pricing-card {
  max-width: 480px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 48px 40px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-100);
  position: relative;
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--accent-red));
}

/* Launch badge */
.launch-badge {
  display: inline-block;
  background: linear-gradient(135deg, #fef3cd, #fff3e0);
  color: #856404;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 980px;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

/* Original (crossed out) price */
.pricing-original {
  font-size: 28px;
  font-weight: 600;
  color: var(--gray-400);
  text-decoration: line-through;
  line-height: 1;
  margin-bottom: 4px;
}

.pricing-original .currency {
  font-size: 16px;
  vertical-align: super;
}

/* Launch note */
.pricing-launch-note {
  font-size: 13px;
  color: var(--accent-red);
  font-weight: 500;
  font-style: italic;
  margin-bottom: 4px;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
}


.pricing-amount {
  font-size: 64px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 8px;
}

.pricing-amount .currency {
  font-size: 32px;
  font-weight: 600;
  vertical-align: super;
  margin-right: 2px;
  color: var(--text-secondary);
}

.pricing-note {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
  margin-bottom: 32px;
}

.pricing-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text-primary);
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-50);
}

.pricing-feature:last-child {
  border-bottom: none;
}

.pf-check {
  color: var(--trust-green);
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}

.btn-pricing {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 6px;
  background: var(--accent-red);
  color: var(--white);
  font-size: 17px;
  font-weight: 600;
  padding: 16px 32px;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  box-shadow: 0 4px 16px rgba(196, 30, 58, 0.25);
}

.btn-pricing:hover {
  background: var(--accent-red-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196, 30, 58, 0.35);
}

/* ============================================
   REVIEWS — Clean cards
   ============================================ */
.reviews-section {
  padding: 120px 0;
  background: var(--white);
}

.reviews-stars {
  font-size: 18px;
  color: var(--star-gold);
  margin-top: 12px;
}

.reviews-stars span {
  font-size: 14px;
  color: var(--text-secondary);
  margin-left: 8px;
}

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

.review-card {
  background: var(--gray-50);
  border-radius: var(--border-radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.4s var(--ease);
  min-height: 200px;
}

.review-card:hover {
  background: var(--white);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.review-card p {
  font-size: 15px;
  color: var(--text-primary);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 20px;
  flex: 1;
}

.review-author {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--gray-100);
}

.review-author strong {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}

.review-author span {
  font-size: 13px;
  color: var(--text-secondary);
}

/* ============================================
   FAQ — Accordion
   ============================================ */
.faq-section {
  padding: 120px 0;
  background: var(--off-white);
}

.faq-list {
  max-width: 680px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: 14px;
  margin-bottom: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 22px 28px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
  transition: all 0.2s var(--ease);
}

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

.faq-icon {
  font-size: 20px;
  font-weight: 300;
  color: var(--text-secondary);
  transition: transform 0.3s var(--ease);
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}

.faq-answer-inner {
  padding: 0 28px 22px;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================
   FINAL CTA
   ============================================ */
.final-cta {
  padding: 120px 0;
  background: var(--navy);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  bottom: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(196, 30, 58, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.final-cta h2 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.final-cta p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 36px;
}

.btn-final {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent-red);
  color: var(--white);
  font-size: 17px;
  font-weight: 600;
  padding: 16px 40px;
  border-radius: 980px;
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  box-shadow: 0 4px 20px rgba(196, 30, 58, 0.4);
}

.btn-final:hover {
  background: white;
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 255, 255, 0.2);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 60px 0 32px;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-100);
}

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

.footer-logo {
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}

.footer-brand p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 280px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 13px;
  color: var(--text-secondary);
  transition: color 0.2s var(--ease);
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--gray-100);
}

.footer-bottom p {
  font-size: 12px;
  color: var(--gray-400);
}

/* Language switcher in footer */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-secondary);
  background: none;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  padding: 6px 12px;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s var(--ease);
}

.lang-switch:hover {
  border-color: var(--text-secondary);
  color: var(--text-primary);
}

.lang-menu {
  display: none;
  position: fixed;
  bottom: 80px;
  right: 24px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-100);
  overflow: hidden;
  z-index: 1001;
  animation: scaleIn 0.2s var(--ease);
}

.lang-menu.open {
  display: block;
}

.lang-menu button {
  display: block;
  width: 100%;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  transition: background 0.15s var(--ease);
}

.lang-menu button:hover {
  background: var(--gray-50);
}

.lang-menu button.active {
  color: var(--accent-red);
  font-weight: 600;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  .hero {
    padding: 120px 0 80px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .value-grid {
    grid-template-columns: 1fr;
  }

  .steps-row {
    flex-direction: column;
    gap: 32px;
    align-items: center;
  }

  .step-divider {
    width: 40px;
    height: 1px;
    margin-top: 0;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .pricing-card {
    padding: 36px 28px;
  }

  .pricing-amount {
    font-size: 48px;
  }
}