/* ============================================================
   Royal Growth Marketing — Referral Program
   style.css — All styles for the website
   ============================================================
   HOW TO EDIT:
   - Change colors by editing the CSS variables at the top
   - Change fonts by updating the --font variable
   - Spacing, sizes, and layout are all labelled with comments
   ============================================================ */

/* ============================================================
   CSS VARIABLES — Edit these to change the entire color theme
   ============================================================ */
:root {
  --primary: #0B3C5D;       /* Royal Blue — main brand color */
  --primary-dark: #092d47;  /* Darker blue for hover states */
  --accent: #F5B400;        /* Gold — highlight color */
  --accent-dark: #d9a000;   /* Darker gold for hover */
  --white: #ffffff;
  --grey-light: #f8f9fa;    /* Light grey sections */
  --grey-mid: #e5e7eb;      /* Borders */
  --grey-text: #6b7280;     /* Secondary text */
  --text-dark: #1f2937;     /* Main body text */
  --font: 'Poppins', sans-serif;
  --radius: 12px;           /* Default border radius */
  --shadow: 0 4px 20px rgba(11, 60, 93, 0.1);
  --shadow-hover: 0 8px 32px rgba(11, 60, 93, 0.18);
}

/* ============================================================
   RESET & BASE STYLES
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;  /* Smooth scrolling for anchor links */
  font-size: 16px;
}

body {
  font-family: var(--font);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

ul {
  list-style: none;
}

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

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-padding {
  padding: 72px 0;
}

.section-grey {
  background: var(--grey-light);
}

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

/* Section label badge (small pill above headings) */
.section-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 14px;
}

.section-badge.blue {
  background: rgba(11, 60, 93, 0.08);
  color: var(--primary);
}

.section-badge.gold {
  background: rgba(245, 180, 0, 0.15);
  color: #9a7200;
}

/* Main heading style */
.section-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 12px;
  line-height: 1.25;
}

/* Subtext under headings */
.section-sub {
  color: var(--grey-text);
  font-size: 0.95rem;
  max-width: 560px;
  margin: 0 auto;
}

/* Gold highlighted text */
.highlight {
  color: var(--accent);
  font-weight: 800;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: 50px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  border: none;
  transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
  text-align: center;
}

/* Primary button: Royal Blue */
.btn-primary {
  background: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--accent);
  color: var(--primary);
}

/* Gold / accent button */
.btn-gold {
  background: var(--accent);
  color: var(--primary);
}

.btn-gold:hover {
  background: var(--white);
  color: var(--primary);
}

/* Outlined button (for use on dark backgrounds) */
.btn-outline {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--primary);
}

/* ============================================================
   NAVIGATION BAR
   ============================================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  box-shadow: 0 1px 8px rgba(11, 60, 93, 0.08);
  padding: 12px 0;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo area */
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.navbar-brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.brand-text .brand-name {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
}

.brand-text .brand-sub {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1.2;
}

/* Desktop nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--primary);
  transition: opacity 0.2s;
}

.nav-links a:hover {
  opacity: 0.65;
}

/* Hamburger menu button (mobile only) */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--primary);
  padding: 4px;
}

.nav-toggle svg {
  width: 26px;
  height: 26px;
}

/* Mobile menu */
.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 12px;
  padding: 14px 20px 16px;
  border-top: 1px solid var(--grey-mid);
}

.nav-mobile a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--primary);
}

.nav-mobile.open {
  display: flex;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  background: linear-gradient(135deg, #0B3C5D 0%, #0f4d77 60%, #1a5f8a 100%);
  padding: 72px 0 80px;
  position: relative;
  overflow: hidden;
}

/* Decorative glow overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 50%, rgba(245,180,0,0.12) 0%, transparent 55%),
              radial-gradient(circle at 85% 20%, rgba(245,180,0,0.08) 0%, transparent 40%);
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

/* Badge above the hero headline */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 18px;
  border-radius: 50px;
  background: rgba(245,180,0,0.15);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 22px;
}

