/*
Theme Name: GBResume Theme
Theme URI: https://gbresume.in
Author: Grafibee Digital Solutions
Author URI: https://grafibee.in
Description: Official GBResume SaaS Theme - Branded, Mobile-First, Fast
Version: 2.0.0
License: Private
Text Domain: gbresume
*/

/* ══════════════════════════════════
   GBRESUME THEME — GLOBAL STYLES
   Branded: #f5a623 Gold + #1a1a2e Navy
   Font: Poppins + Playfair Display
══════════════════════════════════ */

/* ── CSS VARIABLES ── */
:root {
  --gold:    #f5a623;
  --gold-dk: #e8920e;
  --gold-lt: #fff8ec;
  --navy:    #1a1a2e;
  --navy-lt: #2d2d4e;
  --white:   #ffffff;
  --off-wh:  #f8f9ff;
  --grey:    #f0f2f8;
  --text:    #374151;
  --muted:   #6b7280;
  --border:  #e5e7eb;
  --shadow:  0 4px 24px rgba(0,0,0,.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,.14);
  --radius:  12px;
  --radius-lg: 20px;
  --transition: all .25s cubic-bezier(.4,0,.2,1);
}

/* ── RESET & BASE ── */
*, *::before, *::after {
  margin: 0; padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif !important;
}
html { scroll-behavior: smooth; font-size: 16px; }
body {
  color: var(--navy);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: 'Poppins', sans-serif !important; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 { font-family: 'Poppins', sans-serif !important; line-height: 1.15; }
h1 { font-size: clamp(36px, 6vw, 72px); font-weight: 900; }
h2 { font-size: clamp(28px, 4vw, 48px); font-weight: 800; }
h3 { font-size: clamp(18px, 2.5vw, 26px); font-weight: 700; }
p  { line-height: 1.75; color: var(--text); }

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity .6s ease, transform .6s ease; }
.reveal.revealed { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ── BUTTONS ── */
.gbr-btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 26px;
  background: var(--gold); color: #fff;
  border: none; border-radius: var(--radius);
  font-size: 14px; font-weight: 700;
  box-shadow: 0 6px 20px rgba(245,166,35,.4);
  transition: var(--transition);
  white-space: nowrap;
}
.gbr-btn-primary:hover {
  background: var(--gold-dk);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(245,166,35,.5);
  color: #fff;
}
.gbr-btn-ghost {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 20px;
  background: transparent; color: var(--navy);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px; font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
}
.gbr-btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.gbr-btn-lg { padding: 16px 36px; font-size: 16px; border-radius: 14px; }
.gbr-btn-outline-white {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px;
  background: rgba(255,255,255,.1); color: #fff;
  border: 1.5px solid rgba(255,255,255,.3);
  border-radius: var(--radius);
  font-size: 15px; font-weight: 600;
  backdrop-filter: blur(8px);
  transition: var(--transition);
}
.gbr-btn-outline-white:hover { background: rgba(255,255,255,.2); border-color: rgba(255,255,255,.6); color: #fff; }

/* ── SECTION LAYOUT ── */
.gbr-section { padding: 90px 5%; }
.gbr-section-sm { padding: 60px 5%; }
.gbr-container { max-width: 1200px; margin: 0 auto; }
.gbr-container-sm { max-width: 860px; margin: 0 auto; }

/* ── SECTION HEADER ── */
.gbr-sec-hd { text-align: center; margin-bottom: 56px; }
.gbr-sec-tag {
  display: inline-block;
  background: var(--gold-lt); color: var(--gold);
  font-size: 11px; font-weight: 700;
  padding: 5px 14px; border-radius: 50px;
  margin-bottom: 14px; letter-spacing: 1px;
  text-transform: uppercase;
  font-family: 'Poppins', sans-serif !important;
}
.gbr-sec-hd h2 { color: var(--navy); margin-bottom: 14px; }
.gbr-sec-hd h2 em { color: var(--gold); font-style: normal; }
.gbr-sec-hd p { font-size: 17px; color: var(--muted); max-width: 560px; margin: 0 auto; }

/* ── NAVBAR ── */
.gbr-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 9999;
  background: #fff;
  box-shadow: 0 1px 0 var(--border);
  transition: var(--transition);
}
.gbr-nav.gbr-nav-scrolled { box-shadow: 0 4px 24px rgba(0,0,0,.1); }
.gbr-nav-inner {
  max-width: 1280px; margin: 0 auto;
  height: 70px; padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.gbr-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; flex-shrink: 0;
}
.gbr-logo-ico {
  width: 38px; height: 38px;
  background: var(--gold); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 900; color: #fff;
  font-family: 'Poppins', sans-serif !important;
  box-shadow: 0 4px 12px rgba(245,166,35,.35);
  flex-shrink: 0;
}
.gbr-logo-txt {
  font-size: 20px; font-weight: 800; color: var(--navy);
  font-family: 'Poppins', sans-serif !important;
}
.gbr-logo-accent { color: var(--gold); }
.gbr-nav-links {
  display: flex; align-items: center; gap: 32px;
  flex: 1; justify-content: center;
}
.gbr-nav-links a {
  font-size: 14px; font-weight: 500; color: var(--navy);
  transition: color .2s; position: relative;
  font-family: 'Poppins', sans-serif !important;
}
.gbr-nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--gold);
  transform: scaleX(0); transition: transform .2s;
}
.gbr-nav-links a:hover { color: var(--gold); }
.gbr-nav-links a:hover::after { transform: scaleX(1); }
.gbr-nav-cta { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.gbr-hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none; padding: 6px; cursor: pointer;
  width: 36px;
}
.gbr-hamburger span {
  display: block; height: 2px; width: 100%;
  background: var(--navy); border-radius: 2px;
  transition: var(--transition);
}
.gbr-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.gbr-hamburger.open span:nth-child(2) { opacity: 0; }
.gbr-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.gbr-mobile-menu {
  display: none; flex-direction: column;
  padding: 16px 5% 20px;
  border-top: 1px solid var(--border);
  background: #fff;
}
.gbr-mobile-menu.open { display: flex; }
.gbr-mobile-menu a {
  font-size: 15px; font-weight: 500; color: var(--navy);
  padding: 12px 0; border-bottom: 1px solid var(--grey);
  transition: color .2s;
}
.gbr-mobile-menu a:hover { color: var(--gold); }
.gbr-mobile-cta { margin-top: 16px; display: flex; flex-direction: column; gap: 10px; }

