@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400&family=Montserrat:ital,wght@0,400;0,500;0,600;0,700;1,300;1,400&display=swap");

img {
  max-width: 100%;
}

:root {
  --bg: #f8f9fa;
  --surface: #ffffff;
  --text-main: #1a202c;
  --text-muted: #666769;
  --primary: #0025a9;
  --accent: #0025a9;
  --border: #e2e8f0;
  --font-serif: "Montserrat", sans-serif;
  --font-sans: "Montserrat", sans-serif;
  --container-width: 1200px;
}

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

html {
  -webkit-text-size-adjust: 100%;
  width: 100%;
  overflow-x: clip;
}

html,
body,
main,
section,
.container,
.main-layout,
.order-wrapper,
.reviews-grid,
.footer-inner,
.article-content,
.sidebar-card,
.order-form-container,
.lead-form,
.thanks-wrapper {
  overflow-x: clip;
}

body {
  width: 100%;
  max-width: 100%;
  font-family: var(--font-sans);
  background-color: var(--bg);
  color: var(--text-main);
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-size: 16px;
}

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

.site-header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  width: 100%;
  min-width: 0;
}

.logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--text-main);
  gap: 12px;
  min-width: 0;
  max-width: 100%;
}

.logo img {
  width: 202px;
  height: auto;
  object-fit: contain;
  border-radius: 0;
}

.logo span {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: -0.5px;
}

.site-footer .logo span {
  color: #ffffff;
}

.header-notice {
  font-family: "Inter", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-muted);
  background: #edf2f7;
  padding: 6px 12px;
  border-radius: 4px;
  letter-spacing: 1px;
}

.main-layout {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  max-width: var(--container-width);
  margin: 40px auto;
  padding: 0 20px;
  width: 100%;
  min-width: 0;
}

.article-content {
  background: var(--surface);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.02);
  min-width: 0;
  max-width: 100%;
}

.article-hero h1 {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  line-height: 1.3;
  margin-bottom: 16px;
  color: #1a202c;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  color: #959595;
  font-size: 0.9rem;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 16px;
}

.hero-image {
  margin-bottom: 32px;
  border-radius: 8px;
  overflow: hidden;
}

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

.article-content p {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  line-height: 1.8;
  color: #1a202c;
  margin-bottom: 24px;
}

.lead {
  font-size: 1.25rem;
  font-weight: 400;
  color: #1a202c;
  font-style: italic;
}

.article-content h2 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  margin: 48px 0 24px;
  color: #1a202c;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.article-image {
  margin: 32px 0;
  text-align: center;
}

.article-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.pull-quote,
.article-content .pull-quote {
  background: #e5ebff;
  border-left: 5px solid #2453ff;
  padding: 24px 16px;
  margin: 32px 0;
  font-family: var(--font-serif);
  font-size: 1rem;
  line-height: 120%;
  font-style: italic;
  color: #1a202c;
  border-radius: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.sidebar-main {
  position: relative;
}

.sidebar-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  min-width: 0;
  max-width: 100%;
}

.sidebar-card.sticky {
  position: sticky;
  top: 100px;
}

.sidebar-product-image {
  width: 100%;
  height: 200px;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 16px;
  background: #f7fafc;
}

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

.product-badge {
  display: inline-block;
  background: #E3CA16;
  color: #555903;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.sidebar-card h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.rating {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 16px;
  color: #d69e2e;
}

.rating span {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-left: 8px;
}

.sidebar-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  font-family: var(--font-sans);
}

.product-specs {
  list-style: none;
  margin-bottom: 20px;
  padding: 16px;
  background: #e5eaff;
  border-radius: 8px;
}

.product-specs li {
  font-size: 0.9rem;
  color: var(--text-main);
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--font-sans);
}

.product-specs li span {
  min-width: 0;
  flex: 1;
}

.product-specs li:last-child {
  margin-bottom: 0;
}

.product-specs i {
  color: var(--primary);
  width: 20px;
  min-width: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  text-align: center;
}

.product-specs strong {
  color: var(--text-main);
  font-weight: 600;
}

.price-block {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 20px;
}

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

.new-price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-main);
}

.cta-btn {
  display: block;
  width: 100%;
  background: var(--accent);
  color: white;
  text-align: center;
  padding: 14px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  margin-bottom: 20px;
  font-family: var(--font-sans);
}

.cta-btn:hover {
  background: #001d87;
}

.sidebar-benefits {
  list-style: none;
}

.sidebar-benefits li {
  font-size: 0.9rem;
  color: var(--text-main);
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.sidebar-benefits li span {
  min-width: 0;
  flex: 1;
}

.sidebar-benefits i {
  color: #38a169;
  width: 20px;
  min-width: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  text-align: center;
}

.sidebar-float {
  display: none;
}

.reviews-grid {
  display: grid;
  gap: 16px;
  margin: 32px 0;
}

.review-card {
  background: #e5ebff;
  border: 0;
  border-radius: 8px;
  padding: 16px;
  min-width: 0;
}

.review-header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}

