/* =========================
   RESET / BASE
========================= */

*,
*::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: #02010a;
  color: #f9fafb;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

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

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

button {
  font-family: inherit;
}

/* Helpers desktop / mobile */
.ge-only-desktop {
  display: block;
}

.ge-only-mobile {
  display: none;
}

/* =========================
   LAYOUT GLOBAL
========================= */

.home-page,
.services-page,
.about-page,
.portfolio-page {
  min-height: 100vh;
  background-color: #02010a;
  color: #e5e7eb;
}

.ge-container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* =========================
   HEADER
========================= */

.ge-header {
  position: fixed;
  z-index: 40;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.5); /* noir “liquid glass” */
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.8);
}

.ge-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 2rem;
}

.ge-logo-wrapper {
  display: flex;
  align-items: center;
}

.ge-logo {
  height: 70px; /* logo plus grand */
  width: auto;
}

/* NAV */

.ge-nav {
  display: flex;
}

.ge-nav-list {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.95rem;
}

.ge-nav-link {
  position: relative;
  padding: 0.25rem 0;
  color: #e5e7eb;
  opacity: 0.85;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.ge-nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: radial-gradient(circle at 0 0, #ffffff, #e5e7eb);
  box-shadow: 0 0 16px rgba(255, 255, 255, 0.7);
  transition: width 0.25s ease;
}

.ge-nav-link:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.ge-nav-link:hover::after {
  width: 100%;
}

.ge-nav-link--active {
  opacity: 1;
}

.ge-nav-link--active::after {
  width: 100%;
}

.ge-nav-link--cta {
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: radial-gradient(circle at 0 0, #0f172a, #111827);
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.25);
  font-weight: 500;
}

.ge-nav-link--cta::after {
  display: none;
}

/* BURGER */

.ge-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.ge-burger span {
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: #e5e7eb;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.ge-burger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.ge-burger.is-open span:nth-child(2) {
  opacity: 0;
}

.ge-burger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* =========================
   HERO
========================= */

.ge-hero {
  position: relative;
  min-height: 100vh;
  padding-top: 72px; /* header height */
  display: flex;
  align-items: stretch;
  overflow: hidden;
}

/* Fond vidéo + gradient */

.ge-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.ge-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.45) contrast(1.05);
  transform: scale(1.02);
}

/* Desktop : gradient transparent (vidéo visible) */
.ge-hero-gradient {
  position: absolute;
  inset: 0;
  background: transparent;
  mix-blend-mode: normal;
}

/* Hero content */

.ge-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  align-items: center;
  gap: 3rem;
  padding: 5rem 1.5rem 4rem;
}

.ge-hero-left {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.ge-pill {
  align-self: flex-start;
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: radial-gradient(circle at 0 0, rgba(12, 0, 246, 0.6), transparent 70%);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #e5e7eb;
}

.ge-hero-title {
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: clamp(2.5rem, 4vw, 3.4rem);
  line-height: 1.1;
  font-weight: 600;
  margin: 0;
}

.ge-hero-title span {
  color: #e5f4ff;
  text-shadow: 0 0 24px rgba(255, 255, 255, 0.9);
}

.ge-hero-subtitle {
  font-size: 1rem;
  max-width: 34rem;
  color: #cbd5f5;
  line-height: 1.7;
  margin: 0;
}

.ge-hero-subtitle strong {
  color: #f9fafb;
}

.ge-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.ge-badge {
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(148, 163, 184, 0.9);
  font-size: 0.78rem;
  color: #e5f6ff;
  box-shadow: 0 0 18px rgba(148, 163, 184, 0.6);
}

.ge-hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
}

.ge-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
  color: #9ca3af;
}

/* HERO SERVICES */

.ge-hero--services {
  padding-top: 88px;
  padding-bottom: 3.5rem;
  background: radial-gradient(circle at top, #020617 0%, #020617 30%, #02010a 100%);
}

.ge-hero-inner--services {
  max-width: 1120px;
  margin: 0 auto;
  padding-inline: 1.5rem;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr);
  gap: 3rem;
  align-items: center;
}

.ge-hero-left--services {
  gap: 1.5rem;
}

.ge-hero-title--services {
  font-size: clamp(2.1rem, 3.3vw, 2.6rem);
}

.ge-hero-subtitle--services {
  font-size: 0.95rem;
  color: #cbd5f5;
}

/* =========================
   BOUTONS
========================= */

.ge-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.6rem 1.3rem;
  font-size: 0.92rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    background 0.25s ease,
    transform 0.18s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease;
  will-change: transform, box-shadow;
}

