.hero {
  position: relative;
  background: var(--surface);
  padding: 60px 24px;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--lab-blue), transparent);
  opacity: 0.3;
}

.hero-inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  pointer-events: none;
}

.hero-bg-img img {
  max-width: 700px;
  max-height: 400px;
  object-fit: contain;
  opacity: 0.17;
  filter: grayscale(100%);
}

.hero h1 {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 900;
  color: var(--text);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 16px;
}

.hero-subtitle {
  font-size: 17px;
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto;
  font-weight: 400;
}

.offers-section {
  position: relative;
  padding: 64px 0;
  background: var(--bg);
  background-image:
    linear-gradient(rgba(30, 58, 95, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 58, 95, 0.06) 1px, transparent 1px),
    radial-gradient(ellipse at 50% 0%, rgba(194, 65, 12, 0.08) 0%, transparent 60%);
  background-size: 32px 32px, 32px 32px, 100% 100%;
}

.offers-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('/images/offers_bg/offers_bg.jpg') center/cover no-repeat;
  opacity: 0.06;
  pointer-events: none;
}

.offers-header {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.offers-header h2 {
  font-size: 28px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
}

.offers-header p {
  color: var(--muted);
  font-size: 14px;
  margin-top: 8px;
}

.offers-grid {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.offer-card {
  background: #0F1923;
  border: 1px solid #2A3F54;
  border-radius: 6px;
  width: 100%;
  max-width: 360px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.offer-card:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 40px rgba(15, 25, 35, 0.35);
}

.offer-card-logo {
  background: #162030;
  width: 312px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-bottom: 1px solid #2A3F54;
}

.offer-card-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.offer-card-body {
  padding: 20px 24px 24px;
  width: 100%;
}

.offer-card-bonus {
  font-size: 16px;
  font-weight: 700;
  color: #F5C518;
  margin-bottom: 4px;
  line-height: 1.4;
  word-break: break-word;
  overflow-wrap: break-word;
}

.offer-card-terms {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 12px;
}

.offer-card-desc {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
  margin-bottom: 16px;
}

.offer-card-cta {
  display: block;
  width: 100%;
  padding: 12px;
  background: #00875A;
  color: #fff;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s;
}

.offer-card-cta:hover {
  background: #006644;
  text-decoration: none;
}

.info-section {
  padding: 56px 0;
  position: relative;
  z-index: 1;
}

.info-section:nth-child(even) {
  background: var(--surface);
}

.info-section:nth-child(odd) {
  background: var(--bg);
}

.info-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lab-blue);
  margin-bottom: 8px;
}

.info-section h2 {
  font-size: 26px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.info-section p {
  font-size: 15px;
  color: var(--text);
  margin-bottom: 14px;
  line-height: 1.7;
}

.info-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  padding: 10px 20px;
  background: var(--lab-blue);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border-radius: 3px;
  text-decoration: none;
  transition: background 0.15s, transform 0.15s;
}

.info-cta:hover {
  background: #152E4A;
  transform: scale(1.02);
  text-decoration: none;
  color: #fff;
}

.layout-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.stat-card {
  background: var(--lab-white);
  border: 1px solid rgba(30, 58, 95, 0.12);
  padding: 20px;
  border-radius: 3px;
  text-align: center;
  transition: transform 0.15s;
}

.stat-card:hover {
  transform: scale(1.04);
}

.stat-value {
  font-size: 28px;
  font-weight: 800;
  color: var(--lab-blue);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
}

.layout-highlight {
  background: var(--lab-blue-light);
  border-left: 3px solid var(--lab-blue);
  padding: 20px 24px;
  margin: 20px 0;
  border-radius: 0 3px 3px 0;
}

.layout-highlight p {
  margin-bottom: 0;
  font-size: 14px;
}

.layout-split {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  align-items: start;
}

