/* ==========================================================================
   RollNo9 — friendly, kid-first theme for the public marketing front-end.
   Loaded last in front.layouts.app1 so it overrides new_home/*.css.
   Bright, rounded, playful. Palette from the RollNo9 rainbow logo.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@500;600;700;800&family=Nunito:wght@400;500;600;700;800&display=swap');

:root {
  --gm-bg: #fffdf9;            /* warm white */
  --gm-bg-alt: #fff3e0;        /* soft cream */
  --gm-bg-sky: #eaf6ff;        /* pale sky blue */
  --gm-panel: #ffffff;
  --gm-panel-strong: #ffffff;
  --gm-border: rgba(45, 42, 57, 0.10);

  /* brand rainbow */
  --gm-yellow: #fcb712;
  --gm-orange: #f37022;
  --gm-pink: #cd004d;
  --gm-green: #0cb14b;
  --gm-blue: #0089d1;

  /* semantic (kept old var names so all rules below resolve) */
  --gm-purple: #f37022;        /* primary = orange */
  --gm-purple-bright: #cd004d; /* accent = pink */
  --gm-cyan: #0089d1;          /* link/accent = blue */

  --gm-text: #2e2a39;          /* dark slate — readable */
  --gm-text-muted: #6e6980;

  --gm-shadow: 0 10px 26px rgba(45, 42, 57, 0.10);
  --gm-shadow-warm: 0 12px 28px rgba(243, 112, 34, 0.22);
  --gm-shadow-blue: 0 12px 28px rgba(0, 137, 209, 0.22);
  --gm-glow-purple: var(--gm-shadow-warm);
  --gm-glow-cyan: var(--gm-shadow-blue);

  --gm-gradient: linear-gradient(90deg, var(--gm-orange) 0%, var(--gm-pink) 100%);
  --gm-rainbow: linear-gradient(90deg, #fcb712 0%, #f37022 28%, #cd004d 52%, #0cb14b 76%, #0089d1 100%);
}

/* ---------- base ---------- */
body {
  background-color: var(--gm-bg);
  color: var(--gm-text);
  font-family: "Nunito", "rubik", sans-serif;
}

::selection {
  background: var(--gm-yellow);
  color: var(--gm-text);
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
::-webkit-scrollbar-track {
  background: var(--gm-bg-alt);
}
::-webkit-scrollbar-thumb {
  background: var(--gm-rainbow);
  border-radius: 10px;
}

h1, h2, h3, h4, h5,
.navbar-brand,
.btn,
.pricing-card .card-title,
.pricing-card .price {
  font-family: "Baloo 2", "rubik", sans-serif;
}

h1, .fs-60 {
  background: var(--gm-rainbow);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 0.3px;
}

h2 {
  color: var(--gm-text);
  letter-spacing: normal;
  text-transform: none;
  font-weight: 800;
}

.text-black {
  color: var(--gm-text) !important;
}

.text-gray-100 {
  color: var(--gm-text-muted) !important;
}

.text-primary {
  color: var(--gm-orange) !important;
}

.text-secondary {
  color: var(--gm-text-muted) !important;
}

.bg-light {
  background-color: var(--gm-bg-alt) !important;
}

a {
  color: var(--gm-blue);
}

.section-heading h2::after {
  background: var(--gm-rainbow) !important;
  box-shadow: none;
  height: 4px;
  border-radius: 4px;
}

/* ---------- header / nav ---------- */
.header {
  background: linear-gradient(180deg, rgba(255, 253, 249, 0.92) 0%, rgba(255, 253, 249, 0) 100%);
  backdrop-filter: blur(6px);
}

.navbar-nav {
  background-color: var(--gm-panel) !important;
  border: 1px solid var(--gm-border);
  box-shadow: var(--gm-shadow) !important;
  border-radius: 999px;
}

.header .navbar .navbar-nav .nav-link,
.header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
  color: var(--gm-text) !important;
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  letter-spacing: normal;
  transition: color 0.2s ease;
}
.header .navbar .navbar-nav .nav-link:hover,
.header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link:hover,
.header .navbar .navbar-nav .nav-link.active {
  color: var(--gm-orange) !important;
  text-shadow: none;
}

@media (max-width: 991px) {
  .header .navbar .navbar-collapse {
    background: var(--gm-panel) !important;
    border: 1px solid var(--gm-border);
    box-shadow: var(--gm-shadow);
    border-radius: 18px;
  }
  .header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
    color: var(--gm-text) !important;
  }
}

