@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;
}

:root {
  --color-primary: #2d5f5d;
  --color-primary-dark: #1e4342;
  --color-secondary: #8fb8a0;
  --color-accent: #d4a574;
  --color-accent-light: #f4e4d1;
  --color-bg: #faf8f5;
  --color-bg-alt: #f0ebe3;
  --color-text: #2a2a2a;
  --color-text-light: #6b6b6b;
  --color-white: #ffffff;
  --color-border: #e5e0d8;
  --gradient-primary: linear-gradient(135deg, #2d5f5d 0%, #4a8a87 100%);
  --gradient-accent: linear-gradient(135deg, #d4a574 0%, #e8c4a0 100%);
  --gradient-soft: linear-gradient(135deg, #faf8f5 0%, #f0ebe3 100%);
  --shadow-sm: 0 2px 8px rgba(45, 95, 93, 0.08);
  --shadow-md: 0 8px 24px rgba(45, 95, 93, 0.12);
  --shadow-lg: 0 16px 48px rgba(45, 95, 93, 0.16);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  overflow-x: clip;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
  overflow-x: clip;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  background: rgba(250, 248, 245, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  z-index: 100;
  padding: 1rem 0;
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.logo a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
}

.logo img {
  border-radius: 50%;
  object-fit: cover;
}

.header-notice {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--color-accent-light);
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-primary-dark);
}

.header-notice i {
  color: var(--color-accent);
}

.hero {
  padding: 4rem 2rem;
  background: var(--gradient-soft);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(143, 184, 160, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.hero-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  overflow-x: clip;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.hero-badge i {
  color: var(--color-accent);
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-primary-dark);
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--color-text-light);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-features {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-primary);
}

.hero-feature i {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-white);
  border-radius: 50%;
  color: var(--color-accent);
  box-shadow: var(--shadow-sm);
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: var(--gradient-primary);
  color: var(--color-white);
  border-radius: 100px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.trust-stars {
  display: flex;
  gap: 0.125rem;
  color: #fbbf24;
}

.hero-visual {
  position: relative;
  min-width: 0;
  max-width: 100%;
}

.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
  overflow: hidden;
  max-width: 100%;
}

.hero-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.floating-badge {
  position: absolute;
  background: var(--color-white);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  animation: float 3s ease-in-out infinite;
  z-index: 2;
}

.floating-badge i {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-accent);
  color: var(--color-white);
  border-radius: 50%;
  font-size: 1.125rem;
}

.floating-badge strong {
  display: block;
  font-size: 0.875rem;
  color: var(--color-primary-dark);
}

.floating-badge span {
  font-size: 0.75rem;
  color: var(--color-text-light);
}

.badge-top {
  top: 1rem;
  left: 1rem;
}

.badge-bottom {
  bottom: 1rem;
  right: 1rem;
  animation-delay: 1.5s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

section {
  padding: 5rem 2rem;
  overflow-x: clip;
}

.section-header {
  max-width: 800px;
  margin: 0 auto 4rem;
  text-align: center;
}

.section-tag {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: var(--color-accent-light);
  color: var(--color-accent);
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--color-primary-dark);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section-lead {
  font-size: 1.125rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

.problems {
  background: var(--color-white);
}

.problems-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  overflow-x: clip;
}

.problem-card {
  background: var(--color-bg);
  padding: 2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  transition: all 0.3s ease;
}

.problem-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-secondary);
}

.problem-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  color: var(--color-white);
  border-radius: var(--radius-sm);
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.problem-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--color-primary-dark);
  margin-bottom: 0.75rem;
}

.problem-card p {
  font-size: 0.95rem;
  color: var(--color-text-light);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.problem-stat {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--color-border);
}

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

.stat-text {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.solution {
  background: var(--gradient-soft);
}

.solution-grid {
  overflow-x: clip;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.solution-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 1;
  overflow: hidden;
}

.solution-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.solution-overlay {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 1.25rem;
  border-radius: var(--radius-md);
}

.overlay-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  color: var(--color-primary-dark);
}