.reviewer-info {
  min-width: 0;
  flex: 1;
}

.review-avatar {
  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;
  flex-shrink: 0;
  display: block;
}

.reviewer-info h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.reviewer-info span {
  font-size: 0.75rem;
  color: #959595;
}

.review-card p {
  font-size: 0.875rem;
  line-height: 1.25;
  font-family: var(--font-sans);
  margin-bottom: 0;
}

.expert-insights {
  margin-top: 24px;
  padding-top: 0;
  border-top: 0;
}

.faq-item {
  border: 1px solid #2453ff;
  border-radius: 8px;
  margin-bottom: 16px;
  overflow: hidden;
  background: #ffffff;
}

.faq-item summary {
  min-height: 58px;
  padding: 16px 52px 16px 16px;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.35;
  color: #1a202c;
  cursor: pointer;
  background: #ffffff;
  list-style: none;
  position: relative;
  display: flex;
  align-items: center;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '';
  position: absolute;
  right: 24px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 1.5px solid #1a202c;
  border-bottom: 1.5px solid #1a202c;
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.28s ease;
}

.faq-item[open] summary::after {
  transform: translateY(-30%) rotate(225deg);
}

.faq-item p {
  padding: 0 16px 16px;
  font-size: 1rem;
  line-height: 1.5;
  color: #1a202c;
  font-family: var(--font-sans);
  margin-bottom: 0;
}

.order-section {
  background: #ffffff;
  padding: 64px 0;
  margin-top: 40px;
}

.order-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  background: #eff0f3;
  border-radius: 0;
  padding: 24px 16px;
  box-shadow: none;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
}

.order-form-container,
.lead-form {
  min-width: 0;
  max-width: 100%;
}

.order-info {
  padding: 0;
}

.order-form-container {
  display: flex;
  align-items: flex-start;
  padding: 36px 16px;
  background: #ffffff;
  border-radius: 8px;
}

.lead-form {
  width: 100%;
}

.order-info h2 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.order-info p {
  color: var(--text-muted);
  margin-bottom: 24px;
}

.guarantee-list {
  list-style: none;
}

.guarantee-list li {
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-weight: 500;
}

.guarantee-list li span {
  min-width: 0;
  flex: 1;
}

.guarantee-list i {
  color: var(--primary);
  font-size: 1.2rem;
  width: 24px;
  min-width: 24px;
  flex-shrink: 0;
  margin-top: 2px;
  text-align: center;
}

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

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

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="number"] {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 1rem;
  font-family: var(--font-sans);
  transition: border-color 0.2s;
}

.form-group input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 37, 169, 0.1);
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  min-width: 0;
}

.checkbox-group input {
  margin-top: 4px;
}

.checkbox-group label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: normal;
  margin-bottom: 0;
  flex: 1;
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.submit-btn {
  width: 100%;
  background: var(--primary);
  color: white;
  font-family: var(--font-sans);
  padding: 16px;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}

.submit-btn:hover {
  background: #001d87;
}

.quiz-form {
  min-height: 0;
}

.quiz-step {
  display: none;
}

.quiz-step.is-active {
  display: block;
}

.quiz-step h3 {
  font-size: 20px;
  line-height: 1.35;
  text-align: center;
  margin-bottom: 16px;
}

.quiz-options {
  display: grid;
  gap: 16px;
  margin-bottom: 10px;
}

.quiz-options label {
  display: block;
  cursor: pointer;
}

.quiz-options input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.quiz-options span {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 16px;
  background: #f5f5f5;
  border: 1px solid transparent;
  border-radius: 4px;
  text-align: center;
  color: var(--text-main);
  transition: border-color 0.2s, background 0.2s;
}

.quiz-options input:checked + span {
  background: #edf2f7;
  border-color: var(--primary);
}

.quiz-form .form-group {
  margin-bottom: 16px;
}

.quiz-form .submit-btn {
  background: var(--primary);
  height: 44px;
  padding: 0 16px;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 20px;
}

.quiz-form .submit-btn:hover {
  background: #001d87;
}

.phone-field {
  width: 100%;
}

.phone-field .iti {
  width: 100%;
  font-family: var(--font-sans);
}

.phone-field .iti input[type="tel"] {
  width: 100%;
  height: 46px;
  border-radius: 6px;
}

.iti__country-container,
.iti__dropdown-content {
  font-family: var(--font-sans);
}

.iti__dropdown-content {
  z-index: 1000;
}

