/* ======================================================
   WinkGlo — Expert Indian Makeup Services
   Brand: Rose / Deep Pink + Gold luxury palette
   ====================================================== */

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

:root {
  /* ─── BRAND COLORS ─── */
  --rose:         #C2185B;   /* primary deep rose-pink */
  --rose-dark:    #880E4F;   /* dark variant */
  --rose-mid:     #AD1457;
  --rose-light:   #FCE4EC;   /* very light pink */
  --rose-lighter: #FFF5F8;
  --gold:         #C9943A;   /* warm gold (from logo) */
  --gold-bright:  #E8B84B;
  --gold-light:   #FFF8E7;
  --gold-dark:    #A87B28;
  --maroon:       #3D0B1E;   /* very dark rose for nav/footer */
  --maroon-soft:  #5A1230;

  /* ─── NEUTRAL COLORS ─── */
  --white:        #FFFFFF;
  --off-white:    #FFFBFC;
  --bg-light:     #FDF5F7;
  --text-dark:    #1A0810;
  --text-mid:     #3D1A27;
  --text-gray:    #7A5060;
  --text-light:   #B08898;
  --border:       #F0D0DA;
  --border-light: #FBF0F4;

  /* ─── SHADOWS ─── */
  --sh-xs: 0 1px 4px rgba(194,24,91,.07);
  --sh-sm: 0 2px 12px rgba(194,24,91,.10);
  --sh-md: 0 4px 24px rgba(194,24,91,.13);
  --sh-lg: 0 8px 40px rgba(194,24,91,.18);
  --sh-xl: 0 16px 60px rgba(194,24,91,.22);
  --sh-gold: 0 8px 24px rgba(201,148,58,.40);

  /* ─── MISC ─── */
  --r-sm: 8px; --r-md: 14px; --r-lg: 20px; --r-xl: 28px; --r-pill: 100px;
  --ease: .3s cubic-bezier(.4,0,.2,1);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max-w: 1200px;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* ══ BUTTONS ══════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: var(--r-pill);
  font-weight: 700; font-size: 15px; cursor: pointer;
  transition: var(--ease); border: 2px solid transparent;
  text-decoration: none; white-space: nowrap; line-height: 1;
}
.btn-sm  { padding: 9px 20px;  font-size: 13px; }
.btn-lg  { padding: 17px 36px; font-size: 17px; }

.btn-primary { background: var(--rose); color: var(--white); border-color: var(--rose); }
.btn-primary:hover { background: var(--rose-dark); border-color: var(--rose-dark); transform: translateY(-2px); box-shadow: var(--sh-md); }

.btn-gold { background: var(--gold); color: var(--white); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); transform: translateY(-2px); box-shadow: var(--sh-gold); }

.btn-outline-primary { background: transparent; color: var(--rose); border-color: var(--rose); }
.btn-outline-primary:hover { background: var(--rose); color: var(--white); transform: translateY(-2px); }

.btn-outline-white { background: rgba(255,255,255,.15); color: var(--white); border-color: rgba(255,255,255,.65); backdrop-filter: blur(8px); }
.btn-outline-white:hover { background: var(--white); color: var(--rose-dark); border-color: var(--white); }

.btn-white { background: var(--white); color: var(--rose); border-color: var(--white); }
.btn-white:hover { background: var(--rose-light); transform: translateY(-2px); box-shadow: var(--sh-md); }

/* ══ SECTION ══════════════════════════════════════════ */
.section { padding: 80px 0; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-tag {
  display: inline-block; background: var(--rose-light);
  color: var(--rose); font-size: 11px; font-weight: 700;
  letter-spacing: 2.5px; padding: 6px 16px;
  border-radius: var(--r-pill); margin-bottom: 14px;
}
.section-title { font-size: 40px; font-weight: 800; line-height: 1.2; margin-bottom: 14px; color: var(--text-dark); }
.section-subtitle { font-size: 17px; color: var(--text-gray); max-width: 560px; margin: 0 auto; line-height: 1.75; }

/* ══ NAVBAR ═══════════════════════════════════════════ */
.navbar {
  position: sticky; top: 0; z-index: 1000;
  background: var(--maroon); padding: 0;
  box-shadow: 0 2px 24px rgba(61,11,30,.5);
  transition: var(--ease);
}
.navbar.scrolled { background: var(--rose-dark); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 70px; gap: 16px; }

.nav-logo { display: flex; align-items: center; }
.nav-logo img { height: 60px; width: auto; }

.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-link { color: rgba(255,255,255,.82); font-size: 14px; font-weight: 500; padding: 7px 14px; border-radius: var(--r-pill); transition: var(--ease); }
.nav-link:hover, .nav-link.active { color: var(--white); background: rgba(255,255,255,.15); }

.nav-actions { display: flex; align-items: center; gap: 12px; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--ease); }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile Menu */
.mobile-menu {
  display: none; position: fixed; top: 70px; left: 0; right: 0;
  background: var(--maroon); z-index: 999;
  flex-direction: column; padding: 16px 24px 24px;
  box-shadow: var(--sh-lg);
}
.mobile-menu.open { display: flex; }
.mobile-menu a { color: rgba(255,255,255,.9); font-size: 16px; font-weight: 500; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.08); display: flex; align-items: center; gap: 10px; }
.mobile-menu a:last-child { border-bottom: none; }
.mobile-dl-btn { background: var(--gold) !important; color: var(--white) !important; border-radius: var(--r-pill); padding: 14px 24px !important; justify-content: center !important; font-weight: 700 !important; margin-top: 8px; border: none !important; }

