@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: 400 700;
  font-style: normal;
  font-display: swap;
}

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

img {
  max-width: 100%;
}

:root {
  --bg-light: #FCF9F2;
  --bg-white: #FFFFFF;
  --text-dark: #1E2A32;
  --text-muted: #4A5B6E;
  --accent-teal: #2C5F6A;
  --accent-terracotta: #E07A5F;
  --border-light: #E6DFD3;
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.06);
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-headings: 'Playfair Display', Georgia, serif;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

main {
  flex: 1;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

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

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

.logo a {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text-dark);
}

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

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  font-weight: 700;
  font-family: var(--font-headings);
}

.logo-line1 {
  font-size: 1.25rem;
  letter-spacing: -0.3px;
}

.logo-line2 {
  font-size: 1rem;
  letter-spacing: -0.2px;
  color: var(--accent-teal);
}

.header-notice {
  font-size: 0.85rem;
  color: var(--text-muted);
  background: #f0ede7;
  padding: 6px 14px;
  border-radius: 60px;
  font-weight: 400;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 600;
  border-radius: 40px;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
}

.btn-primary {
  background: var(--accent-terracotta);
  color: white;
  padding: 14px 28px;
  font-size: 1rem;
  box-shadow: 0 2px 6px rgba(224, 122, 95, 0.3);
}

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

.btn-block {
  width: 100%;
}

.hero {
  padding: 56px 0 40px;
}

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

.hero-tag {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-teal);
  font-weight: 500;
  margin-bottom: 16px;
  display: inline-block;
}

h1 {
  font-family: var(--font-headings);
  font-size: 2.6rem;
  line-height: 1.2;
  font-weight: 600;
  margin-bottom: 20px;
  color: #1e2a32;
}

.hero-content p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.hero-cta {
  margin: 24px 0 16px;
}

.hero-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: #f5a623;
}

.hero-rating i {
  color: #f5a623;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 28px;
  box-shadow: var(--shadow-md);
  object-fit: cover;
}

.story-block {
  padding: 40px 0 48px;
  background: var(--bg-white);
  border-radius: 32px 32px 0 0;
  margin-top: 8px;
}

.story-text h2 {
  font-family: var(--font-headings);
  font-size: 2rem;
  margin: 20px 0 20px;
  font-weight: 600;
}

.story-text h3 {
  font-size: 1.5rem;
  margin: 28px 0 16px;
  font-weight: 600;
  color: var(--accent-teal);
}

.story-text p {
  font-size: 1rem;
  margin-bottom: 1.2rem;
  color: var(--text-dark);
}

.story-image {
  margin: 28px 0;
  text-align: center;
}

.story-image img {
  max-width: 100%;
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
}

.features {
  padding: 56px 0 48px;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-subtitle {
  font-size: 0.9rem;
  letter-spacing: 2px;
  color: var(--accent-teal);
  text-transform: uppercase;
  font-weight: 500;
}

.section-header h2 {
  font-family: var(--font-headings);
  font-size: 2rem;
  margin-top: 8px;
}

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

.feature-card {
  background: var(--bg-white);
  padding: 28px 20px;
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s;
  text-align: center;
}

.feature-card i {
  font-size: 2.4rem;
  color: var(--accent-terracotta);
  margin-bottom: 16px;
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.testimonials {
  padding: 40px 0 64px;
  background: var(--bg-white);
}

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

.testimonial-card {
  background: var(--bg-light);
  padding: 28px 24px;
  border-radius: 28px;
  box-shadow: var(--shadow-sm);
}

.stars {
  color: #f5a623;
  margin-bottom: 14px;
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 20px;
  font-style: normal;
}

.testimonial-author {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}

.testimonial-author span {
  font-weight: 400;
  color: var(--text-muted);
}

.verified {
  color: #2c7a4d;
  font-size: 0.75rem;
}

.order-section {
  padding: 48px 0 72px;
  background: linear-gradient(135deg, #FCF9F2 0%, #F4EFE6 100%);
}

.order-card {
  background: var(--bg-white);
  border-radius: 40px;
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.order-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  padding: 44px 48px;
}

.order-info .badge {
  background: var(--accent-terracotta);
  color: white;
  display: inline-block;
  padding: 6px 14px;
  border-radius: 40px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 18px;
}

.order-info h2 {
  font-family: var(--font-headings);
  font-size: 1.9rem;
  margin-bottom: 20px;
}

.price-block {
  margin: 24px 0 16px;
}

.old-price {
  font-size: 1.2rem;
  text-decoration: line-through;
  color: #9ba5b0;
  margin-right: 12px;
}

.current-price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent-terracotta);
}

.saving {
  display: block;
  font-size: 0.85rem;
  margin-top: 6px;
  color: #2c7a4d;
}

.checklist {
  list-style: none;
  margin: 24px 0 0;
}

.checklist li {
  margin: 12px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
}

.checklist i {
  color: var(--accent-teal);
}

.main-form .form-group {
  margin-bottom: 20px;
}

.main-form label {
  display: block;
  font-weight: 500;
  margin-bottom: 6px;
  font-size: 0.9rem;
}

.main-form input:not([type="checkbox"]) {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border-light);
  border-radius: 60px;
  font-family: var(--font-body);
  background: #fff;
  font-size: 0.95rem;
}