/* ══ PAGES ══ */

/* ── HERO ── */
.gbr-hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #0d0b1e 0%, #1a1542 40%, #0f1a3d 70%, #1a1a2e 100%);
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 80px 5% 60px;
  position: relative; overflow: hidden;
}
.gbr-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(245,166,35,.08), transparent);
}
.gbr-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M20 20h1v1h-1zM0 0h1v1H0zM40 0h1v1h-1zM0 40h1v1H0z'/%3E%3C/g%3E%3C/svg%3E");
}
.gbr-hero-content { position: relative; z-index: 1; max-width: 820px; margin: 0 auto; }
.gbr-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(245,166,35,.15); border: 1px solid rgba(245,166,35,.35);
  border-radius: 50px; padding: 7px 18px;
  font-size: 12px; font-weight: 600; color: var(--gold);
  margin-bottom: 28px; letter-spacing: .5px;
  animation: fadeUp .6s ease both;
  font-family: 'Poppins', sans-serif !important;
}
.gbr-hero h1 {
  color: #fff; margin-bottom: 22px;
  animation: fadeUp .7s .1s ease both;
}
.gbr-hero h1 em { color: var(--gold); font-style: italic; }
.gbr-hero-sub {
  font-size: clamp(15px, 2vw, 18px); color: rgba(255,255,255,.72);
  max-width: 580px; margin: 0 auto 40px; line-height: 1.75;
  animation: fadeUp .7s .2s ease both;
}
.gbr-hero-btns {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 60px;
  animation: fadeUp .7s .3s ease both;
}
.gbr-hero-stats {
  display: flex; gap: clamp(20px, 5vw, 60px); justify-content: center; flex-wrap: wrap;
  animation: fadeUp .7s .4s ease both;
  padding-top: 40px; border-top: 1px solid rgba(255,255,255,.1);
}
.gbr-stat-num { font-size: clamp(26px, 4vw, 36px); font-weight: 800; color: #fff; font-family: 'Poppins', sans-serif !important; }
.gbr-stat-lbl { font-size: 12px; color: rgba(255,255,255,.5); margin-top: 3px; }

/* ── FEATURES ── */
.gbr-features { background: var(--white); }
.gbr-feat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}
.gbr-feat-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
}
.gbr-feat-card:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 32px rgba(245,166,35,.12);
  transform: translateY(-4px);
}
.gbr-feat-ico {
  width: 52px; height: 52px;
  background: var(--gold-lt); border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 18px;
}
.gbr-feat-title { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 8px; font-family: 'Poppins', sans-serif !important; }
.gbr-feat-desc { font-size: 13px; color: var(--muted); line-height: 1.7; }

