/* =====================================================
   CashCowLab — Landing Page CSS
   Clean, Professional, Human-crafted feel
   ===================================================== */

/* ─── Variables ────────────────────────────────────── */
:root {
  --cream:      #faf9f6;
  --cream-dark: #f0efe9;
  --white:      #ffffff;
  --navy:       #0f172a;
  --navy-mid:   #1e293b;
  --slate:      #334155;
  --muted:      #64748b;
  --light:      #94a3b8;
  --border:     #e2e8f0;
  --border-dark:#cbd5e1;
  --amber:      #d97706;
  --amber-light:#f59e0b;
  --amber-bg:   rgba(217,119,6,0.07);
  --amber-bdr:  rgba(217,119,6,0.18);
  --green:      #16a34a;
  --green-bg:   rgba(22,163,74,0.07);
  --green-bdr:  rgba(22,163,74,0.18);
  --indigo:     #6366f1;
  --shadow-sm:  0 1px 3px rgba(15,23,42,0.06);
  --shadow:     0 4px 16px rgba(15,23,42,0.08);
  --shadow-lg:  0 12px 36px rgba(15,23,42,0.12);
  --radius:     12px;
  --radius-sm:  8px;
  --radius-lg:  18px;
  --font-th:    'Noto Sans Thai', sans-serif;
  --font-en:    'Outfit', sans-serif;
  --font-ui:    'Inter', sans-serif;
  --transition: all 0.22s ease;
}

/* ─── Reset ─────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 72px; }
body {
  font-family: var(--font-th);
  background: var(--cream);
  color: var(--navy);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
strong { font-weight: 700; }
p { line-height: 1.8; }

/* ─── Layout ─────────────────────────────────────────── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.container-narrow { max-width: 760px; }
.section { padding: 80px 0; }
.bg-white   { background: var(--white); }
.bg-cream   { background: var(--cream); }
.bg-navy    { background: var(--navy); }
.text-amber { color: var(--amber); }

/* ─── Section Heads ──────────────────────────────────── */
.section-head {
  text-align: center;
  margin-bottom: 52px;
}
.label-tag {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 100px;
  background: var(--amber-bg);
  border: 1px solid var(--amber-bdr);
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--amber);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 14px;
}
.section-head h2 {
  font-family: var(--font-en);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.22;
  margin-bottom: 12px;
}
.section-head p {
  font-size: 0.92rem;
  color: var(--muted);
  max-width: 500px;
  margin: 0 auto;
}

/* ─── Buttons ─────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  background: var(--navy);
  color: #fff;
  font-family: var(--font-th);
  font-size: 0.9rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}
.btn-primary:hover {
  background: var(--navy-mid);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(15,23,42,0.16);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--slate);
  font-family: var(--font-th);
  font-size: 0.9rem;
  font-weight: 600;
  border: 1.5px solid var(--border-dark);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}
.btn-ghost:hover {
  border-color: var(--navy);
  color: var(--navy);
  background: rgba(15,23,42,0.03);
}

/* ─── Navigation ─────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(250,249,246,0.94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: var(--shadow); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo-img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  border-radius: 9px;
}
.logo-main {
  display: block;
  font-family: var(--font-en);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--navy);
  line-height: 1.1;
}
.logo-sub {
  display: block;
  font-size: 0.58rem;
  color: var(--light);
  line-height: 1;
  margin-top: 1px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-link {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--slate);
  transition: color 0.2s;
}
.nav-link:hover { color: var(--navy); }
.btn-nav-cta {
  padding: 9px 22px;
  border-radius: var(--radius-sm);
  background: var(--navy);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  font-family: var(--font-th);
  transition: var(--transition);
  border: none;
  cursor: pointer;
}
.btn-nav-cta:hover {
  background: var(--navy-mid);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Drawer */
.nav-drawer {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--border);
}
.nav-drawer.open { display: flex; }
.nav-drawer a {
  padding: 15px 24px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--slate);
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}
.nav-drawer a:hover { background: var(--cream); }
.drawer-cta {
  color: var(--amber) !important;
  font-weight: 700 !important;
}

@media (max-width: 820px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
}