.ge-btn-primary {
  background: radial-gradient(circle at 0 0, #ffffff, #e5e7eb);
  color: #020617;
  box-shadow: 0 0 24px rgba(255, 255, 255, 0.35);
  border-color: rgba(229, 231, 235, 0.7);
}

.ge-btn-primary:hover {
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 0 34px rgba(255, 255, 255, 0.5);
}

.ge-btn-ghost {
  background: transparent;
  border-color: rgba(148, 163, 184, 0.6);
  color: #e5e7eb;
}

.ge-btn-ghost:hover {
  border-color: rgba(229, 231, 235, 0.9);
  color: #f9fafb;
  box-shadow: 0 0 24px rgba(148, 163, 184, 0.6);
  transform: translateY(-1px) scale(1.02);
}

.ge-btn-secondary {
  background: #020617;
  border-color: rgba(229, 231, 235, 0.7);
  color: #f9fafb;
}

.ge-btn-secondary:hover {
  box-shadow: 0 0 26px rgba(255, 255, 255, 0.45);
  transform: translateY(-1px) scale(1.02);
}

.ge-btn-full {
  width: 100%;
}

.ge-btn-large {
  padding: 0.75rem 1.6rem;
  font-size: 0.95rem;
}

/* =========================
   STRIP CONFIANCE
========================= */

.ge-strip {
  border-top: 1px solid rgba(30, 64, 175, 0.7);
  border-bottom: 1px solid rgba(15, 23, 42, 0.9);
  background: radial-gradient(circle at 0 0, rgba(148, 163, 184, 0.4), transparent 60%),
    #020617;
}

.ge-strip-inner {
  padding: 0.9rem 1.5rem;
  text-align: center;
  font-size: 0.9rem;
  color: #cbd5f5;
}

/* =========================
   SECTIONS GÉNÉRIQUES
========================= */

.ge-section {
  padding: 3.5rem 0;
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.6), transparent 60%),
    #02010a;
}

.ge-section--bordered {
  border-top: 1px solid rgba(15, 23, 42, 0.9);
  border-bottom: 1px solid rgba(15, 23, 42, 0.9);
}

.ge-section--cta {
  background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.9), transparent 55%),
    radial-gradient(circle at bottom right, rgba(15, 23, 42, 0.8), transparent 55%),
    #020617;
}

.ge-section-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.ge-section-inner--split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 2.75rem;
  align-items: center;
}

.ge-section-inner--cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.ge-section-header {
  margin-bottom: 2.3rem;
}

.ge-section-title {
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 1.8rem;
  margin: 0 0 0.7rem;
}

.ge-section-subtitle {
  margin: 0;
  font-size: 1rem;
  color: #9ca3af;
  max-width: 32rem;
  line-height: 1.7;
}

/* Texte / about générique */

.ge-about-text {
  display: grid;
  gap: 1.1rem;
  font-size: 0.96rem;
  color: #e5e7eb;
}

.ge-about-block p {
  margin: 0 0 0.6rem;
  line-height: 1.7;
}

/* =========================
   GRID / CARDS
========================= */

.ge-grid {
  display: grid;
  gap: 1.6rem;
}

.ge-grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ge-card {
  position: relative;
  background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.95), #020617);
  border-radius: 1.2rem;
  padding: 1.6rem 1.5rem 1.6rem;
  border: 1px solid rgba(30, 64, 175, 0.7);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.9);
}

/* =========================
   STEPS / PROCESS
========================= */

.ge-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.4rem;
}

.ge-step {
  display: flex;
  gap: 1rem;
}

.ge-step-number {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid rgba(56, 189, 248, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: #e0f2fe;
  box-shadow: 0 0 18px rgba(56, 189, 248, 0.5);
}

.ge-step-title {
  margin: 0 0 0.2rem;
  font-size: 0.95rem;
}

.ge-step-text {
  margin: 0;
  font-size: 0.85rem;
  color: #9ca3af;
}

.ge-process-cta {
  margin-top: 2rem;
  font-size: 0.9rem;
  color: #cbd5f5;
}

/* =========================
   KPIs / RÉSULTATS
========================= */

.ge-kpis {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.9rem;
}

.ge-kpi {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.ge-kpi-value {
  font-size: 1.4rem;
  font-weight: 600;
  color: #e0f2fe;
}

.ge-kpi-label {
  font-size: 0.8rem;
  color: #9ca3af;
}

/* =========================
   FAQ
========================= */

.ge-faq {
  display: grid;
  gap: 0.7rem;
}

.ge-faq-item {
  border-radius: 0.9rem;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(30, 64, 175, 0.8);
  padding: 0.75rem 1rem;
}

.ge-faq-summary {
  list-style: none;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
}

.ge-faq-summary::-webkit-details-marker {
  display: none;
}

.ge-faq-text {
  margin: 0.6rem 0 0;
  font-size: 0.85rem;
  color: #9ca3af;
}

/* =========================
   PORTFOLIO
========================= */

.ge-portfolio-list {
  display: grid;
  gap: 2.5rem;
}

.ge-portfolio-item {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1.2fr);
  gap: 2rem;
  align-items: center;
}

.ge-portfolio-media {
  position: relative;
}

.ge-portfolio-video-wrapper {
  border-radius: 1.2rem;
  overflow: hidden;
  border: 1px solid rgba(37, 99, 235, 0.6);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.9);
}

