:root {
  --black: #161412;
  --near-black: #1d1a17;
  --red: #b91c2b;
  --red-dark: #8f1521;
  --gold: #d6a13c;
  --cream: #f4efe6;
  --paper: #fbf8f2;
  --ink: #211d19;
  --grey: #5a534b;
  --line: rgba(0, 0, 0, 0.08);
  --radius: 10px;
  --shadow: 0 14px 30px -14px rgba(0, 0, 0, 0.35);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, .display {
  font-family: 'Oswald', system-ui, sans-serif;
  text-transform: uppercase;
  letter-spacing: .01em;
  line-height: 1.05;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  color: var(--gold);
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  letter-spacing: .18em;
  font-size: .78rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--red);
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 14px 26px;
  border-radius: 6px;
  box-shadow: var(--shadow);
  transition: transform .15s ease, background .15s ease;
  border: none;
  cursor: pointer;
  font-size: .92rem;
}

.btn:hover {
  transform: translateY(-2px);
  background: var(--red-dark);
}

.star-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--gold);
}

.star-divider::before,
.star-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* ============ HEADER ============ */
header {
  background: var(--black);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 3px solid var(--red);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  gap: 18px;
  position: relative;
  min-height: 68px;
}

.logo {
  position: relative;
  width: 180px;
  height: 1px;
  flex-shrink: 0;
  align-self: flex-start;
}

.logo-img {
  position: absolute;
  top: 10px;
  left: 0;
  height: 170px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 6px 10px rgba(0, 0, 0, .45));
  z-index: 20;
  pointer-events: none;
}

nav.main-nav {
  display: flex;
  gap: 26px;
}

nav.main-nav a {
  font-family: 'Oswald', sans-serif;
  font-size: .84rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #e9e5dd;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: color .15s, border-color .15s;
  white-space: nowrap;
}

nav.main-nav a:hover,
nav.main-nav a.active {
  color: var(--red);
  border-color: var(--red);
}

.header-cta {
  background: var(--red);
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 6px;
  flex-shrink: 0;
}

.header-cta svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.header-cta .num {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: .02em;
}

.header-cta .sub {
  font-size: .66rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .9;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 6px;
}

.menu-toggle svg {
  width: 28px;
  height: 28px;
}

/* ============ HERO ============ */
.hero {
  background: var(--paper);
  padding: 70px 0 50px;
}

#about-us,
#services {
  scroll-margin-top: 80px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr 1fr;
  gap: 42px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px 0 0;
}

.hero-photo {
  position: relative;
  overflow: hidden;
  height: 100%;
}

.hero-photo .upload-ico {
  width: 54px;
  height: 54px;
  color: var(--gold);
  opacity: .85;
}

.hero-photo .frame-label {
  color: #cfc9bf;
  font-family: 'Oswald', sans-serif;
  font-size: .78rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  line-height: 1.5;
  max-width: 22ch;
}

.hero-photo .frame-label strong {
  color: #fff;
  display: block;
  font-size: .92rem;
  margin-bottom: 4px;
  letter-spacing: .04em;
}

.hero-copy h1 {
  font-size: clamp(2.1rem, 4.4vw, 3.1rem);
  font-weight: 700;
  color: var(--ink);
}

.hero-copy h1 .accent {
  color: var(--red);
  display: block;
}

.hero-copy .lede {
  margin-top: 22px;
  font-style: italic;
  color: var(--grey);
  font-size: 1.02rem;
  line-height: 1.6;
  max-width: 46ch;
}

.hero-copy .star-divider {
  margin: 22px 0;
  max-width: 340px;
}

.hero-copy .actions {
  display: flex;
  gap: 14px;
  margin-top: 26px;
  flex-wrap: wrap;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid var(--ink);
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  padding: 12px 22px;
  border-radius: 6px;
  font-size: .88rem;
}