.hero h1 {
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}

/* The "20% Commission" highlighted text */
.hero h1 .hero-highlight {
  color: var(--accent);
  text-shadow: 0 0 30px rgba(245,180,0,0.35);
}

.hero p {
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero p strong {
  color: var(--accent);
}

/* Hero CTA buttons row */
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

/* Stats row below the buttons */
.hero-stats {
  display: flex;
  gap: 32px;
}

.stat-item {
  text-align: center;
}

.stat-value {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--accent);
}

.stat-label {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
}

/* Floating card on the right side of hero */
.hero-card-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-card {
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.25);
  padding: 24px;
  width: 280px;
  animation: float 3s ease-in-out infinite;
}

.card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.card-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.card-label {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--primary);
}

.card-sub {
  font-size: 0.72rem;
  color: var(--grey-text);
}

.card-reward-box {
  background: #f0f7ff;
  border-radius: 12px;
  padding: 16px;
  text-align: center;
  margin-bottom: 12px;
}

.card-reward-label {
  font-size: 0.72rem;
  color: var(--grey-text);
  margin-bottom: 4px;
}

.card-reward-amount {
  font-size: 2rem;
  font-weight: 900;
  color: var(--accent);
}

.card-reward-note {
  font-size: 0.7rem;
  color: var(--grey-text);
  margin-top: 2px;
}

.card-status {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
}

.status-badge {
  background: #dcfce7;
  color: #166534;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 50px;
}

/* Small floating badge near the hero card */
.hero-mini-badge {
  position: absolute;
  bottom: -12px;
  right: -12px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  animation: float 3s ease-in-out infinite;
  animation-delay: 1.5s;
}

.mini-badge-text .mini-title {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary);
}

.mini-badge-text .mini-sub {
  font-size: 0.65rem;
  color: var(--grey-text);
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ============================================================
   HOW IT WORKS — 4 STEPS
   ============================================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.step-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 20px 24px;
  box-shadow: var(--shadow);
  position: relative;
  border: 1px solid var(--grey-mid);
}

/* Gold numbered circle */
.step-number {
  position: absolute;
  top: -20px;
  left: 20px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--primary);
  font-weight: 900;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-icon {
  font-size: 2rem;
  margin: 12px 0 10px;
}

.step-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.step-desc {
  font-size: 0.82rem;
  color: var(--grey-text);
  line-height: 1.6;
}

/* ============================================================
   SERVICES GRID
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 48px;
}

.service-card {
  background: var(--white);
  border: 1.5px solid var(--grey-mid);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.service-card:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 20px rgba(245,180,0,0.15);
}

.service-icon {
  font-size: 2rem;
  margin-bottom: 10px;
}

.service-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}

.service-desc {
  font-size: 0.78rem;
  color: var(--grey-text);
}

.services-note {
  margin-top: 24px;
}

.services-note-inner {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 50px;
  background: rgba(11,60,93,0.06);
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 500;
}

/* ============================================================
   EARNINGS SECTION
   ============================================================ */
.earnings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px 0 28px;
  margin-top: 48px;
  margin-bottom: 28px;
}

.earning-card {
  background: var(--white);
  border: 2px solid var(--grey-mid);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

.earning-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.earning-card.featured {
  border-color: var(--accent);
}

.featured-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--primary);
  font-weight: 700;
  font-size: 0.72rem;
  padding: 3px 12px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.earning-label {
  font-size: 0.78rem;
  color: var(--grey-text);
  font-weight: 500;
  margin-bottom: 4px;
}

.earning-client-pays {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 18px;
}

.earning-divider {
  height: 1px;
  background: var(--grey-mid);
  margin-bottom: 18px;
}

.earning-you-earn-label {
  font-size: 0.78rem;
  color: var(--grey-text);
  font-weight: 600;
  margin-bottom: 4px;
}

