.hero {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 32px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(197, 179, 88, 0.07) 0%, transparent 65%);
}

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

.hero h1 {
  font-family: var(--bespoke-serif);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 700;
  text-align: center;
  color: var(--fashion-white);
  line-height: 1.05;
  position: relative;
  z-index: 1;
  letter-spacing: -0.02em;
}

.hero-sub {
  display: none;
  font-family: var(--craft-sans);
  font-size: 13px;
  color: var(--muted);
  text-align: center;
  margin-top: 1rem;
  letter-spacing: 0.06em;
  position: relative;
  z-index: 1;
}

.offers-section {
  padding: 4rem 32px;
  position: relative;
  background: var(--surface);
  background-image:
    linear-gradient(rgba(28, 28, 28, 0.92), rgba(28, 28, 28, 0.88)),
    url("/images/offers_bg/offers_bg.webp");
  background-size: cover;
  background-position: center;
}

.offers-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.offers-heading {
  font-family: var(--bespoke-serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--fashion-white);
  text-align: center;
  margin-bottom: 2.5rem;
  font-weight: 400;
}

.offers-grid {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
}

.offer-card {
  background: #FFFFFF;
  border-radius: 4px;
  padding: 1.75rem;
  width: 100%;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(197, 179, 88, 0.15);
}

.offer-card-logo-wrap {
  width: 120px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 1rem;
}

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

.offer-card-name {
  font-family: var(--craft-sans);
  font-size: 18px;
  font-weight: 700;
  color: #1C1C1C;
  margin-bottom: 0.5rem;
}

.offer-card-bonus-wrap {
  margin-bottom: 0.75rem;
}

.offer-card-bonus {
  font-family: var(--bespoke-serif);
  font-size: 15px;
  color: #333333;
  line-height: 1.4;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.offer-card-terms {
  font-family: var(--craft-sans);
  font-size: 10px;
  color: #888888;
  display: block;
  margin-top: 0.25rem;
}

.offer-card-desc {
  font-family: var(--craft-sans);
  font-size: 11px;
  color: #777777;
  line-height: 1.5;
  margin-bottom: 1.25rem;
}

.offer-card-cta {
  font-family: var(--craft-sans);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: #1C1C1C;
  color: #FFFFFF;
  border: none;
  padding: 0.85rem 2rem;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
  display: inline-block;
}

.offer-card-cta:hover {
  background: #C5B358;
  color: #1C1C1C;
}

.info-section {
  padding: 4rem 32px;
  position: relative;
}

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

.info-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.info-section h2 {
  font-family: var(--bespoke-serif);
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--fashion-white);
  margin-bottom: 1.25rem;
  font-weight: 400;
}

.info-section p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 1rem;
  max-width: 680px;
}

.info-cta {
  display: inline-block;
  margin-top: 1.5rem;
  font-family: var(--craft-sans);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  text-decoration: none;
  border-bottom: 1px solid var(--primary);
  padding-bottom: 2px;
  transition: color 0.2s;
}

.info-cta:hover {
  color: var(--secondary);
  border-color: var(--secondary);
}

.info-1-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.info-1-steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.info-1-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem;
  border-left: 1px solid var(--border);
}

.info-1-step-num {
  font-family: var(--craft-sans);
  font-size: 11px;
  color: var(--primary);
  letter-spacing: 0.1em;
  min-width: 24px;
}

.info-1-step p {
  margin: 0;
  font-size: 0.9rem;
}

.info-2-layout {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
}

.info-2-visual {
  flex-shrink: 0;
  max-width: 100%;
  overflow: hidden;
}

.info-2-visual img {
  max-width: 500px;
  max-height: 320px;
  width: 100%;
  object-fit: cover;
  border: 1px solid var(--border);
}

.info-2-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  flex: 1;
}

.info-2-card {
  padding: 1.25rem;
  border: 1px solid var(--border);
  background: var(--surface);
}

.info-2-card h3 {
  font-family: var(--craft-sans);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.info-2-card p {
  font-size: 0.85rem;
  margin: 0;
}

.info-3-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.info-3-item {
  text-align: center;
  padding: 2rem 1.5rem;
  border: 1px solid var(--border);
  position: relative;
}

.info-3-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 1px;
  background: var(--primary);
}

.info-3-item h3 {
  font-family: var(--craft-sans);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.info-3-item p {
  font-size: 0.85rem;
  margin: 0 auto;
}

.info-4-layout {
  position: relative;
}

.info-4-bg {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 400px;
  height: 280px;
  max-width: 100%;
  opacity: 0.25;
  overflow: hidden;
}

.info-4-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.info-4-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 700px;
}