.overlay-item i {
  color: var(--color-accent);
  font-size: 1.25rem;
}

.solution-content .section-tag {
  margin-bottom: 1rem;
}

.solution-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--color-primary-dark);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.solution-content .section-lead {
  margin-bottom: 2.5rem;
}

.solution-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.solution-feature {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.feature-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-white);
  border: 2px solid var(--color-secondary);
  border-radius: var(--radius-sm);
  color: var(--color-primary);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.feature-text h4 {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  color: var(--color-primary-dark);
  margin-bottom: 0.375rem;
}

.feature-text p {
  font-size: 0.95rem;
  color: var(--color-text-light);
  line-height: 1.6;
}

.benefits {
  background: var(--color-white);
}

.benefits-showcase {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.benefit-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  background: var(--gradient-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: 3rem;
}

.benefit-main-image {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.benefit-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.benefit-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-accent);
  opacity: 0.3;
  margin-bottom: 0.5rem;
}

.benefit-main-content h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--color-primary-dark);
  margin-bottom: 1rem;
}

.benefit-main-content p {
  font-size: 1.0625rem;
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.benefit-tags {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-primary);
}

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

.benefits-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  overflow-x: clip;
}

.benefit-card {
  background: var(--color-bg);
  padding: 2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  transition: all 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.benefit-icon-wrap {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-accent);
  color: var(--color-white);
  border-radius: var(--radius-sm);
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.benefit-card h4 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--color-primary-dark);
  margin-bottom: 0.75rem;
}

.benefit-card p {
  font-size: 0.95rem;
  color: var(--color-text-light);
  line-height: 1.6;
}

.comparison {
  background: var(--gradient-soft);
}

.comparison-table-wrapper {
  max-width: 1080px;
  margin: 0 auto;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
}

.comparison-table thead {
  background: var(--color-primary-dark);
  color: var(--color-white);
}

.comparison-table th {
  padding: 1.5rem;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
}

.col-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.col-traditional .col-header i {
  color: #ef4444;
}

.col-castironman .col-header i {
  color: #fbbf24;
}

.comparison-table td {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.95rem;
}

.feature-name {
  font-weight: 600;
  color: var(--color-primary-dark);
}

.comparison-table .bad {
  color: #ef4444;
  background: rgba(239, 68, 68, 0.05);
}

.comparison-table .good {
  color: var(--color-primary);
  background: rgba(143, 184, 160, 0.1);
  font-weight: 500;
}

.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

.testimonials {
  background: var(--color-white);
}

.testimonials-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(auto, auto);
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--color-bg);
  padding: 2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  position: relative;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.testimonial-card.featured {
  background: var(--gradient-primary);
  color: var(--color-white);
  border: none;
  grid-column: 2 / 4;
  grid-row: 1 / 3;
}

.featured-tag {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.75rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
}

.testimonial-rating {
  display: flex;
  gap: 0.125rem;
  color: #fbbf24;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
  flex: 1;
}

.testimonial-card.featured .testimonial-text {
  font-size: 1.25rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.author-avatar {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-accent);
  color: var(--color-white);
  border-radius: 50%;
  font-weight: 600;
  font-size: 0.875rem;
}

.testimonial-card.featured .author-avatar {
  background: var(--color-white);
  color: var(--color-primary);
}

.author-info strong {
  display: block;
  font-size: 0.95rem;
  color: var(--color-primary-dark);
}

.testimonial-card.featured .author-info strong {
  color: var(--color-white);
}

.author-info span {
  font-size: 0.8125rem;
  color: var(--color-text-light);
}

.testimonial-card.featured .author-info span {
  color: rgba(255, 255, 255, 0.8);
}

.verified-badge {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  margin-left: auto;
  font-size: 0.75rem;
  color: var(--color-primary);
  font-weight: 500;
}

.testimonial-card.featured .verified-badge {
  color: rgba(255, 255, 255, 0.9);
}

.verified-badge i {
  color: #10b981;
}

.testimonial-card.featured .verified-badge i {
  color: #fbbf24;
}

