/* ==========================================================================
   GooEdu System — Ultra-Premium SaaS Landing Page Stylesheet
   Color Palette: Oceanic Blue (#0284c7) -> Sky Cyan (#06b6d4) -> Emerald Turquoise (#10b981)
   ========================================================================== */

:root {
  --goo-ocean: #0284c7;
  --goo-cyan: #06b6d4;
  --goo-emerald: #10b981;
  --goo-dark: #0f172a;
  --goo-slate: #334155;
  --goo-muted: #64748b;
  --goo-light: #f8fafc;
  --goo-white: #ffffff;

  --goo-gradient-primary: linear-gradient(135deg, #0284c7 0%, #06b6d4 50%, #10b981 100%);
  --goo-gradient-glow: linear-gradient(135deg, rgba(2, 132, 199, 0.14) 0%, rgba(6, 182, 212, 0.22) 50%, rgba(16, 185, 129, 0.22) 100%);

  --goo-shadow-sm: 0 4px 12px rgba(2, 132, 199, 0.08);
  --goo-shadow-md: 0 12px 32px rgba(2, 132, 199, 0.18);
  --goo-shadow-lg: 0 25px 60px -15px rgba(6, 182, 212, 0.35);
  --goo-shadow-glow: 0 0 35px rgba(6, 182, 212, 0.45);

  --goo-radius-sm: 14px;
  --goo-radius-md: 24px;
  --goo-radius-lg: 36px;
  --goo-radius-pill: 9999px;

  --goo-font-family: 'Cairo', 'Readex Pro', system-ui, -apple-system, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden !important;
  font-family: var(--goo-font-family);
  direction: rtl;
  text-align: right;
  background-color: #f4fbfb;
  color: var(--goo-dark);
  margin: 0;
  padding: 0;
}

/* Global Container Auto-Centering & Consistent Padding Across All Sections */
.container,
.container-sm,
.container-md,
.container-lg,
.container-xl,
.container-xxl {
  width: 100% !important;
  max-width: 1280px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* --------------------------------------------------------------------------
   Typography
   -------------------------------------------------------------------------- */
.goo-section-title {
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  font-weight: 900;
  color: var(--goo-dark);
  margin-bottom: 16px;
  line-height: 1.25;
}

.goo-section-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--goo-slate);
  max-width: 740px;
  margin: 0 auto 48px auto;
  line-height: 1.7;
}

.text-gradient {
  background: var(--goo-gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* --------------------------------------------------------------------------
   Navbar Styles
   -------------------------------------------------------------------------- */
.goo-navbar {
  position: sticky;
  top: 0;
  z-index: 1050;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(203, 213, 225, 0.6);
  padding: 16px 0;
}

.goo-nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--goo-dark);
  text-decoration: none;
}

.goo-nav-logo-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--goo-gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 1.2rem;
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.25);
}

.goo-nav-link {
  font-size: 1rem;
  font-weight: 700;
  color: var(--goo-slate);
  text-decoration: none;
  transition: color 0.2s ease;
  padding: 8px 16px;
}

.goo-nav-link:hover {
  color: var(--goo-ocean);
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.goo-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 800;
  border-radius: var(--goo-radius-pill);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: none;
  text-decoration: none;
}

.goo-btn-primary {
  background: var(--goo-ocean);
  color: var(--goo-white) !important;
  box-shadow: 0 6px 20px rgba(2, 132, 199, 0.35);
}

.goo-btn-primary:hover {
  background: #0270ab;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(2, 132, 199, 0.45);
}

.goo-btn-secondary {
  background: var(--goo-white);
  color: var(--goo-dark) !important;
  border: 2px solid var(--goo-dark);
  box-shadow: var(--goo-shadow-sm);
}

