/* =============================================
   TINYINTEREST — Main Stylesheet
   Warm lifestyle brand aesthetic
   Playfair Display + DM Sans
   ============================================= */

:root {
  --cream:      #FAF7F2;
  --warm-white: #FFFDF9;
  --sand:       #F0E9DC;
  --sand-dark:  #E2D5C3;
  --honey:      #E8A94A;
  --honey-dark: #C98B28;
  --terracotta: #C96A3E;
  --terra-lt:   #F0D5C8;
  --forest:     #3A5C4A;
  --forest-lt:  #D0E4D8;
  --ink:        #1E1A16;
  --ink-mid:    #4A4038;
  --ink-lt:     #7A6E65;
  --border:     #E0D6CA;
  --card-bg:    #FFFFFF;
  --shadow-sm:  0 2px 12px rgba(30,26,22,0.07);
  --shadow-md:  0 6px 28px rgba(30,26,22,0.11);
  --shadow-lg:  0 16px 48px rgba(30,26,22,0.14);
  --radius:     14px;
  --radius-lg:  22px;
  --font-head:  'Playfair Display', Georgia, serif;
  --font-body:  'DM Sans', sans-serif;
  --max-w:      1200px;
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* CONTAINER */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* TYPOGRAPHY */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.2;
  color: var(--ink);
}
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 500; }
h3 { font-size: 1.25rem; font-weight: 600; }
p  { color: var(--ink-mid); font-weight: 300; }

/* SECTION HELPERS */
.section         { padding: 80px 0; }
.section--tinted { background: var(--sand); }

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 14px;
}
.section-heading {
  margin-bottom: 48px;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 13px 26px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.22s ease;
  border: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
}
.btn--primary {
  background: var(--honey);
  color: var(--ink);
  border-color: var(--honey);
}
.btn--primary:hover {
  background: var(--honey-dark);
  border-color: var(--honey-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232,169,74,0.35);
}
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--ghost:hover {
  background: var(--ink);
  color: var(--warm-white);
  transform: translateY(-2px);
}
.btn--outline {
  background: transparent;
  color: var(--terracotta);
  border-color: var(--terracotta);
}
.btn--outline:hover {
  background: var(--terracotta);
  color: white;
  transform: translateY(-2px);
}
.btn--card {
  background: var(--forest);
  color: white;
  border-color: var(--forest);
  font-size: 0.88rem;
  padding: 10px 20px;
}
.btn--card:hover {
  background: #2d4a3a;
  transform: translateY(-2px);
}
.btn--sm    { padding: 9px 18px; font-size: 0.85rem; }
.btn--large { padding: 16px 36px; font-size: 1.05rem; }
.btn--full  { width: 100%; justify-content: center; }

