@font-face {
  font-family: "Space Grotesk";
  src: url(../fonts/SpaceGrotesk-VariableFont_wght.ttf);
  font-display: swap;
}

:root {
  --primary: #2b7a4b;
  --primary-dark: #1e5c38;
  --accent: #e67e22;
  --text-dark: #1e1e1e;
  --text-muted: #4a5568;
  --bg-light: #f8fafc;
  --border-light: #e2e8f0;
  --shadow-sm: 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.08);
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Space Grotesk', 'Inter', sans-serif;
}

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

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

main {
  flex: 1;
}

.container {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 20px;
}

.site-header {
  background-color: #0f4f97;
  color: white;
  padding: 0.75rem 0;
  position: sticky;
  top: 0;
  z-index: 10;
  box-shadow: var(--shadow-sm);
}

.header-container {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.logo a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: white;
  font-weight: 600;
  font-size: 1.4rem;
}

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

.logo-text {
  font-family: var(--font-heading);
}

.header-notice {
  font-size: 0.85rem;
  background-color: rgba(255, 255, 255, 0.15);
  padding: 0.3rem 1rem;
  border-radius: 30px;
  font-weight: 400;
}

.hero-article {
  padding: 3rem 0 2rem;
  border-bottom: 1px solid var(--border-light);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: #0b2b4a;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

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

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid white;
  box-shadow: var(--shadow-sm);
}

.author-name {
  font-weight: 500;
  color: var(--text-muted);
}

.publish-date .date-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--bg-light);
  padding: 0.4rem 1.2rem;
  border-radius: 40px;
  font-size: 0.9rem;
  border: 1px solid var(--border-light);
}

.date-badge i {
  color: #10b981;
  font-size: 0.7rem;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.2); }
  100% { opacity: 0.7; transform: scale(1); }
}

.hero-summary {
  background-color: #eef6ff;
  padding: 1.5rem 2rem;
  border-radius: 16px;
  font-size: 1.1rem;
  border-left: 5px solid var(--primary);
  margin-bottom: 1rem;
}

.reasons-section {
  padding: 3rem 0;
}

.reason-grid {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

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

.reason-card.reverse {
  direction: rtl;
}

.reason-card.reverse .reason-content {
  direction: ltr;
}

.reason-image img {
  width: 100%;
  height: auto;
  border-radius: 24px;
  object-fit: cover;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-md);
  transition: transform 0.2s ease;
}

.reason-image img:hover {
  transform: scale(1.01);
}

.reason-content h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.3;
  color: #0b2b4a;
}

.reason-content p {
  margin-bottom: 1rem;
  color: var(--text-muted);
}

.reason-content.full-width {
  grid-column: span 2;
}

.icon-features {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  padding: 3rem 0;
}

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

.feature-item {
  text-align: center;
  padding: 1.5rem;
}

.feature-item i {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.feature-item h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.feature-item p {
  color: var(--text-muted);
}

.how-it-works {
  padding: 3rem 0;
}

.how-it-works h2 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 2rem;
  color: #0b2b4a;
}

.steps {
  display: flex;
  justify-content: space-around;
  gap: 2rem;
  flex-wrap: wrap;
}

.step {
  flex: 1;
  min-width: 200px;
  text-align: center;
}

.step-number {
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  background-color: var(--primary);
  color: white;
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.step p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

.btn {
  display: inline-block;
  background-color: var(--primary);
  color: white;
  font-weight: 600;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  box-shadow: var(--shadow-sm);
}

.btn-primary {
  background-color: var(--primary);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.order-section {
  padding: 3rem 0 4rem;
}

.order-card {
  max-width: 600px;
  margin: 0 auto;
  background: white;
  border-radius: 32px;
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
}

.order-card h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  text-align: center;
  margin-bottom: 0.5rem;
}

.order-subtitle {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.price-block {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.old-price {
  font-size: 1.3rem;
  text-decoration: line-through;
  color: #94a3b8;
}

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

.discount-badge {
  background-color: var(--accent);
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 40px;
  font-weight: 600;
  font-size: 0.9rem;
}

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

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

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

.form-group input {
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--border-light);
  border-radius: 16px;
  font-size: 1rem;
  transition: border 0.15s;
}

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

.quantity-group input {
  width: 100px;
}

.checkbox-group {
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
}

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

.btn-order {
  background-color: var(--primary);
  padding: 1rem;
  font-size: 1.2rem;
  margin-top: 0.5rem;
}

.order-note {
  text-align: center;
  margin-top: 1.5rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.site-footer {
  background-color: #0b1e2e;
  color: #e2e8f0;
  padding: 3rem 0 1.5rem;
  margin-top: auto;
}

.footer-container {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer-logo a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: white;
  font-weight: 600;
  font-size: 1.5rem;
}

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

.footer-contact {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #cbd5e1;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-legal a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 0.95rem;
}

.footer-legal a:hover {
  color: white;
  text-decoration: underline;
}

.footer-disclaimer {
  font-size: 0.85rem;
  color: #94a3b8;
  max-width: 800px;
  border-top: 1px solid #334155;
  padding-top: 1.5rem;
}

.footer-copyright {
  font-size: 0.9rem;
  border-top: 1px solid #334155;
  padding-top: 1.5rem;
  color: #94a3b8;
}

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

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

.legal-content h2 {
  font-size: 1.8rem;
  margin: 1.5rem 0 1rem;
}

.legal-content h3 {
  font-size: 1.4rem;
  margin: 1.2rem 0 0.8rem;
}

.legal-content p {
  margin-bottom: 1rem;
  line-height: 1.6;
  color: #333;
}

.legal-content ul {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    gap: 0.5rem;
  }
  .header-notice {
    font-size: 0.75rem;
    text-align: center;
  }
  .reason-card {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .reason-card.reverse {
    direction: ltr;
  }
  .reason-content.full-width {
    grid-column: span 1;
  }
  .features-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .order-card {
    padding: 1.5rem;
  }
}

.reasons-modern {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: start;
}

.reasons-text h2 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: #0b2b4a;
}

.reason-item {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 2rem;
}

.reason-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: linear-gradient(145deg, var(--primary), #1e5c38);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.reason-desc h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.reason-desc p {
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

.reasons-image {
  position: sticky;
  top: 100px;
}

.reasons-image img {
  width: 100%;
  border-radius: 28px;
  box-shadow: var(--shadow-md);
  object-fit: cover;
  aspect-ratio: 3/4;
}

.image-caption {
  text-align: center;
  margin-top: 1rem;
  color: var(--text-muted);
  font-style: italic;
  font-size: 0.95rem;
}

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

.order-form-wrapper {
  display: flex;
  justify-content: center;
}

.order-card {
  width: 100%;
  max-width: 500px;
}

.order-image {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.order-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 1/1.2;
}

.image-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--accent);
  color: white;
  padding: 0.5rem 1.2rem;
  border-radius: 40px;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}
@media (max-width: 992px) {
  .features-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .reasons-modern {
    grid-template-columns: 1fr;
  }
  .reasons-image {
    position: static;
  }
  .order-modern {
    grid-template-columns: 1fr;
  }
  .order-image {
    order: -1;
    max-width: 400px;
    margin: 0 auto;
  }
    .features-grid {
      grid-template-columns: 1fr;
    }
    body {
      word-break: break-word;
    }
}