.header .dropdown .dropdown-toggle {
  color: var(--gm-text) !important;
}
.header .dropdown .dropdown-menu {
  background: var(--gm-panel);
  border: 1px solid var(--gm-border);
  box-shadow: var(--gm-shadow);
  border-radius: 14px;
}
.header .dropdown .dropdown-menu li .nav-link {
  color: var(--gm-text) !important;
}
.header .dropdown .dropdown-menu li .nav-link:hover {
  color: var(--gm-orange) !important;
}

/* ---------- buttons ---------- */
.btn {
  font-family: "Baloo 2", sans-serif;
  font-weight: 700;
  letter-spacing: normal;
  text-transform: none;
  font-size: 0.95rem;
  border-radius: 999px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--gm-gradient) !important;
  color: #fff !important;
  border: 2px solid transparent !important;
  box-shadow: var(--gm-shadow-warm);
}
.btn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn-primary.active {
  background: var(--gm-gradient) !important;
  color: #fff !important;
  border: 2px solid transparent !important;
  box-shadow: 0 16px 32px rgba(205, 0, 77, 0.30);
}

.btn-white, .btn-primary-light {
  background: var(--gm-panel) !important;
  color: var(--gm-orange) !important;
  border: 2px solid var(--gm-orange) !important;
}
.btn-white:hover, .btn-white:focus, .btn-white:active, .btn-white.active,
.btn-primary-light:hover, .btn-primary-light:focus, .btn-primary-light:active, .btn-primary-light.active {
  background: var(--gm-gradient) !important;
  color: #fff !important;
  border: 2px solid transparent !important;
  box-shadow: var(--gm-shadow-warm);
}

.btn-gray {
  background: var(--gm-bg-alt) !important;
  color: var(--gm-text) !important;
  border: 2px solid var(--gm-border) !important;
}

.slick-arrow {
  background: var(--gm-gradient) !important;
  color: #fff !important;
  border: none !important;
  box-shadow: var(--gm-shadow-warm);
}
.slick-arrow:active, .slick-arrow:focus, .slick-arrow.active, .slick-arrow:hover {
  background: var(--gm-blue) !important;
  color: #fff !important;
  border: none !important;
}

/* ---------- hero ---------- */
.hero-section {
  position: relative;
  background: linear-gradient(180deg, #eaf6ff 0%, #fef6e8 62%, #fff3e0 100%);
  padding-top: 140px;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-section .hero-content h1 {
  font-size: 54px;
  line-height: 1.12;
}
@media (max-width: 991px) {
  .hero-section .hero-content h1 { font-size: 42px; }
}
@media (max-width: 575px) {
  .hero-section .hero-content h1 { font-size: 32px; }
}
.hero-section .hero-content p {
  color: var(--gm-text-muted);
}
.hero-inner {
  padding-top: 20px;
  padding-bottom: 130px;
}
@media (max-width: 991px) {
  .hero-inner { padding-bottom: 60px; }
}
@media (max-width: 575px) {
  .hero-inner { padding-bottom: 36px; }
}

/* the text column usually runs taller than the image column — bottom-align them
   on desktop so the figure doesn't float far above the grass line */
@media (min-width: 992px) {
  .hero-inner .row {
    align-items: flex-end !important;
  }
}

/* ---------- full-bleed scenic backdrop (revolution-slider style) ---------- */
.hero-scene {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-sky {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(46% 60% at 82% 0%, rgba(252, 183, 18, 0.30) 0%, rgba(252, 183, 18, 0) 70%),
    radial-gradient(55% 55% at 4% 96%, rgba(0, 137, 209, 0.16) 0%, rgba(0, 137, 209, 0) 70%);
}
.hero-sun-glow {
  position: absolute;
  top: -6%;
  right: -8%;
  width: 55%;
  max-width: 720px;
  height: auto;
  opacity: 0.85;
  animation: hero-sun-pulse 6s ease-in-out infinite;
}
@keyframes hero-sun-pulse {
  0%, 100% { opacity: 0.75; transform: scale(1); }
  50% { opacity: 0.95; transform: scale(1.04); }
}
.hero-cloud {
  position: absolute;
  height: auto;
  opacity: 0.9;
  filter: drop-shadow(0 6px 10px rgba(45, 42, 57, 0.06));
}
.hero-cloud--1 { top: 12%; left: 4%; width: 130px; animation: hero-cloud-drift 26s linear infinite; }
.hero-cloud--2 { top: 8%; left: 42%; width: 80px; animation: hero-cloud-drift 34s linear infinite reverse; }
.hero-cloud--3 { top: 22%; left: 74%; width: 150px; animation: hero-cloud-drift 30s linear infinite; }
.hero-cloud--4 { top: 5%; left: 88%; width: 70px; animation: hero-cloud-drift 22s linear infinite reverse; }
@keyframes hero-cloud-drift {
  0% { transform: translateX(0); }
  50% { transform: translateX(28px); }
  100% { transform: translateX(0); }
}
.hero-ground-band {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 150px;
  background: linear-gradient(180deg, rgba(12, 177, 75, 0) 0%, rgba(12, 177, 75, 0.10) 100%);
}
.hero-grass {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 96%;
  max-width: 1500px;
  height: auto;
}

@media (max-width: 767px) {
  .hero-sun-glow { width: 85%; }
  .hero-cloud--2, .hero-cloud--4 { display: none; }
}

/* ---------- hero copy: staggered entrance ---------- */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--gm-border);
  box-shadow: var(--gm-shadow);
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: var(--gm-text);
  margin-bottom: 18px;
  opacity: 0;
  animation: hero-fade-up 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.05s both;
}
.hero-eyebrow-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gm-gradient);
  box-shadow: 0 0 0 3px rgba(243, 112, 34, 0.18);
  animation: hero-pulse-dot 1.8s ease-in-out infinite;
}
@keyframes hero-pulse-dot {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.35); }
}

