:root {
  --bg: #FFF7ED;
  --surface: #FFFFFF;
  --text: #431407;
  --muted: #9A3412;
  --primary: #F97316;
  --secondary: #FFEDD5;
  --accent: #FB923C;
  --border: rgba(249, 115, 22, 0.15);
  --claymorphism: claymorphism;
  --depth-3d: 3d;
  --ui-soft: soft;
  --ui-friendly: friendly;
  --ui-tactile: tactile;
  --nav-bg: #1C0A02;
  --nav-text: #FFEDD5;
  --radius-lg: 32px;
  --radius-md: 20px;
  --shadow-clay: 8px 8px 24px rgba(249, 115, 22, 0.12), -4px -4px 16px rgba(255, 255, 255, 0.9), inset 0 2px 6px rgba(255, 255, 255, 0.6);
  --shadow-float: 0 12px 40px rgba(249, 115, 22, 0.18);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", "Trebuchet MS", "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  background-image:
    radial-gradient(ellipse 80% 60% at 10% 0%, rgba(251, 146, 60, 0.18) 0%, transparent 60%),
    linear-gradient(165deg, #FFF7ED 0%, #FFEDD5 45%, #FFF7ED 100%);
  color: var(--text);
  line-height: 1.65;
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: radial-gradient(circle at 85% 75%, rgba(249, 115, 22, 0.08) 0%, transparent 40%);
  pointer-events: none;
  z-index: 0;
}

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

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

a:hover {
  color: var(--accent);
}

.disclosure-banner {
  background: var(--secondary);
  border-top: 3px solid var(--primary);
  padding: 10px 16px;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  position: relative;
  z-index: 100;
  line-height: 1.5;
}

.navbar {
  background: var(--nav-bg);
  position: sticky;
  top: 0;
  z-index: 90;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.navbar__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  flex-wrap: wrap;
}

.navbar__links a {
  color: var(--nav-text);
  font-size: 13px;
  letter-spacing: 0.5px;
  padding: 8px 10px;
  position: relative;
  display: inline-block;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.navbar__links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scale(0);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.navbar__links a:hover,
.navbar__links a:focus {
  color: #fff;
  transform: translateY(-1px);
}

.navbar__links a:hover::after,
.navbar__links a:focus::after {
  transform: translateX(-50%) scale(1);
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.3px;
  flex-shrink: 0;
}

.navbar__logo img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.navbar__burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}

.navbar__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--nav-text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.navbar__burger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.navbar__burger.is-open span:nth-child(2) {
  opacity: 0;
}

.navbar__burger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-panel {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 260px;
  height: 100vh;
  background: var(--nav-bg);
  z-index: 200;
  padding: 80px 24px 24px;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.3);
}

.mobile-panel.is-open {
  transform: translateX(0);
}

.mobile-panel ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-panel a {
  color: var(--nav-text);
  display: block;
  padding: 12px 8px;
  font-size: 15px;
  letter-spacing: 0.5px;
  border-radius: var(--radius-md);
  transition: background 0.2s ease;
}

.mobile-panel a:hover {
  background: rgba(249, 115, 22, 0.15);
  color: #fff;
}

.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 199;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-overlay.is-open {
  opacity: 1;
}

.site-footer {
  background: var(--nav-bg);
  color: var(--nav-text);
  padding: 48px 20px 32px;
  margin-top: auto;
  position: relative;
  z-index: 1;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.footer__inner {
  max-width: 1280px;
  margin: 0 auto;
}

.footer__top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  margin-bottom: 36px;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 12px;
}

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

.footer__links {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 8px 24px;
}

.footer__links a {
  color: var(--nav-text);
  font-size: 14px;
  opacity: 0.85;
}

.footer__links a:hover {
  opacity: 1;
  color: var(--accent);
}

.footer__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-bottom: 28px;
}