/* =============================================
   HEADER
   ============================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250,247,242,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.2s;
}
.site-header.scrolled {
  box-shadow: var(--shadow-sm);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo__mark {
  color: var(--honey);
  font-size: 1.1rem;
}
.logo__name {
  font-family: var(--font-head);
  font-size: 1.35rem;
  color: var(--ink);
  font-style: italic;
}
.logo__name strong {
  font-style: normal;
  color: var(--terracotta);
}

.main-nav ul {
  display: flex;
  gap: 8px;
}
.main-nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-mid);
  padding: 7px 14px;
  border-radius: 50px;
  transition: all 0.18s;
}
.main-nav a:hover, .main-nav a.active {
  color: var(--ink);
  background: var(--sand);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all 0.2s;
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 68px;
  left: 0; right: 0;
  background: var(--warm-white);
  border-bottom: 1px solid var(--border);
  padding: 20px 24px 28px;
  z-index: 99;
  box-shadow: var(--shadow-md);
  transform: translateY(-10px);
  opacity: 0;
  transition: all 0.22s ease;
}
.mobile-nav.open {
  transform: translateY(0);
  opacity: 1;
}
.mobile-nav ul { display: flex; flex-direction: column; gap: 4px; margin-bottom: 20px; }
.mobile-nav a {
  display: block;
  padding: 10px 14px;
  font-weight: 500;
  border-radius: 10px;
  color: var(--ink-mid);
  transition: all 0.15s;
}
.mobile-nav a:hover { background: var(--sand); color: var(--ink); }

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--warm-white);
  padding: 90px 0 80px;
}
.hero__bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.18;
}
.shape--1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--honey) 0%, transparent 70%);
  top: -120px; right: -60px;
}
.shape--2 {
  width: 320px; height: 320px;
  background: radial-gradient(circle, var(--terracotta) 0%, transparent 70%);
  bottom: -80px; left: -80px;
  opacity: 0.1;
}
.shape--3 {
  width: 200px; height: 200px;
  background: radial-gradient(circle, var(--forest) 0%, transparent 70%);
  top: 40%; right: 20%;
  opacity: 0.08;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}
.hero__eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terracotta);
  background: var(--terra-lt);
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.hero__heading {
  margin-bottom: 22px;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
}
.hero__heading em {
  font-style: italic;
  color: var(--honey-dark);
}
.hero__sub {
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 480px;
}
.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.hero__trust {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.hero__trust span {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink-lt);
  display: flex;
  align-items: center;
  gap: 5px;
}

/* CARD STACK */
.card-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 10px 0;
}
.reward-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
  animation: cardFloat 0.6s ease both;
}
.reward-card:hover { transform: translateX(6px); box-shadow: var(--shadow-md); }
.reward-card--1 { animation-delay: 0.1s; }
.reward-card--2 { animation-delay: 0.2s; }
.reward-card--3 { animation-delay: 0.3s; }
.reward-card--4 { animation-delay: 0.4s; }
@keyframes cardFloat {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}
.reward-card__icon { font-size: 1.8rem; flex-shrink: 0; }
.reward-card__info { flex: 1; }
.reward-card__info strong { display: block; font-size: 0.95rem; font-weight: 600; color: var(--ink); }
.reward-card__info span  { font-size: 0.82rem; color: var(--ink-lt); }
.reward-card__badge {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--terracotta);
  background: var(--terra-lt);
  padding: 3px 10px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* =============================================
   STATS BAR
   ============================================= */
.stats-bar {
  background: var(--ink);
  padding: 28px 0;
}
.stats-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.stat {
  text-align: center;
  padding: 10px 32px;
}
.stat strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.4rem;
  color: var(--honey);
  font-weight: 700;
}
.stat span {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  font-weight: 400;
}
.stat__divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
}

/* =============================================
   HOW IT WORKS SNAP
   ============================================= */
.steps-grid {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}
.step {
  flex: 1;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
}
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.step__num {
  font-family: var(--font-head);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--sand-dark);
  line-height: 1;
  margin-bottom: 12px;
}
.step__icon { font-size: 2rem; margin-bottom: 14px; }
.step h3 { margin-bottom: 10px; font-size: 1.1rem; }
.step p { font-size: 0.9rem; color: var(--ink-lt); }
.step__arrow {
  font-size: 1.5rem;
  color: var(--sand-dark);
  flex-shrink: 0;
}
.how-snap__cta { text-align: center; }

/* =============================================
   PARTNER CARDS (HOMEPAGE PREVIEW)
   ============================================= */