.goo-btn-secondary:hover {
  background: var(--goo-light);
  transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   HERO SECTION MATCHING EXACT SCREENSHOT MOCKUP
   -------------------------------------------------------------------------- */
/* Pillars & Vision Arched Cards Styling */
.goo-pillars-section {
  position: relative;
}

/* Arched Photo Cards (Top Vision Section - 100% Equal Widths) */
.goo-arch-photo-card {
  flex: 1 1 0% !important;
  min-width: 0 !important;
  border-radius: 90px 90px 24px 24px;
  overflow: hidden;
  border: 3px solid rgba(6, 182, 212, 0.4);
  box-shadow: 0 12px 32px rgba(2, 132, 199, 0.12);
  height: 300px;
  background: #ffffff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.goo-arch-photo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(6, 182, 212, 0.25);
}

.goo-arch-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Card Accent Top Borders & Hover Effects (Matching uploaded screenshot) */
.border-top-emerald { border-top: 4px solid #10b981 !important; }
.border-top-blue { border-top: 4px solid #3b82f6 !important; }
.border-top-purple { border-top: 4px solid #9333ea !important; }
.border-top-teal { border-top: 4px solid #06b6d4 !important; }

.goo-feature-exact-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.goo-feature-exact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(2, 132, 199, 0.15) !important;
}

@media (min-width: 992px) {
  .border-start-lg {
    border-left: 1px solid #e2e8f0;
  }
}

/* 3D Phone & Floating Glass Pills (Matching reference UI image 2) */
.goo-3d-device-container {
  position: relative;
  perspective: 1000px;
  display: inline-block;
  width: 100%;
  max-width: 250px;
  margin: 0 auto;
}

.goo-3d-phone-body {
  transform: rotateY(-10deg) rotateX(5deg);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border-radius: 36px;
  background: #090d16;
  border: 3px solid rgba(255, 255, 255, 0.15);
  box-shadow: -15px 25px 50px rgba(0, 0, 0, 0.7), 0 0 30px rgba(6, 182, 212, 0.25);
  overflow: hidden;
}

.goo-3d-device-container:hover .goo-3d-phone-body {
  transform: rotateY(0deg) rotateX(0deg) scale(1.03);
}

.goo-glass-pill {
  position: absolute;
  z-index: 12;
  background: rgba(15, 23, 42, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4), 0 0 15px rgba(6, 182, 212, 0.3);
  border-radius: 9999px;
  padding: 7px 14px;
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  animation: pillFloat 4s ease-in-out infinite alternate;
}

@keyframes pillFloat {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-7px); }
}

.goo-glass-pill-cyan { border-color: rgba(6, 182, 212, 0.6); box-shadow: 0 8px 20px rgba(6, 182, 212, 0.35); }
.goo-glass-pill-emerald { border-color: rgba(16, 185, 129, 0.6); box-shadow: 0 8px 20px rgba(16, 185, 129, 0.35); }
.goo-glass-pill-amber { border-color: rgba(245, 158, 11, 0.6); box-shadow: 0 8px 20px rgba(245, 158, 11, 0.35); }
.goo-glass-pill-sky { border-color: rgba(2, 132, 199, 0.6); box-shadow: 0 8px 20px rgba(2, 132, 199, 0.35); }

/* SaaS Product Marketing Bento Box Grid Styling */
.goo-bento-card {
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease;
  position: relative;
}

.goo-bento-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px -12px rgba(2, 132, 199, 0.22) !important;
}

.goo-floating-mini-badge {
  animation: miniBadgeFloat 3s ease-in-out infinite alternate;
}

@keyframes miniBadgeFloat {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-8px);
  }
}
.goo-phone-mockup {
  width: 100%;
  max-width: 220px;
  margin: 0 auto;
  border-radius: 28px;
  background: #0f172a;
  border: 4px solid #1e293b;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(2, 132, 199, 0.18);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.goo-phone-mockup:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(6, 182, 212, 0.28);
}

.goo-phone-header {
  background: #0f172a;
  font-size: 0.65rem;
}

.goo-phone-notch {
  width: 45px;
  height: 8px;
  background: #1e293b;
  border-radius: 999px;
}

.goo-capsule-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(2, 132, 199, 0.18) !important;
  border-color: rgba(2, 132, 199, 0.5);
  border-bottom-color: #0284c7;
}

.goo-capsule-avatar {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #06b6d4;
  box-shadow: 0 8px 20px rgba(6, 182, 212, 0.2);
  flex-shrink: 0;
}

.goo-capsule-num-badge {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0284c7, #06b6d4);
  color: #ffffff;
  font-weight: 900;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.3);
}

.goo-hero-section {
  position: relative;
  padding: 60px 0 100px 0;
  background:
    radial-gradient(circle at 85% 20%, rgba(6, 182, 212, 0.16) 0%, transparent 45%),
    radial-gradient(circle at 15% 80%, rgba(16, 185, 129, 0.14) 0%, transparent 45%);
}

.goo-hero-title {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.25;
  color: #0f172a;
  margin-bottom: 20px;
}

.goo-hero-desc {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: 32px;
}

/* Floating Badges — Pure Flex Layout (NO position absolute/relative) */
.goo-badges-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  gap: 12px;
  margin-bottom: 20px;
}

