/* ═══════════════════════════════════════════════════════════════
   POINTYES PAY — Main Stylesheet
   Design: "Clean Fintech Fresh" — White × Vivid Blue × Emerald
   Young, clean, premium, trustworthy
   Typography: DM Sans + Noto Sans JP
═══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;0,9..40,800&family=Noto+Sans+JP:wght@400;500;700&display=swap');

/* ── CSS Variables ────────────────────────────────────────── */
:root {
  --navy:       #111928;
  --navy-light: #1E2D45;
  --blue:       #1A56DB;
  --blue-light: #3B82F6;
  --cyan:       #06B6D4;
  --primary-light: #EFF6FF;
  --green:      #0E9F6E;
  --green-light: #ECFDF5;
  --accent:     #FF5A1F;
  --accent-light: #FFF3EE;
  --white:      #FFFFFF;
  --gray-100:   #F9FAFB;
  --gray-200:   #F3F4F6;
  --gray-300:   #E5E7EB;
  --gray-400:   #9CA3AF;
  --gray-600:   #6B7280;
  --text-dark:  #111928;
  --text-mid:   #4B5563;
  --success:    #0E9F6E;
  --warning:    #F59E0B;
  --error:      #EF4444;
  --wechat:     #07C160;
  --alipay:     #1677FF;
  --paypay:     #E31937;
  --rakuten:    #BF0000;
  --dpay:       #E60012;
  --merpay:     #00B0FF;
  --aupay:      #FF6600;
  --radius:     10px;
  --radius-lg:  18px;
  --shadow-sm:  0 1px 3px rgba(0,0,0,0.06);
  --shadow:     0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg:  0 12px 40px rgba(0,0,0,0.12);
  --transition: all 0.25s ease;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'DM Sans', 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Typography ───────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'DM Sans', 'Noto Sans JP', sans-serif;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,102,255,0.1);
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
  border: 1px solid rgba(0,102,255,0.2);
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 16px;
  white-space: pre-line;
}

.section-desc {
  font-size: 1rem;
  color: var(--text-mid);
  max-width: 560px;
  line-height: 1.8;
}

/* ── Layout ───────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 96px 0; }

/* ── Buttons ──────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--accent), #FF8A4C);
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Noto Sans JP', sans-serif;
  white-space: nowrap;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255,90,31,0.4);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 13px 28px;
  border-radius: var(--radius);
  border: 1.5px solid rgba(255,255,255,0.4);
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Noto Sans JP', sans-serif;
  white-space: nowrap;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--blue);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 13px 28px;
  border-radius: var(--radius);
  border: 1.5px solid var(--blue);
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Noto Sans JP', sans-serif;
}

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

.hero-actions .btn-outline {
  background: linear-gradient(135deg, #10b981 0%, #22c55e 100%);
  color: #ffffff;
  border: none;
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.28);
}

.hero-actions .btn-outline:hover {
  background: linear-gradient(135deg, #0ea873 0%, #16a34a 100%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.34);
}

/* ── Navbar ───────────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(17, 25, 40, 0.08);
  transition: var(--transition);
  box-shadow: 0 6px 26px rgba(17, 25, 40, 0.08);
}

.nav-inner,
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
  gap: 24px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

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

.nav-logo-icon,
.logo-icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, #1a56db 0%, #0ea5e9 55%, #06b6d4 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  box-shadow: 0 8px 20px rgba(26, 86, 219, 0.28);
}

.nav-logo-text,
.logo-text {
  font-family: 'DM Sans', sans-serif;
  font-weight: 800;
  font-size: 1.02rem;
  color: var(--navy);
  letter-spacing: -0.01em;
}

.nav-logo-text span,
.logo-text span,
.logo-pay {
  color: var(--blue);
}

.nav-links,
.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
  justify-content: center;
}

.nav-links a,
.nav-menu a {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-mid);
  transition: var(--transition);
  position: relative;
  padding: 8px 2px;
}

.nav-links a::after,
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  transform: scaleX(0);
  transform-origin: center;
  transition: var(--transition);
}

.nav-links a:hover,
.nav-menu a:hover { color: var(--blue); }
.nav-links a:hover::after,
.nav-menu a:hover::after { transform: scaleX(1); }

.nav-cta {
  background: linear-gradient(135deg, #1a56db, #0ea5e9);
  color: #fff !important;
  border-radius: 999px;
  padding: 9px 14px !important;
  box-shadow: 0 10px 24px rgba(26, 86, 219, 0.25);
}

.nav-cta::after {
  display: none;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(26, 86, 219, 0.3);
}

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

.lang-switcher {
  display: flex;
  gap: 4px;
  background: rgba(17, 25, 40, 0.06);
  border: 1px solid rgba(17, 25, 40, 0.08);
  border-radius: 999px;
  padding: 3px 4px;
}

.lang-btn {
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gray-600);
  cursor: pointer;
  transition: var(--transition);
  border: none;
  background: transparent;
  font-family: 'DM Sans', sans-serif;
}

.lang-btn.active {
  background: var(--white);
  color: var(--blue);
  box-shadow: 0 3px 10px rgba(17, 25, 40, 0.12);
}

.nav-hamburger,
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px 2px;
  border: none;
  background: transparent;
}

.nav-hamburger span,
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.open span:nth-child(1),
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2),
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3),
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero Section ─────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: var(--navy);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 0 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.18;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(11,22,41,0.95) 0%,
    rgba(11,22,41,0.75) 50%,
    rgba(11,22,41,0.85) 100%
  );
}

.hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,212,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-left {}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,212,255,0.12);
  border: 1px solid rgba(0,212,255,0.3);
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--cyan);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 8px;
  white-space: pre-line;
}

.hero-title .highlight {
  background: linear-gradient(135deg, var(--blue-light), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-top: 4px;
  font-size: 0.85em;
}

.hero-subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.stat-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
}

.stat-number {
  font-family: 'DM Sans', sans-serif;
  font-weight: 900;
  font-size: 2rem;
  color: var(--cyan);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  font-weight: 600;
}

.hero-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.payment-brand-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.brand-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: var(--transition);
}

.brand-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}

.brand-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}

.brand-name {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--white);
}

.brand-desc {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.45);
  margin-top: 2px;
}

/* ── Payment Section ──────────────────────────────────────── */
.payments-section {
  background: var(--gray-100);
}