/* ══ HERO ══════════════════════════════════════════════ */
.hero {
  position: relative;
  width: 100%;
  height: clamp(560px, 60vw, 820px); /* scales with viewport width, stays sane */
  overflow: hidden;
  background: var(--maroon);
}

/* object-fit: cover fills the container; object-position keeps subject centred
   at any viewport width — no extreme top-clipping on ultrawide screens */
.hero picture { display: block; }
.hero-banner {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 35%;
  display: block;
}

/* Gradient rises from bottom — only the text zone is darkened */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top,
    rgba(20,4,12,.96)  0%,
    rgba(61,11,30,.84) 22%,
    rgba(61,11,30,.46) 46%,
    rgba(61,11,30,.12) 62%,
    transparent        78%
  );
}

/* Text sits at the bottom of the hero over the gradient */
.hero-text-box {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding-bottom: 52px;
}
.hero-content { max-width: 640px; }

.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(201,148,58,.22); border: 1px solid rgba(201,148,58,.55); color: var(--gold-bright); font-size: 13px; font-weight: 600; padding: 8px 18px; border-radius: var(--r-pill); margin-bottom: 18px; }
.hero-title { font-size: 54px; font-weight: 900; color: var(--white); line-height: 1.06; margin-bottom: 14px; letter-spacing: -1.5px; }
.hero-title .accent { color: var(--gold-bright); display: block; }
.hero-subtitle { font-size: 16px; color: rgba(255,255,255,.88); line-height: 1.7; margin-bottom: 28px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }
.hero-trust { display: flex; gap: 20px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,.92); font-size: 13px; font-weight: 500; }
.trust-item i { color: var(--gold-bright); font-size: 14px; }

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

/* ══ STATS BAR ════════════════════════════════════════ */
.stats-bar { background: var(--rose-dark); }
.stats-grid { display: flex; align-items: stretch; justify-content: space-around; flex-wrap: wrap; }
.stat-item { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 28px 20px; text-align: center; flex: 1; min-width: 120px; }
.stat-value { font-size: 38px; font-weight: 900; color: var(--white); line-height: 1; }
.stat-value.gold { color: var(--gold-bright); }
.stat-label { font-size: 12px; color: rgba(255,255,255,.60); font-weight: 500; margin-top: 5px; letter-spacing: .5px; }
.stat-divider { width: 1px; background: rgba(255,255,255,.12); align-self: stretch; margin: 16px 0; }

/* ══ SERVICES ══════════════════════════════════════════ */
.services-section { background: var(--off-white); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 44px; }
.service-card { background: var(--white); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-sm); transition: var(--ease); cursor: pointer; border: 1px solid var(--border-light); }
.service-card:hover { transform: translateY(-7px); box-shadow: var(--sh-lg); border-color: transparent; }
.service-img { position: relative; height: 210px; overflow: hidden; }
.service-img img { width: 100%; height: 100%; object-fit: cover; transition: var(--ease); }
.service-card:hover .service-img img { transform: scale(1.06); }
.service-icon-badge { position: absolute; top: 14px; left: 14px; width: 40px; height: 40px; background: var(--rose); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 18px; box-shadow: var(--sh-sm); }
.service-body { padding: 20px 20px 16px; }
.service-body h3 { font-size: 18px; font-weight: 700; margin-bottom: 7px; }
.service-body p { font-size: 13px; color: var(--text-gray); line-height: 1.65; margin-bottom: 14px; }
.service-footer { display: flex; align-items: center; justify-content: space-between; }
.service-price { font-size: 15px; color: var(--rose); font-weight: 700; }
.service-arrow { width: 32px; height: 32px; background: var(--rose-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--rose); font-size: 12px; transition: var(--ease); }
.service-card:hover .service-arrow { background: var(--rose); color: var(--white); }
.section-cta { text-align: center; }

