@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Playfair Display";
  src: url("../fonts/PlayfairDisplay.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

img {
  max-width: 100%;
}

.legal-content {
  word-break: break-word;
}

:root {
  --bg-soft: #fefaf5;
  --white: #ffffff;
  --card-bg: #ffffff;
  --text-dark: #2c2a29;
  --text-muted: #5e5b58;
  --accent: #2c7a4b;
  --accent-light: #e6f3ec;
  --border-light: #ece6df;
  --shadow-sm: 0 8px 20px rgba(0, 0, 0, 0.02), 0 2px 6px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 12px 28px rgba(0, 0, 0, 0.04);
  --radius: 1.2rem;
  --radius-sm: 0.9rem;
}

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

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-soft);
  color: var(--text-dark);
  line-height: 1.5;
  scroll-behavior: smooth;
}

.site-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

.main,
.blog-article,
.container {
  max-width: 100%;
  min-width: 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.header {
  background: var(--white);
  border-bottom: 1px solid var(--border-light);
  padding: 0.85rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(6px);
  background-color: rgba(255, 255, 255, 0.92);
}

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

.logo a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
}

.logo img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.logo .logo-line1,
.logo .logo-line2 {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  letter-spacing: -0.3px;
}

.logo .logo-line1 {
  font-size: 1.1rem;
  line-height: 1.2;
}

.logo .logo-line2 {
  font-size: 1rem;
  color: var(--accent);
}