.hero-benefits {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.benefit-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.benefit-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-icon svg {
  width: 22px;
  height: 22px;
}

.benefit-text h4 {
  font-size: .92rem;
  letter-spacing: .04em;
  color: var(--ink);
  font-weight: 600;
}

.benefit-text p {
  font-size: .86rem;
  color: var(--grey);
  margin-top: 3px;
  line-height: 1.45;
}

/* ============ RED BANNER ============ */
.banner {
  background: var(--red);
  background-image: linear-gradient(110deg, var(--red) 65%, var(--red-dark) 65%, var(--red-dark) 70%, var(--red) 70%);
  padding: 18px 0;
  text-align: center;
}

.banner h2 {
  color: #fff;
  font-size: clamp(1.05rem, 2.4vw, 1.5rem);
  letter-spacing: .04em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.banner h2 .gold-star {
  color: var(--gold);
  font-size: 1.1em;
}

/* ============ WHY PARTNER ============ */
.partner-section {
  padding: 64px 0;
  background: var(--cream);
}

.partner-head {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 44px;
}

.partner-head h2 {
  font-size: clamp(1.6rem, 3.2vw, 2.3rem);
}

.partner-head h2 .red {
  color: var(--red);
}

.partner-head p {
  color: var(--grey);
  line-height: 1.6;
  max-width: 48ch;
}

.feature-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

.feature-card {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 24px 16px;
  text-align: center;
  box-shadow: 0 8px 20px -12px rgba(0, 0, 0, .18);
}

.feature-card .ico {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 2px solid var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--red);
}

.feature-card .ico svg {
  width: 26px;
  height: 26px;
}

.feature-card h4 {
  font-family: 'Oswald', sans-serif;
  font-size: .84rem;
  letter-spacing: .04em;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: .78rem;
  color: var(--grey);
  line-height: 1.45;
}

/* ============ ABOUT US ============ */
.about-section {
  padding: 64px 0;
  background:
    radial-gradient(circle at 50% 0, rgba(214, 161, 60, .10), transparent 34%),
    linear-gradient(180deg, #fbf8f2 0%, #f4efe6 100%);
  border-top: 1px solid rgba(0, 0, 0, .06);
  border-bottom: 1px solid rgba(0, 0, 0, .06);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
  align-items: center;
}

.about-text p {
  color: var(--grey);
  line-height: 1.7;
  font-size: .95rem;
  max-width: 64ch;
}

.about-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-icon-wrap {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: var(--cream);
  border: 3px solid var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 30px -14px rgba(0, 0, 0, .18);
}

.about-icon-wrap svg {
  width: 72px;
  height: 72px;
  color: var(--red);
}

.about-image-wrap {
  width: 480px;
  max-width: 100%;
  aspect-ratio: 1 / 1;
}

.about-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* ============ HOW IT WORKS ============ */
.how-section {
  padding: 54px 0 64px;
  background:
    radial-gradient(circle at 50% 0, rgba(214, 161, 60, .10), transparent 34%),
    linear-gradient(180deg, #fbf8f2 0%, #f4efe6 100%);
  border-top: 1px solid rgba(0, 0, 0, .06);
  border-bottom: 1px solid rgba(0, 0, 0, .06);
}

.how-title {
  text-align: center;
  margin-bottom: 42px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.how-title::before,
.how-title::after {
  content: "";
  height: 7px;
  width: min(220px, 23vw);
  background: linear-gradient(90deg, transparent, var(--ink) 18%, var(--ink) 82%, transparent);
  border-radius: 999px;
  opacity: .95;
}

.how-title h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.45rem);
  color: var(--ink);
  background: transparent;
  padding: 0;
  letter-spacing: .04em;
  white-space: nowrap;
}

.steps {
  display: grid;
  grid-template-columns: 1fr 54px 1fr 54px 1fr 54px 1fr;
  gap: 0;
  align-items: center;
  max-width: 1040px;
  margin: 0 auto;
}

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
  text-align: left;
  position: relative;
  padding: 8px 0;
}

.step .num {
  position: absolute;
  top: -18px;
  left: 46px;
  width: 34px;
  height: 34px;
  background: linear-gradient(180deg, #d42634, var(--red-dark));
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  box-shadow: 0 7px 14px -8px rgba(0, 0, 0, .7);
  z-index: 3;
}

.step .circle {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: #fff;
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  border: 8px solid #f1ede5;
  box-shadow:
    0 10px 18px -12px rgba(0, 0, 0, .65),
    inset 0 0 0 1px rgba(214, 161, 60, .32);
  position: relative;
}

.step .circle i {
  font-size: 2.35rem;
  line-height: 1;
}

.step h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.03rem;
  letter-spacing: .045em;
  color: var(--red);
  margin-bottom: 7px;
}

.step p {
  font-size: .88rem;
  color: var(--ink);
  line-height: 1.45;
  max-width: 17ch;
  font-weight: 500;
}

.step-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  opacity: 1;
}