/* ══ APP SHOWCASE ══════════════════════════════════════ */
.app-showcase { background: linear-gradient(135deg, var(--rose-lighter) 0%, var(--white) 60%); }
.app-showcase-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.app-text .section-title { text-align: left; }
.app-text .section-subtitle { text-align: left; margin: 0 0 30px; }
.app-features { display: flex; flex-direction: column; gap: 11px; margin-bottom: 36px; }
.app-features li { display: flex; align-items: center; gap: 12px; font-size: 15px; color: var(--text-mid); font-weight: 500; }
.app-features li i { color: var(--rose); font-size: 17px; flex-shrink: 0; }
.dl-buttons { display: flex; gap: 14px; flex-wrap: wrap; }
.store-btn { display: flex; align-items: center; gap: 14px; background: var(--maroon); color: var(--white); padding: 13px 22px; border-radius: var(--r-md); transition: var(--ease); border: 2px solid var(--maroon); min-width: 174px; }
.store-btn:hover { background: var(--rose-dark); border-color: var(--rose-dark); transform: translateY(-2px); box-shadow: var(--sh-md); }
.store-btn.coming { background: transparent; border-color: var(--border); color: var(--text-gray); pointer-events: none; }
.store-btn i { font-size: 26px; }
.store-btn div span { display: block; font-size: 10px; opacity: .7; line-height: 1; }
.store-btn div strong { display: block; font-size: 15px; font-weight: 700; line-height: 1.4; }

/* Phone Mockup with real screenshot */
.app-mockup { display: flex; justify-content: center; align-items: center; }
.phone-wrap { position: relative; filter: drop-shadow(0 24px 48px rgba(61,11,30,.35)); }
.phone-frame {
  width: 260px;
  height: 540px;
  background: #0d0d0d;
  border-radius: 46px;
  padding: 12px;
  box-shadow: 0 0 0 2px #333, 0 0 0 4px #1a1a1a;
  position: relative;
}
.phone-notch {
  position: absolute;
  top: 12px; left: 50%;
  transform: translateX(-50%);
  width: 90px; height: 22px;
  background: #0d0d0d;
  border-radius: 0 0 14px 14px;
  z-index: 10;
}
.phone-screen {
  width: 100%; height: 100%;
  border-radius: 36px;
  overflow: hidden;
  background: #000;
}
.app-screenshot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* ══ HOW IT WORKS ══════════════════════════════════════ */
.how-it-works { background: var(--bg-light); }
.steps-row { display: flex; align-items: center; gap: 20px; }
.step-card { flex: 1; background: var(--white); border-radius: var(--r-lg); padding: 36px 28px 28px; text-align: center; box-shadow: var(--sh-sm); transition: var(--ease); position: relative; overflow: hidden; border: 1px solid var(--border-light); }
.step-card::after { content:''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--rose), var(--gold)); }
.step-card:hover { transform: translateY(-5px); box-shadow: var(--sh-md); }
.step-num { font-size: 52px; font-weight: 900; color: var(--rose-light); line-height: 1; margin-bottom: 12px; }
.step-icon-wrap { width: 60px; height: 60px; background: var(--rose); border-radius: 16px; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; color: var(--white); font-size: 24px; }
.step-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.step-card p  { font-size: 14px; color: var(--text-gray); line-height: 1.7; }
.step-arrow { color: var(--rose-light); font-size: 22px; flex-shrink: 0; }