.partners-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-bottom: 44px;
}
.partner-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s, box-shadow 0.22s;
  position: relative;
  display: flex;
  flex-direction: column;
}
.partner-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.partner-card--highlight {
  border-color: var(--honey);
  box-shadow: 0 0 0 2px var(--honey), var(--shadow-md);
}
.partner-card__cat {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 14px;
  width: fit-content;
}
.cat--retail  { background: #FFF0E5; color: #C96A3E; }
.cat--dining  { background: #FFF6E5; color: #B87820; }
.cat--fitness { background: #E8F4EE; color: #2E6B46; }
.cat--travel  { background: #E8EEF8; color: #2C4E8A; }

.partner-card__icon { font-size: 2.2rem; margin-bottom: 10px; }
.partner-card h3    { margin-bottom: 8px; font-size: 1.05rem; }
.partner-card p     { font-size: 0.88rem; margin-bottom: 14px; flex: 1; }
.partner-card__perks {
  margin-bottom: 20px;
}
.partner-card__perks li {
  font-size: 0.83rem;
  color: var(--forest);
  font-weight: 500;
  padding: 3px 0;
}
.featured__cta { text-align: center; }

/* =============================================
   PARTNER CARDS (FULL LISTING PAGE)
   ============================================= */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}
.partner-card--full {
  padding: 30px 26px;
}
.partner-card__badge-top {
  position: absolute;
  top: -1px; right: 20px;
  background: var(--honey);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 5px 14px;
  border-radius: 0 0 10px 10px;
}
.partner-card__head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.partner-card__icon-lg { font-size: 2.4rem; }
.partner-card__tagline { font-size: 0.85rem; color: var(--ink-lt); margin-top: 2px; }
.partner-card__desc   { font-size: 0.88rem; margin-bottom: 16px; }
.partner-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  gap: 12px;
  flex-wrap: wrap;
}
.partner-card__price {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink);
}
.partner-card__disclosure {
  font-size: 0.72rem;
  color: var(--ink-lt);
  margin-top: 10px;
  font-style: italic;
}

/* =============================================
   CATEGORY TABS
   ============================================= */
.cat-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.cat-tab {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 50px;
  border: 2px solid var(--border);
  background: white;
  color: var(--ink-mid);
  cursor: pointer;
  transition: all 0.18s;
}
.cat-tab:hover { border-color: var(--honey); color: var(--ink); }
.cat-tab.active {
  background: var(--honey);
  border-color: var(--honey);
  color: var(--ink);
}
.cat-section { margin-bottom: 60px; }
.cat-section.hidden { display: none; }
.cat-section__header {
  margin-bottom: 28px;
}
.cat-section__header h2 {
  font-size: 1.6rem;
}

/* =============================================
   WHY SECTION
   ============================================= */
.why__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
}
.why__text .section-heading { margin-bottom: 16px; }
.why__text > p { margin-bottom: 24px; }
.why__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.why__list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-weight: 500;
  font-size: 0.95rem;
}
.why__list li span { color: var(--honey-dark); font-size: 1rem; flex-shrink: 0; padding-top: 2px; }

.testimonial-stack { display: flex; flex-direction: column; gap: 18px; }
.testimonial {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 24px;
  box-shadow: var(--shadow-sm);
}
.testimonial--offset { margin-left: 28px; }
.testimonial p { font-style: italic; color: var(--ink-mid); font-size: 0.92rem; margin-bottom: 10px; }
.testimonial__author { font-size: 0.8rem; font-weight: 600; color: var(--ink-lt); }

/* =============================================
   CTA BANNER
   ============================================= */