.hero-section .hero-content h1 {
  opacity: 0;
  animation: hero-fade-up 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.15s both;
}
.hero-section .hero-content p {
  opacity: 0;
  animation: hero-fade-up 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.25s both;
}
.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  opacity: 0;
  animation: hero-fade-up 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.35s both;
}
@media (max-width: 991px) { .hero-cta-row { justify-content: center; } }
@keyframes hero-fade-up {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

/* premium button micro-interactions */
.hero-btn-shine {
  position: relative;
  overflow: hidden;
}
.hero-btn-shine::after {
  content: "";
  position: absolute;
  top: 0; left: -60%;
  width: 40%; height: 100%;
  background: linear-gradient(115deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.55) 50%, rgba(255,255,255,0) 100%);
  transform: skewX(-20deg);
  transition: left 0.6s ease;
}
.hero-btn-shine:hover::after { left: 130%; }
.hero-btn-shine:active { transform: translateY(0) scale(0.97) !important; }

.hero-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Baloo 2", sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--gm-text);
  text-decoration: none;
  padding: 6px 2px;
  position: relative;
  transition: color 0.2s ease, gap 0.2s ease;
}
.hero-btn-ghost::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 2px;
  background: var(--gm-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}
.hero-btn-ghost svg { transition: transform 0.25s ease; }
.hero-btn-ghost:hover { color: var(--gm-orange); gap: 12px; }
.hero-btn-ghost:hover::after { transform: scaleX(1); }
.hero-btn-ghost:hover svg { transform: translateX(3px); }

/* ---------- hero visual: grounded figure, not floating ---------- */
.hero-visual {
  position: relative;
  z-index: 1;
  max-width: 500px;
  padding-bottom: 10px;
  margin-bottom: -10px;
}
.hero-rainbow {
  position: absolute;
  top: -8%;
  left: 50%;
  transform: translateX(-50%);
  width: 76%;
  max-width: 380px;
  height: auto;
  opacity: 0.9;
  z-index: 0;
  filter: drop-shadow(0 8px 18px rgba(45, 42, 57, 0.10));
  animation: hero-rainbow-drift 8s ease-in-out 0.6s infinite;
}
@keyframes hero-rainbow-drift {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-8px); }
}