.quiz-error {
  margin: 10px 0;
  color: #c53030;
  font-size: 0.85rem;
  text-align: center;
}

.quiz-success {
  padding: 40px 20px;
  text-align: center;
  color: #22543d;
  font-weight: 600;
}

.site-footer {
  background: #1a202c;
  color: #ffffff;
  padding: 48px 0 0;
  margin-top: auto;
  font-size: 14px;
}

.footer-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 {
  color: white;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
}

.footer-col p {
  margin-bottom: 8px;
  line-height: 120%;
}

.footer-col strong {
  font-weight: 600;
}

.footer-email {
  white-space: nowrap;
}

.footer-email a {
  color: #ffffff;
  text-decoration: none;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: white;
}

.disclaimer-text {
  font-size: 14px;
  line-height: 1;
  color: #ffffff;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
  flex: 1;
  word-break: break-word;
}

.legal-content h1 {
  font-family: var(--font-serif);
  font-size: 2rem;
  margin-bottom: 24px;
  color: #1a202c;
}

.legal-content h2 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  margin: 32px 0 16px;
  color: #1a202c;
}

.legal-content h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  margin: 24px 0 12px;
  color: #2d3748;
}

.legal-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 16px;
  font-family: var(--font-sans);
}

.legal-content ul,
.legal-content ol {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.legal-content li {
  margin-bottom: 8px;
  line-height: 1.6;
}

.thanks-wrapper {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, #f0f4f8 0%, #e2e8f0 100%);
  min-width: 0;
}

.thanks-card {
  background: white;
  max-width: 600px;
  width: 100%;
  padding: 48px;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  text-align: center;
  border: 1px solid #e2e8f0;
  min-width: 0;
}

.thanks-logo {
  margin-bottom: 32px;
}

.thanks-logo img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 8px;
}

.thanks-title {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: #22543d;
  margin-bottom: 24px;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.thanks-text {
  font-size: 1.25rem;
  color: #2d3748;
  line-height: 1.8;
  margin-bottom: 16px;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.thanks-details {
  background: #f7fafc;
  padding: 20px;
  border-radius: 8px;
  margin-top: 32px;
  border: 1px dashed #cbd5e0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

@media (max-width: 1024px) {
  .main-layout {
    grid-template-columns: 1fr;
  }
  
  .sidebar-main {
    display: none;
  }
  
  .sidebar-float {
    display: block;
    margin: 32px 0;
  }
  
  .footer-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .order-wrapper {
    grid-template-columns: 1fr;
    padding: 24px 16px;
    gap: 20px;
  }
.sidebar-product-image {
  height: 280px;
}
  .article-hero h1 {
    font-size: 1.8rem;
  }
  
  .article-content {
    padding: 24px;
  }

  .article-content h2 {
    font-size: 1.5rem;
    margin: 32px 0 20px;
  }

  .pull-quote {
    padding: 20px;
    font-size: 1.1rem;
  }

  .sidebar-card {
    padding: 20px;
  }
  
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .header-inner {
    flex-direction: column;
    gap: 12px;
  }

  .thanks-card {
    padding: 32px 24px;
  }

  .thanks-title {
    font-size: 1.6rem;
  }

  .thanks-text {
    font-size: 1.1rem;
  }
}

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

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

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

  .logo a {
    flex-direction: column;
  }
}

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

  .main-layout {
    padding: 0 12px;
    margin: 24px auto;
    gap: 24px;
  }

  .article-content {
    padding: 16px;
  }

  .article-hero h1 {
    font-size: 1.5rem;
  }

  .article-content p,
  .lead {
    font-size: 1rem;
  }

  .order-section {
    padding: 40px 0;
  }

  .order-wrapper {
    padding: 24px 16px;
    gap: 20px;
  }

  .order-info h2 {
    font-size: 1.5rem;
  }

  .form-group input[type="text"],
  .form-group input[type="email"],
  .form-group input[type="tel"],
  .form-group input[type="number"],
  .submit-btn,
  .cta-btn {
    font-size: 0.95rem;
    max-width: 100%;
  }

  .legal-content {
    padding: 24px 12px;
  }

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

  .pull-quote {
    padding: 16px;
    font-size: 1rem;
  }

  .sidebar-card {
    padding: 16px;
  }

  .review-card {
    padding: 16px;
  }

  .thanks-wrapper {
    padding: 40px 12px;
  }

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

  .thanks-title {
    font-size: 1.4rem;
  }

  .thanks-text {
    font-size: 1rem;
  }

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

@media (max-width: 360px) {
  .container,
  .main-layout {
    padding: 0 10px;
  }

  .article-content {
    padding: 12px;
  }

  .order-wrapper {
    padding: 24px 16px;
  }

  .article-hero h1 {
    font-size: 1.35rem;
  }

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