/* ============================================
   GLOBAL SCHOLARS PREP — styles.css
   ============================================ */

:root {
  --gs-navy: #002147;
  --gs-navy-dark: #001230;
  --gs-gold: #c5a059;
  --gs-gold-light: #e2c47e;
  --gs-paper: #fdfdfd;
  --gs-ink: #20232a;
  --gs-ink-soft: #4a4f5a;
  --gs-border-soft: #dde1ea;
  --gs-shadow-soft: 0 18px 45px rgba(0, 15, 40, 0.12);
}

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

html, body { margin: 0; padding: 0; }

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: var(--gs-paper);
  color: var(--gs-ink);
  -webkit-font-smoothing: antialiased;
  font-size: 18px;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.gs-container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.gs-section { padding: 80px 0; }

.gs-section-muted {
  background: linear-gradient(135deg, #f4f6fb 0%, #e8ecf7 50%, #fdf7ea 100%);
}

h1, h2, h3 {
  font-family: "Cinzel", "Times New Roman", serif;
  color: var(--gs-navy);
  margin: 0 0 16px;
}

h1 { font-size: clamp(2.6rem, 4.5vw, 3.6rem); line-height: 1.12; }
h2 { font-size: clamp(1.9rem, 3vw, 2.6rem); }
h3 { font-size: 1.25rem; }

p { margin: 0 0 12px; line-height: 1.65; color: var(--gs-ink-soft); }

.gs-gold-text { color: var(--gs-gold); font-weight: 600; }

/* ============================================
   HEADER
   ============================================ */
.gs-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 253, 253, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 33, 71, 0.07);
}

.gs-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
}

.gs-logo-lockup {
  display: flex;
  align-items: center;
  gap: 12px;
}

.gs-logo-mark {
  width: 76px;
  height: 76px;
  border-radius: 10px;
  overflow: hidden;
  background: var(--gs-navy);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gs-logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.gs-logo-text { display: flex; flex-direction: column; }

.gs-logo-title {
  font-family: "Cinzel", serif;
  font-size: 1.45rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gs-navy);
  line-height: 1.1;
}

.gs-logo-title-gold {
  color: var(--gs-gold);
}

.gs-logo-subtitle-small {
  font-size: 0.7rem;
  color: var(--gs-ink-soft);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 2px;
}

.gs-header-cta {
  font-size: 1rem;
  padding: 12px 32px;
  border-radius: 999px;
  border: none;
  color: #fff;
  background: radial-gradient(circle at top left, rgba(197,160,89,0.5), transparent 45%), var(--gs-navy);
  font-weight: 600;
  box-shadow: 0 16px 40px rgba(0,33,71,0.55);
  transition: all 0.18s ease;
  animation: gs-pulse 2.4s ease-in-out infinite;
  cursor: pointer;
}

.gs-header-cta:hover {
  transform: translateY(-1px);
  filter: brightness(1.08);
}

/* ============================================
   TICKER BAR
   ============================================ */
.gs-ticker-wrap {
  position: sticky;
  top: 101px;
  z-index: 90;
  background: linear-gradient(90deg, var(--gs-navy-dark) 0%, #003570 40%, var(--gs-navy-dark) 100%);
  overflow: hidden;
  border-bottom: 2px solid var(--gs-gold);
  border-top: 1px solid rgba(197,160,89,0.3);
}

.gs-ticker-track {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  animation: gs-ticker 22s linear infinite;
  padding: 10px 0;
}

.gs-ticker-track span {
  font-family: "Cinzel", serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--gs-gold-light);
  padding: 0 20px;
  text-transform: uppercase;
}

.gs-ticker-dot {
  color: var(--gs-gold) !important;
  padding: 0 4px !important;
  font-size: 0.7rem !important;
  letter-spacing: 0 !important;
}

@keyframes gs-ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   HERO
   ============================================ */
.gs-hero {
  padding-top: 96px;
  padding-bottom: 100px;
  position: relative;
  overflow: hidden;
  background-image: url("background_us.jpg");
  background-size: cover;
  background-position: 22% center;
  background-repeat: no-repeat;
}

.gs-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 18, 55, 0.78) 0%,
    rgba(0, 33, 71, 0.65) 60%,
    rgba(0, 10, 30, 0.72) 100%
  );
  pointer-events: none;
}

.gs-hero-centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.gs-hero-centered h1 {
  color: #fff;
}

.gs-hero-centered .gs-kicker {
  margin-bottom: 14px;
  color: rgba(255,255,255,0.75);
}

.gs-hero-centered .gs-hero-subtitle {
  margin: 16px auto 0;
  color: rgba(255,255,255,0.85);
}

.gs-hero-centered .gs-hero-actions {
  justify-content: center;
}