.payments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.payment-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.payment-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  transform: scaleX(0);
  transition: var(--transition);
}

.payment-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: transparent;
}

.payment-card:hover::before { transform: scaleX(1); }

.payment-card-icon {
  font-size: 2.8rem;
  margin-bottom: 16px;
}

.payment-card-name {
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.payment-card-desc {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 16px;
}

.payment-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  background: var(--primary-light);
  color: var(--blue);
  border: 1px solid rgba(26,86,219,0.15);
}

/* ── Features Section ─────────────────────────────────────── */
.features-section {
  background: var(--white);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}

.feature-item {
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  position: relative;
}

.feature-item:hover {
  box-shadow: var(--shadow-lg);
  border-color: rgba(0,102,255,0.2);
  transform: translateY(-4px);
}

.feature-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--primary-light), #DBEAFE);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  border: 1px solid rgba(26,86,219,0.12);
}

.feature-title {
  font-weight: 800;
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 10px;
}

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

/* ── Flow Section ────────────────────────────────────────── */
.flow-section {
  background: linear-gradient(135deg, #0F172A 0%, #1E3A5F 100%);
  position: relative;
  overflow: hidden;
}
.flow-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(59,130,246,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59,130,246,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
}
.flow-section .section-tag {
  background: rgba(59,130,246,0.15);
  color: #93C5FD;
  border-color: rgba(59,130,246,0.25);
}
.flow-section .section-title { color: var(--white); }
.flow-section .section-desc { color: rgba(255,255,255,0.6); }

.flow-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 56px;
  position: relative;
  z-index: 1;
}

.flow-steps::before {
  content: '';
  position: absolute;
  top: 40px; left: 12.5%; right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  z-index: 0;
}

.flow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.flow-number {
  width: 80px; height: 80px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Sans', sans-serif;
  font-weight: 900;
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 24px;
  box-shadow: 0 8px 32px rgba(26,86,219,0.4);
  flex-shrink: 0;
}

.flow-title {
  font-weight: 800;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 10px;
}

.flow-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}

/* ── Pricing Section ──────────────────────────────────────── */
.pricing-section {
  background: var(--gray-100);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
  align-items: start;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1.5px solid var(--gray-200);
  transition: var(--transition);
  position: relative;
}