.earning-amount {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--accent);
}

.earning-note {
  font-size: 0.72rem;
  color: var(--grey-text);
  margin-top: 6px;
}

/* Dark CTA box in earnings section */
.earnings-cta-box {
  background: linear-gradient(135deg, #0B3C5D, #1a5f8a);
  border-radius: 20px;
  padding: 40px 24px;
  text-align: center;
}

.earnings-cta-box .cta-title {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 8px;
}

.earnings-cta-box .cta-formula {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--accent);
  margin-bottom: 10px;
}

.earnings-cta-box .cta-sub {
  color: rgba(255,255,255,0.65);
  font-size: 0.82rem;
  margin-bottom: 24px;
}

/* ============================================================
   IDEAL BUSINESSES
   ============================================================ */
.businesses-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-top: 0;
}

.businesses-left .section-badge {
  margin-top: 0;
}

.businesses-left p {
  color: var(--grey-text);
  margin-bottom: 28px;
  line-height: 1.7;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.industry-card {
  background: var(--white);
  border: 1.5px solid var(--grey-mid);
  border-radius: 12px;
  padding: 16px 10px;
  text-align: center;
  transition: border-color 0.2s, background 0.2s;
}

.industry-card:hover {
  border-color: var(--primary);
  background: #f0f7ff;
}

.industry-icon {
  font-size: 1.6rem;
  margin-bottom: 6px;
}

.industry-name {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--primary);
}

/* ============================================================
   WHO CAN JOIN
   ============================================================ */
.who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 48px;
  margin-bottom: 36px;
}

.who-card {
  background: var(--white);
  border-left: 4px solid var(--accent);
  border-radius: 8px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 2px 8px rgba(11,60,93,0.06);
}

.who-icon {
  font-size: 1.4rem;
}

.who-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
}

/* Big callout box */
.who-callout {
  text-align: center;
}

.who-callout-inner {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent), #e6a900);
  border-radius: 20px;
  padding: 20px 40px;
}

.who-callout-title {
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--primary);
}

.who-callout-sub {
  font-size: 0.82rem;
  color: rgba(11,60,93,0.7);
  font-weight: 500;
  margin-top: 4px;
}

/* ============================================================
   GUIDELINES / RULES
   ============================================================ */
.guidelines-wrap {
  max-width: 720px;
  margin: 48px auto 0;
  border: 1.5px solid var(--grey-mid);
  border-radius: var(--radius);
  overflow: hidden;
}

.guideline-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--grey-mid);
}

.guideline-item:last-child {
  border-bottom: none;
}

.guideline-item:nth-child(odd) {
  background: var(--white);
}

.guideline-item:nth-child(even) {
  background: #fafafa;
}

.guideline-num {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--primary);
  font-weight: 900;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.guideline-text {
  font-size: 0.88rem;
  color: #4b5563;
  line-height: 1.6;
}

.guideline-text strong {
  color: var(--primary);
}

/* ============================================================
   REFERRAL FORM
   ============================================================ */
.form-card {
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 8px 40px rgba(11,60,93,0.1);
  padding: 40px;
  border: 1px solid var(--grey-mid);
  max-width: 760px;
  margin: 0 auto;
}

/* Form section heading (Referrer / Client) */
.form-section-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary);
  padding-bottom: 14px;
  border-bottom: 1px solid var(--grey-mid);
  margin-bottom: 20px;
}

/* Two-column grid for form rows */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

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

/* Individual form field group */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #374151;
}

.form-group label .optional {
  font-weight: 400;
  color: var(--grey-text);
}

/* Input, select, textarea shared styles */
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font);
  font-size: 0.88rem;
  padding: 11px 14px;
  border: 1.5px solid var(--grey-mid);
  border-radius: 8px;
  color: var(--text-dark);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(11,60,93,0.1);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 38px;
  cursor: pointer;
}

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