.gs-hero-centered .gs-btn-secondary {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}

.gs-hero-centered .gs-btn-secondary:hover {
  background: rgba(255,255,255,0.22);
}

.gs-kicker {
  font-size: 0.88rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gs-ink-soft);
  margin-bottom: 14px;
}

.gs-hero-subtitle {
  font-size: 1.15rem;
  max-width: 520px;
  margin-top: 16px;
}

.gs-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
}

/* Buttons */
.gs-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 26px;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.gs-btn-primary {
  background: radial-gradient(circle at top left, rgba(197,160,89,0.3), transparent 45%), var(--gs-navy);
  color: #fff;
  box-shadow: 0 18px 48px rgba(0,33,71,0.42);
  letter-spacing: 0.02em;
}

.gs-btn-primary:hover {
  box-shadow: 0 22px 58px rgba(0,33,71,0.54);
  transform: translateY(-1px);
}

.gs-btn-secondary {
  background: #fff;
  color: var(--gs-navy);
  border: 1.5px solid rgba(0,33,71,0.22);
}

.gs-btn-secondary:hover {
  background: #f0f4ff;
  box-shadow: 0 10px 28px rgba(0,33,71,0.16);
}

.gs-btn-large {
  padding: 17px 44px;
  font-size: 1.1rem;
}

/* Mentor card */
.gs-hero-visual {
  display: flex;
  justify-content: flex-end;
}

.gs-mentor-card {
  width: 100%;
  max-width: 360px;
  background: #fff;
  border-radius: 24px;
  box-shadow: var(--gs-shadow-soft);
  padding: 18px 18px 16px;
  border: 1px solid rgba(0,8,32,0.06);
}

.gs-mentor-photo-row {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
}

.gs-mentor-photo-row.single { justify-content: center; }

.gs-mentor-photo {
  flex: 1;
  border-radius: 16px;
  overflow: hidden;
  background: #c9d1e0;
  max-height: 260px;
}

.gs-mentor-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.gs-mentor-content {
  border-radius: 16px;
  background: #f5f7fd;
  padding: 14px 14px 12px;
}

.gs-mentor-label {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gs-ink-soft);
  margin-bottom: 3px;
}

.gs-mentor-name {
  font-family: "Cinzel", serif;
  font-size: 1.15rem;
  color: var(--gs-navy);
  font-weight: 700;
  margin: 0 0 12px;
  line-height: 1.2;
}

.gs-mentor-stats {
  display: flex;
  gap: 8px;
  margin-bottom: 4px;
}

.gs-mentor-stat {
  flex: 1;
  background: var(--gs-navy);
  border-radius: 10px;
  padding: 8px 6px 7px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.gs-mentor-stat-val {
  font-family: "Cinzel", serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gs-gold);
  line-height: 1;
}

.gs-mentor-stat-key {
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}

.gs-mentor-text {
  font-size: 0.84rem;
  margin-bottom: 10px;
  color: var(--gs-ink-soft);
}

.gs-mentor-wins {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}

.gs-mentor-wins span {
  font-size: 0.78rem;
  padding: 5px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gs-navy) 0%, #003570 100%);
  border: 1px solid rgba(197,160,89,0.5);
  color: var(--gs-gold-light);
  font-weight: 600;
  font-family: "Cinzel", serif;
  letter-spacing: 0.06em;
}

/* ============================================
   TRUTH SECTION
   ============================================ */
.gs-truth-headline {
  text-align: center;
  margin-bottom: 40px;
}

.gs-compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 820px;
  margin: 0 auto;
}

.gs-compare-col {
  border-radius: 22px;
  padding: 24px 22px 20px;
  border: 1.5px solid transparent;
}

.gs-compare-no {
  background: rgba(255,255,255,0.85);
  border-color: rgba(200, 50, 50, 0.2);
}

.gs-compare-yes {
  background: rgba(0, 33, 71, 0.04);
  border-color: rgba(197,160,89,0.5);
  position: relative;
}

.gs-compare-col-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  font-family: "Cinzel", serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--gs-navy);
}

.gs-compare-icon {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(200, 50, 50, 0.12);
  color: #c83232;
  font-size: 1rem;
  font-weight: 800;
  flex-shrink: 0;
}

.gs-compare-icon-yes {
  background: rgba(197,160,89,0.18);
  color: #8a6b20;
}

.gs-compare-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.gs-compare-col li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.98rem;
  color: var(--gs-ink-soft);
  padding: 8px 12px;
  border-radius: 10px;
  background: rgba(255,255,255,0.7);
}

.gs-compare-no li { opacity: 0.85; }

.gs-icon-no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  font-size: 1rem;
  font-weight: 700;
  color: #b03030;
  flex-shrink: 0;
  line-height: 1;
  font-style: normal;
}

