:root {
  --color-orange: #E95720;
  --color-orange-dark: #B8410F;
  --color-orange-light: #FF8A50;
  --color-cream: #FFF8F2;
  --color-ink: #2B1A12;
  --color-white: #FFFFFF;
  --font-base: 'M PLUS Rounded 1c', 'Hiragino Sans', sans-serif;
  --container-width: 1080px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-full: 999px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-base);
  color: var(--color-ink);
  background: var(--color-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  word-break: keep-all;
  overflow-wrap: break-word;
}

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

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

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

.section-heading {
  font-size: clamp(22px, 4.5vw, 32px);
  font-weight: 800;
  text-align: center;
  margin-bottom: 36px;
  word-break: keep-all;
  overflow-wrap: break-word;
}

/* Badge */
.badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.4);
  color: var(--color-white);
}
.badge--dark {
  background: rgba(233,87,32,0.1);
  border: 1px solid rgba(233,87,32,0.3);
  color: var(--color-orange-dark);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius-full);
  font-weight: 800;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease;
}
.btn:hover { transform: translateY(-1px); }

.btn-light {
  background: var(--color-white);
  color: var(--color-orange-dark);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

.btn-outline {
  background: transparent;
  color: var(--color-white);
  border: 1.5px solid rgba(255,255,255,0.6);
}
.btn-outline[aria-disabled="true"] {
  opacity: 0.6;
  cursor: not-allowed;
}
.btn-outline[aria-disabled="true"]:hover { transform: none; }

.btn-sm { padding: 10px 20px; font-size: 13px; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(6px);
  transition: box-shadow .2s ease;
}
.site-header.is-scrolled { box-shadow: 0 4px 16px rgba(0,0,0,0.08); }

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
}

.site-header__logo img { height: 40px; width: auto; }

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--color-ink);
  border-radius: 2px;
}

.site-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--color-white);
  flex-direction: column;
  padding: 16px 20px 24px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.08);
}
.site-nav.is-open { display: flex; }
.site-nav a {
  padding: 12px 0;
  font-weight: 700;
  border-bottom: 1px solid #f1e6de;
}
.site-nav__cta {
  margin-top: 8px;
  text-align: center;
  background: var(--color-orange);
  color: var(--color-white) !important;
  border-radius: var(--radius-full);
  padding: 14px;
  border-bottom: none !important;
}

@media (min-width: 860px) {
  .nav-toggle { display: none; }
  .site-nav {
    display: flex;
    position: static;
    flex-direction: row;
    align-items: center;
    gap: 28px;
    padding: 0;
    box-shadow: none;
    background: none;
  }
  .site-nav a { padding: 0; border-bottom: none; font-weight: 700; }
  .site-nav__cta {
    margin-top: 0;
    padding: 10px 22px;
  }
}

/* Footer */
.site-footer {
  background: var(--color-ink);
  padding: 40px 0;
}
.site-footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.site-footer__logo { height: 44px; width: auto; opacity: 0.9; }
.site-footer__copyright { color: rgba(255,255,255,0.6); font-size: 13px; }

/* Hero */
.hero {
  background: var(--color-orange-dark);
  padding: 56px 0;
  color: var(--color-white);
}
.hero__inner {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 40px;
  text-align: center;
}
.hero__content { max-width: 500px; }
.hero__title {
  margin-top: 16px;
  font-size: clamp(26px, 5.5vw, 40px);
  font-weight: 900;
  line-height: 1.4;
  word-break: keep-all;
  overflow-wrap: break-word;
}
.hero__subtitle {
  margin-top: 16px;
  font-size: 15px;
  opacity: 0.92;
}
.hero__actions { margin-top: 28px; }
.hero__stores { margin-top: 32px; }
.hero__stores-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  background: rgba(255,255,255,0.14);
  padding: 5px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
}
.hero__store-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero__store-buttons .btn { flex-direction: column; line-height: 1.3; }
.hero__store-buttons small { font-weight: 400; font-size: 10px; opacity: 0.85; }

.hero__visual { flex-shrink: 0; }
.hero__phone {
  width: 240px;
  max-width: 60vw;
  border-radius: 22px;
  box-shadow: 0 24px 48px rgba(0,0,0,0.35);
  border: 5px solid rgba(255,255,255,0.15);
}