/* ══ JOIN CTA ══════════════════════════════════════════ */
.join-cta { background: linear-gradient(135deg, var(--maroon) 0%, var(--rose-dark) 100%); padding: 100px 0; position: relative; overflow: hidden; }
.join-cta::before { content:''; position:absolute; top:-120px; right:-80px; width:420px; height:420px; background:rgba(255,255,255,.04); border-radius:50%; pointer-events:none; }
.join-cta::after  { content:''; position:absolute; bottom:-150px; left:-60px; width:500px; height:500px; background:rgba(255,255,255,.03); border-radius:50%; pointer-events:none; }
.join-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; position: relative; z-index: 1; }
.join-label { display: inline-flex; align-items: center; gap: 8px; background: rgba(201,148,58,.2); border: 1px solid rgba(201,148,58,.45); color: var(--gold-bright); font-size: 11px; font-weight: 700; letter-spacing: 2px; padding: 7px 16px; border-radius: var(--r-pill); margin-bottom: 22px; }
.join-title { font-size: 44px; font-weight: 900; color: var(--white); line-height: 1.15; margin-bottom: 30px; }
.commission-banner { background: rgba(201,148,58,.14); border: 2px solid rgba(201,148,58,.4); border-radius: var(--r-lg); padding: 22px 28px; display: flex; align-items: center; gap: 24px; margin-bottom: 32px; }
.comm-zero { font-size: 74px; font-weight: 900; color: var(--gold-bright); line-height: 1; flex-shrink: 0; }
.comm-info h4 { font-size: 20px; font-weight: 800; color: var(--white); margin-bottom: 5px; }
.comm-info p  { font-size: 14px; color: rgba(255,255,255,.7); line-height: 1.5; }
.join-benefits { display: flex; flex-direction: column; gap: 11px; margin-bottom: 40px; }
.join-benefits li { display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,.9); font-size: 14px; font-weight: 500; }
.join-benefits li .check-icon { width: 22px; height: 22px; background: rgba(201,148,58,.25); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--gold-bright); font-size: 10px; flex-shrink: 0; }
.join-visual { position: relative; }
.join-photo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.join-photo { border-radius: var(--r-md); overflow: hidden; box-shadow: var(--sh-lg); }
.join-photo img { width: 100%; height: 210px; object-fit: cover; object-position: top; }
.join-photo:nth-child(2) { margin-top: 36px; }
.join-photo:nth-child(3) { margin-top: -36px; }
.earn-card { position: absolute; bottom: -12px; left: -24px; background: var(--white); border-radius: var(--r-md); padding: 14px 18px; box-shadow: var(--sh-xl); z-index: 10; min-width: 160px; }
.earn-card .earn-amount { font-size: 24px; font-weight: 900; color: var(--rose); line-height: 1; }
.earn-card .earn-lbl   { font-size: 11px; color: var(--text-gray); margin-top: 3px; }
.earn-card .earn-tag   { display: inline-block; background: var(--gold-light); color: var(--gold-dark); font-size: 10px; font-weight: 700; padding: 3px 8px; border-radius: 20px; margin-top: 6px; }

/* ══ TESTIMONIALS ══════════════════════════════════════ */
.testimonials { background: var(--white); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card { background: var(--off-white); border-radius: var(--r-lg); padding: 28px; transition: var(--ease); border: 1px solid var(--border-light); }
.testi-card:hover { background: var(--white); box-shadow: var(--sh-md); transform: translateY(-4px); border-color: transparent; }
.testi-stars { display: flex; gap: 3px; margin-bottom: 14px; }
.testi-stars i { color: var(--gold); font-size: 14px; }
.testi-text { font-size: 14px; color: var(--text-mid); line-height: 1.75; margin-bottom: 20px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.author-av { width: 42px; height: 42px; background: var(--rose); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 16px; font-weight: 700; flex-shrink: 0; }
.author-av img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.author-name { font-size: 14px; font-weight: 700; color: var(--text-dark); }
.author-city { font-size: 12px; color: var(--text-gray); }

/* ══ DOWNLOAD BANNER ═══════════════════════════════════ */
.download-banner { background: linear-gradient(135deg, var(--rose-dark) 0%, var(--rose) 100%); padding: 80px 0; text-align: center; position: relative; overflow: hidden; }
.download-banner::before { content:''; position:absolute; top:-80px; right:-60px; width:300px; height:300px; background:rgba(255,255,255,.06); border-radius:50%; pointer-events:none; }
.download-banner::after  { content:''; position:absolute; bottom:-100px; left:-40px; width:360px; height:360px; background:rgba(255,255,255,.04); border-radius:50%; pointer-events:none; }
.download-banner h2 { font-size: 44px; font-weight: 900; color: var(--white); margin-bottom: 14px; }
.download-banner p  { font-size: 18px; color: rgba(255,255,255,.85); margin-bottom: 44px; }
.download-banner .dl-buttons { justify-content: center; }
.download-banner .store-btn { background: var(--white); color: var(--rose-dark); border-color: var(--white); }
.download-banner .store-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--white); pointer-events: auto; }