.pricing-card.featured {
  border-color: var(--blue);
  box-shadow: 0 12px 48px rgba(26,86,219,0.18);
  transform: scale(1.03);
}

.pricing-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 5px 16px;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-name {
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 20px;
}

.pricing-rate {
  font-family: 'DM Sans', sans-serif;
  font-weight: 900;
  font-size: 3rem;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 4px;
}

.pricing-unit {
  font-size: 0.78rem;
  color: var(--gray-400);
  margin-bottom: 20px;
}

.pricing-desc {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--gray-200);
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.pricing-feat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-mid);
}

.pricing-feat.included { color: var(--text-dark); }
.pricing-feat.excluded { opacity: 0.4; }

.feat-check {
  width: 20px; height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  flex-shrink: 0;
}

.included .feat-check {
  background: rgba(0,196,140,0.15);
  color: var(--success);
}

.excluded .feat-check {
  background: var(--gray-200);
  color: var(--gray-400);
}

.pricing-note {
  text-align: center;
  font-size: 0.82rem;
  color: var(--gray-400);
  margin-top: 32px;
}

/* ── FAQ Section ──────────────────────────────────────────── */
.faq-section {
  background: var(--white);
}

.faq-list {
  max-width: 800px;
  margin: 56px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.open {
  border-color: rgba(26,86,219,0.3);
  box-shadow: 0 4px 16px rgba(26,86,219,0.08);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy);
  background: var(--white);
  transition: var(--transition);
  user-select: none;
}

.faq-question:hover { background: var(--gray-100); }

.faq-q-icon {
  width: 28px; height: 28px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-weight: 900;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.faq-toggle {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--gray-600);
  transition: var(--transition);
  flex-shrink: 0;
}

.faq-item.open .faq-toggle {
  background: var(--blue);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 24px;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 24px 20px;
}

.faq-answer p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.8;
  padding-top: 4px;
  border-top: 1px solid var(--gray-200);
  padding-top: 16px;
}

/* ── CTA Section ────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, #1A56DB 0%, #0E9F6E 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 96px 0;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(255,255,255,0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 50%, rgba(255,255,255,0.06) 0%, transparent 60%);
}

.cta-content { position: relative; z-index: 1; }

.cta-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
  white-space: pre-line;
}

.cta-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 36px;
  line-height: 1.8;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Footer ───────────────────────────────────────────────── */
footer {
  background: #0C1426;
  color: rgba(255,255,255,0.55);
  padding: 64px 0 32px;
}

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

.footer-brand {}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-logo-icon {
  width: 32px; height: 32px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 900;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
}

.footer-logo-text {
  font-family: 'DM Sans', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--white);
}

.footer-logo-text span { color: var(--cyan); }

.footer-tagline {
  font-size: 0.85rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h4 {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--white);
  margin-bottom: 16px;
  font-family: 'Noto Sans JP', sans-serif;
}

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

.footer-col ul li a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  transition: var(--transition);
}

.footer-col ul li a:hover { color: var(--cyan); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 0.8rem;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  transition: var(--transition);
}

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

/* ── Legal Pages ─────────────────────────────────────────── */
.legal-main {
  background: linear-gradient(180deg, #f7fbff 0%, #ffffff 65%);
  padding: 156px 0 84px;
}

.legal-header {
  margin-bottom: 20px;
}

.legal-header h1 {
  margin: 0;
  line-height: 1.25;
}

.legal-card {
  max-width: 980px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid #dbe5f4;
  border-radius: 16px;
  padding: 24px 26px;
  box-shadow: 0 10px 28px rgba(16, 34, 68, 0.08);
}

.legal-content {
  color: #334155;
  line-height: 1.9;
  font-size: 0.95rem;
  white-space: normal;
}

/* ── Homepage Harmonization ──────────────────────────────── */
.section-header {
  text-align: center;
  margin: 0 auto 18px;
  max-width: 760px;
}

.section-header h2 {
  font-size: clamp(1.8rem, 3.8vw, 2.6rem);
  line-height: 1.2;
  margin-bottom: 12px;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.section-header p {
  color: var(--text-mid);
  font-size: 1rem;
  line-height: 1.8;
}

.hero-bg {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1200px 550px at 8% 18%, rgba(0, 190, 255, 0.18), transparent 60%),
    linear-gradient(110deg, rgba(8, 20, 44, 0.9), rgba(8, 20, 44, 0.68));
  z-index: 0;
}

.hero-content {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
  display: block;
}

.hero-title {
  max-width: 760px;
}

.hero-title .hero-highlight {
  background: linear-gradient(135deg, #59d8ff, #9ce4ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  max-width: 720px;
  font-size: 1.06rem;
}

.hero-actions,
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-stats {
  margin-top: 34px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 900px;
}

.hero-stat,
.stat-item {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 14px;
  padding: 16px 18px;
  text-align: center;
  backdrop-filter: blur(5px);
}

.hero-stat .stat-num,
.stat-number {
  display: block;
  font-family: 'DM Sans', 'Noto Sans JP', sans-serif;
  font-size: 1.7rem;
  font-weight: 900;
  color: #8ee7ff;
  line-height: 1.05;
}

.hero-stat .stat-label,
.stat-label {
  margin-top: 6px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.72);
}

.brands-strip {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f2f8ff 0%, #ecf6ff 46%, #f7fbff 100%);
  border-top: 1px solid #dbe9ff;
  border-bottom: 1px solid #dbe9ff;
  padding: 18px 0;
}

.brands-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 35%, rgba(0, 148, 255, 0.1), transparent 32%),
    radial-gradient(circle at 84% 70%, rgba(0, 203, 174, 0.1), transparent 36%);
}