.ge-portfolio-video {
  display: block;
  width: 100%;
  height: auto;
}

.ge-portfolio-content {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.ge-portfolio-title {
  font-size: 1.2rem;
  margin: 0;
}

.ge-portfolio-title span {
  display: block;
  font-size: 0.9rem;
  color: #9ca3af;
  margin-top: 0.2rem;
}

.ge-portfolio-text {
  font-size: 0.9rem;
  color: #cbd5f5;
  margin: 0;
}

.ge-portfolio-points {
  margin: 0.2rem 0 0;
  padding-left: 1.1rem;
  font-size: 0.85rem;
  color: #9ca3af;
}

.ge-portfolio-meta-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.7rem;
}

.ge-portfolio-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.ge-tag {
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  font-size: 0.78rem;
  color: #e5e7eb;
}

/* =========================
   FOOTER
========================= */

.ge-footer {
  border-top: 1px solid rgba(15, 23, 42, 0.9);
  background: #020617;
  padding: 1.5rem 0;
}

.ge-footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.ge-footer-brand {
  font-weight: 600;
  margin: 0 0 0.2rem;
}

.ge-footer-text {
  margin: 0;
  font-size: 0.82rem;
  color: #9ca3af;
}

.ge-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  font-size: 0.83rem;
  color: #9ca3af;
}

.ge-footer-links a:hover {
  color: #e0f2fe;
}

/* =========================
   ANIMATIONS SCROLL
========================= */

.ge-reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.ge-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.ge-anim-up {
  transition-delay: 0.05s;
}

.ge-anim-up-delayed {
  transition-delay: 0.15s;
}

/* =========================
   PRICING / FORMULES
========================= */

.ge-pricing-note {
  margin-top: 0.6rem;
  font-size: 0.9rem;
  color: #9ca3af;
}

.ge-pricing-note-accent {
  color: #f9fafb;
  font-weight: 600;
}

/* Cartes de pricing full height */
.ge-pricing-grid .ge-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.ge-plan {
  position: relative;
  padding-top: 1.3rem;
}

.ge-plan-header {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  margin-bottom: 0.4rem;
}

.ge-plan-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #9ca3af;
}

.ge-plan-title {
  margin: 0;
  font-size: 1.1rem;
}

.ge-plan-tagline {
  margin: 0.35rem 0 0.7rem;
  font-size: 0.9rem;
  color: #cbd5f5;
  line-height: 1.7;
}

.ge-plan-more {
  align-self: flex-start;
  margin-bottom: 0.2rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.8);
  background: transparent;
  color: #e5e7eb;
  font-size: 0.8rem;
  cursor: pointer;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    transform 0.18s ease;
}

.ge-plan-more:hover {
  background: rgba(15, 23, 42, 0.9);
  border-color: rgba(229, 231, 235, 0.8);
  transform: translateY(-1px);
}

.ge-plan-details {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  pointer-events: none;
  margin-top: 0;
  transition:
    max-height 0.3s ease,
    opacity 0.25s ease,
    margin-top 0.25s ease;
}

.ge-plan.is-open .ge-plan-details {
  max-height: 500px;
  opacity: 1;
  pointer-events: auto;
  margin-top: 0.75rem;
}

.ge-plan-list {
  margin: 0;
  padding-left: 1.1rem;
  font-size: 0.85rem;
  color: #9ca3af;
  display: grid;
  gap: 0.4rem;
  line-height: 1.7;
}

.ge-plan-list li::marker {
  color: #e5e7eb;
}

.ge-plan-price-row {
  margin-top: 0.9rem;
  padding-top: 0.7rem;
  border-top: 1px solid rgba(31, 41, 55, 0.9);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.5rem;
}

.ge-plan-price-label {
  font-size: 0.8rem;
  color: #9ca3af;
}