.step-arrow i {
  font-size: 1.9rem;
  filter: drop-shadow(0 2px 0 rgba(214, 161, 60, .25));
}

/* ============ TRADE PARTNER ============ */
.trade-section {
  background: var(--cream);
  padding: 60px 0 70px;
}

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

.trade-copy h2 {
  font-size: clamp(1.7rem, 3.6vw, 2.3rem);
}

.trade-copy h2 .red {
  color: var(--red);
  display: block;
}

.trade-copy .lead-tag {
  margin: 18px 0;
  color: var(--grey);
  font-size: .92rem;
  line-height: 1.5;
}

.trade-copy .punch {
  display: inline-block;
  background: var(--ink);
  color: #fff;
  padding: 12px 18px;
  border-radius: 6px;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  letter-spacing: .03em;
  font-size: .95rem;
}

.trade-copy .punch .red {
  color: var(--red);
  display: inline;
}

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

.trade-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--red);
  display: flex;
  flex-direction: column;
}

.trade-photo {
  aspect-ratio: 1/1;
  position: relative;
  background: var(--ink);
  border: 2px dashed rgba(214, 161, 60, .4);
  display: flex;
  align-items: center;
  justify-content: center;
}

.trade-photo svg {
  width: 34%;
  height: 34%;
  color: var(--gold);
  opacity: .9;
}

.trade-label {
  background: var(--red);
  color: #fff;
  text-align: center;
  padding: 12px 8px;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .04em;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 3em;
}

/* ============ REFERRAL ============ */
.referral-section {
  background: var(--black);
  color: #fff;
}

.referral-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
}

.referral-rewards {
  padding: 50px 40px;
  display: flex;
  gap: 26px;
  align-items: flex-start;
  border-right: 1px solid rgba(255, 255, 255, .08);
}

.trophy {
  width: 62px;
  height: 62px;
  color: var(--gold);
  flex-shrink: 0;
}

.referral-rewards h3 {
  color: var(--gold);
  font-size: 1.3rem;
  margin-bottom: 6px;
}

.referral-rewards > div p.desc {
  color: #cfc9bf;
  font-size: .88rem;
  max-width: 46ch;
  line-height: 1.5;
  margin-bottom: 18px;
}