.brands-label {
  font-size: 0.82rem;
  color: #5a6a84;
  text-align: center;
  margin-bottom: 12px;
  letter-spacing: 0.08em;
}

.brands-logos {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 10px;
}

.brand-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  border: 1px solid #d7e5ff;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(3px);
  border-radius: 12px;
  padding: 12px 10px;
  min-height: 56px;
  font-size: 0.96rem;
  font-weight: 800;
  color: #2d3a52;
  box-shadow: 0 8px 20px rgba(18, 56, 120, 0.08);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  text-align: center;
}

.brand-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(18, 56, 120, 0.14);
}

.brand-item.wechat {
  color: var(--wechat);
  border-color: var(--wechat);
  background: linear-gradient(135deg, rgba(7, 193, 96, 0.12) 0%, rgba(7, 193, 96, 0.03) 100%);
}

.brand-item.alipay {
  color: var(--alipay);
  border-color: var(--alipay);
  background: linear-gradient(135deg, rgba(22, 119, 255, 0.12) 0%, rgba(22, 119, 255, 0.03) 100%);
}

.brand-item.paypay {
  color: var(--paypay);
  border-color: var(--paypay);
  background: linear-gradient(135deg, rgba(227, 25, 55, 0.12) 0%, rgba(227, 25, 55, 0.03) 100%);
}

.brand-item.rakuten {
  color: var(--rakuten);
  border-color: var(--rakuten);
  background: linear-gradient(135deg, rgba(191, 0, 0, 0.12) 0%, rgba(191, 0, 0, 0.03) 100%);
}

.brand-item.dpay {
  color: var(--dpay);
  border-color: var(--dpay);
  background: linear-gradient(135deg, rgba(230, 0, 18, 0.12) 0%, rgba(230, 0, 18, 0.03) 100%);
}

.brand-item.merpay {
  color: var(--merpay);
  border-color: var(--merpay);
  background: linear-gradient(135deg, rgba(0, 176, 255, 0.12) 0%, rgba(0, 176, 255, 0.03) 100%);
}

.brand-item.aupay {
  color: var(--aupay);
  border-color: var(--aupay);
  background: linear-gradient(135deg, rgba(255, 102, 0, 0.12) 0%, rgba(255, 102, 0, 0.03) 100%);
}

.brand-item img {
  display: none;
}

.brand-item span {
  line-height: 1.25;
}

.feature-card,
.feature-item {
  background: #fff;
  border: 1px solid #e6ebf3;
  border-radius: 16px;
  padding: 28px 24px;
  transition: var(--transition);
}

.feature-card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: #111f36;
}

.feature-card p {
  color: #516078;
  line-height: 1.75;
  font-size: 0.92rem;
}

.feature-card:hover,
.feature-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(15, 35, 73, 0.12);
}

.market-section {
  padding-top: 82px;
  padding-bottom: 82px;
  background: #fff;
}

.market-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}

.market-image img {
  width: 100%;
  border-radius: 18px;
  border: 1px solid #e8ecf3;
  box-shadow: 0 16px 40px rgba(14, 36, 75, 0.12);
}