.gs-icon-yes {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  font-size: 0.6rem;
  color: var(--gs-gold);
  flex-shrink: 0;
  line-height: 1;
}

.gs-compare-yes li {
  font-weight: 500;
  color: var(--gs-ink);
  background: rgba(255,255,255,0.9);
}

.gs-compare-cta-note {
  text-align: center;
  margin-top: 40px;
}

.gs-compare-cta-banner {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  background: linear-gradient(135deg, var(--gs-navy) 0%, #003570 100%);
  border-radius: 20px;
  padding: 28px 40px;
  box-shadow: 0 20px 50px rgba(0,33,71,0.28);
  max-width: 780px;
  width: 100%;
}

.gs-compare-cta-ornament {
  font-size: 1.4rem;
  color: var(--gs-gold);
  flex-shrink: 0;
  opacity: 0.8;
}

.gs-compare-cta-text {
  font-family: "Cinzel", serif;
  font-size: clamp(1.1rem, 2.2vw, 1.45rem);
  color: #fff;
  line-height: 1.5;
  margin: 0;
  text-align: center;
}

.gs-compare-cta-text em {
  color: var(--gs-gold-light);
  font-style: normal;
  font-weight: 700;
}

.gs-compare-cta-text strong {
  color: var(--gs-gold);
  font-weight: 700;
}

/* ============================================
   12-WEEK DARK SECTION
   ============================================ */
.gs-section-dark {
  background: linear-gradient(135deg, var(--gs-navy-dark) 0%, #002f5e 60%, #001a3a 100%);
  padding: 88px 0;
  position: relative;
  overflow: hidden;
}

.gs-section-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, rgba(197,160,89,0.15), transparent 60%);
  pointer-events: none;
}

.gs-program-header {
  text-align: center;
  margin-bottom: 52px;
  position: relative;
  z-index: 1;
}

.gs-program-kicker {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gs-gold);
  margin-bottom: 10px;
}

.gs-program-title {
  font-family: "Cinzel", serif;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  color: #fff;
  margin-bottom: 10px;
}

.gs-program-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.86rem;
}

.gs-weeks-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  position: relative;
  z-index: 1;
}

.gs-week-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(197,160,89,0.25);
  border-radius: 20px;
  padding: 22px 20px 18px;
  backdrop-filter: blur(6px);
  transition: background 0.2s, border-color 0.2s;
}

.gs-week-card:hover {
  background: rgba(197,160,89,0.07);
  border-color: rgba(197,160,89,0.55);
}

.gs-week-num {
  font-family: "Cinzel", serif;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1;
  opacity: 1;
}

.gs-week-tag {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 999px;
  border: 1px solid rgba(197,160,89,0.6);
  color: var(--gs-gold-light);
  margin-bottom: 12px;
}

.gs-week-card h3 {
  font-size: 1.08rem;
  color: #fff;
  margin-bottom: 12px;
}

.gs-week-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.gs-week-card li {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.62);
  padding-left: 4px;
}

.gs-week-hi {
  color: var(--gs-gold-light);
  font-weight: 600;
  font-size: 0.93rem;
}

.gs-program-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
  padding: 16px 28px;
  border-radius: 16px;
  background: rgba(197,160,89,0.12);
  border: 1px solid rgba(197,160,89,0.4);
  font-size: 1rem;
  color: var(--gs-gold-light);
  font-weight: 500;
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

/* ============================================
   APPLICATION FORM
   ============================================ */
.gs-cta-panel {
  border-radius: 28px;
  border: 1px solid rgba(0,33,71,0.1);
  background: radial-gradient(circle at top left, rgba(197,160,89,0.1), transparent 50%), #fff;
  padding: 36px 30px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 36px;
  box-shadow: var(--gs-shadow-soft);
}

.gs-cta-copy h2 { margin-bottom: 12px; }
.gs-cta-copy p { font-size: 1rem; }

.gs-apply-badges {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 20px;
}

.gs-apply-badges span {
  font-size: 0.9rem;
  color: var(--gs-navy);
  font-weight: 500;
}

.gs-cta-action {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.gs-apply-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 16px;
  width: 100%;
}

.gs-apply-form label {
  display: flex;
  flex-direction: column;
  font-size: 0.86rem;
  color: var(--gs-ink-soft);
}

.gs-apply-form label span {
  margin-bottom: 4px;
  font-weight: 500;
  color: var(--gs-ink);
}

.gs-apply-form input {
  padding: 9px 12px;
  border-radius: 10px;
  border: 1.5px solid var(--gs-border-soft);
  font-size: 0.92rem;
  font-family: inherit;
  transition: border-color 0.15s;
}