.footer__badges a {
  display: block;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.footer__badges a:hover {
  transform: scale(1.05);
}

.footer__badges img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.footer__compliance {
  font-size: 13px;
  line-height: 1.7;
  opacity: 0.8;
  margin-bottom: 20px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
}

.footer__company {
  font-size: 13px;
  opacity: 0.7;
  margin-bottom: 16px;
}

.footer__au-disclosure {
  font-size: 11px;
  color: rgba(255, 237, 213, 0.65);
  line-height: 1.65;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__updated {
  font-size: 12px;
  opacity: 0.6;
  margin-top: 12px;
}

.clay-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-clay);
  border: 1px solid var(--border);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}

.clay-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-float);
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(28, 10, 2, 0.7);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.is-visible {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  max-width: 480px;
  width: 100%;
  box-shadow: var(--shadow-float), inset 0 2px 8px rgba(255, 255, 255, 0.8);
  text-align: center;
  transform: scale(0.9);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-overlay.is-visible .modal {
  transform: scale(1);
}

.modal h2 {
  font-size: 22px;
  margin-bottom: 12px;
  color: var(--text);
}

.modal p {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 24px;
}

.modal__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s ease;
  letter-spacing: 0.3px;
}

.btn:active {
  transform: scale(0.95);
}

.btn--primary {
  background: linear-gradient(145deg, var(--primary), var(--accent));
  color: #fff;
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.35), inset 0 1px 3px rgba(255, 255, 255, 0.3);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(249, 115, 22, 0.45);
}

.btn--secondary {
  background: var(--secondary);
  color: var(--muted);
  box-shadow: inset 0 2px 6px rgba(249, 115, 22, 0.1);
}

.btn--secondary:hover {
  background: #FFE4C4;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--surface);
  border-top: 3px solid var(--primary);
  padding: 20px 24px;
  z-index: 900;
  box-shadow: 0 -8px 32px rgba(249, 115, 22, 0.15);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.cookie-banner.is-visible {
  transform: translateY(0);
}

.cookie-banner__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-banner p {
  font-size: 14px;
  color: var(--muted);
  flex: 1;
  min-width: 240px;
}

.page-content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px 20px 60px;
  position: relative;
  z-index: 1;
}

.page-content h1 {
  font-size: 32px;
  margin-bottom: 20px;
  color: var(--text);
  font-weight: 800;
}

.page-content h2 {
  font-size: 22px;
  margin: 28px 0 12px;
  color: var(--text);
  font-weight: 700;
}

.page-content h3 {
  font-size: 18px;
  margin: 20px 0 10px;
  color: var(--muted);
  font-weight: 600;
}

.page-content p {
  margin-bottom: 14px;
  color: var(--text);
}

.page-content ul {
  margin: 12px 0 16px 24px;
}

.page-content li {
  margin-bottom: 8px;
}

.page-content code {
  background: var(--secondary);
  padding: 2px 6px;
  border-radius: 6px;
  font-size: 13px;
}

.contact-form {
  margin-top: 32px;
  padding: 32px;
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-clay);
  max-width: 560px;
}

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

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 14px;
  color: var(--muted);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 15px;
  font-family: inherit;
  background: var(--bg);
  color: var(--text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.15);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-error {
  color: #DC2626;
  font-size: 13px;
  margin-top: 4px;
  display: none;
}

.form-error.is-visible {
  display: block;
}

.form-success {
  padding: 32px;
  background: var(--secondary);
  border-radius: var(--radius-lg);
  text-align: center;
  font-size: 16px;
  color: var(--muted);
}