.reward-tiers {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.reward-tier {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: 'Oswald', sans-serif;
}

.reward-tier .amt {
  color: var(--gold);
  font-weight: 700;
  font-size: 1.2rem;
  width: 70px;
}

.reward-tier .desc2 {
  font-size: .84rem;
  letter-spacing: .03em;
  color: #e9e5dd;
}

.qr-block {
  padding: 50px 40px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.qr-code {
  width: 120px;
  height: 120px;
  background: #fff;
  border-radius: 6px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}

.qr-code svg {
  width: 100%;
  height: 100%;
}

.qr-text h4 {
  font-size: 1.05rem;
  line-height: 1.3;
}

.qr-text h4 .red {
  color: var(--red);
}

.qr-text p {
  color: #cfc9bf;
  font-size: .8rem;
  margin-top: 10px;
  line-height: 1.5;
}

/* ============ MODAL ============ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(3px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3000;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
  padding: 20px;
  overflow-y: auto;
}
.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}
.modal-container {
  background: #fff;
  border-radius: 14px;
  width: 100%;
  max-width: 620px;
  position: relative;
  box-shadow: 0 25px 60px rgba(0, 0, 0, .4);
  transform: translateY(20px) scale(.97);
  transition: transform .3s cubic-bezier(.22, 1, .36, 1);
  max-height: 90vh;
  overflow-y: auto;
}
.modal-overlay.open .modal-container {
  transform: translateY(0) scale(1);
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: var(--cream);
  color: var(--ink);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s, transform .15s;
  z-index: 10;
}
.modal-close:hover {
  background: #e5ddd3;
  transform: scale(1.08);
}
.modal-close svg {
  width: 18px;
  height: 18px;
}
.modal-header {
  padding: 36px 40px 0;
}
.modal-header h2 {
  font-size: 1.7rem;
  letter-spacing: .02em;
  color: var(--ink);
}
.modal-header p {
  color: var(--grey);
  margin-top: 8px;
  font-size: .92rem;
  line-height: 1.5;
}

.quote-form {
  padding: 28px 40px 36px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: .82rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 6px;
}
.form-group .required {
  color: var(--red);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid #ddd8d0;
  border-radius: 7px;
  font-family: 'Inter', sans-serif;
  font-size: .92rem;
  color: var(--ink);
  background: var(--paper);
  transition: border-color .15s, box-shadow .15s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(185, 28, 43, .12);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #aaa49c;
}
.form-group select {
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235a534b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 18px;
  padding-right: 38px;
}

.upload-area {
  border: 2px dashed #ddd8d0;
  border-radius: 10px;
  padding: 32px 20px;
  text-align: center;
  cursor: pointer;
  transition: border-color .2s, background .2s;
  background: var(--paper);
}
.upload-area:hover,
.upload-area.drag-over {
  border-color: var(--red);
  background: #fdf6f0;
}
.upload-area svg {
  color: var(--grey);
  margin-bottom: 10px;
}
.upload-area .upload-label {
  font-size: .92rem;
  color: var(--ink);
  margin-bottom: 4px;
}
.upload-area .upload-link {
  color: var(--red);
  font-weight: 600;
  text-decoration: underline;
}
.upload-area .upload-hint {
  display: block;
  font-size: .78rem;
  color: var(--grey);
}

.photos-subtitle {
  font-size: .82rem;
  color: var(--grey);
  margin-top: 2px;
  margin-bottom: 16px;
  line-height: 1.4;
}

.photo-upload-group {
  margin-bottom: 16px;
  padding: 14px;
  background: var(--paper);
  border-radius: 8px;
  border: 1px solid #eee8e0;
}

.photo-upload-label {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: .78rem;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 2px;
}

.photo-upload-hint {
  display: block;
  font-size: .72rem;
  color: var(--grey);
  margin-bottom: 8px;
}

.upload-area-sm {
  padding: 16px 14px;
}

.upload-area-sm svg {
  width: 24px !important;
  height: 24px !important;
  margin-bottom: 6px;
}

.upload-area-sm .upload-label {
  font-size: .82rem;
}

.upload-area-sm .upload-hint {
  font-size: .7rem;
}

.preview-area {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}
.preview-thumb {
  position: relative;
  width: 90px;
  height: 90px;
  border-radius: 8px;
  overflow: hidden;
  border: 1.5px solid #ddd8d0;
  background: var(--paper);
}
.preview-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.preview-thumb .remove-img {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, .65);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  line-height: 1;
  transition: background .15s;
}
.preview-thumb .remove-img:hover {
  background: rgba(185, 28, 43, .85);
}

.btn-submit {
  width: 100%;
  justify-content: center;
  padding: 16px 26px;
  font-size: 1rem;
  margin-top: 6px;
}

/* ============ MODAL SUCCESS STATE ============ */
.modal-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 40px 50px;
  min-height: 360px;
}
.modal-success .success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #dcfce7;
  color: #16a34a;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.modal-success .success-icon svg {
  width: 36px;
  height: 36px;
}
.modal-success h3 {
  font-size: 1.5rem;
  color: var(--ink);
  margin-bottom: 10px;
}
.modal-success p {
  color: var(--grey);
  font-size: .96rem;
  line-height: 1.6;
  max-width: 400px;
  margin-bottom: 28px;
}
.modal-success .btn {
  padding: 12px 32px;
  font-size: .9rem;
}

