@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: "Space Grotesk";
  src: url("../fonts/SpaceGrotesk.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

img {
  max-width: 100%;
  height: auto;
}

html,
body {
  overflow-x: clip;
}

main,
section,
.container,
.hero-grid,
.two-col-stories,
.testimonials-grid,
.stats-grid {
  overflow-x: clip;
}

:root {
  --bg-body: #fefcf5;
  --bg-header: #131212;
  --text-dark: #1e1e1e;
  --text-light: #f0f0f0;
  --accent: #2c7a6e;
  --accent-light: #479e8f;
  --gray-soft: #f5f3ef;
  --card-bg: #ffffff;
  --border-radius: 24px;
  --shadow-sm: 0 8px 20px rgba(0, 0, 0, 0.03), 0 2px 6px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 12px 28px rgba(0, 0, 0, 0.08);
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Space Grotesk', monospace;
}

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

body {
  font-family: var(--font-sans);
  background: var(--bg-body);
  color: var(--text-dark);
  line-height: 1.5;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

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

.narrow {
  max-width: 860px;
  min-width: 0;
}

/* Header */
header {
  background: var(--bg-header);
  color: var(--text-light);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(8px);
  background: rgba(19, 18, 18, 0.95);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.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: white;
  font-weight: 600;
  font-family: var(--font-heading);
}

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

.logo-line1, .logo-line2 {
  display: block;
  line-height: 1.2;
  font-size: 1.2rem;
}
.logo-line1 {
  font-weight: 700;
}
.logo-line2 {
  font-weight: 500;
  font-size: 0.9rem;
  opacity: 0.85;
}

.mandatory-notice {
  font-size: 0.75rem;
  background: rgba(255,255,240,0.1);
  padding: 6px 12px;
  border-radius: 60px;
  letter-spacing: 0.3px;
}

.hero {
  padding: 64px 0 48px;
  background: linear-gradient(135deg, #ffffff 0%, #f9f7f2 100%);
}

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

.hero-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.accent {
  color: var(--accent);
  border-bottom: 3px solid var(--accent-light);
}

.hero-sub {
  font-size: 1.2rem;
  color: #3a3a3a;
  margin-bottom: 32px;
  max-width: 90%;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--accent);
  color: white;
  border: none;
  padding: 14px 32px;
  border-radius: 60px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

.btn-primary:hover {
  background: #226054;
  transform: translateY(-2px);
  box-shadow: 0 12px 20px rgba(44,122,110,0.2);
}

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

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

.article-flow > * {
  margin-bottom: 0;
}

.text-block {
  padding: 56px 0 40px;
}

.light-bg {
  background: var(--gray-soft);
}

.alt-bg {
  background: #fef7e8;
}

.dropcap:first-letter {
  font-size: 4rem;
  font-weight: 600;
  float: left;
  line-height: 0.85;
  margin-right: 14px;
  color: var(--accent);
  font-family: var(--font-heading);
}

.inline-img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 28px;
  margin: 36px 0 24px;
  box-shadow: var(--shadow-sm);
}

h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin: 0 0 24px 0;
  letter-spacing: -0.01em;
  font-weight: 600;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
  padding: 32px 0 24px;
}

.stat-number {
  display: block;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--accent);
  font-family: var(--font-heading);
}

.stat-desc {
  font-size: 0.95rem;
  color: #2c2c2c;
}

.stat-note {
  text-align: center;
  font-size: 0.8rem;
  color: #5a5a5a;
  border-top: 1px solid #e0ddd5;
  padding-top: 20px;
  margin-top: 8px;
}

.two-col-stories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin: 32px 0 32px;
}

.story i {
  font-size: 2.2rem;
  color: var(--accent);
  margin-bottom: 12px;
  display: inline-block;
}

.story h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.story p {
  font-size: 0.95rem;
  line-height: 1.5;
}

.testimonials-block {
  padding: 48px 0;
  background: #ffffff;
}

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

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

.testimonial-card p {
  font-style: normal;
  font-size: 1rem;
  margin-bottom: 20px;
}

.testimonial-author {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--accent);
}

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

.feature-list li {
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.feature-list i {
  color: var(--accent);
  width: 24px;
}

.form-section {
  padding: 48px 0 64px;
  background: linear-gradient(145deg, #eef5f2 0%, #ffffff 100%);
}

.form-card {
  background: white;
  border-radius: 40px;
  padding: 44px 40px;
  box-shadow: var(--shadow-md);
}

.order-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 28px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-weight: 500;
  font-size: 0.9rem;
}

.form-group input, .form-group select {
  padding: 14px 18px;
  border: 1px solid #e2e0db;
  border-radius: 60px;
  font-size: 1rem;
  background: white;
  transition: 0.2s;
}

.form-group input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(44,122,110,0.15);
}

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

.checkbox-group input {
  width: 20px;
  height: 20px;
  accent-color: var(--accent);
}

.form-footnote {
  text-align: center;
  font-size: 0.8rem;
  color: #6f6f6f;
  margin-top: 8px;
}

footer {
  background: #131212;
  color: #cdcdcd;
  padding: 48px 0 32px;
  margin-top: auto;
  font-size: 0.9rem;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 48px;
}

.footer-col {
  flex: 1;
  min-width: 240px;
}

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

.footer-logo img {
  width: 50px;
  height: 50px;
  border-radius: 12px;
}

.footer-contact p {
  margin-bottom: 6px;
  line-height: 1.4;
}

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

@media (max-width: 860px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  .hero-sub {
    max-width: 100%;
  }
  .stats-grid, .two-col-stories, .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .form-card {
    padding: 32px 20px;
  }
  .header-container {
    flex-direction: column;
    text-align: center;
  }
  .footer-container {
    flex-direction: column;
  }
  .container {
    padding: 0 20px;
  }
  h2 {
    font-size: 1.7rem;
  }
}
.footer-legal-links {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}
.footer-legal-links a {
  color: #cdcdcd;
  text-decoration: none;
  margin: 0 12px;
  font-size: 0.85rem;
  transition: color 0.2s;
}
.footer-legal-links a:hover {
  color: white;
  text-decoration: underline;
}
@media (max-width: 600px) {
  .footer-legal-links a {
    display: inline-block;
    margin: 6px 12px;
  }
}

[data-aos="fade-right"]:not(.aos-animate) {
  transform: translate3d(-32px, 0, 0) !important;
}

[data-aos="fade-left"]:not(.aos-animate) {
  transform: translate3d(32px, 0, 0) !important;
}

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

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .form-card {
    padding: 24px 16px;
  }

  .hero-content h1 {
    font-size: 1.85rem;
  }

  .hero-sub {
    font-size: 1rem;
  }

  .form-group input,
  .form-group select {
    font-size: 0.95rem;
    padding: 12px 14px;
    max-width: 100%;
  }

  .btn {
    font-size: 0.95rem;
    padding: 12px 20px;
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .mandatory-notice {
    word-break: break-all;
  }

  .logo a {
    flex-direction: column;
  }

  .logo a span {
    word-break: break-all;
    min-width: 0;
    flex: 1;
  }

  footer,
  footer p,
  footer a,
  footer strong,
  footer span,
  .footer-col,
  .footer-contact,
  .footer-disclaimer,
  .footer-legal-links {
    word-break: break-all;
    overflow-wrap: anywhere;
  }

  .footer-col {
    min-width: 0;
    flex: 1 1 100%;
  }

  .footer-logo {
    flex-wrap: wrap;
  }

  .footer-logo span {
    word-break: break-all;
    min-width: 0;
  }
}