.market-content h2 {
  font-size: clamp(1.7rem, 3.3vw, 2.4rem);
  line-height: 1.25;
  margin-bottom: 16px;
}

.market-content p {
  color: #55627a;
  line-height: 1.8;
}

.market-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin: 14px 0 18px;
}

.market-stat-item {
  background: #f7faff;
  border: 1px solid #dfe9ff;
  border-radius: 12px;
  padding: 10px 14px;
}

.market-num {
  display: block;
  font-weight: 800;
  color: #1747b3;
}

.market-desc {
  display: block;
  font-size: 0.86rem;
  color: #5b6980;
}

.payments {
  background: linear-gradient(180deg, #f2f7ff 0%, #f8fbff 48%, #ffffff 100%);
}

.payments-panels {
  display: grid;
  gap: 20px;
  margin-top: 30px;
}

.pay-panel {
  border: 1px solid #d9e6fb;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 14px 30px rgba(13, 31, 67, 0.09);
  position: relative;
  overflow: hidden;
}

.pay-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 0% 0%, rgba(255, 255, 255, 0.75), transparent 42%);
}

.pay-panel-overseas {
  background: linear-gradient(140deg, #e9f2ff 0%, #f7fbff 54%, #ecfbfb 100%);
  border-color: #caddff;
}

.pay-panel-domestic {
  background: linear-gradient(140deg, #f7faff 0%, #ffffff 55%, #f2f8ff 100%);
}

.pay-panel-head {
  margin-bottom: 16px;
  padding-left: 14px;
  border-left: 3px solid #2d8cff;
}

.pay-panel-head h3 {
  font-size: 1.1rem;
  color: #14264a;
  margin-bottom: 6px;
}

.pay-panel-head p {
  color: #50627f;
  font-size: 0.92rem;
  line-height: 1.7;
}

.payments-grid-overseas {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.payments-grid-domestic {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pay-core {
  border: 2px solid #4f86ff;
  box-shadow: 0 16px 34px rgba(26, 86, 219, 0.18);
  background: linear-gradient(180deg, #ffffff 0%, #f3f8ff 100%);
}

.payments-grid-overseas .payment-card:nth-child(1) {
  border-color: rgba(7, 193, 96, 0.42);
}

.payments-grid-overseas .payment-card:nth-child(2) {
  border-color: rgba(22, 119, 255, 0.45);
}

.alipay-methods {
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px dashed #b8cff8;
}

.alipay-methods strong {
  display: block;
  color: #163a82;
  font-size: 0.82rem;
  margin-bottom: 8px;
}

.method-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.method-chips span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #ffffff 0%, #f4f8ff 100%);
  border: 1px solid #bcd2fb;
  border-radius: 999px;
  padding: 5px 11px;
  font-size: 0.76rem;
  color: #27457f;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(17, 58, 130, 0.08);
}

.payment-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  padding: 0;
  border-radius: 0;
  border: 0;
  background: transparent;
  margin-bottom: 12px;
}

.wechat-logo {
  border: 0;
  background: transparent;
}

.alipay-logo {
  border: 0;
  background: transparent;
}

.paypay-logo {
  border: 0;
}

.rakuten-logo {
  border: 0;
}

.dpay-logo,
.merpay-logo,
.aupay-logo {
  border: 0;
}

.payment-logo img {
  width: auto;
  height: 40px;
  max-width: 130px;
  object-fit: contain;
  display: block;
}

.payment-card h3 {
  font-size: 1.08rem;
  margin-bottom: 8px;
}

.payment-card p {
  font-size: 0.9rem;
  color: #4f5f78;
  line-height: 1.75;
}

.payment-features {
  margin-top: 12px;
  padding-left: 18px;
  color: #3f4f66;
}

.payment-features li {
  margin-bottom: 5px;
  font-size: 0.86rem;
}

.flow {
  background: linear-gradient(180deg, #f9fbff 0%, #f1f7ff 100%);
  padding-top: 86px;
  padding-bottom: 84px;
}

.flow .section-header {
  max-width: 700px;
  margin-bottom: 28px;
}

.flow .flow-steps {
  display: grid;
  grid-template-columns: 1fr 44px 1fr 44px 1fr 44px 1fr;
  gap: 10px;
  margin-top: 20px;
}

.flow .flow-steps::before {
  display: none;
}

.flow .flow-step {
  background: #fff;
  border: 1px solid #e2eaf8;
  border-radius: 16px;
  padding: 20px 16px 18px;
  box-shadow: 0 10px 22px rgba(16, 41, 84, 0.08);
}

.flow .step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #1a56db, #0ea5e9);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-weight: 800;
  font-size: 1.02rem;
  margin-bottom: 12px;
}

.flow .step-content h3 {
  font-size: 1.15rem;
  line-height: 1.3;
  margin-bottom: 8px;
  color: #12213a;
}

.flow .step-content p {
  font-size: 0.92rem;
  line-height: 1.75;
  color: #4f5f77;
}

.flow .flow-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6f819e;
  font-size: 1.7rem;
  font-weight: 700;
}

.flow-cta {
  margin-top: 28px;
  text-align: center;
}

.contract-section {
  background: #fff;
  padding-top: 86px;
  padding-bottom: 86px;
}

.contract-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
}

.contract-content h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.45rem);
  line-height: 1.26;
  margin-bottom: 14px;
}