@media (min-width: 960px) {
  .hero { padding: 88px 0; }
  .hero__inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
  .hero__store-buttons { justify-content: flex-start; }
  .hero__phone { width: 300px; max-width: none; }
}

@media (min-width: 860px) {
  .hero__br { display: none; }
}

/* Problem */
.problem { padding: 64px 0; }
.problem__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.problem__card {
  background: var(--color-cream);
  border-radius: var(--radius-md);
  padding: 28px 22px;
  text-align: center;
}
.problem__stat {
  font-size: 38px;
  font-weight: 900;
  color: var(--color-orange);
}
.problem__label { margin-top: 6px; font-weight: 700; font-size: 14px; }
.problem__source {
  margin-top: 20px;
  text-align: center;
  font-size: 12px;
  color: #9a8a80;
}

@media (min-width: 860px) {
  .problem__grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
}

/* Features */
.features { padding: 64px 0; }
.features__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.feature-card {
  border: 1px solid #f1e6de;
  border-radius: var(--radius-md);
  padding: 24px 22px;
}
.feature-card__title {
  font-weight: 800;
  font-size: 17px;
  color: var(--color-orange-dark);
  margin-bottom: 8px;
}
.feature-card__desc { font-size: 14px; color: #4a3a30; }

@media (min-width: 860px) {
  .features__grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .feature-card:last-child { grid-column: span 2; }
}

/* Showcase image */
.showcase { padding: 0 0 64px; }
.showcase__image {
  width: 100%;
  border-radius: var(--radius-lg);
}

/* Pricing */
.pricing { padding: 0 0 64px; }
.pricing__card {
  max-width: 560px;
  margin: 0 auto;
  border: 1.5px solid var(--color-orange);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
}
.pricing__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}
.pricing__price { font-size: 24px; font-weight: 900; color: var(--color-orange-dark); }
.pricing__note { font-size: 13px; color: #9a8a80; margin-bottom: 16px; }
.pricing__table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
  font-size: 13px;
}
.pricing__table th, .pricing__table td {
  text-align: left;
  padding: 8px 10px;
  border-bottom: 1px solid #f1e6de;
}
.pricing__table th { color: #9a8a80; font-weight: 700; }
.pricing__table td:first-child { font-weight: 700; }
.pricing__detail-link { margin-top: 16px; font-size: 12px; }
.pricing__detail-link a { color: var(--color-orange-dark); text-decoration: underline; }
.pricing__list {
  list-style: none;
  display: grid;
  gap: 10px;
}
.pricing__list li {
  font-size: 14px;
  padding-left: 22px;
  position: relative;
}
.pricing__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-orange);
  font-weight: 800;
}

/* Story */
.story { padding: 64px 0; background: var(--color-cream); }
.story__inner { max-width: 680px; }
.story__text { margin-top: 16px; font-size: 15px; color: #4a3a30; }
.story__text:first-of-type { margin-top: 0; }

/* Traction */
.traction {
  padding: 48px 0;
  text-align: center;
  border-top: 1px solid #f1e6de;
  border-bottom: 1px solid #f1e6de;
}
.traction__stat { font-size: 48px; font-weight: 900; color: var(--color-orange); }
.traction__label { margin-top: 6px; font-size: 14px; color: #4a3a30; }

/* CTA repeat */
.cta-repeat {
  padding: 64px 0;
  text-align: center;
  background: var(--color-orange-dark);
  color: var(--color-white);
}
.cta-repeat__title {
  font-size: clamp(20px, 4.5vw, 28px);
  font-weight: 800;
  margin-bottom: 24px;
  word-break: keep-all;
  overflow-wrap: break-word;
}

/* Company */
.company { padding: 64px 0; }
.company__table {
  max-width: 480px;
  margin: 0 auto;
  width: 100%;
  border-collapse: collapse;
}
.company__table th,
.company__table td {
  text-align: left;
  padding: 14px 12px;
  border-bottom: 1px solid #e9d9cd;
  font-size: 14px;
}
.company__table th {
  width: 96px;
  color: #9a8a80;
  font-weight: 700;
}
.company__table a { color: var(--color-orange-dark); text-decoration: underline; }