.cta-banner {
  background: var(--terracotta);
  padding: 80px 0;
}
.cta-banner__inner {
  text-align: center;
}
.cta-banner h2 {
  color: white;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 14px;
}
.cta-banner p {
  color: rgba(255,255,255,0.82);
  font-size: 1.05rem;
  margin-bottom: 32px;
}
.cta-banner .btn--primary {
  background: white;
  border-color: white;
  color: var(--terracotta);
}
.cta-banner .btn--primary:hover {
  background: var(--cream);
  border-color: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

/* =============================================
   TRUST STRIP
   ============================================= */
.trust-strip { padding: 32px 0; }
.trust-strip__inner {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.trust-item span { color: var(--honey-dark); font-size: 1rem; }
.trust-item p { font-size: 0.88rem; font-weight: 500; color: var(--ink-mid); margin: 0; }

/* =============================================
   PAGE HERO
   ============================================= */
.page-hero {
  background: var(--warm-white);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.page-hero--sm { padding: 64px 0 56px; }
.page-hero h1  { margin-bottom: 14px; }
.page-hero p   { font-size: 1.05rem; max-width: 580px; margin: 0 auto; }

/* =============================================
   HOW IT WORKS (FULL PAGE)
   ============================================= */
.hiw-steps { display: flex; flex-direction: column; gap: 72px; }
.hiw-step {
  display: grid;
  grid-template-columns: auto 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.hiw-step--reverse { direction: rtl; }
.hiw-step--reverse > * { direction: ltr; }
.hiw-step__number {
  font-family: var(--font-head);
  font-size: 5rem;
  font-weight: 700;
  color: var(--sand-dark);
  line-height: 1;
  min-width: 80px;
}
.hiw-step__content h2 { margin-bottom: 16px; font-size: 1.8rem; }
.hiw-step__content p  { margin-bottom: 12px; }
.hiw-step__visual {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  min-height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}

.mini-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; width: 100%; }
.mini-card {
  background: var(--sand);
  border-radius: var(--radius);
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 1.5rem;
}
.mini-card span { font-size: 0.78rem; font-weight: 600; color: var(--ink-mid); }

.match-visual { display: flex; flex-direction: column; gap: 12px; }
.match-tag {
  background: var(--forest-lt);
  color: var(--forest);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 10px 18px;
  border-radius: 50px;
  animation: slideIn 0.5s ease both;
}
.match-tag--2 { animation-delay: 0.15s; margin-left: 20px; }
.match-tag--3 { animation-delay: 0.3s; margin-left: 40px; }
@keyframes slideIn {
  from { opacity: 0; transform: translateX(-20px); }
  to   { opacity: 1; transform: translateX(0); }
}

.signup-visual { text-align: center; }
.signup-arrow {
  font-weight: 700;
  font-size: 1rem;
  color: var(--terracotta);
  background: var(--terra-lt);
  padding: 12px 24px;
  border-radius: 50px;
  margin-bottom: 12px;
  display: inline-block;
}
.signup-note { font-size: 0.85rem; color: var(--ink-lt); }

.earn-visual { display: flex; flex-direction: column; gap: 12px; width: 100%; }
.earn-item {
  background: var(--sand);
  padding: 12px 20px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.92rem;
}

/* COMMISSION SECTION */
.commission-section {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.commission-icon { font-size: 2.5rem; margin-bottom: 20px; }
.commission-section h2 { margin-bottom: 16px; }
.commission-section > p { margin-bottom: 36px; }
.commission-points { text-align: left; display: flex; flex-direction: column; gap: 22px; }
.commission-point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: white;
  border-radius: var(--radius);
  padding: 20px 24px;
  border: 1px solid var(--border);
}
.commission-point span { color: var(--honey-dark); font-size: 1.1rem; flex-shrink: 0; padding-top: 2px; }
.commission-point strong { display: block; color: var(--ink); margin-bottom: 4px; }
.commission-point p { font-size: 0.88rem; margin: 0; }

/* FAQ */
.faq-section { max-width: 900px; margin: 0 auto; }
.faq-section .section-heading { margin-bottom: 36px; }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.faq-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.faq-item h3 { font-size: 1rem; margin-bottom: 10px; color: var(--ink); }
.faq-item p  { font-size: 0.88rem; }
.faq-item a  { color: var(--terracotta); font-weight: 600; }

/* =============================================
   ABOUT PAGE
   ============================================= */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.about-story__text h2 { margin-bottom: 20px; }
.about-story__text p  { margin-bottom: 16px; }
.about-story__values  { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.value-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.value-card__icon { font-size: 1.6rem; margin-bottom: 10px; }
.value-card h3    { font-size: 1rem; margin-bottom: 6px; }
.value-card p     { font-size: 0.85rem; }

.mission-section { text-align: center; max-width: 760px; margin: 0 auto; }
.mission-quote {
  font-family: var(--font-head);
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  font-style: italic;
  color: var(--ink);
  line-height: 1.6;
  margin-bottom: 16px;
  border: none;
}
.mission-attr { font-size: 0.9rem; color: var(--ink-lt); font-weight: 600; }

.disclosure-section { max-width: 760px; margin: 0 auto; }
.disclosure-section .section-heading { margin-bottom: 20px; }
.disclosure-box {
  background: var(--sand);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--sand-dark);
}
.disclosure-box p { margin-bottom: 14px; font-size: 0.92rem; }
.disclosure-box p:last-child { margin-bottom: 0; }
.disclosure-box a { color: var(--terracotta); font-weight: 600; }

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}
.contact-info h2 { margin-bottom: 16px; }
.contact-info > p { margin-bottom: 28px; }
.contact-reasons { display: flex; flex-direction: column; gap: 20px; }
.contact-reason {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.contact-reason span { font-size: 1.4rem; flex-shrink: 0; }
.contact-reason strong { display: block; color: var(--ink); margin-bottom: 4px; }
.contact-reason p { font-size: 0.88rem; margin: 0; }

/* FORM */
.contact-form-wrap {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}
.contact-form .form-group { margin-bottom: 20px; }
.contact-form label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 7px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  outline: none;
  transition: border-color 0.18s, box-shadow 0.18s;
  -webkit-appearance: none;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--honey);
  box-shadow: 0 0 0 3px rgba(232,169,74,0.18);
}
.contact-form textarea { resize: vertical; min-height: 130px; }
.form-note {
  font-size: 0.78rem;
  color: var(--ink-lt);
  text-align: center;
  margin-top: 12px;
}
.form-note a { color: var(--terracotta); font-weight: 600; }
.form-errors {
  background: #FDF0ED;
  border: 1px solid var(--terra-lt);
  border-radius: 10px;
  padding: 16px 20px;
  margin-bottom: 20px;
  color: var(--terracotta);
  font-size: 0.9rem;
}
.form-errors ul { margin-top: 8px; padding-left: 16px; list-style: disc; }
.form-success {
  text-align: center;
  padding: 40px 20px;
}
.form-success__icon { font-size: 3rem; margin-bottom: 14px; }
.form-success h3    { font-family: var(--font-head); font-size: 1.6rem; margin-bottom: 10px; }
.form-success p     { font-size: 0.95rem; }

/* =============================================
   LEGAL / PRIVACY
   ============================================= */
.legal-content { max-width: 760px; margin: 0 auto; }
.legal-content h2 { font-size: 1.3rem; margin: 36px 0 12px; }
.legal-content p, .legal-content li { font-size: 0.92rem; margin-bottom: 10px; }
.legal-content ul { padding-left: 20px; list-style: disc; }
.legal-content a { color: var(--terracotta); font-weight: 600; }

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: var(--ink);
  padding: 64px 0 0;
}
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
}
.logo--footer .logo__name { color: white; }
.footer__brand p {
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  margin-top: 14px;
  line-height: 1.65;
}
.footer__disclaimer {
  color: rgba(255,255,255,0.35) !important;
  font-size: 0.78rem !important;
  margin-top: 12px !important;
}
.footer__nav h4 {
  color: white;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer__nav ul { display: flex; flex-direction: column; gap: 8px; }
.footer__nav a {
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  transition: color 0.15s;
}
.footer__nav a:hover { color: var(--honey); }
.footer__social h4 {
  color: white;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.footer__social > p {
  color: rgba(255,255,255,0.55);
  font-size: 0.85rem;
  margin-bottom: 16px;
}
.footer__form {
  display: flex;
  gap: 8px;
}
.footer__form input {
  flex: 1;
  padding: 10px 14px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  color: white;
  outline: none;
  transition: border-color 0.18s;
}
.footer__form input::placeholder { color: rgba(255,255,255,0.4); }
.footer__form input:focus { border-color: var(--honey); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
}
.footer__bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer__bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.35); margin: 0; }
.footer__bottom a { color: rgba(255,255,255,0.45); transition: color 0.15s; }
.footer__bottom a:hover { color: var(--honey); }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .hero__inner    { grid-template-columns: 1fr; }
  .hero__visual   { display: none; }
  .why__inner     { grid-template-columns: 1fr; }
  .footer__inner  { grid-template-columns: 1fr 1fr; }
  .hiw-step       { grid-template-columns: auto 1fr; }
  .hiw-step__visual { display: none; }
  .hiw-step--reverse { direction: ltr; }
  .about-story    { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .main-nav, .header__cta { display: none; }
  .burger { display: flex; }
  .mobile-nav { display: block; }
  .steps-grid {
    flex-direction: column;
  }
  .step__arrow { transform: rotate(90deg); }
  .stats-bar__inner { gap: 0; }
  .stat { padding: 12px 16px; }
  .stat__divider { display: none; }
  .faq-grid { grid-template-columns: 1fr; }
  .about-story__values { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom .container { flex-direction: column; text-align: center; }
  .hero { padding: 60px 0; }
  .section { padding: 56px 0; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .hero__actions .btn { width: auto; }
  .partner-card__footer { flex-direction: column; align-items: flex-start; }
  .cat-tabs { gap: 8px; }
  .cat-tab { font-size: 0.82rem; padding: 8px 16px; }
}