/* ── TEMPLATES ── */
.gbr-tpl-sec { background: var(--off-wh); }
.gbr-tpl-slider-wrap { overflow: hidden; padding: 10px 0 6px; }
.gbr-tpl-slider {
  display: flex; gap: 18px;
  padding: 10px 5%;
  transition: transform .5s cubic-bezier(.25,.46,.45,.94);
  will-change: transform;
}
.gbr-tpl-card {
  flex-shrink: 0; width: 210px;
  border-radius: 14px; overflow: hidden;
  background: #fff;
  box-shadow: 0 3px 16px rgba(0,0,0,.07);
  transition: var(--transition);
  border: 3px solid transparent;
  cursor: pointer;
}
.gbr-tpl-card:hover { transform: translateY(-6px); box-shadow: 0 14px 40px rgba(0,0,0,.14); }
.gbr-tpl-card.active { border-color: var(--gold); }
.gbr-tpl-img-wrap { position: relative; aspect-ratio: .707; overflow: hidden; background: #e8eaf6; }
.gbr-tpl-img { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; transition: transform .4s; }
.gbr-tpl-card:hover .gbr-tpl-img { transform: scale(1.04); }
.gbr-tpl-overlay {
  position: absolute; inset: 0;
  background: rgba(26,26,46,.65);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .3s;
}
.gbr-tpl-card:hover .gbr-tpl-overlay { opacity: 1; }
.gbr-tpl-use-btn {
  padding: 10px 20px; background: var(--gold); color: #fff;
  border: none; border-radius: 9px; font-size: 12px; font-weight: 700;
  font-family: 'Poppins', sans-serif !important;
  box-shadow: 0 4px 14px rgba(245,166,35,.5);
  transition: transform .2s;
}
.gbr-tpl-use-btn:hover { transform: scale(1.06); }
.gbr-tpl-badge {
  position: absolute; top: 9px; right: 9px;
  padding: 3px 9px; border-radius: 20px; font-size: 10px; font-weight: 700;
  font-family: 'Poppins', sans-serif !important;
}
.gbr-tpl-badge.free { background: #dcfce7; color: #16a34a; }
.gbr-tpl-badge.pro  { background: var(--gold-lt); color: var(--gold); }
.gbr-tpl-active-bar {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: var(--gold); color: #fff;
  font-size: 10px; font-weight: 700; text-align: center; padding: 4px;
  opacity: 0; transition: opacity .3s;
  font-family: 'Poppins', sans-serif !important;
}
.gbr-tpl-card.active .gbr-tpl-active-bar { opacity: 1; }
.gbr-tpl-info { padding: 12px 14px; }
.gbr-tpl-name { font-size: 13px; font-weight: 700; color: var(--navy); font-family: 'Poppins', sans-serif !important; }
.gbr-tpl-cat  { font-size: 11px; color: var(--muted); margin-top: 2px; }

/* Arrow Nav */
.gbr-tpl-arrows {
  display: flex; justify-content: center; align-items: center; gap: 14px;
  margin-top: 24px; padding: 0 5%;
}
.gbr-tpl-arrow {
  width: 46px; height: 46px; border-radius: 50%;
  background: #fff; border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: var(--navy);
  transition: var(--transition);
  box-shadow: var(--shadow);
}
.gbr-tpl-arrow:hover { background: var(--gold); border-color: var(--gold); color: #fff; box-shadow: 0 6px 20px rgba(245,166,35,.4); }
.gbr-tpl-arrow:disabled { opacity: .35; cursor: not-allowed; transform: none !important; box-shadow: none; }
.gbr-tpl-counter { font-size: 13px; font-weight: 600; color: var(--muted); min-width: 56px; text-align: center; }
.gbr-tpl-cta { text-align: center; margin-top: 30px; padding: 0 5%; }
.gbr-tpl-sel-info {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--gold-lt); border: 1px solid #fde68a;
  border-radius: 10px; padding: 10px 18px; margin-bottom: 16px;
  font-size: 13px; color: var(--navy); font-weight: 600;
}
.gbr-tpl-sel-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }

/* ── HOW IT WORKS ── */
.gbr-how { background: var(--navy); }
.gbr-how .gbr-sec-hd h2 { color: #fff; }
.gbr-how .gbr-sec-hd p { color: rgba(255,255,255,.6); }
.gbr-how .gbr-sec-tag { background: rgba(245,166,35,.15); }
.gbr-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
}
.gbr-step { text-align: center; }
.gbr-step-num {
  width: 64px; height: 64px; border-radius: 18px;
  background: rgba(245,166,35,.12); border: 2px solid rgba(245,166,35,.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; font-weight: 900; color: var(--gold);
  margin: 0 auto 18px;
  font-family: 'Poppins', sans-serif !important;
}
.gbr-step-title { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 8px; font-family: 'Poppins', sans-serif !important; }
.gbr-step-desc  { font-size: 13px; color: rgba(255,255,255,.55); line-height: 1.7; }

/* ── PRICING ── */
.gbr-pricing { background: var(--off-wh); }
.gbr-price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}
.gbr-price-card {
  background: #fff; border-radius: var(--radius-lg);
  padding: 32px; border: 2px solid var(--border);
  transition: var(--transition); position: relative;
}
.gbr-price-card.popular {
  border-color: var(--gold);
  box-shadow: 0 12px 48px rgba(245,166,35,.18);
  transform: scale(1.02);
}
.gbr-popular-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: #fff;
  font-size: 11px; font-weight: 700; padding: 5px 16px; border-radius: 50px;
  white-space: nowrap; font-family: 'Poppins', sans-serif !important;
}
.gbr-plan-name { font-size: 15px; font-weight: 700; color: var(--muted); margin-bottom: 12px; font-family: 'Poppins', sans-serif !important; text-transform: uppercase; letter-spacing: .5px; }
.gbr-plan-price { font-size: 46px; font-weight: 900; color: var(--navy); font-family: 'Poppins', sans-serif !important; line-height: 1; }
.gbr-plan-price sup { font-size: 20px; vertical-align: super; }
.gbr-plan-price span { font-size: 15px; font-weight: 400; color: var(--muted); }
.gbr-plan-period { font-size: 13px; color: var(--muted); margin: 6px 0 22px; }
.gbr-plan-features { list-style: none; margin-bottom: 26px; }
.gbr-plan-features li {
  font-size: 13px; color: var(--text);
  padding: 8px 0; border-bottom: 1px solid var(--grey);
  display: flex; align-items: center; gap: 9px;
}
.gbr-plan-features li:last-child { border: none; }
.gbr-plan-features li.no { color: #d1d5db; }

/* ── TESTIMONIALS ── */
.gbr-testi { background: #fff; }
.gbr-testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}
.gbr-testi-card {
  background: var(--off-wh); border-radius: var(--radius-lg);
  padding: 28px; border: 1.5px solid var(--border);
  transition: var(--transition);
}
.gbr-testi-card:hover { border-color: var(--gold); box-shadow: 0 6px 24px rgba(245,166,35,.1); }
.gbr-stars { color: var(--gold); font-size: 18px; margin-bottom: 14px; letter-spacing: 2px; }
.gbr-testi-text { font-size: 14px; color: var(--text); line-height: 1.75; margin-bottom: 20px; font-style: italic; }
.gbr-testi-author { display: flex; align-items: center; gap: 12px; }
.gbr-testi-ava {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gold); display: flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 700; color: #fff; flex-shrink: 0;
  font-family: 'Poppins', sans-serif !important;
}
.gbr-testi-name { font-size: 14px; font-weight: 700; color: var(--navy); font-family: 'Poppins', sans-serif !important; }
.gbr-testi-role { font-size: 12px; color: var(--muted); }