/* Submit button */
.btn-submit {
  width: 100%;
  padding: 16px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 12px;
  background: var(--primary);
  color: var(--white);
  border: none;
  font-family: var(--font);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  margin-top: 8px;
}

.btn-submit:hover {
  background: var(--accent);
  color: var(--primary);
}

.btn-submit:disabled {
  background: #9ca3af;
  cursor: not-allowed;
}

.form-footnote {
  text-align: center;
  font-size: 0.78rem;
  color: var(--grey-text);
  margin-top: 10px;
}

.form-footnote strong {
  color: var(--accent);
}

/* ============================================================
   SUCCESS MESSAGE (shown after form is submitted)
   ============================================================ */
.success-box {
  display: none; /* Hidden by default, JS will show it */
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 8px 40px rgba(11,60,93,0.1);
  padding: 60px 40px;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  border: 1px solid var(--grey-mid);
}

.success-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(245,180,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto 24px;
}

.success-title {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 14px;
}

.success-msg {
  color: var(--grey-text);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.success-note {
  background: rgba(11,60,93,0.05);
  color: var(--primary);
  padding: 12px 24px;
  border-radius: 10px;
  font-size: 0.82rem;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 28px;
}

/* ============================================================
   FINAL CALL TO ACTION (CTA) SECTION
   ============================================================ */
.final-cta {
  background: linear-gradient(135deg, #0B3C5D 0%, #1a5f8a 100%);
  padding: 80px 0;
  text-align: center;
}

.final-cta .emoji {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.final-cta h2 {
  font-size: 2rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 14px;
}

.final-cta p {
  color: rgba(255,255,255,0.75);
  font-size: 1rem;
  margin-bottom: 32px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.final-cta-perks {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 0.82rem;
  margin-top: 20px;
  flex-wrap: wrap;
}

.final-cta-perks .dot {
  color: rgba(255,255,255,0.3);
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--primary);
  padding: 56px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.footer-logo img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.footer-brand-name {
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
}

.footer-brand-sub {
  color: var(--accent);
  font-weight: 700;
  font-size: 0.9rem;
}

.footer-about {
  color: rgba(255,255,255,0.6);
  font-size: 0.82rem;
  line-height: 1.7;
}

.footer-heading {
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.footer-contact a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.65);
  font-size: 0.82rem;
  margin-bottom: 10px;
  transition: color 0.2s;
}

.footer-contact a:hover {
  color: var(--white);
}

/* Social icon buttons */
.social-links {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--white);
  transition: background 0.2s;
  text-decoration: none;
}

.social-btn:hover {
  background: var(--accent);
  color: var(--primary);
}

.footer-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.12);
  margin-bottom: 20px;
}

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

.footer-copy {
  color: rgba(255,255,255,0.5);
  font-size: 0.78rem;
}

.footer-commission {
  color: rgba(255,255,255,0.5);
  font-size: 0.78rem;
}

.footer-commission strong {
  color: var(--accent);
}

/* ============================================================
   RESPONSIVE — MOBILE & TABLET
   ============================================================ */
@media (max-width: 900px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-btns {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-card-wrap {
    display: none; /* Hide card on smaller screens */
  }

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

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

  .earnings-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }

  .businesses-wrap {
    grid-template-columns: 1fr;
  }

  .industries-grid {
    grid-template-columns: repeat(4, 1fr);
  }

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

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

  .footer-about-col {
    grid-column: span 2;
  }
}

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

  .section-title {
    font-size: 1.6rem;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .hero {
    padding: 52px 0 60px;
  }

  .hero h1 {
    font-size: 2rem;
  }

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

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

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

  .form-card {
    padding: 24px 18px;
  }

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

  .footer-about-col {
    grid-column: auto;
  }

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

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

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

  .hero-stats {
    gap: 20px;
  }

  .final-cta h2 {
    font-size: 1.5rem;
  }
}