/* ══ FOOTER ════════════════════════════════════════════ */
.footer { background: var(--maroon); color: rgba(255,255,255,.75); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,.07); }
.footer-brand img { height: 42px; margin-bottom: 14px; }
.footer-brand p { font-size: 13px; line-height: 1.75; opacity: .6; margin-bottom: 22px; }
.footer-social { display: flex; gap: 10px; }
.social-link { width: 36px; height: 36px; background: rgba(255,255,255,.07); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.6); font-size: 15px; transition: var(--ease); }
.social-link:hover { background: var(--rose); color: var(--white); }
.footer-col h4 { font-size: 12px; font-weight: 700; color: var(--white); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 18px; }
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,.55); transition: var(--ease); }
.footer-links a:hover { color: var(--gold-bright); padding-left: 4px; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding: 22px 0; flex-wrap: wrap; gap: 16px; }
.footer-bottom p { font-size: 12px; opacity: .4; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 12px; opacity: .4; transition: var(--ease); }
.footer-legal a:hover { opacity: .8; }

/* ══ PAGE HERO (inner pages) ═══════════════════════════ */
.page-hero { background: linear-gradient(135deg, var(--maroon) 0%, var(--rose-dark) 100%); padding: 64px 0; text-align: center; color: var(--white); }
.page-hero h1 { font-size: 46px; font-weight: 900; margin-bottom: 12px; }
.page-hero p  { font-size: 17px; color: rgba(255,255,255,.8); max-width: 540px; margin: 0 auto; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,.55); margin-bottom: 16px; }
.breadcrumb a { color: rgba(255,255,255,.55); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb i { font-size: 10px; }

/* ══ CONTACT FORM ══════════════════════════════════════ */
.contact-section { padding: 80px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 60px; align-items: start; }
.contact-info h2 { font-size: 32px; font-weight: 800; margin-bottom: 14px; }
.contact-info p  { font-size: 15px; color: var(--text-gray); line-height: 1.75; margin-bottom: 32px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 22px; }
.contact-icon { width: 46px; height: 46px; background: var(--rose-light); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--rose); font-size: 18px; flex-shrink: 0; }
.contact-item h4 { font-size: 14px; font-weight: 700; color: var(--text-dark); margin-bottom: 2px; }
.contact-item p  { font-size: 13px; color: var(--text-gray); margin: 0; }
.form-card { background: var(--white); border-radius: var(--r-xl); padding: 40px; box-shadow: var(--sh-md); border: 1px solid var(--border-light); }
.form-card h3 { font-size: 22px; font-weight: 700; margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--text-mid); margin-bottom: 7px; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 12px 16px; border: 1.5px solid var(--border); border-radius: var(--r-md); font-size: 14px; font-family: var(--font); color: var(--text-dark); background: var(--bg-light); transition: var(--ease); outline: none; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--rose); background: var(--white); box-shadow: 0 0 0 3px rgba(194,24,91,.08); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; padding: 15px; background: var(--rose); color: var(--white); border: none; border-radius: var(--r-pill); font-size: 16px; font-weight: 700; cursor: pointer; transition: var(--ease); display: flex; align-items: center; justify-content: center; gap: 8px; }
.form-submit:hover { background: var(--rose-dark); transform: translateY(-2px); box-shadow: var(--sh-md); }

/* ══ JOIN PAGE ═════════════════════════════════════════ */
.join-page-section { padding: 80px 0; }
.join-page-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: start; }
.join-steps { display: flex; flex-direction: column; gap: 24px; margin-top: 40px; }
.join-step { display: flex; gap: 18px; }
.join-step-num { width: 40px; height: 40px; background: var(--rose); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 16px; flex-shrink: 0; }
.join-step-body h4 { font-size: 16px; font-weight: 700; margin-bottom: 5px; }
.join-step-body p  { font-size: 14px; color: var(--text-gray); line-height: 1.65; }
.earn-cards-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 32px; }
.earn-stat-card { background: var(--white); border-radius: var(--r-md); padding: 20px; box-shadow: var(--sh-sm); border: 1px solid var(--border-light); text-align: center; }
.earn-stat-card .big { font-size: 36px; font-weight: 900; color: var(--rose); line-height: 1; }
.earn-stat-card .big.gold { color: var(--gold-dark); }
.earn-stat-card span { font-size: 13px; color: var(--text-gray); }
.earning-calc { background: var(--rose); border-radius: var(--r-lg); padding: 28px; margin-top: 28px; }
.earning-calc h4 { color: var(--white); font-size: 16px; font-weight: 700; margin-bottom: 16px; }
.calc-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; color: rgba(255,255,255,.8); font-size: 14px; }
.calc-total { display: flex; justify-content: space-between; align-items: center; margin-top: 14px; padding-top: 14px; border-top: 1px solid rgba(255,255,255,.2); }
.calc-total span { color: var(--gold-bright); font-size: 16px; font-weight: 700; }
.calc-total .amount { font-size: 28px; font-weight: 900; color: var(--gold-bright); }
.app-form-card { background: var(--white); border-radius: var(--r-xl); padding: 44px; box-shadow: var(--sh-md); border: 1px solid var(--border-light); }
.app-form-card h3 { font-size: 22px; font-weight: 700; margin-bottom: 6px; }
.app-form-card .sub { font-size: 14px; color: var(--text-gray); margin-bottom: 28px; }