.order {
  background: var(--gradient-soft);
}

.order-form-wrapper {
  width: 100%;
  min-width: 0;
}

.order-grid {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: start;
  overflow-x: clip;
  min-width: 0;
}

.order-grid > *,
.order-content,
.order-form-wrapper,
.form-card,
.order-product,
.product-info {
  min-width: 0;
  max-width: 100%;
}

.order-content .section-tag {
  margin-bottom: 1rem;
}

.order-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--color-primary-dark);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.order-content .section-lead {
  margin-bottom: 2.5rem;
}

.order-product {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 2rem;
}

.product-image {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-info {
  padding: 2rem;
}

.product-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.875rem;
  background: #fef3c7;
  color: #92400e;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.product-info h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-primary-dark);
  margin-bottom: 0.5rem;
}

.product-desc {
  font-size: 0.95rem;
  color: var(--color-text-light);
  margin-bottom: 1.25rem;
}

.product-price {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.price-old {
  font-size: 1.25rem;
  color: var(--color-text-light);
  text-decoration: line-through;
}

.price-new {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-primary);
}

.product-includes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.include-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--color-text);
}

.include-item i {
  color: var(--color-primary);
}

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

.guarantee {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--color-white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
}

.guarantee i {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-accent);
  color: var(--color-white);
  border-radius: 50%;
  flex-shrink: 0;
}

.guarantee > div {
  min-width: 0;
}

.guarantee strong {
  display: block;
  font-size: 0.875rem;
  color: var(--color-primary-dark);
}

.guarantee span {
  font-size: 0.75rem;
  color: var(--color-text-light);
}

.form-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  position: sticky;
  top: 100px;
}

.form-header {
  margin-bottom: 2rem;
  text-align: center;
}

.form-header h3 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: var(--color-primary-dark);
  margin-bottom: 0.5rem;
}

.form-header p {
  font-size: 0.95rem;
  color: var(--color-text-light);
}

.order-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-primary-dark);
}

.form-group input,
.form-group select {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  padding: 0.875rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text);
  background: var(--color-bg);
  transition: all 0.2s ease;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-primary);
  background: var(--color-white);
}

.checkbox-group {
  flex-direction: row;
  align-items: flex-start;
  gap: 0.75rem;
}

.checkbox-group input {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  flex-shrink: 0;
}

.checkbox-group label {
  font-size: 0.8125rem;
  color: var(--color-text-light);
  line-height: 1.5;
  min-width: 0;
  word-break: break-word;
}

.btn-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.125rem 2rem;
  background: var(--gradient-primary);
  color: var(--color-white);
  border: none;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-md);
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.form-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--color-text-light);
  text-align: center;
}

.form-note i {
  color: var(--color-primary);
}

.site-footer {
  background: var(--color-primary-dark);
  color: var(--color-white);
  padding: 4rem 2rem 2rem;
  margin-top: auto;
  overflow-x: clip;
}

.footer-inner {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  min-width: 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 2rem;
}

.footer-brand .logo a {
  color: var(--color-white);
  margin-bottom: 1rem;
}

.footer-tagline {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  max-width: 400px;
  margin-top: 1rem;
}

.footer-contact h4,
.footer-legal-links h4 {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  margin-bottom: 1.25rem;
  color: var(--color-white);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.875rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
}

.contact-item i {
  color: var(--color-accent);
  width: 20px;
}

.footer-legal-links ul {
  list-style: none;
  padding: 0;
}

.footer-legal-links li {
  margin-bottom: 0.75rem;
}

.footer-legal-links a {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-legal-links a::before {
  content: '›';
  color: var(--color-accent);
  font-size: 1.25rem;
  line-height: 1;
}

.footer-legal-links a:hover {
  color: var(--color-accent);
}

.footer-disclaimer {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-sm);
  margin-bottom: 2rem;
}

.footer-disclaimer p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