.header-notice {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.badge-ad {
  background: #2c2a29;
  color: #fff3e8;
  padding: 0.25rem 0.75rem;
  border-radius: 40px;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.domain-badge {
  font-size: 0.7rem;
  font-family: monospace;
  background: var(--accent-light);
  padding: 0.2rem 0.8rem;
  border-radius: 30px;
  color: var(--accent);
}

.article-meta {
  display: flex;
  gap: 1.2rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.article-meta i {
  margin-right: 0.3rem;
}

.hero {
  padding: 2rem 0 3rem 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 1.8rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--accent);
  color: white;
  padding: 0.9rem 2rem;
  border-radius: 60px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary {
  background: var(--accent);
  box-shadow: 0 4px 8px rgba(44, 122, 75, 0.2);
}

.btn-primary:hover {
  background: #1f5f3c;
  transform: translateY(-2px);
}

.btn-block {
  width: 100%;
  justify-content: center;
}

.hero-guarantee {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.hero-image img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  aspect-ratio: 1 / 0.9;
  object-fit: cover;
}

/* section */
section {
  margin-bottom: 4rem;
}

.section-intro {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 2.5rem auto;
}

.section-tag {
  display: inline-block;
  background: var(--accent-light);
  padding: 0.3rem 1rem;
  border-radius: 60px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 1rem;
}

.section-intro h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 1rem;
}

/* problem */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
}

.problem-card {
  background: var(--white);
  padding: 1rem 1.2rem;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
}

.problem-card i {
  font-size: 1.6rem;
  color: var(--accent);
}

/* solution */
.solution-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.solution-list {
  list-style: none;
  margin-top: 1rem;
}

.solution-list li {
  margin-bottom: 0.7rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.solution-list i {
  color: var(--accent);
  font-size: 1.2rem;
}

.solution-image img {
  border-radius: var(--radius);
  width: 100%;
  aspect-ratio: 1 / 0.9;
  object-fit: cover;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}

.features-article-content {
  max-width: 780px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-dark);
}
.features-article-content p {
  margin-bottom: 1.2rem;
}
.inline-features-list {
  list-style: none;
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
.inline-features-list li {
  background: var(--accent-light);
  padding: 0.4rem 1rem;
  border-radius: 60px;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.inline-features-list li i {
  color: var(--accent);
}

.lifestyle-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.8rem;
}

.lifestyle-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.lifestyle-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.lifestyle-text {
  padding: 1.2rem;
}

.lifestyle-text i {
  font-size: 1.6rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}

.testimonial-card {
  background: white;
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
}

.testimonial-card i.fa-star {
  color: #f5b042;
  margin-bottom: 0.8rem;
  font-size: 0.9rem;
}

.testimonial-card p {
  margin: 0.8rem 0;
  font-style: normal;
}

.comp-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.comp-col {
  background: white;
  padding: 1.8rem;
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
}

.comp-old {
  background: #faf7f2;
}

.comp-col ul {
  list-style: none;
  margin-top: 1rem;
}

.comp-col li {
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.offer-cta {
  background: linear-gradient(135deg, #fef6e8 0%, #ffffff 100%);
  border-radius: 2rem;
  padding: 2rem 0;
  margin-top: 1rem;
}

.offer-wrapper {
  background: var(--white);
  border-radius: 2rem;
  padding: 2rem;
  box-shadow: var(--shadow-md);
}

.offer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.offer-list {
  list-style: none;
  margin: 1.5rem 0;
}

.offer-list li {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.stock-hint {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 1rem;
}

.form-card {
  background: var(--bg-soft);
  padding: 1.8rem;
  border-radius: 1.5rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.3rem;
  font-size: 0.85rem;
}

.form-group input, .form-group select {
  width: 100%;
  padding: 0.8rem 1rem;
  border-radius: 60px;
  border: 1px solid var(--border-light);
  font-family: inherit;
  background: white;
}

.checkbox {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.checkbox input {
  width: auto;
  transform: scale(1.1);
}

.secure-badge {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.transparency-note {
  font-size: 0.8rem;
  text-align: center;
  color: #888;
  margin: 2rem auto 3rem;
  border-top: 1px solid var(--border-light);
  padding-top: 2rem;
}

.footer {
  background: #1e1d1b;
  color: #dcd7d0;
  margin-top: auto;
  padding: 2.5rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

.footer-logo .logo a {
  color: #f1ede8;
}

.footer-company {
  margin-top: 0.5rem;
  font-size: 0.85rem;
}

.footer-info p, .footer-disclaimer p {
  font-size: 0.85rem;
  line-height: 1.4;
  margin-bottom: 0.6rem;
}

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

@media (max-width: 900px) {
  .hero-grid, .solution-wrap, .offer-grid, .features-grid, .testimonials-grid, .lifestyle-grid {
    grid-template-columns: 1fr;
  }
  .hero-content,
  .hero-image {
    min-width: 0;
    max-width: 100%;
  }
  .hero-content h1 {
    font-size: 2rem;
  }
  .section-intro h2 {
    font-size: 1.8rem;
  }
  .features-grid {
    gap: 1rem;
  }
  .container {
    padding: 0 1.2rem;
  }
  section {
    margin-bottom: 2.5rem;
  }
}

@media (max-width: 640px) {
  .header-notice {
    word-break: break-all;
  }
  .logo a span {
    word-break: break-all;
    min-width: 0;
    flex: 1;
  }
  .footer-info,
  .footer-disclaimer,
  .footer-links {
    word-break: break-all;
  }
  .logo a {
    flex-direction: column;
  }
  .badge-ad, .domain-badge {
    font-size: 0.65rem;
  }
  .feature-card {
    padding: 1rem;
  }
  .testimonials-grid, .features-grid {
    grid-template-columns: 1fr;
  }
  .lifestyle-grid {
    grid-template-columns: 1fr;
  }
  .problem-grid {
    grid-template-columns: 1fr;
  }
  .problem-card {
    min-width: 0;
  }
  .problem-card span {
    word-break: break-all;
    min-width: 0;
    flex: 1;
  }
  .comp-table {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .hero-content {
    min-width: 0;
  }
  .hero-content h1,
  .hero-subtitle,
  .hero-guarantee,
  .article-meta,
  .article-meta span {
    word-break: break-all;
  }
  .hero-content h1 {
    font-size: 1.75rem;
  }
  .hero-cta .btn {
    max-width: 100%;
    white-space: normal;
    text-align: center;
    justify-content: center;
    word-break: break-all;
  }
  .section-intro,
  .section-intro h2,
  .section-intro p,
  .section-tag {
    word-break: break-all;
  }
  .stories-grid {
    grid-template-columns: 1fr;
  }
  .story-card {
    min-width: 0;
  }
  .story-card h3,
  .story-card p {
    word-break: break-all;
  }
  .offer-wrapper {
    padding: 1.25rem;
    min-width: 0;
  }
  .offer-badge,
  .offer-content,
  .offer-content h2,
  .offer-list li,
  .stock-hint,
  .comp-col,
  .comp-col h3,
  .comp-col li {
    word-break: break-all;
  }
  .offer-list li {
    min-width: 0;
    align-items: flex-start;
  }
  .offer-badge {
    display: inline-block;
    max-width: 100%;
  }
  .form-card {
    min-width: 0;
  }
  .form-card h3,
  .form-group label,
  .checkbox label,
  .secure-badge {
    word-break: break-all;
  }
  .checkbox {
    align-items: flex-start;
  }
  .checkbox label {
    min-width: 0;
    flex: 1;
  }
  .footer-logo {
    text-align: center;
  }
  .footer-logo .logo a {
    justify-content: center;
    align-items: center;
  }
  .footer-logo .logo a span {
    flex: none;
  }
  .footer-logo .footer-company {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }
  .form-card {
    padding: 1.25rem;
  }
  .offer-wrapper {
    padding: 1rem;
    border-radius: 1.25rem;
  }
  .hero-content h1 {
    font-size: 1.65rem;
  }
  .section-intro h2 {
    font-size: 1.5rem;
  }
  .btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.95rem;
  }
  .order-form input,
  .order-form select,
  .order-form textarea {
    font-size: 16px;
  }
  .content-page .wrapper {
    padding: 1.25rem 1rem;
  }
  .content-page h1 {
    font-size: 1.45rem;
  }
}

.user-stories {
  margin-bottom: 4rem;
}
.stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}
.story-card {
  background: white;
  border-radius: var(--radius);
  padding: 1.8rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: all 0.2s;
}
.story-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.story-icon {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 0.8rem;
}
.story-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}
.story-card p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.story-emoji {
  font-size: 1.5rem;
  margin-top: 0.5rem;
  opacity: 0.8;
}
@media (max-width: 900px) {
  .stories-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
.content-page {
  flex: 1;
  padding: 2rem 0;
  background: var(--bg-soft);
}

.content-page .wrapper {
  max-width: 880px;
  margin: 0 auto;
  background: white;
  padding: 2rem 2.2rem;
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.content-page h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--accent-light);
  display: inline-block;
}

.content-page h2 {
  font-size: 1.5rem;
  margin: 1.5rem 0 1rem;
  font-weight: 500;
}

.content-page p {
  margin-bottom: 1rem;
  line-height: 1.6;
  color: var(--text-dark);
}

.content-page ul, .content-page ol {
  margin: 1rem 0 1rem 1.8rem;
}

.content-page li {
  margin-bottom: 0.4rem;
}

.content-page a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px dotted var(--accent);
}

.content-page a:hover {
  border-bottom: 1px solid;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 0.4rem;
}
.footer-links a {
  color: #dcd7d0;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--accent);
  text-decoration: underline;
}

@media (max-width: 640px) {
  .content-page .wrapper {
    padding: 1.5rem;
  }
  .content-page h1 {
    font-size: 1.6rem;
  }
}
.content-page {
  flex: 1;
  padding: 2rem 0;
  background: var(--bg-soft);
}
.content-page .wrapper {
  max-width: 880px;
  margin: 0 auto;
  background: white;
  padding: 2rem 2.2rem;
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}
.content-page h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--accent-light);
  display: inline-block;
}
.content-page p, .content-page li {
  margin-bottom: 1rem;
  line-height: 1.6;
  color: var(--text-dark);
}
.content-page ul {
  margin: 1rem 0 1rem 1.8rem;
}
.content-page a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px dotted var(--accent);
}
.content-page a:hover {
  border-bottom: 1px solid;
}

.logo .brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--text-dark);
  background: linear-gradient(135deg, #2c7a4b 0%, #1f5f3c 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.2s;
}
.logo a:hover .brand-name {
  opacity: 0.85;
}
.footer-logo .brand-name {
  font-size: 1.3rem;
  background: linear-gradient(135deg, #dcd7d0 0%, #a8a29e 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 0.4rem;
}
.footer-links a {
  color: #dcd7d0;
  text-decoration: none;
  font-size: 0.85rem;
}
.footer-links a:hover {
  color: var(--accent);
  text-decoration: underline;
}
@media (max-width: 640px) {
  .content-page .wrapper {
    padding: 1.5rem;
  }
  .content-page h1 {
    font-size: 1.6rem;
  }
  .logo .brand-name {
    font-size: 1.2rem;
  }
}