/* ══ PRIVACY / TERMS ═══════════════════════════════════ */
.legal-section { padding: 80px 0; }
.legal-content { max-width: 800px; margin: 0 auto; }
.legal-content h2 { font-size: 22px; font-weight: 800; color: var(--rose); margin: 40px 0 14px; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p  { font-size: 15px; color: var(--text-mid); line-height: 1.8; margin-bottom: 14px; }
.legal-content ul { margin: 14px 0 14px 20px; list-style: disc; }
.legal-content ul li { font-size: 15px; color: var(--text-mid); line-height: 1.8; margin-bottom: 7px; }
.legal-meta { font-size: 13px; color: var(--text-gray); margin-bottom: 36px; padding-bottom: 24px; border-bottom: 1px solid var(--border); }

/* ══ ABOUT PAGE ════════════════════════════════════════ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-img { border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--sh-lg); }
.about-img img { width: 100%; height: 440px; object-fit: cover; }
.mission-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.mission-card { background: var(--white); border-radius: var(--r-lg); padding: 28px; box-shadow: var(--sh-sm); border-top: 4px solid var(--rose); transition: var(--ease); }
.mission-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.mission-icon { width: 52px; height: 52px; background: var(--rose-light); border-radius: 14px; display: flex; align-items: center; justify-content: center; color: var(--rose); font-size: 22px; margin-bottom: 16px; }
.mission-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.mission-card p  { font-size: 14px; color: var(--text-gray); line-height: 1.7; }

/* ══ RESPONSIVE ════════════════════════════════════════ */
@media (max-width: 1024px) {
  .section-title { font-size: 34px; }
  .hero-title { font-size: 44px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .app-showcase-grid { grid-template-columns: 1fr; gap: 48px; }
  .join-grid { grid-template-columns: 1fr; gap: 40px; }
  .join-visual { display: none; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; }
  .join-page-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .mission-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .section { padding: 36px 0; }
  .section-title { font-size: 28px; }
  .section-subtitle { font-size: 15px; }
  .section-header { margin-bottom: 28px; }
  .page-hero { padding: 36px 0; }
  .contact-section,
  .join-page-section,
  .legal-section { padding: 36px 0; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-actions .btn-sm { display: none; }

  /* Hero mobile: object-fit crops empty top space and keeps face in frame */
  .hero { height: 520px; }
  .hero-banner { top: 0; bottom: auto; height: 100%; object-fit: cover; object-position: center 30%; }
  .hero-title { font-size: 32px; letter-spacing: -.5px; }
  .hero-subtitle { font-size: 14px; }
  .hero-ctas { gap: 10px; }
  .hero-trust { gap: 12px; }
  .hero-text-box { padding-bottom: 36px; }

  .stats-grid { flex-wrap: wrap; }
  .stat-item { min-width: 40%; }
  .stat-divider { display: none; }
  .stat-value { font-size: 30px; }
  .services-grid { grid-template-columns: 1fr; }
  .steps-row { flex-direction: column; }
  .step-arrow { transform: rotate(90deg); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .download-banner h2 { font-size: 30px; }
  .download-banner p  { font-size: 15px; }
  .dl-buttons { flex-direction: column; align-items: center; }
  .join-title { font-size: 32px; }
  .commission-banner { flex-direction: column; text-align: center; gap: 12px; }
  .comm-zero { font-size: 60px; }
  .page-hero h1 { font-size: 34px; }
  .form-row { grid-template-columns: 1fr; }
  .mission-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-title { font-size: 28px; }
  .btn { padding: 11px 20px; font-size: 14px; }
  .btn-lg { padding: 14px 28px; font-size: 15px; }
  .hero-ctas { flex-direction: column; }
  .earn-cards-row { grid-template-columns: 1fr; }
}