.contract-content p {
  color: #52627b;
  line-height: 1.85;
}

.contract-features {
  margin: 16px 0 22px;
  display: grid;
  gap: 8px;
}

.contract-features li {
  background: #f4f8ff;
  border: 1px solid #dce7fa;
  border-radius: 10px;
  padding: 9px 12px;
  font-size: 0.9rem;
  color: #31435e;
}

.contract-image img {
  width: 100%;
  border-radius: 18px;
  border: 1px solid #e7ecf6;
  box-shadow: 0 16px 32px rgba(15, 34, 66, 0.12);
}

.pricing-table-wrap {
  margin-top: 30px;
  border: 1px solid #dce6f6;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 14px 30px rgba(14, 33, 70, 0.08);
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
}

.pricing-table th {
  background: #112241;
  color: #e8efff;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 14px 12px;
  text-align: center;
}

.pricing-table td {
  padding: 13px 12px;
  text-align: center;
  border-bottom: 1px solid #edf1f8;
  color: #2d3d59;
  font-size: 0.9rem;
}

.pricing-table tbody tr:hover td {
  background: #f8fbff;
}

.highlight-row td {
  background: #f0f6ff;
}

.rate-highlight {
  color: #1154d6;
}

.free-badge {
  display: inline-block;
  background: #e9fff5;
  color: #0b8f61;
  border: 1px solid #bcefd9;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 3px 10px;
}

.faq {
  background: #fff;
  padding-top: 86px;
  padding-bottom: 86px;
}

.faq-question {
  font-size: 0.98rem;
}

.cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: center;
}

.cta-content {
  text-align: left;
}

.cta-content h2 {
  font-size: clamp(2rem, 4.2vw, 3rem);
  line-height: 1.2;
  color: #fff;
  margin-bottom: 14px;
}

.cta-content p {
  color: rgba(255,255,255,0.86);
  margin-bottom: 24px;
}

.cta-image img {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.25);
  box-shadow: 0 20px 36px rgba(0, 0, 0, 0.25);
}

.btn-outline-white {
  border: 1.5px solid rgba(255,255,255,0.65);
  color: #fff;
  background: transparent;
}

.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
}

.btn-phone-consult {
  display: inline-flex;
  align-items: center;
  min-width: 220px;
  justify-content: center;
  gap: 8px;
  border: none;
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Noto Sans JP', sans-serif;
  white-space: nowrap;
  background: linear-gradient(135deg, var(--accent), #FF8A4C);
  box-shadow: 0 8px 28px rgba(255,90,31,0.28);
  letter-spacing: 0;
}

.btn-phone-consult:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #ff5a1f, #ff8d52);
  box-shadow: 0 8px 28px rgba(255,90,31,0.4);
}

.footer-contact p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.7;
  margin-bottom: 12px;
}

.footer-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 10px;
  background: linear-gradient(135deg, #1a56db, #0ea5e9);
  color: #fff;
  font-size: 0.84rem;
  font-weight: 700;
}

.footer-legal {
  display: flex;
  gap: 14px;
}

.footer-legal a {
  color: rgba(255,255,255,0.52);
  font-size: 0.8rem;
}

.footer-legal a:hover {
  color: #fff;
}

/* ── FAQ Polish ───────────────────────────────────────────── */
.faq {
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 68%);
  position: relative;
}

