/* ===== IMPORTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
  /* Dolphin Anty Colors */
  --dolphin-primary: #7B61FF;
  --dolphin-secondary: #9B85FF;
  --dolphin-glow: rgba(123, 97, 255, 0.4);
  --dolphin-deep: #4A2FBF;

  /* Geonix Colors */
  --geonix-primary: #F5A623;
  --geonix-secondary: #FFD166;
  --geonix-glow: rgba(245, 166, 35, 0.4);
  --geonix-deep: #C4841A;

  /* Backgrounds */
  --bg-primary: #0A0A1A;
  --bg-secondary: #111128;
  --bg-card: rgba(20, 20, 50, 0.6);
  --bg-glass: rgba(255, 255, 255, 0.04);

  /* Text */
  --text-primary: #F0F0FF;
  --text-secondary: #A0A0C0;
  --text-muted: #606080;

  /* Gradients */
  --gradient-merge: linear-gradient(135deg, var(--dolphin-primary), var(--geonix-primary));
  --gradient-dolphin: linear-gradient(135deg, #7B61FF, #A78BFA);
  --gradient-geonix: linear-gradient(135deg, #F5A623, #FFD166);
  --gradient-bg: radial-gradient(ellipse at 30% 20%, rgba(123, 97, 255, 0.08) 0%, transparent 50%),
                 radial-gradient(ellipse at 70% 80%, rgba(245, 166, 35, 0.06) 0%, transparent 50%),
                 linear-gradient(180deg, #0A0A1A 0%, #0D0D25 50%, #0A0A1A 100%);

  /* Spacing */
  --section-padding: 100px 0;
  --container-width: 1200px;

  /* Borders */
  --border-subtle: 1px solid rgba(255, 255, 255, 0.06);
  --border-glow-dolphin: 1px solid rgba(123, 97, 255, 0.2);
  --border-glow-geonix: 1px solid rgba(245, 166, 35, 0.2);

  /* Transitions */
  --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

/* ===== CANVAS BACKGROUND ===== */
#particles-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* ===== FLOATING ORBS ===== */
.orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
  will-change: transform;
}

.orb--dolphin {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--dolphin-glow), transparent 70%);
  top: 10%;
  left: 15%;
  animation: floatOrb1 18s ease-in-out infinite;
}

.orb--geonix {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, var(--geonix-glow), transparent 70%);
  bottom: 15%;
  right: 10%;
  animation: floatOrb2 20s ease-in-out infinite;
}

.orb--merge {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle,
    rgba(180, 130, 200, 0.15),
    rgba(200, 160, 100, 0.08),
    transparent 70%);
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: floatOrb3 15s ease-in-out infinite;
}

@keyframes floatOrb1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(60px, 40px) scale(1.1); }
  50% { transform: translate(-30px, 80px) scale(0.95); }
  75% { transform: translate(40px, -20px) scale(1.05); }
}

@keyframes floatOrb2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(-50px, -30px) scale(1.08); }
  50% { transform: translate(40px, -60px) scale(0.92); }
  75% { transform: translate(-20px, 40px) scale(1.03); }
}

@keyframes floatOrb3 {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  33% { transform: translate(-50%, -50%) scale(1.15); opacity: 0.8; }
  66% { transform: translate(-50%, -50%) scale(0.9); opacity: 1; }
}

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 20px 0;
  transition: var(--transition-smooth);
  backdrop-filter: blur(0px);
}

.nav.scrolled {
  padding: 12px 0;
  backdrop-filter: blur(20px);
  background: rgba(10, 10, 26, 0.8);
  border-bottom: var(--border-subtle);
}

.nav__container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 1.2rem;
  text-decoration: none;
  color: var(--text-primary);
}

.nav__brand-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--gradient-merge);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1rem;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav__links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition-smooth);
  position: relative;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-merge);
  transition: var(--transition-smooth);
  border-radius: 2px;
}

.nav__links a:hover {
  color: var(--text-primary);
}

.nav__links a:hover::after {
  width: 100%;
}

/* ===== MAIN CONTENT ===== */
main {
  position: relative;
  z-index: 1;
}