.footer-bottom {
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.thanks-page {
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  background: var(--gradient-soft);
  position: relative;
  overflow: hidden;
}

.thanks-page::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 165, 116, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.thanks-container {
  max-width: 640px;
  background: var(--color-white);
  padding: 3.5rem 3rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  text-align: center;
  position: relative;
  z-index: 1;
}

.thanks-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.thanks-logo img {
  border-radius: 50%;
}

.thanks-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  color: var(--color-white);
  border-radius: 50%;
  font-size: 2.5rem;
  box-shadow: var(--shadow-md);
}

.thanks-container h1 {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  color: var(--color-primary-dark);
  margin-bottom: 1rem;
}

.thanks-name,
.thanks-message,
.thanks-submessage {
  font-size: 1.125rem;
  color: var(--color-text);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.thanks-container .btn-primary {
  margin-top: 1.5rem;
}

.legal-page {
  padding: 4rem 2rem;
  background: var(--color-bg);
  min-height: 60vh;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow-x: clip;
  box-sizing: border-box;
}

.legal-hero {
  max-width: 800px;
  width: 100%;
  min-width: 0;
  margin: 0 auto 3rem;
  text-align: center;
}

.legal-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--color-primary-dark);
  margin-bottom: 1rem;
}

.legal-hero .legal-updated {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: var(--color-accent-light);
  color: var(--color-accent);
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.legal-hero p {
  font-size: 1.0625rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

.legal-content {
  max-width: 800px;
  width: 100%;
  min-width: 0;
  margin: 0 auto;
  background: var(--color-white);
  padding: 3rem 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  word-break: break-word;
  overflow-wrap: anywhere;
  box-sizing: border-box;
}

.legal-content h2 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: var(--color-primary-dark);
  margin: 2.5rem 0 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--color-accent-light);
  overflow-wrap: anywhere;
  word-break: break-word;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--color-primary);
  margin: 1.75rem 0 0.75rem;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.legal-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text);
  margin-bottom: 1rem;
}

.legal-content ul,
.legal-content ol {
  margin: 1rem 0;
  padding-left: 1.25rem;
  color: var(--color-text);
  overflow-wrap: anywhere;
}

.legal-content li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
  overflow-wrap: anywhere;
}

.legal-content strong {
  color: var(--color-primary-dark);
}

.legal-content .legal-highlight {
  background: var(--color-accent-light);
  padding: 1.25rem 1.5rem;
  border-left: 4px solid var(--color-accent);
  border-radius: var(--radius-sm);
  margin: 1.5rem 0;
  font-size: 0.95rem;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.contact-grid {
  max-width: 800px;
  width: 100%;
  min-width: 0;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.contact-card {
  background: var(--color-white);
  padding: 2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.contact-card-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  color: var(--color-white);
  border-radius: var(--radius-sm);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.contact-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--color-primary-dark);
  margin-bottom: 0.75rem;
}

.contact-card p {
  font-size: 0.95rem;
  color: var(--color-text-light);
  line-height: 1.6;
}

.contact-form-wrapper {
  max-width: 800px;
  width: 100%;
  min-width: 0;
  margin: 3rem auto 0;
  background: var(--color-white);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  box-sizing: border-box;
}

.contact-form-wrapper h2 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: var(--color-primary-dark);
  margin-bottom: 0.5rem;
  text-align: center;
}

.contact-form-wrapper > p {
  text-align: center;
  color: var(--color-text-light);
  margin-bottom: 2rem;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  min-width: 0;
}

.contact-form .form-group {
  min-width: 0;
}

.contact-form .full-width {
  grid-column: 1 / -1;
}

.contact-form textarea {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  padding: 0.875rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text);
  background: var(--color-bg);
  resize: vertical;
  min-height: 140px;
  transition: all 0.2s ease;
  box-sizing: border-box;
}

.contact-form textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  background: var(--color-white);
}