.faq .section-header {
  max-width: 760px;
}

.faq-list {
  max-width: 920px;
  margin: 42px auto 0;
  display: grid;
  gap: 14px;
}

.faq-item {
  border: 1px solid #dbe5f4;
  border-radius: 16px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 8px 22px rgba(16, 34, 68, 0.06);
  transition: var(--transition);
}

.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(16, 34, 68, 0.1);
}

.faq-item.open {
  border-color: #94b7ff;
  box-shadow: 0 16px 34px rgba(27, 84, 210, 0.14);
}

.faq-question {
  width: 100%;
  border: 0;
  text-align: left;
  background: transparent;
  color: #13233f;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.45;
  padding: 18px 64px 18px 62px;
  cursor: pointer;
  position: relative;
}

.faq-question::before {
  content: 'Q';
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  border-radius: 10px;
  background: linear-gradient(135deg, #1a56db, #0ea5e9);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Sans', 'Noto Sans JP', sans-serif;
  font-weight: 800;
  font-size: 0.88rem;
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #eef3ff;
  color: #1a56db;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  font-weight: 800;
}

.faq-item.open .faq-question::after {
  content: '−';
  background: #1a56db;
  color: #fff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  padding: 0 22px 0 62px;
}

.faq-item.open .faq-answer {
  max-height: 340px;
  padding-bottom: 18px;
}

.faq-answer p {
  margin: 0;
  border-top: 1px dashed #d8e3f6;
  padding-top: 14px;
  color: #4b5e7a;
  line-height: 1.85;
  font-size: 0.94rem;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 48px; }
  .hero-right { display: none; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .pricing-card.featured { transform: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .brands-logos { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .market-inner, .contract-inner, .cta-inner { grid-template-columns: 1fr; }
  .flow .flow-steps { grid-template-columns: 1fr 44px 1fr; row-gap: 12px; }
  .flow .flow-step { min-height: 100%; }
}

@media (max-width: 768px) {
  section { padding: 64px 0; }
  .nav-inner, .nav-container { height: 68px; padding: 0 16px; }
  .nav-links,
  .nav-menu {
    display: none;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 20px 24px 24px;
    gap: 12px;
    border-bottom: 1px solid rgba(17, 25, 40, 0.08);
    box-shadow: 0 12px 30px rgba(17, 25, 40, 0.12);
    z-index: 1001;
  }
  .nav-links a,
  .nav-menu a { width: 100%; padding: 10px 2px; }
  .nav-links.open,
  .nav-menu.open { display: flex; }
  .nav-hamburger,
  .hamburger { display: flex; }
  .nav-cta { text-align: center; margin-top: 4px; }
  .features-grid { grid-template-columns: 1fr; }
  .flow .flow-steps { grid-template-columns: 1fr; gap: 12px; }
  .flow .flow-arrow { display: none; }
  .hero-stats { grid-template-columns: 1fr; }
  .hero-content { width: calc(100% - 32px); }
  .brands-logos { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .payments-grid-overseas { grid-template-columns: 1fr; }
  .payments-grid-domestic { grid-template-columns: 1fr; }
  .pricing-table-wrap { overflow-x: auto; }
  .pricing-table { min-width: 720px; }
  .cta-content { text-align: center; }
  .cta-buttons { justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .faq-question { font-size: 0.96rem; padding: 16px 56px 16px 56px; }
  .faq-answer { padding-left: 56px; }
}

@media (max-width: 480px) {
  .hero-cta,
  .hero-actions { flex-direction: column; }
  .hero-actions .btn-primary,
  .hero-actions .btn-outline,
  .cta-buttons .btn-primary,
  .cta-buttons .btn-outline-white { width: 100%; justify-content: center; }
  .flow .step-content h3 { font-size: 1rem; }
  .flow .step-content p { font-size: 0.9rem; }
  .payments-grid { grid-template-columns: 1fr; }
  .faq-list { gap: 10px; margin-top: 28px; }
  .faq-question { font-size: 0.92rem; padding: 14px 48px 14px 50px; }
  .faq-question::before { left: 14px; width: 26px; height: 26px; border-radius: 8px; font-size: 0.8rem; }
  .faq-question::after { right: 12px; width: 24px; height: 24px; }
  .faq-answer { padding: 0 14px 0 50px; }
  .faq-answer p { font-size: 0.88rem; }
}