/* ===== HERO SECTION ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 120px 30px 80px;
}

.hero__content {
  text-align: center;
  max-width: 900px;
  position: relative;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 100px;
  background: var(--bg-glass);
  border: var(--border-subtle);
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
  backdrop-filter: blur(10px);
  animation: fadeInUp 0.8s ease-out;
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ADE80;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero__title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease-out 0.1s both;
}

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

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 48px;
  font-weight: 400;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* ===== LOGOS MERGE SECTION ===== */
.logos-merge {
  position: relative;
  width: 340px;
  height: 180px;
  margin: 0 auto 56px;
  animation: fadeInUp 0.8s ease-out 0.3s both;
}

.logo-float {
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  font-weight: 900;
  transition: var(--transition-smooth);
  cursor: default;
  overflow: hidden;
}

.logo-float img {
  width: 80%;
  height: 80%;
  object-fit: contain;
}

.logo-float--dolphin {
  background: linear-gradient(135deg, #2D1B69, #4A2FBF);
  border: 2px solid rgba(123, 97, 255, 0.3);
  box-shadow: 0 0 40px rgba(123, 97, 255, 0.2),
              0 20px 60px rgba(123, 97, 255, 0.1);
  left: 40px;
  top: 30px;
  animation: floatLogo1 6s ease-in-out infinite;
  z-index: 2;
}

.logo-float--geonix {
  background: linear-gradient(135deg, #3D2E0F, #5C4516);
  border: 2px solid rgba(245, 166, 35, 0.3);
  box-shadow: 0 0 40px rgba(245, 166, 35, 0.2),
              0 20px 60px rgba(245, 166, 35, 0.1);
  right: 40px;
  top: 30px;
  animation: floatLogo2 6s ease-in-out infinite;
  z-index: 2;
}

.logos-merge__connector {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  z-index: 3;
}

.logos-merge__connector svg {
  width: 100%;
  height: 100%;
  animation: rotateSlow 10s linear infinite;
}

@keyframes rotateSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.logos-merge__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle,
    rgba(180, 130, 200, 0.15) 0%,
    transparent 70%);
  animation: mergeGlow 4s ease-in-out infinite;
  z-index: 1;
}

@keyframes mergeGlow {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
  50% { transform: translate(-50%, -50%) scale(1.3); opacity: 1; }
}

@keyframes floatLogo1 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(12px, -10px) rotate(2deg); }
  50% { transform: translate(20px, 5px) rotate(-1deg); }
  75% { transform: translate(8px, 10px) rotate(1deg); }
}

@keyframes floatLogo2 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(-12px, 8px) rotate(-2deg); }
  50% { transform: translate(-20px, -5px) rotate(1deg); }
  75% { transform: translate(-8px, -12px) rotate(-1deg); }
}

.logo-float:hover {
  transform: scale(1.1) !important;
}

/* ===== CTA BUTTONS ===== */
.hero__cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 16px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.5s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn--dolphin {
  background: var(--gradient-dolphin);
  color: #fff;
  box-shadow: 0 4px 20px rgba(123, 97, 255, 0.3),
              0 0 0 1px rgba(123, 97, 255, 0.2);
}

.btn--dolphin:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(123, 97, 255, 0.5),
              0 0 0 1px rgba(123, 97, 255, 0.4);
}

.btn--geonix {
  background: var(--gradient-geonix);
  color: #1a1a2e;
  box-shadow: 0 4px 20px rgba(245, 166, 35, 0.3),
              0 0 0 1px rgba(245, 166, 35, 0.2);
}

.btn--geonix:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(245, 166, 35, 0.5),
              0 0 0 1px rgba(245, 166, 35, 0.4);
}

.btn__icon {
  font-size: 1.3rem;
  display: flex;
  align-items: center;
}

/* ===== FEATURES SECTION ===== */
.features {
  padding: var(--section-padding);
  padding-left: 30px;
  padding-right: 30px;
}

.section-container {
  max-width: var(--container-width);
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header__label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.section-header__title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 16px;
}