.ge-plan-price {
  font-size: 1.05rem;
  font-weight: 600;
  color: #f9fafb;
}

.ge-plan-footer {
  margin-top: 1.3rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.ge-plan-cta {
  font-weight: 500;
}

.ge-plan-cta-note {
  margin: 0;
  font-size: 0.8rem;
  color: #9ca3af;
}

/* Best-seller : glow blanc */

.ge-plan--featured {
  border-color: rgba(255, 255, 255, 0.9);
  box-shadow:
    0 0 22px rgba(255, 255, 255, 0.45),
    0 22px 60px rgba(15, 23, 42, 1);
  background: radial-gradient(circle at top left, rgba(24, 24, 27, 0.95), #020617);
  animation: gePlanGlow 4s ease-in-out infinite;
}

.ge-plan-badge {
  position: absolute;
  top: 0.9rem;
  right: 1.2rem;
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background: radial-gradient(circle at 0 0, #ffffff, #e5e7eb);
  color: #020617;
  box-shadow: 0 0 22px rgba(255, 255, 255, 0.85);
}

@keyframes gePlanGlow {
  0% {
    box-shadow:
      0 0 18px rgba(255, 255, 255, 0.4),
      0 18px 40px rgba(15, 23, 42, 0.9);
    transform: translateY(0);
  }
  50% {
    box-shadow:
      0 0 34px rgba(255, 255, 255, 0.85),
      0 22px 60px rgba(15, 23, 42, 1);
    transform: translateY(-2px);
  }
  100% {
    box-shadow:
      0 0 18px rgba(255, 255, 255, 0.4),
      0 18px 40px rgba(15, 23, 42, 0.9);
    transform: translateY(0);
  }
}

@media (max-width: 960px) {
  .ge-pricing-grid .ge-card {
    margin-bottom: 0.3rem;
  }
}

/* =========================
   INTRO VIDEO OVERLAY
========================= */

body.home-page.ge-intro-video-lock {
  overflow: hidden;
}

#ge-intro-video-overlay {
  position: fixed;
  inset: 0;
  background: #000000; /* fond noir */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 1;
  transition: opacity 0.6s ease;
}

#ge-intro-video-overlay.ge-intro-video-hidden {
  opacity: 0;
  pointer-events: none;
}

#ge-intro-video {
  max-width: 520px;
  width: 80vw;
  height: auto;
}

/* =========================
   RESPONSIVE
========================= */

@keyframes heroMobileGradient {
  0% {
    background-position: 0% 0%;
  }
  50% {
    background-position: 100% 100%;
  }
  100% {
    background-position: 0% 0%;
  }
}

@media (max-width: 960px) {
  .ge-hero-inner {
    grid-template-columns: minmax(0, 1fr);
    padding-top: 4.5rem;
    padding-bottom: 3.2rem;
  }

  .ge-grid--3 {
    grid-template-columns: minmax(0, 1fr);
  }

  .ge-section-inner--split {
    grid-template-columns: minmax(0, 1fr);
  }

  .ge-section-inner--cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .ge-portfolio-item {
    grid-template-columns: minmax(0, 1fr);
  }

  .ge-portfolio-media {
    order: -1;
  }
}

@media (max-width: 768px) {
  .ge-header-inner {
    height: 64px;
  }

  .ge-nav {
    position: absolute;
    inset: 64px 0 auto 0;
    background: rgba(0, 0, 0, 0.96);
    backdrop-filter: blur(18px);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .ge-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .ge-nav-list {
    flex-direction: column;
    align-items: flex-start;
    padding: 0.9rem 1.5rem 1.2rem;
  }

  .ge-burger {
    display: flex;
  }

  .ge-hero {
    min-height: 100vh;
  }

  .ge-hero-title {
    font-size: 2.2rem;
  }

  .ge-hero-meta {
    font-size: 0.78rem;
  }

  .ge-footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  /* Mobile : vidéo coupée, dégradé animé à la place */
  .ge-hero-video {
    display: none;
  }

  .ge-hero-gradient {
    background: radial-gradient(
        circle at top,
        #020617 0%,
        #020617 25%,
        #0f172a 50%,
        #1f2937 75%,
        #020617 100%
      );
    background-size: 220% 220%;
    animation: heroMobileGradient 18s ease-in-out infinite;
  }

  .ge-only-desktop {
    display: none;
  }

  .ge-only-mobile {
    display: block;
  }
}

@media (max-width: 480px) {
  .ge-hero-inner,
  .ge-section-inner {
    padding-inline: 1.25rem;
  }

  .ge-card {
    padding: 1.4rem 1.3rem;
  }
}