/* ─── Hero ───────────────────────────────────────────── */
.hero {
  padding: 144px 0 88px;
  background: linear-gradient(160deg, var(--cream) 0%, var(--cream-dark) 100%);
  border-bottom: 1px solid var(--border);
}
.hero-container {
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
  padding: 0 24px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  border-radius: 100px;
  border: 1px solid var(--border);
  background: var(--white);
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
}
.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  animation: blink 2.2s ease-in-out infinite;
}
@keyframes blink { 0%,100% { opacity:1; } 50% { opacity:0.35; } }
.hero-h1 {
  font-family: var(--font-en);
  font-size: clamp(2rem, 5.5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.18;
  color: var(--navy);
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}
.hero-sub {
  font-size: 1rem;
  color: var(--slate);
  max-width: 580px;
  margin: 0 auto 36px;
  line-height: 1.85;
}
.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
.hero-trust-row {
  display: flex;
  gap: 28px;
  justify-content: center;
  flex-wrap: wrap;
}
.trust-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--green);
}

/* ─── Pain Cards ─────────────────────────────────────── */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 14px;
}
.pain-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 3px solid #fca5a5;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.pain-card:hover {
  border-color: var(--border-dark);
  border-left-color: #ef4444;
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.pain-icon-wrap {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #fef2f2;
  color: #ef4444;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pain-card strong {
  display: block;
  font-size: 0.88rem;
  margin-bottom: 4px;
  color: var(--navy);
}
.pain-card p {
  font-size: 0.78rem;
  color: var(--slate);
  line-height: 1.6;
}

/* ─── Solution ───────────────────────────────────────── */
.solution-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
}
.solution-text .label-tag { margin-bottom: 14px; }
.solution-text h2 {
  font-family: var(--font-en);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 16px;
  color: var(--navy);
}
.solution-text p {
  font-size: 0.88rem;
  color: var(--slate);
  line-height: 1.85;
  margin-bottom: 12px;
}
.solution-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sol-card {
  padding: 18px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  position: relative;
  transition: var(--transition);
}
.sol-card:hover { border-color: var(--amber-bdr); box-shadow: var(--shadow); }
.sol-num {
  font-family: var(--font-ui);
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--amber);
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.sol-card strong {
  display: block;
  font-size: 0.9rem;
  color: var(--navy);
  margin-bottom: 2px;
}
.sol-card p {
  font-size: 0.76rem;
  color: var(--muted);
  line-height: 1.5;
}