.main-form input:focus {
  outline: none;
  border-color: var(--accent-terracotta);
}

.checkbox-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.checkbox-group input {
  width: 20px;
  height: 20px;
  margin: 0;
}

.checkbox-group label {
  margin: 0;
  font-weight: 400;
  font-size: 0.85rem;
}

.form-note {
  font-size: 0.75rem;
  text-align: center;
  margin-top: 16px;
  color: var(--text-muted);
}

.footer {
  background: #1e2a32;
  color: #e4e9ed;
  padding: 48px 0 32px;
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr 2fr;
  gap: 32px;
  align-items: start;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.footer-company {
  font-weight: 700;
  font-size: 1rem;
}

.footer-info p {
  margin-bottom: 8px;
  font-size: 0.85rem;
  line-height: 1.4;
}

.footer-links {
  font-size: 0.85rem;
}

.footer-links a {
  color: #e4e9ed;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-disclaimer p {
  font-size: 0.8rem;
  line-height: 1.5;
  opacity: 0.85;
  margin-bottom: 12px;
}

.story-insight {
  background: #F2EFE9;
  border-left: 5px solid var(--accent-terracotta);
  padding: 20px 24px;
  margin: 32px 0;
  border-radius: 24px;
  font-size: 1rem;
}

.story-checklist {
  list-style: none;
  margin: 24px 0;
  padding: 0;
}

.story-checklist li {
  margin: 12px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
}

.story-checklist i.fa-times-circle {
  color: #c96b51;
  font-size: 1.2rem;
}

.legal-page {
  padding: 48px 0 64px;
}

.legal-container {
  max-width: 900px;
}

.legal-document {
  background: var(--bg-white);
  padding: 48px 56px;
  border-radius: 32px;
  box-shadow: var(--shadow-sm);
  word-break: break-word;
  overflow-wrap: break-word;
}

.legal-document h1 {
  font-size: 2rem;
  margin-bottom: 28px;
  font-family: var(--font-headings);
}

.legal-document h2 {
  font-size: 1.6rem;
  margin: 24px 0 16px;
}

.legal-document p, .legal-document ul {
  margin-bottom: 1rem;
  line-height: 1.6;
}

.legal-document ul {
  padding-left: 2rem;
}

.no-link {
  color: inherit;
  cursor: default;
}

@media (max-width: 1024px) {
  .hero-grid, .order-grid, .features-grid, .testimonials-grid, .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .order-grid {
    padding: 32px 28px;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .section-header h2 {
    font-size: 1.7rem;
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    gap: 28px;
  }
  .header-container {
    flex-wrap: wrap;
    justify-content: center;
  }
  .legal-document {
    padding: 32px 24px;
  }
}

@media (max-width: 640px) {
  .container {
    padding: 0 20px;
  }
  .hero {
    padding: 32px 0;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .story-image img {
    width: 100%;
  }
  .btn-primary {
    padding: 12px 20px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 14px;
  }
  h1 {
    font-size: 1.7rem;
  }
  .hero {
    padding: 24px 0;
  }
  .order-grid {
    padding: 24px 16px;
  }
  .main-form input:not([type="checkbox"]) {
    padding: 12px 14px;
    font-size: 0.9rem;
  }
  .btn-primary {
    padding: 12px 16px;
    font-size: 0.85rem;
  }
  .thanks-card {
    padding: 32px 20px;
    border-radius: 28px;
  }
  .legal-document {
    padding: 24px 16px;
  }
}