.gs-apply-form input:focus {
  outline: none;
  border-color: var(--gs-navy);
  box-shadow: 0 0 0 2px rgba(0,33,71,0.1);
}

.gs-apply-form button { grid-column: 1 / -1; margin-top: 4px; }

.gs-cta-footnote {
  font-size: 0.84rem;
  color: var(--gs-ink-soft);
  margin: 0;
}

/* ============================================
   WEBINAR
   ============================================ */
.gs-webinar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.gs-webinar h2 { margin-bottom: 8px; }
.gs-webinar p { max-width: 500px; margin: 0; }

/* ============================================
   CLOSE
   ============================================ */
.gs-section-close {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(197,160,89,0.14), transparent 55%),
    radial-gradient(ellipse at 20% 100%, rgba(0,33,71,0.07), transparent 50%),
    var(--gs-paper);
}

.gs-close {
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}

.gs-close-kicker {
  font-family: "Cinzel", serif;
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gs-gold);
  margin-bottom: 18px;
}

.gs-close-h {
  font-size: clamp(2.4rem, 4.5vw, 3.8rem) !important;
  margin-bottom: 24px;
  line-height: 1.1;
}

.gs-close-line1 {
  font-family: "Cinzel", serif;
  font-size: clamp(1.3rem, 2.4vw, 1.9rem);
  color: var(--gs-ink);
  margin-bottom: 20px;
  line-height: 1.4;
}

.gs-close-line2 {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: var(--gs-ink-soft);
  margin-bottom: 20px;
  line-height: 1.6;
}

.gs-close-line2 em {
  font-style: italic;
  color: var(--gs-ink);
  font-weight: 600;
}

.gs-close-programs {
  font-family: "Cinzel", serif;
  font-size: clamp(0.9rem, 1.6vw, 1.15rem);
  letter-spacing: 0.12em;
  color: var(--gs-navy);
  font-weight: 700;
}

.gs-close-line3 {
  font-size: clamp(1.2rem, 2.2vw, 1.65rem);
  color: var(--gs-ink-soft);
  margin-bottom: 8px;
  line-height: 1.5;
}

.gs-close-final {
  font-family: "Cinzel", serif;
  font-size: clamp(1.5rem, 2.8vw, 2.1rem) !important;
  display: block;
  margin-top: 4px;
}

.gs-close-btn { margin-top: 36px; }

/* ============================================
   CONTACT SECTION
   ============================================ */
.gs-contact-header {
  text-align: center;
  margin-bottom: 44px;
  position: relative;
  z-index: 1;
}

.gs-contact-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  margin: 0;
}

.gs-contact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  position: relative;
  z-index: 1;
}

.gs-contact-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(197,160,89,0.2);
  border-radius: 20px;
  padding: 28px 20px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, transform 0.18s;
  cursor: pointer;
}

.gs-contact-card:hover {
  background: rgba(197,160,89,0.1);
  border-color: rgba(197,160,89,0.55);
  transform: translateY(-3px);
}

.gs-contact-card-gold {
  border-color: rgba(197,160,89,0.5);
  background: rgba(197,160,89,0.07);
}

.gs-contact-icon {
  font-size: 1.8rem;
  margin-bottom: 6px;
  line-height: 1;
  font-style: normal;
}

.gs-contact-label {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin: 0;
}

.gs-contact-val {
  font-family: "Cinzel", serif;
  font-size: 0.92rem;
  color: #fff;
  font-weight: 600;
  margin: 0;
  word-break: break-all;
}

.gs-contact-badge {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.7rem;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--gs-gold);
  color: var(--gs-navy);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .gs-contact-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 540px) {
  .gs-contact-grid { grid-template-columns: 1fr; }
}

/* ============================================
   NAVBAR PARTNER
   ============================================ */
.gs-nav-divider {
  width: 1px;
  height: 44px;
  background: rgba(0,33,71,0.15);
  margin: 0 14px;
  flex-shrink: 0;
}

.gs-partner-lockup {
  display: flex;
  align-items: center;
  gap: 10px;
}

.gs-partner-mark {
  width: 52px;
  height: 52px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(0,33,71,0.12);
  flex-shrink: 0;
}

.gs-partner-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.gs-partner-text {
  display: flex;
  flex-direction: column;
}

.gs-partner-label {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gs-ink-soft);
  line-height: 1;
  margin-bottom: 2px;
}

.gs-partner-name {
  font-family: "Cinzel", serif;
  font-size: 0.95rem;
  color: var(--gs-navy);
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1;
}

/* ============================================
   PARTNERSHIP SECTION
   ============================================ */