/* ─── Products Catalog ───────────────────────────────── */
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 16px;
  margin-bottom: 40px;
}
.pcard {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: var(--transition);
}
.pcard:hover {
  border-color: var(--border-dark);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.pcard-active {
  border-color: var(--amber);
  border-width: 2px;
}
.pcard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px 0;
}
.pcard-num {
  font-family: var(--font-ui);
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--light);
  letter-spacing: 1.5px;
}
.pcard-badge {
  padding: 3px 11px;
  border-radius: 100px;
  font-size: 0.65rem;
  font-weight: 700;
}
.badge-live  { background: var(--green-bg); color: var(--green); border: 1px solid var(--green-bdr); }
.badge-soon  { background: var(--amber-bg); color: var(--amber); border: 1px solid var(--amber-bdr); }
.badge-future{ background: rgba(100,116,139,0.06); color: var(--muted); border: 1px solid var(--border); }
.pcard-title {
  font-family: var(--font-en);
  font-size: 1.1rem;
  font-weight: 800;
  padding: 12px 20px 2px;
  color: var(--navy);
}
.pcard-niche {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--amber);
  padding: 0 20px 10px;
  letter-spacing: 0.3px;
}
.pcard-desc {
  font-size: 0.8rem;
  color: var(--slate);
  padding: 0 20px 12px;
  line-height: 1.65;
  flex: 1;
}
.pcard-list {
  list-style: none;
  padding: 0 20px 14px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.pcard-list li {
  font-size: 0.74rem;
  color: var(--slate);
  padding-left: 14px;
  position: relative;
  line-height: 1.5;
}
.pcard-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--amber);
  font-weight: 700;
  font-size: 0.7rem;
}
.pcard-list.muted li { color: var(--light); }
.pcard-list.muted li::before { color: var(--border-dark); }
.pcard-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px 16px;
  border-top: 1px solid var(--border);
  background: rgba(250,249,246,0.5);
  margin-top: auto;
  gap: 10px;
}
.pcard-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.price-old {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  color: var(--light);
  text-decoration: line-through;
}
.price-main {
  font-family: var(--font-en);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--navy);
}
.coming-text {
  font-size: 0.76rem;
  color: var(--light);
  font-style: italic;
}
.btn-pcard-buy {
  display: inline-flex;
  align-items: center;
  padding: 9px 18px;
  border-radius: var(--radius-sm);
  background: var(--amber);
  color: #fff;
  font-family: var(--font-th);
  font-size: 0.8rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-pcard-buy:hover {
  background: var(--amber-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(217,119,6,0.3);
}
.btn-pcard-notify {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--muted);
  font-family: var(--font-th);
  font-size: 0.78rem;
  font-weight: 600;
  border: 1px dashed var(--border-dark);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-pcard-notify:hover {
  border-color: var(--amber);
  color: var(--amber);
  border-style: solid;
}

/* Notify Strip */
.notify-strip {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px 28px;
  border-radius: var(--radius-lg);
  background: var(--navy);
  color: #fff;
  flex-wrap: wrap;
}
.notify-strip-text strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 3px;
}
.notify-strip-text span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
}
.notify-strip-form {
  display: flex;
  gap: 8px;
  flex: 1;
  min-width: 260px;
}
.notify-input-inline {
  flex: 1;
  padding: 11px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-family: var(--font-th);
  font-size: 0.88rem;
  outline: none;
  transition: border-color 0.2s;
}
.notify-input-inline::placeholder { color: rgba(255,255,255,0.35); }
.notify-input-inline:focus { border-color: var(--amber-light); }
.btn-notify-submit {
  padding: 11px 22px;
  border-radius: var(--radius-sm);
  background: var(--amber);
  color: #fff;
  font-family: var(--font-th);
  font-size: 0.85rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-notify-submit:hover { background: var(--amber-light); }

/* ─── Roadmap ─────────────────────────────────────────── */
.roadmap-phases {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 700px;
  margin: 0 auto;
}
.roadmap-phase {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.phase-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 5px;
}
.dot-green { background: var(--green); box-shadow: 0 0 0 4px var(--green-bg); }
.dot-amber { background: var(--amber); box-shadow: 0 0 0 4px var(--amber-bg); }
.dot-gray  { background: var(--light); box-shadow: 0 0 0 4px rgba(148,163,184,0.12); }
.phase-title {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.phase-chips { display: flex; flex-wrap: wrap; gap: 7px; }
.chip {
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.74rem;
  font-weight: 600;
}
.chip-green { background: var(--green-bg); color: var(--green); border: 1px solid var(--green-bdr); }
.chip-amber { background: var(--amber-bg); color: var(--amber); border: 1px solid var(--amber-bdr); }
.chip-gray  { background: rgba(100,116,139,0.06); color: var(--muted); border: 1px solid var(--border); }

/* ─── C.A.S.H. Steps ─────────────────────────────────── */
.cash-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}
.cash-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 22px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
}
.cash-step:hover {
  border-color: var(--amber-bdr);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.cash-letter {
  font-family: var(--font-en);
  font-size: 2rem;
  font-weight: 900;
  color: var(--amber);
  line-height: 1;
  flex-shrink: 0;
  width: 44px;
  text-align: center;
}
.cash-step-body h3 {
  font-family: var(--font-en);
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 6px;
  color: var(--navy);
}
.cash-th {
  font-family: var(--font-th);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--amber);
}
.cash-step-body p {
  font-size: 0.78rem;
  color: var(--slate);
  line-height: 1.65;
}

/* ─── Guarantee ──────────────────────────────────────── */
.guarantee-box {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  padding: 40px;
  background: var(--white);
  border: 1px solid var(--green-bdr);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(22,163,74,0.03), rgba(22,163,74,0.06));
}
.guarantee-icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--green-bg);
  border: 1px solid var(--green-bdr);
  display: flex;
  align-items: center;
  justify-content: center;
}
.guarantee-text h2 {
  font-family: var(--font-en);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
}
.guarantee-text p {
  font-size: 0.88rem;
  color: var(--slate);
  line-height: 1.85;
}