.hero-figure {
  position: relative;
  z-index: 2;
  opacity: 0;
  animation:
    hero-figure-in 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.3s both,
    hero-figure-idle 4.5s ease-in-out 1.1s infinite;
}
@keyframes hero-figure-in {
  from { opacity: 0; transform: translateY(26px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes hero-figure-idle {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

/* the "floor" that grounds the figure so it doesn't look like it's floating in air —
   sits right where the figure meets the grass in .hero-scene */
.hero-ground-shadow {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  width: 58%;
  height: 22px;
  border-radius: 50%;
  background: radial-gradient(50% 50% at 50% 50%, rgba(10, 60, 20, 0.30) 0%, rgba(10, 60, 20, 0) 72%);
  z-index: 0;
  animation: hero-shadow-pulse 4.5s ease-in-out 1.1s infinite;
}
@keyframes hero-shadow-pulse {
  0%, 100% { transform: translateX(-50%) scale(1); opacity: 1; }
  50% { transform: translateX(-50%) scale(0.86); opacity: 0.7; }
}

/* floating glass UI chips around the figure — the "product in action" cues */
.hero-chip {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px 10px 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 14px 30px -8px rgba(45, 42, 57, 0.22);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: var(--gm-text);
  white-space: nowrap;
  opacity: 0;
}
.hero-chip-icon { font-size: 16px; line-height: 1; }
.hero-chip--1 {
  top: 8%; left: -6%;
  animation: hero-chip-in 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.75s both,
             hero-chip-float 5s ease-in-out 1.35s infinite;
}
.hero-chip--2 {
  top: 42%; right: -8%;
  animation: hero-chip-in 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.95s both,
             hero-chip-float 6s ease-in-out 1.55s infinite reverse;
}
.hero-chip--3 {
  bottom: 12%; left: -2%;
  animation: hero-chip-in 0.6s cubic-bezier(0.22, 1, 0.36, 1) 1.15s both,
             hero-chip-float 5.5s ease-in-out 1.75s infinite;
}
@keyframes hero-chip-in {
  from { opacity: 0; transform: translateY(10px) scale(0.9); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes hero-chip-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}
.hero-chip:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 18px 36px -8px rgba(45, 42, 57, 0.28);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
@media (max-width: 767px) {
  .hero-chip { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-sun-glow, .hero-cloud, .hero-eyebrow, .hero-eyebrow-dot,
  .hero-section .hero-content h1, .hero-section .hero-content p, .hero-cta-row,
  .hero-rainbow, .hero-figure, .hero-ground-shadow, .hero-chip {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ---------- game templates section ---------- */
.game-template-section {
  background: var(--gm-bg);
}
.game-card {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--gm-border);
  box-shadow: var(--gm-shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.game-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: var(--gm-shadow-warm);
}

.game-template-section .template-card .card-img {
  border: 1px solid var(--gm-border);
  box-shadow: var(--gm-shadow);
  border-radius: 18px;
}

/* ---------- features ---------- */
.features-section {
  background: var(--gm-bg-sky);
}
.features-section .deco-cloud {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  opacity: 0.85;
  height: auto;
}
.features-section .deco-cloud--1 { top: 40px; left: -30px; width: 210px; animation: gm-drift 14s ease-in-out infinite; }
.features-section .deco-cloud--2 { top: 90px; right: 8%; width: 120px; animation: gm-float 7s ease-in-out infinite; }
.features-section .deco-cloud--3 { bottom: 60px; right: -20px; width: 150px; animation: gm-drift 18s ease-in-out infinite reverse; }
@keyframes gm-drift {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(26px); }
}
.features-section .feature-slider .slick-list .feature-card {
  background: var(--gm-panel);
  border: 1px solid var(--gm-border);
  border-radius: 20px;
  padding: 16px;
  box-shadow: var(--gm-shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.features-section .feature-slider .slick-list .feature-card:hover {
  transform: translateY(-6px);
  border-color: var(--gm-blue);
  box-shadow: var(--gm-shadow-blue);
}
.features-section .feature-card .card-img.feature-icon-tile {
  height: auto !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  display: flex;
  justify-content: flex-start;
  margin-bottom: 18px;
}
.features-section .feature-card .feature-icon {
  width: 74px;
  height: 74px;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(45, 42, 57, 0.16));
}
.features-section .feature-slider .slick-list .feature-card .card-body h3 {
  color: var(--gm-text);
  font-family: "Baloo 2", sans-serif;
  font-size: 17px;
}
.features-section .feature-slider .slick-list .feature-card .card-body p {
  color: var(--gm-text-muted);
}

/* ---------- modern interface / about ---------- */
.modern-interface-section {
  background: var(--gm-bg);
}
.modern-interface-section .interface-card {
  background: var(--gm-panel);
  border: 1px solid var(--gm-border);
  border-radius: 22px;
  padding: 30px;
  box-shadow: var(--gm-shadow);
}
.modern-interface-section .interface-card .interface-img {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--gm-shadow);
}
.modern-interface-section .interface-card .card-desc .card-title {
  color: var(--gm-orange);
}
.modern-interface-section .interface-card .card-desc .card-text {
  color: var(--gm-text-muted);
}

/* ---------- pricing ---------- */
.pricing-plan-section {
  background: var(--gm-bg-alt);
}
.pricing-plan-section .pricing-slider .pricing-card {
  background: var(--gm-panel);
  border: 1px solid var(--gm-border);
  border-radius: 22px;
  box-shadow: var(--gm-shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.pricing-plan-section .pricing-slider .pricing-card .card-title {
  color: var(--gm-pink) !important;
}
.pricing-plan-section .pricing-slider .pricing-card .price {
  color: var(--gm-text);
}
.pricing-plan-section .pricing-slider .pricing-card .pricing-plan-list li {
  color: var(--gm-text-muted);
}
.pricing-plan-section .pricing-slider .pricing-card .pricing-plan-list li.active-check .check-box {
  color: var(--gm-green);
  text-shadow: none;
}
.pricing-plan-section .pricing-slider .pricing-card .pricing-plan-list li.unactive-check {
  color: #b9b4c6;
}
.pricing-plan-section .pricing-slider .slick-current .pricing-card {
  background: var(--gm-panel-strong);
  border: 2px solid var(--gm-orange);
  box-shadow: var(--gm-shadow-warm);
  transform: scale(1.02);
}
.pricing-plan-section .pricing-slider .slick-current .pricing-card .card-title {
  color: var(--gm-orange) !important;
}

/* ---------- testimonials ---------- */
.testimonial-section .testimonial-slider .testimonial-card {
  background: var(--gm-panel);
  border: 1px solid var(--gm-border);
  border-radius: 22px;
  box-shadow: var(--gm-shadow);
}
.testimonial-section .testimonial-slider .testimonial-card .profile-desc p {
  color: var(--gm-text);
}
.testimonial-section .testimonial-slider .testimonial-card .profile-text {
  color: var(--gm-text-muted);
}
.testimonial-section .testimonial-slider .testimonial-card .profile-img {
  border: 3px solid var(--gm-yellow);
  box-shadow: var(--gm-shadow);
}

/* ---------- contact ---------- */
.contact-section {
  background: var(--gm-bg);
}
.contact-section .contact-icon {
  background: var(--gm-bg-sky);
  border: 1px solid var(--gm-border);
  border-radius: 14px;
  color: var(--gm-blue);
}
.contact-section .icon-purpul {
  color: var(--gm-blue) !important;
}
.contact-section .address-text,
.contact-info__block a {
  color: var(--gm-text-muted) !important;
}
.contact-form {
  background: var(--gm-panel);
  border: 1px solid var(--gm-border);
  border-radius: 22px;
  padding: 24px;
  box-shadow: var(--gm-shadow);
}

.form-control, .front-input {
  background-color: #ffffff !important;
  border: 1px solid var(--gm-border) !important;
  color: var(--gm-text) !important;
  border-radius: 12px !important;
}
.form-control::placeholder, .front-input::placeholder {
  color: var(--gm-text-muted) !important;
}
.form-control:focus, .front-input:focus {
  border: 1px solid var(--gm-blue) !important;
  box-shadow: 0 0 0 3px rgba(0, 137, 209, 0.15) !important;
}

/* ---------- footer ---------- */
.curve-shape svg path {
  fill: var(--gm-bg-alt) !important;
}
footer.bg-light {
  background-color: var(--gm-bg-alt) !important;
}
footer .app-name,
footer h3,
footer h6,
footer p.text-black {
  color: var(--gm-text) !important;
}
footer .email input {
  background-color: #ffffff !important;
  color: var(--gm-text) !important;
  border: 1px solid var(--gm-border) !important;
}
footer .email input::placeholder {
  color: var(--gm-text-muted) !important;
}
footer a.text-black {
  color: var(--gm-text-muted) !important;
}
footer a.text-black:hover {
  color: var(--gm-orange) !important;
}

.banner-section.bg-light {
  background-color: var(--gm-bg-sky) !important;
}

.js-cookie-consent {
  background: var(--gm-panel) !important;
  border: 1px solid var(--gm-border);
  box-shadow: var(--gm-shadow);
}
.js-cookie-consent .cookie-consent__message {
  color: var(--gm-text) !important;
}

mark {
  color: var(--gm-pink) !important;
}

/* ---------- recolor leftover purple accents from base CSS ---------- */
.modern-interface-section .interface-card .interface-img::before {
  border-color: var(--gm-orange) !important;
}
.features-section .feature-slider .slick-list .feature-card:hover .card-img {
  border-color: var(--gm-blue) !important;
  box-shadow: var(--gm-shadow-blue) !important;
}
.modern-interface-section .interface-card .interface-img .interface-user-img,
.interface-img > .rounded-circle,
[class*="interface"] .rounded-circle {
  border-color: #ffffff !important;
}