.info-4-item {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.info-4-item span:first-child {
  font-family: var(--craft-sans);
  font-size: 13px;
  color: var(--accent);
}

.info-4-item span:last-child {
  font-size: 12px;
  color: var(--muted);
}

.info-5-layout {
  display: flex;
  gap: 3rem;
  align-items: center;
}

.info-5-content {
  flex: 1;
}

.info-5-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.info-5-feat {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--craft-sans);
  font-size: 13px;
  color: var(--muted);
}

.info-5-feat::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
}

.info-5-aside {
  width: 200px;
  flex-shrink: 0;
  padding: 2rem;
  border: 1px solid var(--border);
  text-align: center;
}

.info-5-aside p {
  font-family: var(--craft-sans);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  margin: 0;
}

.info-6-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 3rem;
  align-items: start;
}

.info-6-visual {
  max-width: 100%;
  overflow: hidden;
}

.info-6-visual img {
  max-width: 280px;
  max-height: 320px;
  width: 100%;
  object-fit: cover;
  border: 1px solid var(--border);
}

.info-6-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}

.info-6-table th,
.info-6-table td {
  font-family: var(--craft-sans);
  font-size: 12px;
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.info-6-table th {
  color: var(--primary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}

.info-6-table td {
  color: var(--muted);
}

.info-7-layout {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.info-7-layout h2 {
  text-align: center;
}

.info-7-layout p {
  margin-left: auto;
  margin-right: auto;
}

.info-7-timeline {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.info-7-point {
  flex: 1;
  min-width: 140px;
  max-width: 180px;
  padding-top: 1.5rem;
  border-top: 1px solid var(--primary);
  text-align: left;
}

.info-7-point h3 {
  font-family: var(--craft-sans);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.info-7-point p {
  font-size: 0.8rem;
  margin: 0;
}

.info-8-layout {
  display: flex;
  gap: 3rem;
  align-items: stretch;
}

.info-8-visual {
  flex: 0 0 320px;
  max-width: 100%;
  overflow: hidden;
}

.info-8-visual img {
  max-width: 500px;
  max-height: 320px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1px solid var(--border);
}

.info-8-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.info-8-tag {
  font-family: var(--craft-sans);
  font-size: 11px;
  letter-spacing: 0.06em;
  padding: 0.4rem 0.9rem;
  border: 1px solid var(--border);
  color: var(--muted);
}

.info-9-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
}

.info-9-quote {
  padding: 2rem;
  border-left: 2px solid var(--primary);
  margin-top: 1.5rem;
}

.info-9-quote p {
  font-style: italic;
  color: var(--accent);
  font-size: 1.05rem;
  margin: 0;
}

.info-9-sidebar {
  background: var(--surface);
  padding: 1.5rem;
  border: 1px solid var(--border);
}

.info-9-sidebar h3 {
  font-family: var(--craft-sans);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1rem;
}

.info-9-sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.info-9-sidebar li {
  font-size: 0.85rem;
  color: var(--muted);
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--border);
}

.info-10-layout {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.info-10-col {
  padding: 2rem;
  border: 1px solid var(--border);
}

.info-10-col h3 {
  font-family: var(--craft-sans);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1rem;
}

.info-10-col ul {
  list-style: none;
  padding: 0;
}

.info-10-col li {
  font-size: 0.9rem;
  color: var(--muted);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
}

@media (max-width: 768px) {
  .hero-sub {
    display: block;
  }

  .offers-section,
  .info-section {
    padding: 3rem 16px;
  }

  .hero {
    padding: 3rem 16px;
    min-height: 220px;
  }

  .info-1-layout,
  .info-2-layout,
  .info-3-layout,
  .info-5-layout,
  .info-6-layout,
  .info-8-layout,
  .info-9-layout,
  .info-10-layout {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

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

  .info-4-list {
    grid-template-columns: 1fr;
  }

  .info-4-bg {
    position: relative;
    transform: none;
    opacity: 0.4;
    width: 100%;
    height: auto;
    max-height: 200px;
    margin-bottom: 1.5rem;
  }

  .info-4-bg img {
    max-height: 200px;
  }

  .info-5-aside {
    width: 100%;
  }

  .info-8-visual {
    flex: none;
    width: 100%;
  }

  .offer-card-logo-wrap {
    width: 120px;
    height: 60px;
  }

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

  .info-2-visual img,
  .info-6-visual img,
  .info-8-visual img {
    max-width: 100%;
  }
}