@media (max-width: 600px) {
  .modal-overlay {
    padding: 12px;
    align-items: flex-end;
  }
  .modal-container {
    max-height: 88vh;
    border-radius: 14px 14px 0 0;
  }
  .modal-header {
    padding: 28px 24px 0;
  }
  .quote-form {
    padding: 20px 24px 28px;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .preview-thumb {
    width: 76px;
    height: 76px;
  }
}

/* ============ FOOTER CTA ============ */
.footer-cta {
  background: var(--red);
  color: #fff;
  padding: 34px 0;
}

.footer-cta-grid {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 34px;
  align-items: center;
}

.fc-icon {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  border: 2px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.fc-icon svg {
  width: 28px;
  height: 28px;
}

.fc-text h3 {
  font-size: 1.15rem;
  margin-bottom: 4px;
}

.fc-text p {
  font-size: .85rem;
  opacity: .92;
}

.fc-phone .num {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: .02em;
  color: #fff;
}

.fc-phone .web {
  font-size: .85rem;
  letter-spacing: .04em;
  margin-top: 4px;
}

.fc-phone .addr {
  display: flex;
  gap: 6px;
  align-items: center;
  font-size: .8rem;
  margin-top: 8px;
  opacity: .92;
}

.fc-phone .addr svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.fc-thanks {
  text-align: right;
  font-style: italic;
  font-size: .9rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.fc-mascot {
  width: 72px;
  height: auto;
  flex-shrink: 0;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, .35));
}

/* ============ BOTTOM BAR ============ */
.bottom-bar {
  background: var(--ink);
  color: #fff;
  padding: 18px 0;
}

.bottom-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
}

.bb-items {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.bb-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: 'Oswald', sans-serif;
  font-size: .78rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.bb-item svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
}

.bb-tag {
  font-family: 'Oswald', sans-serif;
  font-size: .92rem;
  letter-spacing: .05em;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ============ MOBILE ============ */
@media (max-width: 980px) {
  nav.main-nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 78%;
    max-width: 320px;
    background: var(--black);
    flex-direction: column;
    padding: 90px 28px 28px;
    gap: 6px;
    transform: translateX(100%);
    transition: transform .25s ease;
    z-index: 1100;
    box-shadow: -10px 0 30px rgba(0, 0, 0, .4);
  }

  nav.main-nav.open {
    transform: translateX(0);
  }

  nav.main-nav a {
    padding: 14px 4px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    width: 100%;
  }

  .menu-toggle {
    display: flex;
  }

  .header-cta .sub {
    display: none;
  }

  .header-inner {
    padding: 10px 16px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 0 24px;
  }

  .hero-benefits {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .benefit-item {
    width: 100%;
  }

  .partner-head {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .feature-row {
    grid-template-columns: repeat(3, 1fr);
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about-visual {
    order: -1;
  }

  .about-icon-wrap {
    width: 100px;
    height: 100px;
  }

  .about-icon-wrap svg {
    width: 48px;
    height: 48px;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 18px;
    max-width: 560px;
  }

  .step {
    grid-template-columns: 88px 1fr;
    padding: 12px 0 12px 10px;
  }

  .step .num {
    left: 54px;
    top: -6px;
  }

  .step-arrow {
    transform: rotate(90deg);
    margin: -4px 0;
  }

  .step-arrow i {
    font-size: 1.55rem;
  }

  .trade-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .trade-cards {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .referral-rewards {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    padding: 38px 24px;
  }

  .qr-block {
    padding: 38px 24px;
  }

  .footer-cta-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .fc-icon {
    margin: 0 auto;
  }

  .fc-thanks {
    justify-content: center;
    text-align: left;
  }

  .fc-phone .addr {
    justify-content: center;
  }

  .bottom-grid {
    flex-direction: column;
    text-align: center;
  }

  .bb-items {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .wrap {
    padding: 0 18px;
  }

  .feature-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .trade-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero {
    padding: 36px 0;
  }

  .partner-section,
  .how-section,
  .trade-section,
  .about-section {
    padding: 46px 0;
  }

  .banner h2 {
    flex-direction: column;
    gap: 8px;
  }

  .logo {
    width: 110px;
  }

  .logo-img {
    height: 120px;
    top: 10px;
  }

  .header-cta .num {
    font-size: .92rem;
  }

  .how-title {
    gap: 10px;
    margin-bottom: 34px;
  }

  .how-title::before,
  .how-title::after {
    width: 54px;
    height: 5px;
  }

  .step {
    grid-template-columns: 78px 1fr;
    gap: 13px;
  }

  .step .circle {
    width: 76px;
    height: 76px;
    border-width: 7px;
  }

  .step .circle i {
    font-size: 2rem;
  }

  .step .num {
    left: 47px;
    width: 30px;
    height: 30px;
    font-size: .98rem;
  }

  .step p {
    max-width: none;
    font-size: .84rem;
  }
}