.goo-floating-badge-exact {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: #ffffff;
  border-radius: var(--goo-radius-pill);
  box-shadow: 0 10px 30px rgba(6, 182, 212, 0.18);
  border: 2px solid rgba(6, 182, 212, 0.3);
  font-size: 0.92rem;
  font-weight: 800;
  color: #0f172a;
  animation: none;
  white-space: nowrap;
}

.goo-floating-badge-exact:nth-child(2) {
  animation-delay: 1.2s;
}

.goo-floating-badge-exact:nth-child(3) {
  animation-delay: 2.4s;
}

.goo-floating-badge-exact:nth-child(4) {
  animation-delay: 0.8s;
}

.goo-floating-badge-exact:nth-child(5) {
  animation-delay: 2s;
}

@keyframes badgeFloat {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-10px);
  }
}

@media (max-width: 575px) {
  .goo-floating-badge-exact {
    padding: 10px 16px;
    font-size: 0.82rem;
    gap: 8px;
  }

  .goo-badges-row {
    gap: 8px;
  }
}

/* Middle Row: image + stacked badges on the right — pure flex */
.goo-hero-middle-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.goo-side-badges-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex-shrink: 0;
}

/* On tablet/mobile: middle row stacks vertically, badges go below image */
@media (max-width: 991px) {
  .goo-hero-middle-row {
    flex-direction: column;
  }

  .goo-side-badges-col {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* Monitor & Mobile Display Screen Mockups */
.goo-mockup-screen-container {
  position: relative;
  width: 100%;
  padding: 10px;
}

.goo-monitor-display {
  background: var(--goo-white);
  border-radius: 20px;
  box-shadow: 0 25px 60px -10px rgba(2, 132, 199, 0.3);
  border: 4px solid #ffffff;
  overflow: hidden;
}

.goo-monitor-display img {
  width: 100%;
  height: auto;
  display: block;
}

/* --------------------------------------------------------------------------
   Pillars Section (Second Mockup Half in Screenshot)
   -------------------------------------------------------------------------- */
.goo-pillars-section {
  padding: 80px 0;
  background: var(--goo-white);
}

.goo-pillar-glass-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-radius: var(--goo-radius-md);
  box-shadow: 0 10px 30px rgba(6, 182, 212, 0.15);
  border: 1.5px solid rgba(6, 182, 212, 0.3);
  margin-bottom: 14px;
  transition: transform 0.3s ease;
}

.goo-pillar-glass-card:hover {
  transform: translateX(-6px);
}

/* --------------------------------------------------------------------------
   Comparison Section — Competitive Arena Design
   -------------------------------------------------------------------------- */
.goo-comparison-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #f0f9ff 0%, #e8f8f4 100%);
  position: relative;
  overflow: hidden;
  direction: rtl !important;
  text-align: right !important;
}

/* 🏆 Exact Hanging Ribbon Bookmark Badge with Notch V-Cut */
.goo-compare-ribbon-trophy {
  position: absolute;
  top: 0;
  right: 28px;
  width: 48px;
  height: 64px;
  background: linear-gradient(180deg, #00a896 0%, #0284c7 100%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 84%, 0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.45rem;
  box-shadow: 0 8px 20px rgba(0, 168, 150, 0.4);
  z-index: 10;
}

/* 🛡️ Bottom Trust Features Pill Container */
.goo-bottom-trust-pill-bar {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 9999px;
  box-shadow: 0 12px 35px rgba(2, 132, 199, 0.08);
  padding: 12px 28px;
}

/* 🎯 Center Gradient CTA Pill Button */
.goo-bottom-cta-pill-btn {
  background: linear-gradient(90deg, #007791 0%, #00a896 50%, #02c39a 100%);
  border-radius: 9999px;
  padding: 10px 28px;
  color: #ffffff !important;
  text-decoration: none;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0, 168, 150, 0.35);
  transition: all 0.3s ease;
}

.goo-bottom-cta-pill-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 168, 150, 0.45);
}

.goo-comparison-section::before {
  content: '';
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.09) 0%, transparent 70%);
  pointer-events: none;
}

/* VS Divider badge between the two cards */
.goo-vs-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--goo-gradient-primary);
  color: white;
  font-weight: 900;
  font-size: 1rem;
  box-shadow: 0 8px 24px rgba(2, 132, 199, 0.35);
  flex-shrink: 0;
  z-index: 2;
  position: relative;
}

.goo-compare-card {
  height: 100%;
  background: var(--goo-white);
  border-radius: var(--goo-radius-md);
  padding: 32px 28px;
  border: 2px solid #e2e8f0;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.goo-compare-card:hover {
  transform: translateY(-6px);
}