.section-header__subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 550px;
  margin: 0 auto;
}

/* ===== PRODUCT CARDS ===== */
.products {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
}

.product-card {
  position: relative;
  border-radius: 24px;
  padding: 48px 40px;
  background: var(--bg-card);
  border: var(--border-subtle);
  backdrop-filter: blur(20px);
  transition: var(--transition-smooth);
  overflow: hidden;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 24px 24px 0 0;
  transition: var(--transition-smooth);
}

.product-card--dolphin::before {
  background: var(--gradient-dolphin);
}

.product-card--geonix::before {
  background: var(--gradient-geonix);
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.1);
}

.product-card--dolphin:hover {
  box-shadow: 0 20px 60px rgba(123, 97, 255, 0.15);
}

.product-card--geonix:hover {
  box-shadow: 0 20px 60px rgba(245, 166, 35, 0.15);
}

.product-card__bg-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.1;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.product-card--dolphin .product-card__bg-glow {
  background: var(--dolphin-primary);
  top: -100px;
  right: -100px;
}

.product-card--geonix .product-card__bg-glow {
  background: var(--geonix-primary);
  top: -100px;
  right: -100px;
}

.product-card:hover .product-card__bg-glow {
  opacity: 0.2;
  transform: scale(1.2);
}

.product-card__icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 2rem;
  overflow: hidden;
}

.product-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 20px;
}

.product-card--dolphin .product-card__icon {
  background: linear-gradient(135deg, rgba(123, 97, 255, 0.15), rgba(123, 97, 255, 0.05));
  border: 1px solid rgba(123, 97, 255, 0.2);
}

.product-card--geonix .product-card__icon {
  background: linear-gradient(135deg, rgba(245, 166, 35, 0.15), rgba(245, 166, 35, 0.05));
  border: 1px solid rgba(245, 166, 35, 0.2);
}

.product-card__title {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.product-card__desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 28px;
  line-height: 1.7;
}

.product-card__features {
  list-style: none;
  margin-bottom: 32px;
}

.product-card__features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  color: var(--text-secondary);
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.product-card__features li:last-child {
  border-bottom: none;
}

.product-card__features li .check {
  width: 24px;
  height: 24px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
}

.product-card--dolphin .check {
  background: rgba(123, 97, 255, 0.15);
  color: var(--dolphin-secondary);
}

.product-card--geonix .check {
  background: rgba(245, 166, 35, 0.15);
  color: var(--geonix-secondary);
}

.product-card__btn {
  width: 100%;
  justify-content: center;
  padding: 18px 32px;
  font-size: 1.05rem;
}

/* ===== WHY TOGETHER SECTION ===== */
.synergy {
  padding: var(--section-padding);
  padding-left: 30px;
  padding-right: 30px;
  position: relative;
}

.synergy__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.synergy-card {
  background: var(--bg-glass);
  border: var(--border-subtle);
  border-radius: 20px;
  padding: 36px 28px;
  backdrop-filter: blur(10px);
  transition: var(--transition-smooth);
  text-align: center;
}

.synergy-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
}

.synergy-card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  border-radius: 16px;
  background: var(--gradient-merge);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.synergy-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.synergy-card__desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ===== HOW IT WORKS ===== */
.steps {
  padding: var(--section-padding);
  padding-left: 30px;
  padding-right: 30px;
}

.steps__timeline {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  position: relative;
}

.steps__timeline::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg,
    var(--dolphin-primary),
    rgba(180, 130, 200, 0.5),
    var(--geonix-primary));
  z-index: 0;
}

.step {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 1;
}

.step__number {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--bg-secondary);
  border: 2px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 800;
  margin: 0 auto 24px;
  transition: var(--transition-smooth);
}

.step:nth-child(1) .step__number { color: var(--dolphin-primary); }
.step:nth-child(2) .step__number {
  background: var(--gradient-merge);
  color: #fff;
  border-color: transparent;
}
.step:nth-child(3) .step__number { color: var(--geonix-primary); }

.step__title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.step__desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  max-width: 250px;
  margin: 0 auto;
}