/* ── CTA STRIP ── */
.gbr-cta {
  background: linear-gradient(135deg, #0d0b1e, #1a1542, #1a1a2e);
  text-align: center; padding: 90px 5%;
}
.gbr-cta h2 { color: #fff; margin-bottom: 16px; }
.gbr-cta h2 em { color: var(--gold); font-style: italic; }
.gbr-cta p { color: rgba(255,255,255,.65); font-size: 17px; max-width: 500px; margin: 0 auto 36px; }
.gbr-cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── MODAL ── */
.gbr-modal-overlay {
  position: fixed; inset: 0; z-index: 99999;
  background: rgba(0,0,0,.65); backdrop-filter: blur(6px);
  display: none; align-items: center; justify-content: center; padding: 20px;
}
.gbr-modal-overlay.open { display: flex; }
.gbr-modal {
  background: #fff; border-radius: 22px; padding: 36px;
  width: 100%; max-width: 400px; text-align: center;
  box-shadow: 0 24px 80px rgba(0,0,0,.25);
  animation: popIn .3s cubic-bezier(.34,1.56,.64,1);
  position: relative;
}
.gbr-modal-close {
  position: absolute; top: 14px; right: 16px;
  background: none; border: none; font-size: 22px;
  color: var(--muted); cursor: pointer; line-height: 1;
}
.gbr-modal-icon { font-size: 52px; margin-bottom: 14px; }
.gbr-modal h3 { font-size: 22px; font-weight: 800; color: var(--navy); margin-bottom: 6px; font-family: 'Poppins', sans-serif !important; }
.gbr-modal-tpl-name { font-size: 16px; font-weight: 700; color: var(--gold); margin-bottom: 10px; }
.gbr-modal p { font-size: 14px; color: var(--muted); margin-bottom: 22px; }
.gbr-modal-btns { display: flex; flex-direction: column; gap: 10px; }
.gbr-modal-btns a { display: block; padding: 14px; border-radius: 12px; font-size: 14px; font-weight: 700; text-align: center; font-family: 'Poppins', sans-serif !important; transition: var(--transition); }
.gbr-modal-btns a.primary { background: var(--gold); color: #fff; box-shadow: 0 4px 14px rgba(245,166,35,.4); }
.gbr-modal-btns a.primary:hover { background: var(--gold-dk); transform: translateY(-2px); }
.gbr-modal-btns a.sec { background: var(--grey); color: var(--navy); }
.gbr-modal-btns a.sec:hover { background: var(--border); }

/* ── FOOTER ── */
.gbr-footer { background: var(--navy); padding: 70px 5% 0; }
.gbr-footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.gbr-footer-brand p { font-size: 13px; color: rgba(255,255,255,.55); line-height: 1.75; margin-bottom: 10px; }
.gbr-footer-by { font-size: 12px !important; }
.gbr-footer-by strong { color: #fff; }
.gbr-footer-social { display: flex; gap: 10px; margin-top: 14px; }
.gbr-footer-social a {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; transition: background .2s;
}
.gbr-footer-social a:hover { background: var(--gold); }
.gbr-footer-col h4 {
  font-size: 12px; font-weight: 700; color: #fff;
  text-transform: uppercase; letter-spacing: 1px;
  margin-bottom: 18px; font-family: 'Poppins', sans-serif !important;
}
.gbr-footer-col a {
  display: block; font-size: 13px;
  color: rgba(255,255,255,.5); margin-bottom: 10px;
  transition: color .2s;
}
.gbr-footer-col a:hover { color: var(--gold); }
.gbr-footer-bottom {
  padding: 22px 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 10px;
  font-size: 12px; color: rgba(255,255,255,.4);
}
.gbr-footer-bottom strong { color: rgba(255,255,255,.7); }

/* ── LOGIN PAGE ── */
.gbr-login-page {
  min-height: 100vh;
  background: linear-gradient(135deg, #0d0b1e 0%, #1a1542 50%, #1a1a2e 100%);
  display: flex; align-items: center; justify-content: center; padding: 20px;
}
.gbr-login-card {
  background: #fff; border-radius: 24px;
  box-shadow: 0 32px 100px rgba(0,0,0,.4);
  padding: 44px; width: 100%; max-width: 440px;
  animation: fadeUp .5s ease;
}
.gbr-login-logo { display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 28px; }
.gbr-login-ttl { text-align: center; font-size: 22px; font-weight: 700; color: var(--navy); margin-bottom: 4px; font-family: 'Poppins', sans-serif !important; }
.gbr-login-sub { text-align: center; font-size: 13px; color: var(--muted); margin-bottom: 28px; }
.gbr-error-msg {
  background: #fef2f2; border: 1px solid #fca5a5; border-radius: 10px;
  padding: 12px 16px; color: #dc2626; font-size: 13px; margin-bottom: 18px; text-align: center;
}
.gbr-success-msg {
  background: #f0fdf4; border: 1px solid #86efac; border-radius: 10px;
  padding: 12px 16px; color: #16a34a; font-size: 13px; margin-bottom: 18px; text-align: center;
}
.gbr-field { margin-bottom: 16px; }
.gbr-field label { display: block; font-size: 11px; font-weight: 700; color: #374151; margin-bottom: 6px; text-transform: uppercase; letter-spacing: .5px; font-family: 'Poppins', sans-serif !important; }
.gbr-field input {
  width: 100%; padding: 13px 16px;
  border: 2px solid var(--border); border-radius: 12px;
  font-family: 'Poppins', sans-serif !important; font-size: 14px; color: var(--navy);
  outline: none; transition: var(--transition); background: var(--off-wh);
}
.gbr-field input:focus { border-color: var(--gold); box-shadow: 0 0 0 4px rgba(245,166,35,.1); background: #fff; }
.gbr-remember-row { display: flex; align-items: center; gap: 8px; margin-bottom: 22px; }
.gbr-remember-row input { width: 16px; height: 16px; accent-color: var(--gold); }
.gbr-remember-row label { font-size: 13px; color: var(--muted); cursor: pointer; }
.gbr-forgot { margin-left: auto; font-size: 12px; color: var(--gold); text-decoration: none; font-weight: 600; }
.gbr-forgot:hover { text-decoration: underline; }
.gbr-login-submit {
  width: 100%; padding: 15px; background: var(--gold); color: #fff;
  border: none; border-radius: 14px; font-size: 15px; font-weight: 700;
  font-family: 'Poppins', sans-serif !important;
  box-shadow: 0 6px 20px rgba(245,166,35,.4);
  transition: var(--transition); cursor: pointer;
}
.gbr-login-submit:hover { background: var(--gold-dk); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(245,166,35,.5); }
.gbr-divider { display: flex; align-items: center; gap: 12px; margin: 20px 0; color: var(--border); font-size: 13px; }
.gbr-divider::before, .gbr-divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.gbr-reg-btn {
  display: block; width: 100%; padding: 14px;
  background: #fff; color: var(--navy);
  border: 2px solid var(--border); border-radius: 14px;
  font-family: 'Poppins', sans-serif !important; font-size: 14px; font-weight: 600;
  text-align: center; text-decoration: none; transition: var(--transition); margin-bottom: 16px;
}
.gbr-reg-btn:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-lt); }
.gbr-login-back { text-align: center; margin-top: 20px; }
.gbr-login-back a { font-size: 12px; color: rgba(255,255,255,.45); text-decoration: none; }
.gbr-login-back a:hover { color: #fff; }
.gbr-privacy-note { text-align: center; font-size: 11px; color: var(--muted); }
.gbr-privacy-note a { color: var(--gold); }

/* ── TERMS PAGE ── */
.gbr-terms-hero { background: linear-gradient(135deg, var(--navy), #302b63); padding: 80px 5% 50px; text-align: center; }
.gbr-terms-hero h1 { color: #fff; font-size: clamp(28px, 4vw, 44px); margin-bottom: 10px; }
.gbr-terms-hero p { color: rgba(255,255,255,.6); font-size: 14px; }
.gbr-terms-content { max-width: 840px; margin: 0 auto; padding: 50px 5% 80px; }
.gbr-terms-card { background: #fff; border-radius: 16px; padding: 32px; margin-bottom: 18px; border: 1.5px solid var(--border); box-shadow: var(--shadow); }
.gbr-terms-card h2 { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 14px; padding-bottom: 10px; border-bottom: 2px solid var(--gold); font-family: 'Poppins', sans-serif !important; }
.gbr-terms-card h3 { font-size: 15px; font-weight: 700; color: var(--navy); margin: 14px 0 8px; font-family: 'Poppins', sans-serif !important; }
.gbr-terms-card p { font-size: 14px; color: var(--text); line-height: 1.8; margin-bottom: 10px; }
.gbr-terms-card ul { padding-left: 20px; margin-bottom: 10px; }
.gbr-terms-card li { font-size: 14px; color: var(--text); line-height: 1.8; margin-bottom: 4px; }
.gbr-terms-highlight { background: var(--gold-lt); border-left: 3px solid var(--gold); padding: 12px 16px; border-radius: 0 8px 8px 0; font-size: 13px; margin-bottom: 14px; }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes popIn {
  from { opacity: 0; transform: scale(.88); }
  to   { opacity: 1; transform: scale(1); }
}

/* ══════════════════════════════════
   RESPONSIVE — MOBILE FIRST
══════════════════════════════════ */

@media (max-width: 1024px) {
  .gbr-footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  /* Nav */
  .gbr-nav-links, .gbr-nav-cta { display: none !important; }
  .gbr-hamburger { display: flex !important; }
  /* Hero */
  .gbr-hero-btns { flex-direction: column; align-items: center; }
  .gbr-hero-btns a { width: 100%; max-width: 300px; justify-content: center; }
  .gbr-hero-stats { gap: 20px; }
  /* Templates */
  .gbr-tpl-card { width: 180px; }
  /* Pricing */
  .gbr-price-card.popular { transform: none; }
  /* Footer */
  .gbr-footer-inner { grid-template-columns: 1fr 1fr; gap: 28px; }
  .gbr-footer-bottom { flex-direction: column; text-align: center; }
  /* Login */
  .gbr-login-card { padding: 28px 24px; }
  /* Section padding */
  .gbr-section { padding: 60px 4%; }
}

@media (max-width: 480px) {
  /* Nav */
  .gbr-logo-txt { font-size: 17px; }
  /* Templates */
  .gbr-tpl-card { width: 160px; }
  /* Footer */
  .gbr-footer-inner { grid-template-columns: 1fr; }
  .gbr-footer { padding: 50px 4% 0; }
  /* Pricing */
  .gbr-price-grid { grid-template-columns: 1fr; }
}