.goo-compare-card-loser {
  border-color: #fca5a5;
  background: #fff9f9;
}

.goo-compare-card-loser::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ef4444, #f87171);
}

.goo-compare-card-featured {
  border-color: var(--goo-cyan);
  box-shadow: 0 20px 60px -10px rgba(6, 182, 212, 0.3);
  background: #f0fdfa;
}

.goo-compare-card-featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--goo-gradient-primary);
}

.goo-compare-ribbon-trophy {
  position: absolute;
  top: 0;
  right: 28px;
  width: 46px;
  height: 58px;
  background: linear-gradient(180deg, #00a896 0%, #0284c7 100%);
  border-radius: 0 0 14px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.4rem;
  box-shadow: 0 6px 16px rgba(0, 168, 150, 0.35);
  z-index: 5;
}

.goo-icon-badge-success {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--goo-emerald);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
  font-weight: bold;
  box-shadow: 0 3px 8px rgba(16, 185, 129, 0.3);
}

.goo-icon-badge-danger {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #ef4444;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
  font-weight: bold;
  box-shadow: 0 3px 8px rgba(239, 68, 68, 0.3);
}

/* --------------------------------------------------------------------------
   App Download Section
   -------------------------------------------------------------------------- */
.goo-app-section {
  background: var(--goo-gradient-primary);
  color: var(--goo-white);
  border-radius: var(--goo-radius-lg);
  padding: clamp(36px, 5vw, 64px);
  box-shadow: var(--goo-shadow-lg);
}

.goo-app-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 26px;
  background: rgba(15, 23, 42, 0.92);
  color: var(--goo-white);
  border-radius: var(--goo-radius-md);
  border: 1px solid rgba(255, 255, 255, 0.25);
  text-decoration: none;
  transition: transform 0.3s ease;
}

.goo-app-btn:hover {
  background: var(--goo-dark);
  color: white;
  transform: translateY(-3px);
}

/* --------------------------------------------------------------------------
   Footer  — Navy dark (NOT pure black)
   -------------------------------------------------------------------------- */
.goo-footer {
  background: linear-gradient(160deg, #0f1f35 0%, #0d2137 60%, #0a1929 100%);
  color: #ffffff !important;
  padding: 70px 0 35px 0;
  border-top: 2px solid rgba(6, 182, 212, 0.25);
}

.goo-footer h4,
.goo-footer h5,
.goo-footer h6 {
  color: #ffffff !important;
  font-weight: 800;
}

.goo-footer p {
  color: #cbd5e1 !important;
  font-size: 0.97rem;
  line-height: 1.8;
}

.goo-footer-link {
  color: #94a3b8 !important;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.97rem;
  transition: color 0.2s ease, transform 0.2s ease;
  display: inline-block;
}

.goo-footer-link:hover {
  color: var(--goo-cyan) !important;
  transform: translateX(-5px);
}

.goo-footer-bottom {
  border-top: 1px solid rgba(148, 163, 184, 0.2);
  padding-top: 24px;
  margin-top: 48px;
  font-size: 0.95rem;
  font-weight: 700;
  color: #94a3b8 !important;
  text-align: center;
}

/* --------------------------------------------------------------------------
   Pulse dot for live-status indicators
   -------------------------------------------------------------------------- */
.goo-pulse-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #10b981;
  flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.6);
  animation: pulse-ring 1.8s ease-out infinite;
}

@keyframes pulse-ring {
  0% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.6);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

/* ==========================================================================
   COMPREHENSIVE RESPONSIVE BREAKPOINTS
   ========================================================================== */

/* ---------- Extra-Large desktops (≥1400px) ---------- */
@media (min-width: 1400px) {
  .goo-hero-section {
    padding: 80px 0 120px 0;
  }

  .goo-comparison-section {
    padding: 100px 0;
  }
}

/* ---------- Tablet landscape / small desktop (≤1199px) ---------- */
@media (max-width: 1199px) {
  .goo-hero-section {
    padding: 50px 0 80px 0;
  }

  .goo-compare-card {
    padding: 28px 22px;
  }
}