.gs-partner-section {
  background: linear-gradient(135deg, var(--gs-navy-dark) 0%, #002f5e 60%, #001a3a 100%);
  padding: 52px 0;
  border-top: 1px solid rgba(197,160,89,0.2);
  border-bottom: 1px solid rgba(197,160,89,0.2);
}

.gs-partner-inner {
  display: flex;
  align-items: center;
  gap: 52px;
}

.gs-partner-logos {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.gs-partner-logo-wrap {
  width: 110px;
  height: 110px;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(197,160,89,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.gs-partner-logo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.gs-partner-logo-bs { background: rgba(255,255,255,0.1); }

.gs-partner-x {
  font-size: 1.6rem;
  color: var(--gs-gold);
  font-weight: 700;
  opacity: 0.7;
}

.gs-partner-copy { flex: 1; }

.gs-partner-tag {
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gs-gold);
  margin-bottom: 8px;
}

.gs-partner-title {
  font-family: "Cinzel", serif;
  font-size: clamp(1.1rem, 2vw, 1.55rem);
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.3;
}

.gs-partner-desc {
  font-size: 0.93rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin: 0;
  max-width: 540px;
}

@media (max-width: 700px) {
  .gs-partner-inner { flex-direction: column; gap: 28px; text-align: center; }
  .gs-partner-logos { justify-content: center; }
  .gs-partner-desc { max-width: 100%; }
  .gs-nav-divider { display: none; }
  .gs-partner-lockup { display: none; }
}

/* ============================================
   FOOTER
   ============================================ */
.gs-footer {
  padding: 28px 0 32px;
  border-top: 1px solid rgba(0,33,71,0.08);
}

.gs-footer-inner { text-align: center; }

.gs-footer-brand {
  font-family: "Cinzel", serif;
  font-size: 1rem;
  color: var(--gs-navy);
  margin-bottom: 4px;
}

.gs-footer-meta {
  font-size: 0.86rem;
  color: var(--gs-ink-soft);
  margin-bottom: 4px;
}

.gs-footer a { color: var(--gs-navy); text-decoration: underline; text-underline-offset: 3px; }
.gs-footer a:hover { color: var(--gs-gold); }

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes gs-pulse {
  0%   { box-shadow: 0 16px 40px rgba(0,33,71,0.55); transform: translateY(0); }
  50%  { box-shadow: 0 22px 54px rgba(0,33,71,0.75); transform: translateY(-2px); }
  100% { box-shadow: 0 16px 40px rgba(0,33,71,0.55); transform: translateY(0); }
}

@keyframes gs-shake {
  0%, 100% { transform: translateX(0); }
  10% { transform: translateX(-2px); }
  20% { transform: translateX(2px); }
  30% { transform: translateX(-2px); }
  40% { transform: translateX(2px); }
}

.gs-btn-shake { animation: gs-shake 2.2s ease-in-out infinite; }

/* ============================================
   CAROUSEL — Full Width Sliding
   ============================================ */

.gs-carousel-header {
  text-align: center;
  padding: 60px 24px 0;
}

.gs-car-kicker {
  font-size: 0.75rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gs-gold);
  margin-bottom: 10px;
}

.gs-car-title {
  font-family: "Cinzel", serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: #fff;
  margin-bottom: 0;
}

/* Pills */
.gs-car-pills {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  padding: 28px 24px 0;
}

.gs-car-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 22px;
  border-radius: 999px;
  border: 1.5px solid rgba(197,160,89,0.3);
  background: rgba(255,255,255,0.05);
  cursor: pointer;
  font-family: "Cinzel", serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.08em;
  transition: all 0.22s ease;
}

.gs-car-pill img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  border-radius: 4px;
}

.gs-pill-b {
  width: 24px;
  height: 24px;
  background: var(--gs-gold);
  color: var(--gs-navy);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.gs-car-pill:hover {
  border-color: rgba(197,160,89,0.7);
  color: var(--gs-gold-light);
  background: rgba(197,160,89,0.08);
}

.gs-car-pill.active {
  background: var(--gs-gold);
  border-color: var(--gs-gold);
  color: var(--gs-navy);
  box-shadow: 0 6px 24px rgba(197,160,89,0.4);
}

.gs-car-pill.active img,
.gs-car-pill.active .gs-pill-b { filter: none; }

/* Viewport + Track */
.gs-car-viewport {
  position: relative;
  overflow: hidden;
  margin-top: 28px;
}

.gs-car-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
  will-change: transform;
  width: 100%;
}

.gs-car-slide {
  flex: 0 0 100%;
  width: 100%;
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  box-sizing: border-box;
}

/* Background image per slide */
.gs-car-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.12;
  filter: blur(2px) saturate(0.6);
  transform: scale(1.05);
}

.gs-car-bg-babson {
  background: radial-gradient(ellipse at center, rgba(197,160,89,0.3), transparent 70%);
  opacity: 0.5;
  filter: none;
}