/* ─── About ──────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.about-story p {
  font-size: 0.9rem;
  color: var(--slate);
  line-height: 1.9;
  margin-bottom: 14px;
}
.about-note {
  padding: 16px 18px;
  background: var(--amber-bg);
  border: 1px solid var(--amber-bdr);
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  color: var(--slate);
  line-height: 1.7;
  margin-top: 8px;
}
.about-note strong { color: var(--amber); }
.about-values {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.value-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.value-row:hover { border-color: var(--amber-bdr); }
.value-icon-wrap {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: var(--amber-bg);
  color: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.value-row strong {
  display: block;
  font-size: 0.86rem;
  color: var(--navy);
  margin-bottom: 2px;
}
.value-row p {
  font-size: 0.74rem;
  color: var(--muted);
  line-height: 1.5;
}

/* ─── FAQ ─────────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.faq-item[open] { border-color: var(--amber-bdr); }
.faq-item summary {
  padding: 16px 20px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 700;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--navy);
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.3rem;
  color: var(--amber);
  font-weight: 400;
  flex-shrink: 0;
  margin-left: 12px;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item > p {
  padding: 0 20px 16px;
  font-size: 0.84rem;
  color: var(--slate);
  line-height: 1.78;
}

/* ─── Contact ─────────────────────────────────────────── */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}
.contact-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
}
.contact-card:hover {
  border-color: var(--border-dark);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.contact-card-icon {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-card strong {
  display: block;
  font-size: 0.88rem;
  color: var(--navy);
  margin-bottom: 2px;
}
.contact-card span {
  display: block;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--amber);
  margin-bottom: 3px;
}
.contact-card small {
  font-size: 0.7rem;
  color: var(--light);
}

/* ─── Final CTA ──────────────────────────────────────── */
.final-cta {
  text-align: center;
  padding: 64px 24px;
}
.final-cta h2 {
  font-family: var(--font-en);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
}
.final-cta > p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 28px;
}
.btn-cta-white {
  display: inline-flex;
  align-items: center;
  padding: 15px 36px;
  border-radius: var(--radius-sm);
  background: var(--amber);
  color: #fff;
  font-family: var(--font-th);
  font-size: 1rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.btn-cta-white:hover {
  background: var(--amber-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(217,119,6,0.4);
}
.cta-small {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
  margin-top: 16px;
}

/* ─── Footer ──────────────────────────────────────────── */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 56px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.footer-logo-img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  object-fit: contain;
}
.footer-brand-name {
  font-family: var(--font-en);
  font-weight: 800;
  font-size: 1.05rem;
  color: #fff;
}
.footer-tagline {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.65;
  margin-bottom: 18px;
}
.footer-socials {
  display: flex;
  gap: 8px;
}
.social-btn {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.social-btn:hover {
  background: rgba(255,255,255,0.14);
  color: #fff;
}
.footer-col h4 {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}
.footer-col a {
  display: block;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 9px;
  transition: color 0.2s;
}
.footer-col a:hover { color: #fff; }
.footer-bottom { padding: 18px 0; }
.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-bottom p {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.25);
}
.footer-disclaimer strong { color: rgba(255,255,255,0.35); }

/* ─── Modal ───────────────────────────────────────────── */
.modal-bg {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(0,0,0,0.48);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  max-width: 380px;
  width: 100%;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-lg);
}
.modal-x {
  position: absolute;
  top: 12px;
  right: 12px;
  background: none;
  border: none;
  color: var(--light);
  cursor: pointer;
  padding: 4px;
  transition: color 0.2s;
}
.modal-x:hover { color: var(--navy); }
.modal-icon { font-size: 2.4rem; margin-bottom: 10px; }
.modal-card h3 {
  font-family: var(--font-en);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}
.modal-card > p {
  font-size: 0.82rem;
  color: var(--slate);
  line-height: 1.65;
  margin-bottom: 18px;
}
.modal-input {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  background: var(--cream);
  font-family: var(--font-th);
  font-size: 0.9rem;
  color: var(--navy);
  outline: none;
  transition: border-color 0.2s;
}
.modal-input:focus { border-color: var(--amber); }
.modal-fine {
  font-size: 0.7rem;
  color: var(--light);
  margin-top: 10px !important;
}

/* ─── Toast ───────────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(16px);
  background: var(--navy);
  color: #fff;
  padding: 12px 24px;
  border-radius: 100px;
  font-size: 0.84rem;
  font-weight: 600;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
  pointer-events: none;
  white-space: nowrap;
  box-shadow: var(--shadow-lg);
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ─── Responsive ──────────────────────────────────────── */
@media (max-width: 960px) {
  .solution-wrap { grid-template-columns: 1fr; gap: 36px; }
  .about-grid    { grid-template-columns: 1fr; gap: 32px; }
  .footer-inner  { grid-template-columns: 1fr 1fr; }
  .footer-brand  { grid-column: 1 / -1; }
}
@media (max-width: 680px) {
  .section { padding: 60px 0; }
  .hero    { padding: 120px 0 64px; }
  .hero-trust-row  { flex-direction: column; align-items: center; gap: 10px; }
  .hero-actions    { flex-direction: column; align-items: center; }
  .catalog-grid    { grid-template-columns: 1fr; }
  .pain-grid       { grid-template-columns: 1fr; }
  .cash-steps      { grid-template-columns: 1fr; }
  .guarantee-box   { flex-direction: column; gap: 18px; padding: 28px 20px; }
  .footer-inner    { grid-template-columns: 1fr; }
  .footer-brand    { grid-column: auto; }
  .notify-strip    { flex-direction: column; gap: 16px; }
  .notify-strip-form { flex-direction: column; }
  .contact-cards   { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .hero-h1 { font-size: 1.85rem; }
  .final-cta { padding: 48px 20px; }
}