@media (max-width: 1024px) {
  .navbar__links {
    display: none;
  }

  .navbar__burger {
    display: flex;
  }

  .mobile-panel,
  .mobile-overlay {
    display: block;
  }

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

@media (max-width: 767px) {
  .navbar__inner {
    flex-direction: row-reverse;
  }

  .navbar__logo {
    margin-right: auto;
  }
}

@media (max-width: 375px) {
  .hero__image,
  .info-1__visual,
  .info-6__img,
  .image-rail,
  .image-rail__frame,
  .sidebar-rail__img,
  .review-image-rail,
  .review-image-rail__card,
  .cashout-prose__visual,
  .tactile-claymorphism-card {
    max-width: 100%;
    overflow: hidden;
  }

  .hero__image img,
  .info-1__visual img,
  .info-6__img img,
  .image-rail__frame img,
  .sidebar-rail__img img,
  .review-image-rail__card img,
  .tactile-claymorphism-card img {
    max-width: 100%;
    width: 100%;
    height: auto;
  }
}

.claymorphism-surface {
  --style-claymorphism: claymorphism;
  --style-3d: 3d;
  --style-soft: soft;
  --style-friendly: friendly;
  --style-tactile: tactile;
}

.hero {
  display: grid;
  grid-template-columns: 55% 45%;
  min-height: 420px;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero__text {
  background: var(--secondary);
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 0 0 var(--radius-lg) 0;
  box-shadow: inset 0 -4px 12px rgba(249, 115, 22, 0.08);
}

.hero__text h1 {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
  color: var(--text);
  letter-spacing: -0.5px;
}

.hero__text p {
  font-size: 17px;
  color: var(--muted);
  max-width: 480px;
  line-height: 1.7;
}

.hero__image {
  position: relative;
  overflow: hidden;
  border-radius: 0 0 0 var(--radius-lg);
}

.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 420px;
}

.offers-section {
  position: relative;
  padding: 72px 20px;
  z-index: 1;
}

.offers-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("/images/offers_bg/offers_bg.webp");
  background-size: cover;
  background-position: center;
  opacity: 0.12;
  z-index: -1;
}

.offers-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(255, 247, 237, 0.6) 100%);
  z-index: -1;
}

.offers-section__inner {
  max-width: 1280px;
  margin: 0 auto;
}

.offers-section h2 {
  font-size: 34px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 12px;
  color: var(--text);
}

.offers-section__subtitle {
  text-align: center;
  color: var(--muted);
  margin-bottom: 40px;
  font-size: 16px;
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.offer-card {
  background: #1a1a2e;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.offer-card:hover {
  transform: translateY(-4px) scale(1.01);
}

.offer-card__logo-wrap {
  width: 120px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

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

.offer-card__name {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
}

.offer-card__bonus-wrap {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.offer-card__bonus {
  color: #fbbf24;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  word-break: break-word;
  overflow-wrap: break-word;
  max-width: 100%;
}

.offer-card__terms {
  color: rgba(255, 255, 255, 0.45);
  font-size: 11px;
}

.offer-card__desc {
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  line-height: 1.5;
}

.offer-card__cta {
  display: inline-block;
  padding: 10px 28px;
  background: linear-gradient(145deg, #f97316, #fb923c);
  color: #fff;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  border: none;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  margin-top: 4px;
}

.offer-card__cta:hover {
  transform: scale(1.05);
  color: #fff;
}

.info-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 56px 20px;
  position: relative;
  z-index: 1;
}

.info-section:nth-child(even) {
  background: rgba(255, 237, 213, 0.35);
  border-radius: var(--radius-lg);
  margin: 0 12px;
  max-width: calc(1280px - 24px);
}

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

.info-1__visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-float);
  max-width: 500px;
}

.info-1__visual img {
  max-height: 320px;
  object-fit: cover;
  width: 100%;
}

.info-1 h2 {
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 16px;
}

.info-2 {
  text-align: center;
}

.info-2 h2 {
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 24px;
}

.info-2__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 24px;
}

.info-2__card {
  padding: 28px 20px;
  text-align: left;
}

.info-2__card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--primary);
}

.info-3 {
  display: flex;
  gap: 32px;
}

.info-3__sidebar {
  flex: 0 0 200px;
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  box-shadow: var(--shadow-clay);
}

.info-3__sidebar h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #fff;
}

.info-3__sidebar ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.info-3__sidebar li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 14px;
}

.info-3__content h2 {
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 16px;
}