.gs-car-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(0,18,48,0.96) 0%,
    rgba(0,33,71,0.88) 55%,
    rgba(0,18,48,0.75) 100%
  );
}

/* Slide content layout */
.gs-car-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 52px;
  align-items: center;
  padding: 56px 72px 56px 60px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Left column */
.gs-car-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.gs-car-logo {
  width: 160px;
  height: 130px;
  object-fit: contain;
  border-radius: 16px;
  background: rgba(255,255,255,0.08);
  padding: 12px;
  border: 1px solid rgba(197,160,89,0.25);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
  transition: transform 0.3s ease;
}

.gs-car-logo:hover { transform: scale(1.04); }

.gs-car-logo-b {
  width: 130px;
  height: 130px;
  background: linear-gradient(135deg, rgba(197,160,89,0.2), rgba(197,160,89,0.05));
  border: 2px solid rgba(197,160,89,0.5);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Cinzel", serif;
  font-size: 4rem;
  font-weight: 700;
  color: var(--gs-gold);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

.gs-car-badge {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  border: 1px solid rgba(197,160,89,0.5);
  color: var(--gs-gold-light);
  font-weight: 600;
  text-align: center;
}

.gs-car-accept {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  text-align: center;
}

.gs-car-accept strong {
  color: var(--gs-gold);
  font-size: 0.9rem;
}

/* Right column */
.gs-car-label {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gs-gold);
  margin-bottom: 8px;
}

.gs-car-name {
  font-family: "Cinzel", serif;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  color: #fff;
  line-height: 1.25;
  margin-bottom: 14px;
}

.gs-car-name em {
  font-style: normal;
  color: var(--gs-gold);
}

.gs-car-desc {
  font-size: 0.97rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 580px;
}

.gs-car-desc strong {
  color: rgba(255,255,255,0.9);
  font-weight: 600;
}

.gs-car-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.gs-car-col-head {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gs-gold);
  font-weight: 700;
  margin-bottom: 10px;
}

.gs-car-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.gs-car-col li {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.gs-car-col li::before {
  content: "◆";
  font-size: 0.4rem;
  color: var(--gs-gold);
  flex-shrink: 0;
  margin-top: 4px;
}

.gs-car-col li strong {
  color: #fff;
  font-weight: 600;
}

/* Arrows — positioned relative to section */
.gs-carousel-section {
  padding: 0;
  background: var(--gs-navy-dark);
  position: relative;
}

.gs-car-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1.5px solid rgba(197,160,89,0.5);
  background: rgba(0,18,48,0.85);
  color: var(--gs-gold-light);
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  transition: all 0.22s ease;
  line-height: 1;
}

.gs-car-arrow:hover {
  background: var(--gs-gold);
  color: var(--gs-navy);
  border-color: var(--gs-gold);
  box-shadow: 0 8px 28px rgba(197,160,89,0.5);
  transform: translateY(-50%) scale(1.1);
}

.gs-car-arrow-left  { left: 18px; }
.gs-car-arrow-right { right: 18px; }

/* Slide content entrance animation */
@keyframes gs-slide-in {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}

.gs-car-track.is-animating .gs-car-content {
  animation: gs-slide-in 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

/* Dots */
.gs-car-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 22px 0 36px;
}

.gs-car-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,0.2);
  cursor: pointer;
  transition: all 0.25s ease;
  border: none;
}

.gs-car-dot.active {
  background: var(--gs-gold);
  width: 28px;
}

/* ============================================
   POST-COURSE SECTION
   ============================================ */
.gs-post-course {
  margin-top: 48px;
  background: rgba(197,160,89,0.08);
  border: 1px solid rgba(197,160,89,0.35);
  border-radius: 24px;
  padding: 32px 28px 28px;
  position: relative;
  z-index: 1;
}

.gs-post-course-header {
  margin-bottom: 24px;
}

.gs-post-course-header p {
  color: rgba(255,255,255,0.6);
  font-size: 0.96rem;
  margin: 8px 0 0;
}

.gs-post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 24px;
}

.gs-post-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: rgba(255,255,255,0.04);
  border-radius: 14px;
  padding: 14px 14px 12px;
  border: 1px solid rgba(197,160,89,0.15);
}

.gs-post-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.gs-post-title {
  font-family: "Cinzel", serif;
  font-size: 0.84rem;
  color: var(--gs-gold-light);
  margin: 0 0 4px;
  font-weight: 600;
}

.gs-post-desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  margin: 0;
  line-height: 1.5;
}

.gs-post-close {
  text-align: center;
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  border-top: 1px solid rgba(197,160,89,0.2);
  padding-top: 20px;
  line-height: 1.6;
}

/* ============================================
   RESPONSIVE — TABLET (≤900px)
   ============================================ */