/* ---------- Tablet portrait (≤991px) ---------- */
@media (max-width: 991px) {
  .goo-hero-section {
    padding: 40px 0 60px 0;
  }

  .goo-hero-title {
    margin-bottom: 16px;
  }

  .goo-hero-desc {
    margin-bottom: 24px;
  }

  .goo-section-subtitle {
    margin-bottom: 32px;
  }

  .goo-comparison-section {
    padding: 60px 0;
  }

  .goo-compare-card {
    padding: 24px 20px;
  }

  .goo-vs-divider {
    width: 44px;
    height: 44px;
    font-size: 0.9rem;
  }

  .goo-app-section {
    border-radius: 24px;
  }

  .goo-app-btn {
    padding: 12px 20px;
    gap: 10px;
  }

  .goo-footer {
    padding: 50px 0 30px 0;
  }
}

/* ---------- Large phones (≤767px) ---------- */
@media (max-width: 767px) {
  .goo-hero-section {
    padding: 32px 0 48px 0;
  }

  .goo-navbar {
    padding: 12px 0;
  }

  .goo-nav-logo {
    font-size: 1.2rem;
  }

  .goo-nav-logo-icon {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }

  .goo-btn {
    padding: 12px 22px;
    font-size: 0.95rem;
  }

  .goo-section-title {
    margin-bottom: 12px;
  }

  .goo-section-subtitle {
    margin-bottom: 28px;
  }

  .goo-compare-card {
    padding: 20px 16px;
    border-radius: 18px;
  }

  .goo-compare-card h3 {
    font-size: 1.15rem !important;
  }

  .goo-compare-card h4 {
    font-size: 0.92rem !important;
  }

  .goo-compare-card p {
    font-size: 0.82rem !important;
  }

  .goo-app-section {
    border-radius: 20px;
    padding: 28px 20px;
  }

  .goo-app-btn {
    padding: 12px 18px;
    border-radius: 16px;
    gap: 10px;
  }

  .goo-app-btn span {
    font-size: 0.85rem !important;
  }

  .goo-footer {
    padding: 40px 0 24px 0;
  }

  .goo-footer-bottom {
    margin-top: 32px;
    padding-top: 20px;
  }

  .goo-pillar-glass-card {
    padding: 14px 16px;
    gap: 12px;
    border-radius: 16px;
  }
}

/* ---------- Small phones (≤575px) ---------- */
@media (max-width: 575px) {
  .goo-hero-section {
    padding: 24px 0 36px 0;
  }

  .goo-hero-title {
    font-size: 1.6rem;
  }

  .goo-hero-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
  }

  .goo-btn {
    padding: 11px 18px;
    font-size: 0.88rem;
    gap: 8px;
  }

  .goo-section-title {
    font-size: 1.45rem;
  }

  .goo-section-subtitle {
    font-size: 0.9rem;
    margin-bottom: 24px;
  }

  .goo-compare-card {
    padding: 18px 14px;
    border-radius: 16px;
  }

  .goo-compare-card .d-flex.align-items-start {
    padding: 10px !important;
  }

  .goo-vs-divider {
    width: 40px;
    height: 40px;
    font-size: 0.85rem;
  }

  .goo-app-section {
    border-radius: 16px;
    padding: 24px 16px;
  }

  .goo-app-btn {
    width: 100%;
    justify-content: center;
    border-radius: 14px;
  }

  .goo-pillar-glass-card {
    padding: 12px 14px;
    gap: 10px;
    border-radius: 14px;
    margin-bottom: 10px;
  }

  .goo-footer {
    padding: 32px 0 20px 0;
  }

  .goo-footer-bottom {
    margin-top: 24px;
    padding-top: 16px;
    font-size: 0.85rem;
  }
}

/* ---------- Ultra-small phones (≤399px) ---------- */
@media (max-width: 399px) {
  .container {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }

  .goo-hero-title {
    font-size: 1.35rem;
  }

  .goo-hero-desc {
    font-size: 0.88rem;
  }

  .goo-btn {
    padding: 10px 14px;
    font-size: 0.82rem;
  }

  .goo-section-title {
    font-size: 1.25rem;
  }

  .goo-section-subtitle {
    font-size: 0.85rem;
  }

  .goo-compare-card {
    padding: 14px 12px;
  }

  .goo-compare-card h3 {
    font-size: 1rem !important;
  }

  .goo-vs-divider {
    width: 36px;
    height: 36px;
    font-size: 0.8rem;
  }

  .goo-app-section {
    padding: 20px 12px;
    border-radius: 14px;
  }

  .goo-app-section h2 {
    font-size: 1.2rem !important;
  }

  .goo-nav-logo {
    font-size: 1rem;
    gap: 8px;
  }

  .goo-nav-logo-icon {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
  }
}

/* ---------- Prevent any horizontal overflow everywhere ---------- */
img {
  max-width: 100%;
  height: auto;
}

section,
.container,
.row {
  max-width: 100%;
}