.info-4 {
  position: relative;
  padding: 48px 40px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow-clay);
}

.info-4__bg {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 45%;
  background-image: url("/images/decorative/decor_2.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.25;
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}

.info-4__content {
  position: relative;
  max-width: 58%;
}

.info-4 h2 {
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 16px;
}

.info-5 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.info-5 h2 {
  grid-column: 1 / -1;
  font-size: 30px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 8px;
}

.info-5__intro {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--muted);
  margin-bottom: 16px;
}

.info-5__step {
  padding: 24px 16px;
  text-align: center;
}

.info-5__num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--primary), var(--accent));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
  margin: 0 auto 12px;
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

.info-5__step h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
}

.info-5__step p {
  font-size: 13px;
  color: var(--muted);
}

.info-6 {
  display: flex;
  align-items: stretch;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-clay);
}

.info-6__img {
  flex: 0 0 40%;
  max-width: 500px;
}

.info-6__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: 320px;
}

.info-6__body {
  flex: 1;
  padding: 36px 32px;
  background: var(--surface);
}

.info-6 h2 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 14px;
}

.info-7 {
  text-align: left;
}

.info-7 h2 {
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 20px;
}

.info-7__table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-clay);
}

.info-7 table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
}

.info-7 th,
.info-7 td {
  padding: 14px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}

.info-7 th {
  background: var(--secondary);
  font-weight: 700;
  color: var(--muted);
}

.info-8 {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 32px;
  align-items: start;
}

.info-8 h2 {
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 16px;
}

.info-8__quote {
  background: var(--primary);
  color: #fff;
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  font-size: 17px;
  font-style: italic;
  line-height: 1.6;
  box-shadow: var(--shadow-float);
}

.info-9 {
  padding: 48px;
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-clay);
  position: relative;
}

.info-9::before {
  content: "";
  position: absolute;
  top: -20px;
  right: 40px;
  width: 80px;
  height: 80px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0.15;
}

.info-9 h2 {
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 16px;
}

.info-9__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 20px;
  list-style: none;
  padding: 0;
}

.info-9__list li {
  padding: 16px;
  background: var(--bg);
  border-radius: var(--radius-md);
  font-size: 14px;
  border-left: 4px solid var(--primary);
}

.info-10 {
  text-align: center;
  padding: 56px 40px;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--surface) 100%);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-clay);
}

.info-10 h2 {
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 16px;
}

.info-10__steps {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.info-10__step {
  flex: 0 0 180px;
  padding: 24px 16px;
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-clay);
}

.info-10__step-icon {
  font-size: 28px;
  margin-bottom: 8px;
}

.info-10__step h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
}

.info-10__step p {
  font-size: 13px;
  color: var(--muted);
}

.info-cta {
  display: inline-block;
  margin-top: 24px;
  padding: 12px 28px;
  background: linear-gradient(145deg, var(--primary), var(--accent));
  color: #fff;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.3);
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.info-cta:hover {
  transform: translateY(-2px) scale(1.03);
  color: #fff;
}

@media (max-width: 767px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero__text {
    padding: 36px 24px;
    border-radius: 0;
  }

  .hero__text h1 {
    font-size: 28px;
  }

  .hero__image {
    max-height: 180px;
    border-radius: 0;
  }

  .hero__image img {
    min-height: 180px;
    max-height: 180px;
  }

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

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

  .info-3 {
    flex-direction: column;
  }

  .info-3__sidebar {
    flex: none;
  }

  .info-4__bg {
    width: 100%;
    height: 120px;
    position: relative;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  }

  .info-4 {
    padding: 24px;
    display: flex;
    flex-direction: column-reverse;
  }

  .info-4__content {
    max-width: 100%;
  }

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

  .info-6 {
    flex-direction: column;
  }

  .info-6__img {
    max-width: 100%;
  }

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

  .info-9__list {
    grid-template-columns: 1fr;
  }

  .info-10__steps {
    flex-direction: column;
    align-items: center;
  }

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

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