@media (max-width: 900px) {
  .gs-compare-grid { grid-template-columns: 1fr; }
  .gs-weeks-grid { grid-template-columns: repeat(2, 1fr); }
  .gs-cta-panel { grid-template-columns: 1fr; }
  .gs-apply-form { grid-template-columns: 1fr; }
  .gs-webinar { flex-direction: column; align-items: flex-start; gap: 20px; }
  .gs-car-content { grid-template-columns: 1fr; gap: 28px; padding: 40px 32px; }
  .gs-car-left { flex-direction: row; align-items: center; justify-content: flex-start; gap: 20px; }
  .gs-car-logo { width: 80px; height: 70px; }
  .gs-car-logo-b { width: 70px; height: 70px; font-size: 2.5rem; }
  .gs-post-grid { grid-template-columns: repeat(2, 1fr); }
  .gs-contact-grid { grid-template-columns: repeat(2, 1fr); }
  /* Partner section stacks */
  .gs-partner-inner { flex-direction: column; gap: 32px; text-align: center; }
  .gs-partner-logos { justify-content: center; }
}

/* ============================================
   RESPONSIVE — MOBILE (≤640px)
   ============================================ */
@media (max-width: 640px) {
  /* Base */
  body { font-size: 16px; }
  .gs-section { padding: 48px 0; }
  .gs-container { padding: 0 16px; }

  h1 { font-size: clamp(1.75rem, 7.5vw, 2.2rem); line-height: 1.18; }
  h2 { font-size: clamp(1.4rem, 6vw, 1.9rem); }
  h3 { font-size: 1.05rem; }

  /* Hero — shift focus to Statue of Liberty */
  .gs-hero {
    padding-top: 64px;
    padding-bottom: 72px;
    background-position: 18% center;
  }

  /* Header */
  .gs-header-inner { padding: 10px 16px; }
  .gs-logo-mark { width: 44px; height: 44px; border-radius: 7px; }
  .gs-logo-title { font-size: 1rem; }
  .gs-logo-subtitle-small { display: none; }
  .gs-nav-divider { display: none; }
  .gs-partner-lockup { display: none; }
  .gs-header-cta { padding: 10px 16px; font-size: 0.82rem; white-space: nowrap; }

  /* Ticker */
  .gs-ticker-wrap { top: 66px; }
  .gs-ticker-track span { font-size: 0.75rem; padding: 0 12px; }

  /* Hero buttons */
  .gs-hero-actions { flex-direction: column; align-items: stretch; gap: 12px; width: 100%; }
  .gs-btn-large { padding: 15px 28px; font-size: 1rem; }
  .gs-hero-actions .gs-btn { width: 100%; text-align: center; }

  /* Mentors */
  .gs-mentors-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .gs-mentor-tile-photo { height: 180px; }
  .gs-mentor-tile-body { padding: 12px 12px 14px; }
  .gs-mentor-tile-name { font-size: 0.9rem; }
  .gs-mentor-tile-tags span { font-size: 0.62rem; padding: 3px 8px; }
  .gs-mentor-tile-bio { font-size: 0.78rem; }

  /* Carousel pills — horizontal scroll */
  .gs-car-pills {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 16px 16px 0;
    gap: 8px;
    scrollbar-width: none;
  }
  .gs-car-pills::-webkit-scrollbar { display: none; }
  .gs-car-pill { flex-shrink: 0; padding: 7px 14px; font-size: 0.75rem; }
  .gs-car-content { padding: 28px 16px; }
  .gs-car-cols { grid-template-columns: 1fr; }
  .gs-car-name { font-size: 1.2rem; }
  .gs-car-arrow { width: 38px; height: 38px; font-size: 1rem; }
  .gs-car-arrow-left { left: 6px; }
  .gs-car-arrow-right { right: 6px; }
  .gs-car-slide { min-height: auto; }

  /* 12-week grid */
  .gs-weeks-grid { grid-template-columns: 1fr; }
  .gs-post-grid { grid-template-columns: 1fr; }
  .gs-week-card { padding: 20px 18px; }

  /* Compare section */
  .gs-compare-grid { grid-template-columns: 1fr; }
  .gs-truth-headline { font-size: clamp(1.3rem, 5.5vw, 1.7rem); }

  /* FAQ */
  .gs-faq-q { font-size: 0.88rem; padding: 16px 16px; gap: 10px; }
  .gs-faq-a { padding: 14px 16px 16px 56px; font-size: 0.88rem; }
  .gs-faq-icon { width: 28px; height: 28px; font-size: 0.85rem; }

  /* Apply form */
  .gs-cta-panel { gap: 32px; }
  .gs-apply-form { gap: 14px; }
  .gs-apply-form label span { font-size: 0.88rem; }
  .gs-apply-badges { flex-direction: column; gap: 8px; }
  .gs-apply-badges span { font-size: 0.84rem; }

  /* Contact */
  .gs-contact-grid { grid-template-columns: 1fr; gap: 12px; }
  .gs-contact-card { padding: 18px 20px; }
  .gs-contact-val { font-size: 0.9rem; word-break: break-all; }

  /* Webinar */
  .gs-webinar { padding: 28px 0; }
  .gs-webinar h2 { font-size: 1.5rem; }

  /* Close section */
  .gs-close-h { font-size: clamp(1.6rem, 6vw, 2rem); }
  .gs-close-programs { font-size: 0.85rem; letter-spacing: 0.06em; }

  /* Partner section */
  .gs-partner-inner { flex-direction: column; gap: 24px; text-align: center; }
  .gs-partner-logos { justify-content: center; }
  .gs-partner-logo-wrap { width: 80px; height: 80px; }

  /* Footer */
  .gs-footer-inner { text-align: center; }
  .gs-footer-meta { font-size: 0.82rem; }

  /* FAB */
  .gs-fab { bottom: 18px; right: 14px; padding: 12px 16px 12px 14px; font-size: 0.85rem; }
}