.layout-split-img {
  border-radius: 3px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.layout-split-img img {
  width: 100%;
  max-width: 500px;
  max-height: 320px;
  object-fit: cover;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  font-size: 14px;
}

.data-table th,
.data-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.data-table th {
  background: var(--lab-blue-light);
  font-weight: 700;
  color: var(--lab-blue);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.data-table tr:hover td {
  background: rgba(30, 58, 95, 0.04);
}

.layout-bg-section {
  position: relative;
  padding: 56px 0;
  overflow: hidden;
}

.layout-bg-section .bg-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.12;
  filter: grayscale(60%);
}

.layout-bg-section .container {
  position: relative;
  z-index: 1;
}

.steps-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.step-item {
  background: var(--lab-white);
  border: 1px solid var(--border);
  padding: 20px 16px;
  border-radius: 3px;
  text-align: center;
  transition: transform 0.15s;
}

.step-item:hover {
  transform: scale(1.04);
}

.step-num {
  width: 32px;
  height: 32px;
  background: var(--lab-blue);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  margin: 0 auto 12px;
}

.step-item h3 {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text);
}

.step-item p {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 0;
}

.layout-quote-split {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 32px;
  align-items: center;
}

.quote-block {
  background: var(--nav-bg);
  color: var(--nav-text);
  padding: 28px;
  border-radius: 3px;
  border-left: 4px solid var(--accent);
}

.quote-block p {
  color: rgba(250, 243, 224, 0.9);
  font-size: 16px;
  font-style: italic;
  margin-bottom: 0;
  line-height: 1.6;
}

.method-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.method-card {
  background: var(--lab-white);
  border: 1px solid var(--border);
  padding: 24px 20px;
  border-radius: 3px;
  transition: transform 0.15s, border-color 0.15s;
}

.method-card:hover {
  transform: scale(1.03);
  border-color: var(--lab-blue);
}

.method-icon {
  width: 40px;
  height: 40px;
  background: var(--lab-blue-light);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 12px;
}

.method-card h3 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 6px;
}

.method-card p {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 0;
}

.timeline {
  position: relative;
  margin-top: 28px;
  padding-left: 28px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 4px;
  bottom: 4px;
  width: 1px;
  background: var(--lab-blue);
  opacity: 0.3;
}

.timeline-item {
  position: relative;
  margin-bottom: 24px;
  padding-left: 20px;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -24px;
  top: 6px;
  width: 10px;
  height: 10px;
  background: var(--lab-blue);
  border-radius: 50%;
  border: 2px solid var(--surface);
}

.timeline-item h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--lab-blue);
}

.timeline-item p {
  font-size: 14px;
  margin-bottom: 0;
}

.layout-mobile {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 40px;
  align-items: center;
}

.mobile-frame {
  background: var(--nav-bg);
  border-radius: 24px;
  padding: 16px 12px;
  border: 2px solid rgba(250, 243, 224, 0.15);
  max-width: 260px;
  margin: 0 auto;
}

.mobile-screen {
  background: var(--surface);
  border-radius: 12px;
  padding: 20px 16px;
  min-height: 200px;
}

.mobile-stat {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 12px;
}

.mobile-stat span:last-child {
  font-weight: 700;
  color: var(--lab-blue);
}

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

.feature-list li {
  padding: 8px 0 8px 24px;
  position: relative;
  font-size: 14px;
}

.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

@media (max-width: 768px) {
  .hero {
    padding: 32px 20px;
    overflow: hidden;
  }

  .hero-bg-img {
    display: none;
  }

  .layout-stats {
    grid-template-columns: 1fr;
  }

  .layout-split {
    grid-template-columns: 1fr;
  }

  .layout-split-img {
    max-width: 100%;
    overflow: hidden;
  }

  .layout-split-img img {
    max-width: 100%;
    max-height: 240px;
  }

  .layout-bg-section {
    overflow: hidden;
  }

  .offer-card-logo {
    width: 280px;
    height: 52px;
  }

  .offer-card-logo img {
    object-fit: contain;
    object-position: center;
  }

  .steps-row {
    grid-template-columns: 1fr 1fr;
  }

  .layout-quote-split {
    grid-template-columns: 1fr;
  }

  .method-cards {
    grid-template-columns: 1fr;
  }

  .layout-mobile {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 375px) {
  .hero,
  .info-section,
  .layout-bg-section,
  .layout-split-img {
    overflow-x: hidden;
    max-width: 100%;
  }

  .layout-split-img img {
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: contain;
  }

  .offer-card {
    max-width: 100%;
  }

  .offer-card-logo {
    width: 260px;
    height: 48px;
  }
}