/* ===== FINAL CTA ===== */
.final-cta {
  padding: 120px 30px;
  text-align: center;
  position: relative;
}

.final-cta__box {
  max-width: 700px;
  margin: 0 auto;
  padding: 64px 48px;
  border-radius: 32px;
  background: linear-gradient(135deg,
    rgba(123, 97, 255, 0.08),
    rgba(245, 166, 35, 0.08));
  border: var(--border-subtle);
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}

.final-cta__box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-merge);
}

.final-cta__title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 16px;
}

.final-cta__desc {
  color: var(--text-secondary);
  margin-bottom: 36px;
  font-size: 1rem;
}

.final-cta__buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== FOOTER ===== */
.footer {
  padding: 40px 30px;
  border-top: var(--border-subtle);
  text-align: center;
}

.footer__content {
  max-width: var(--container-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__copy {
  color: var(--text-muted);
  font-size: 0.8rem;
}

.footer__contact {
  color: var(--text-muted);
  font-size: 0.75rem;
  text-decoration: none;
  transition: var(--transition-smooth);
  opacity: 0.5;
}

.footer__contact:hover {
  opacity: 1;
  color: var(--text-secondary);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ===== MOBILE MENU TOGGLE ===== */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 110;
}

.nav__toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition-smooth);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .products {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

  .synergy__grid {
    grid-template-columns: 1fr 1fr;
  }

  .steps__timeline {
    flex-direction: column;
    gap: 40px;
  }

  .steps__timeline::before {
    top: 0;
    bottom: 0;
    left: 40px;
    right: unset;
    width: 2px;
    height: 100%;
  }

  .step {
    text-align: left;
    display: flex;
    align-items: flex-start;
    gap: 24px;
  }

  .step__number {
    flex-shrink: 0;
    margin: 0;
    width: 60px;
    height: 60px;
    font-size: 1.4rem;
  }

  .step__desc {
    max-width: none;
  }
}

@media (max-width: 768px) {
  .nav__links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(10, 10, 26, 0.95);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 40px;
    transition: var(--transition-smooth);
    border-left: var(--border-subtle);
  }

  .nav__links.open {
    right: 0;
  }

  .nav__toggle {
    display: flex;
  }

  .hero {
    padding: 100px 20px 60px;
  }

  .hero__title {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .logos-merge {
    width: 280px;
    height: 160px;
  }

  .logo-float {
    width: 96px;
    height: 96px;
    border-radius: 22px;
  }

  .logo-float--dolphin {
    left: 20px;
  }

  .logo-float--geonix {
    right: 20px;
  }

  .hero__cta {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  .synergy__grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    padding: 36px 28px;
  }

  .features,
  .synergy,
  .steps {
    padding: 60px 20px;
  }

  .final-cta {
    padding: 80px 20px;
  }

  .final-cta__box {
    padding: 40px 24px;
  }

  .final-cta__buttons {
    flex-direction: column;
    align-items: center;
  }

  .footer__content {
    flex-direction: column;
    gap: 12px;
  }

  .orb--dolphin {
    width: 300px;
    height: 300px;
  }

  .orb--geonix {
    width: 250px;
    height: 250px;
  }

  .orb--merge {
    width: 350px;
    height: 350px;
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: 1.8rem;
  }

  .logos-merge {
    width: 240px;
    height: 140px;
  }

  .logo-float {
    width: 80px;
    height: 80px;
    border-radius: 18px;
  }

  .logo-float--dolphin {
    left: 10px;
  }

  .logo-float--geonix {
    right: 10px;
  }

  .section-header__title {
    font-size: 1.5rem;
  }
}

/* ===== SCROLL INDICATOR ===== */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

.scroll-indicator__mouse {
  width: 26px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 13px;
  position: relative;
}

.scroll-indicator__dot {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  border-radius: 2px;
  background: var(--text-secondary);
  animation: scrollDot 2s ease-in-out infinite;
}

@keyframes scrollDot {
  0%, 100% { top: 8px; opacity: 1; }
  50% { top: 22px; opacity: 0.3; }
}

.scroll-indicator__text {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
}