/* Very small phones */
@media (max-width: 380px) {
  .gs-mentors-grid { grid-template-columns: 1fr; }
  h1 { font-size: 1.6rem; }
}
/* ============================================
   MENTORS SECTION
   ============================================ */
.gs-mentors-section {
  background: linear-gradient(135deg, #f8f9fc 0%, #eef1f8 100%);
  border-bottom: 1px solid var(--gs-border-soft);
}

.gs-mentors-header {
  text-align: center;
  margin-bottom: 48px;
}

.gs-mentors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.gs-mentor-tile {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,33,71,0.1);
  border: 1px solid rgba(0,33,71,0.07);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.gs-mentor-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 48px rgba(0,33,71,0.16);
}

.gs-mentor-tile-photo {
  width: 100%;
  height: 260px;
  overflow: hidden;
  background: #c9d1e0;
}

.gs-mentor-tile-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.4s ease;
}

.gs-mentor-tile:hover .gs-mentor-tile-photo img {
  transform: scale(1.04);
}

.gs-mentor-tile-body {
  padding: 20px 20px 22px;
}

.gs-mentor-tile-role {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gs-gold);
  font-weight: 600;
  margin-bottom: 4px;
}

.gs-mentor-tile-name {
  font-family: "Cinzel", serif;
  font-size: 1.1rem;
  color: var(--gs-navy);
  font-weight: 700;
  margin: 0 0 12px;
  line-height: 1.2;
}

.gs-mentor-tile-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}

.gs-mentor-tile-tags span {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--gs-navy);
  color: var(--gs-gold-light);
}

.gs-mentor-tile-bio {
  font-size: 0.88rem;
  color: var(--gs-ink-soft);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 900px) {
  .gs-mentors-grid { grid-template-columns: repeat(2, 1fr); max-width: 100%; margin: 0; }
}

/* ============================================
   FAQ SECTION
   ============================================ */
.gs-faq-section {
  background: var(--gs-paper);
}

.gs-faq-header {
  text-align: center;
  margin-bottom: 48px;
}

.gs-faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.gs-faq-item {
  border-radius: 16px;
  border: 1.5px solid var(--gs-border-soft);
  background: #fff;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0,33,71,0.06);
}

.gs-faq-q {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 22px;
  font-family: "Cinzel", serif;
  font-size: 1rem;
  color: var(--gs-navy);
  font-weight: 600;
  line-height: 1.35;
}

.gs-faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gs-navy);
  color: var(--gs-gold);
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: "Cinzel", serif;
}

.gs-faq-a {
  padding: 0 22px 20px 68px;
  font-size: 0.96rem;
  color: var(--gs-ink-soft);
  line-height: 1.7;
  border-top: 1px solid var(--gs-border-soft);
  padding-top: 16px;
  margin-top: 0;
}

/* ============================================
   FLOATING ACTION BUTTON
   ============================================ */
.gs-fab {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px 14px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #0088cc, #006699);
  color: #fff;
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  box-shadow: 0 8px 32px rgba(0,136,204,0.55);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: gs-fab-bounce 3s ease-in-out infinite;
}

.gs-fab:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 14px 40px rgba(0,136,204,0.65);
}

.gs-fab-icon {
  font-size: 1.15rem;
  line-height: 1;
}

.gs-fab-label {
  font-family: "Inter", sans-serif;
}

@keyframes gs-fab-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

@media (max-width: 640px) {
  .gs-fab { bottom: 20px; right: 16px; padding: 12px 18px 12px 14px; font-size: 0.88rem; }
}