@media (max-width: 1024px) {
  .hero-grid,
  .solution-grid,
  .order-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .problems-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefits-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonial-card.featured {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .benefit-main {
    grid-template-columns: 1fr;
    padding: 2rem;
  }

  .order-guarantees {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  section {
    padding: 3rem 1.5rem;
  }

  .header-inner {
    padding: 0 1.5rem;
  }

  .hero {
    padding: 3rem 1.5rem;
  }

  .hero-features {
    flex-direction: column;
    gap: 1rem;
  }

  .hero-cta-group {
    flex-direction: column;
    align-items: flex-start;
  }

  .floating-badge {
    padding: 0.625rem 0.875rem;
    gap: 0.5rem;
  }

  .floating-badge i {
    width: 32px;
    height: 32px;
    font-size: 0.875rem;
  }

  .floating-badge strong {
    font-size: 0.75rem;
  }

  .floating-badge span {
    font-size: 0.6875rem;
  }

  .badge-top {
    top: 0.75rem;
    left: 0.75rem;
  }

  .badge-bottom {
    bottom: 0.75rem;
    right: 0.75rem;
  }

  .problems-grid,
  .benefits-row,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .product-includes {
    grid-template-columns: 1fr;
  }

  .order-guarantees {
    grid-template-columns: 1fr;
  }

  .form-card {
    padding: 1.5rem;
    position: static;
    width: 100%;
  }

  .order-content h2,
  .order-content .section-lead {
    word-break: break-word;
  }

  .product-info {
    padding: 1.5rem;
  }

  .product-price {
    flex-wrap: wrap;
  }

  .include-item {
    min-width: 0;
  }

  .btn-submit {
    width: 100%;
    max-width: 100%;
  }

  .logo a {
    font-size: 1.25rem;
  }

  .logo img {
    width: 40px;
    height: 40px;
  }

  .legal-page {
    padding: 3rem 1.5rem;
  }

  .legal-content {
    padding: 2rem 1.5rem;
  }

  .legal-content h2 {
    font-size: 1.5rem;
  }

  .legal-content h3 {
    font-size: 1.2rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .contact-card {
    padding: 1.5rem;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .contact-form-wrapper {
    padding: 1.5rem;
  }

  .contact-form .btn-submit {
    width: 100%;
    max-width: 100%;
  }

  .thanks-container {
    padding: 2.5rem 1.5rem;
  }
}

@media (max-width: 700px) {
  .comparison-table-wrapper {
    overflow-x: visible;
  }

  .comparison-table {
    min-width: 0;
  }

  .comparison-table thead {
    display: none;
  }

  .comparison-table tbody tr {
    display: block;
    margin-bottom: 1rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    overflow: hidden;
  }

  .comparison-table td {
    display: block;
    border-bottom: 1px solid var(--color-border);
  }

  .comparison-table td.feature-name {
    background: var(--color-bg-alt);
    font-size: 1rem;
  }

  .comparison-table tbody tr:last-child td:last-child {
    border-bottom: none;
  }
}

[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;
}

[data-aos="zoom-in"]:not(.aos-animate) {
  transform: translate3d(0, 24px, 0) scale(0.96) !important;
}

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

  .logo a {
    flex-direction: column;
  }

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

  .footer-contact {
    word-break: break-all;
  }

  .legal-hero,
  .legal-hero h1,
  .legal-hero p,
  .legal-content,
  .legal-content p,
  .legal-content li,
  .legal-content strong,
  .contact-card,
  .contact-card p,
  .contact-form-wrapper {
    overflow-wrap: anywhere;
    word-break: break-word;
  }
}

@media (max-width: 480px) {
  .header-inner {
    padding: 0 1rem;
  }

  .header-notice {
    font-size: 0.75rem;
    padding: 0.375rem 0.75rem;
  }

  section {
    padding: 2.5rem 1rem;
  }

  .hero {
    padding: 2.5rem 1rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .section-header h2 {
    font-size: 1.75rem;
  }

  .price-new {
    font-size: 2rem;
  }

  .form-card {
    padding: 1.25rem 1rem;
  }

  .contact-form-wrapper {
    padding: 1.25rem 1rem;
  }

  .legal-page {
    padding: 2.5rem 1rem;
  }

  .legal-content {
    padding: 1.5rem 1rem;
  }

  .thanks-container {
    padding: 2rem 1rem;
  }
}