:root {
  /* Brand Palette */
  --brand-primary: #fe127e; /* Vibrant Pink requested by user */
  --brand-secondary: #fda769; /* Warn Peach (keeps harmony) */
  --brand-accent: #291a20; /* Dark Text */
  --brand-light: #fff3e6; /* Light bg nuance */

  /* Gradients */
  --gradient-brand: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
  --gradient-glass: linear-gradient(145deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.1));
  --gradient-blob: linear-gradient(to right, #fda769, #d61c4e);

  /* Glassmorphism */
  --glass-bg: rgba(255, 255, 255, 0.65);
  --glass-border: 1px solid rgba(255, 255, 255, 0.4);
  --glass-shadow: 0 8px 32px rgba(214, 28, 78, 0.1);
  --blur-amount: 20px;

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Outfit', sans-serif;

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

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px; /* Offset for fixed header */
}

body {
  font-family: var(--font-body);
  background-color: #fdf9f6; /* Soft warm white */
  color: var(--brand-accent);
  line-height: 1.6;
  overflow-x: clip; /* Stronger than hidden - prevents any horizontal scroll */
  -webkit-font-smoothing: antialiased;
  position: relative;
  width: 100%;
  max-width: 100vw;
}

html {
  overflow-x: clip;
  max-width: 100vw;
  width: 100%;
}

/* Background Blobs */
.bg-blob {
  position: fixed; /* Fixed so they stay in viewport */
  border-radius: 50%;
  filter: blur(80px);
  z-index: -1;
  opacity: 0.4;
  animation: blobFloat 20s infinite alternate;
  pointer-events: none;
}
.blob-1 {
  top: -5%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: var(--brand-secondary);
}
.blob-2 {
  top: 20%;
  right: -5%;
  width: 400px;
  height: 400px;
  background: var(--brand-primary);
  animation-delay: -5s;
}
.blob-3 {
  top: 50%;
  left: 20%;
  width: 350px;
  height: 350px;
  background: #ffd1d1;
  opacity: 0.3;
  animation-delay: -10s;
}

@keyframes blobFloat {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(30px, -30px) scale(1.1);
  }
}

/* ========================================
   PARALLAX & SECTION BACKGROUNDS SYSTEM
   ======================================== */

/* Parallax Container */
.parallax-wrapper {
  position: relative;
  overflow: hidden;
}

/* Base Section Background Layer */
.section-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

/* Parallax Layer - moves slower than scroll */
.parallax-layer {
  position: absolute;
  width: 100%;
  height: 120%;
  top: -10%;
  left: 0;
  will-change: transform;
  transition: transform 0.1s ease-out;
}

/* ========================================
   FLOATING PARTICLES
   ======================================== */
.particles {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
  pointer-events: none;
}

.particle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.4;
  animation: particleFloat 20s infinite ease-in-out;
}

.particle:nth-child(1) {
  width: 8px;
  height: 8px;
  background: var(--brand-primary);
  top: 20%;
  left: 10%;
  animation-delay: 0s;
  animation-duration: 25s;
}

.particle:nth-child(2) {
  width: 12px;
  height: 12px;
  background: var(--brand-secondary);
  top: 60%;
  left: 85%;
  animation-delay: -5s;
  animation-duration: 20s;
}

.particle:nth-child(3) {
  width: 6px;
  height: 6px;
  background: #ffd1d1;
  top: 80%;
  left: 25%;
  animation-delay: -10s;
  animation-duration: 30s;
}

.particle:nth-child(4) {
  width: 10px;
  height: 10px;
  background: var(--brand-primary);
  top: 40%;
  left: 70%;
  animation-delay: -7s;
  animation-duration: 22s;
}

.particle:nth-child(5) {
  width: 5px;
  height: 5px;
  background: var(--brand-secondary);
  top: 15%;
  left: 60%;
  animation-delay: -3s;
  animation-duration: 28s;
}

.particle:nth-child(6) {
  width: 14px;
  height: 14px;
  background: rgba(254, 18, 126, 0.3);
  top: 70%;
  left: 40%;
  animation-delay: -12s;
  animation-duration: 18s;
}

@keyframes particleFloat {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(30px, -50px) rotate(90deg);
  }
  50% {
    transform: translate(-20px, -100px) rotate(180deg);
  }
  75% {
    transform: translate(40px, -50px) rotate(270deg);
  }
}

/* ========================================
   HERO SECTION - GRADIENT WAVES
   ======================================== */
.hero-section {
  padding-top: 180px;
  padding-bottom: 120px;
  position: relative;
  overflow: hidden;
  /* Seamless bottom edge */
  background: linear-gradient(
    180deg,
    transparent 0%,
    transparent 70%,
    rgba(255, 243, 230, 0.3) 100%
  );
}

.hero-section .section-bg {
  background: radial-gradient(
      ellipse 80% 50% at 50% 0%,
      rgba(254, 18, 126, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(ellipse 60% 40% at 80% 80%, rgba(253, 167, 105, 0.1) 0%, transparent 50%);
}

.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200%;
  height: 150px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100'%3E%3Cpath fill='rgba(254, 18, 126, 0.03)' d='M0,50 C360,100 720,0 1080,50 C1260,75 1440,50 1440,50 L1440,100 L0,100 Z'/%3E%3C/svg%3E")
    repeat-x;
  animation: waveMove 15s linear infinite;
}

.hero-wave:nth-child(2) {
  opacity: 0.5;
  animation-delay: -5s;
  animation-duration: 20s;
}

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

/* ========================================
   PROBLEM SECTION - GRID PATTERN
   ======================================== */
.problem-section {
  position: relative;
  /* Seamless edges - blend with hero above and solution below */
  background: linear-gradient(
    180deg,
    rgba(255, 243, 230, 0.3) 0%,
    rgba(255, 243, 230, 0.5) 50%,
    rgba(255, 243, 230, 0.3) 100%
  );
}

.problem-section .section-bg {
  background-image: linear-gradient(rgba(254, 18, 126, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(254, 18, 126, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 0%, transparent 70%);
}

/* Glitch lines for chaos effect */
.chaos-line {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(254, 18, 126, 0.2), transparent);
  animation: chaosGlitch 8s infinite ease-in-out;
}

.chaos-line:nth-child(1) {
  width: 200px;
  top: 30%;
  left: 5%;
  animation-delay: 0s;
}

.chaos-line:nth-child(2) {
  width: 150px;
  top: 50%;
  right: 10%;
  animation-delay: -2s;
}

.chaos-line:nth-child(3) {
  width: 180px;
  top: 70%;
  left: 20%;
  animation-delay: -4s;
}

@keyframes chaosGlitch {
  0%,
  90%,
  100% {
    opacity: 0;
    transform: scaleX(0.5);
  }
  5%,
  85% {
    opacity: 1;
    transform: scaleX(1);
  }
}

/* ========================================
   SOLUTION SECTION - GLOWING ORBS
   ======================================== */
.solution-section {
  position: relative;
  background: linear-gradient(
    180deg,
    rgba(255, 243, 230, 0.3) 0%,
    transparent 30%,
    transparent 70%,
    rgba(255, 243, 230, 0.3) 100%
  );
}

.solution-section .section-bg {
  background: radial-gradient(circle 300px at 10% 30%, rgba(253, 167, 105, 0.1) 0%, transparent 50%),
    radial-gradient(circle 250px at 90% 60%, rgba(254, 18, 126, 0.08) 0%, transparent 50%),
    radial-gradient(circle 200px at 50% 80%, rgba(255, 209, 209, 0.1) 0%, transparent 50%);
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  animation: orbPulse 6s infinite ease-in-out;
}

.glow-orb:nth-child(1) {
  width: 300px;
  height: 300px;
  background: rgba(254, 18, 126, 0.15);
  top: 10%;
  left: -5%;
  animation-delay: 0s;
}

.glow-orb:nth-child(2) {
  width: 250px;
  height: 250px;
  background: rgba(253, 167, 105, 0.15);
  bottom: 20%;
  right: -5%;
  animation-delay: -2s;
}

.glow-orb:nth-child(3) {
  width: 200px;
  height: 200px;
  background: rgba(255, 209, 209, 0.2);
  top: 50%;
  left: 40%;
  animation-delay: -4s;
}

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

/* ========================================
   AI SECTION - TECH RADIAL PULSES
   ======================================== */
.ai-section {
  position: relative;
  background: radial-gradient(circle at center, rgba(214, 28, 78, 0.05) 0%, transparent 70%);
}

.ai-section .section-bg {
  background: radial-gradient(
    circle 400px at 70% 50%,
    rgba(254, 18, 126, 0.05) 0%,
    transparent 50%
  );
}

.tech-ring {
  position: absolute;
  border: 1px solid rgba(254, 18, 126, 0.1);
  border-radius: 50%;
  animation: ringExpand 8s infinite ease-out;
}

.tech-ring:nth-child(1) {
  width: 100px;
  height: 100px;
  top: 50%;
  left: 70%;
  transform: translate(-50%, -50%);
  animation-delay: 0s;
}

.tech-ring:nth-child(2) {
  width: 100px;
  height: 100px;
  top: 50%;
  left: 70%;
  transform: translate(-50%, -50%);
  animation-delay: -2s;
}

.tech-ring:nth-child(3) {
  width: 100px;
  height: 100px;
  top: 50%;
  left: 70%;
  transform: translate(-50%, -50%);
  animation-delay: -4s;
}

.tech-ring:nth-child(4) {
  width: 100px;
  height: 100px;
  top: 50%;
  left: 70%;
  transform: translate(-50%, -50%);
  animation-delay: -6s;
}

@keyframes ringExpand {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.8;
    border-width: 2px;
  }
  100% {
    transform: translate(-50%, -50%) scale(5);
    opacity: 0;
    border-width: 0.5px;
  }
}

/* Binary/Code dots for tech feel */
.code-dots {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.code-dot {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--brand-primary);
  border-radius: 50%;
  opacity: 0;
  animation: codeBlink 3s infinite;
}

.code-dot:nth-child(1) {
  top: 20%;
  left: 15%;
  animation-delay: 0s;
}
.code-dot:nth-child(2) {
  top: 35%;
  left: 25%;
  animation-delay: 0.5s;
}
.code-dot:nth-child(3) {
  top: 60%;
  left: 10%;
  animation-delay: 1s;
}
.code-dot:nth-child(4) {
  top: 75%;
  left: 30%;
  animation-delay: 1.5s;
}
.code-dot:nth-child(5) {
  top: 45%;
  left: 5%;
  animation-delay: 2s;
}

@keyframes codeBlink {
  0%,
  40%,
  100% {
    opacity: 0;
  }
  20% {
    opacity: 0.6;
  }
}

/* ========================================
   MARKET SECTION - DYNAMIC LINES
   ======================================== */
.market-section {
  position: relative;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(254, 18, 126, 0.02) 50%,
    transparent 100%
  );
}

.market-section .section-bg {
  overflow: hidden;
}

.growth-line {
  position: absolute;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(254, 18, 126, 0.3),
    rgba(253, 167, 105, 0.3),
    transparent
  );
  transform-origin: left center;
  animation: growLine 4s ease-out forwards;
  opacity: 0;
}

.growth-line.animated {
  opacity: 1;
}

.growth-line:nth-child(1) {
  width: 60%;
  bottom: 40%;
  left: 10%;
  animation-delay: 0s;
}

.growth-line:nth-child(2) {
  width: 40%;
  bottom: 55%;
  left: 20%;
  animation-delay: 0.3s;
}

.growth-line:nth-child(3) {
  width: 50%;
  bottom: 70%;
  left: 15%;
  animation-delay: 0.6s;
}

@keyframes growLine {
  0% {
    transform: scaleX(0);
  }
  100% {
    transform: scaleX(1);
  }
}

/* Chart grid background */
.chart-grid {
  position: absolute;
  width: 80%;
  height: 60%;
  left: 10%;
  top: 20%;
  background-image: linear-gradient(rgba(254, 18, 126, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(254, 18, 126, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.5;
}

/* ========================================
   TEAM SECTION - SOFT GRADIENT SPOTS
   ======================================== */
.team-section {
  position: relative;
  /* Smooth fade to white at bottom for seamless footer transition */
  background: linear-gradient(
    180deg,
    transparent 0%,
    transparent 70%,
    rgba(255, 255, 255, 0.5) 90%,
    white 100%
  );
  padding-bottom: 60px; /* Extra padding for smooth blend */
}

.team-section .section-bg {
  background: radial-gradient(
      ellipse 50% 50% at 20% 30%,
      rgba(253, 167, 105, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(ellipse 40% 40% at 80% 70%, rgba(254, 18, 126, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse 30% 30% at 50% 50%, rgba(255, 243, 230, 0.3) 0%, transparent 50%);
}

/* Connection lines between team members - hidden for cleaner look */
.team-connector {
  display: none; /* Removed - was creating visual noise */
}

/* ========================================
   FOOTER - PREMIUM GRADIENT
   ======================================== */
.footer-section {
  position: relative;
}

.footer-section .section-bg {
  background: linear-gradient(180deg, transparent 0%, rgba(254, 18, 126, 0.02) 100%);
}

/* ========================================
   SECTION DIVIDERS
   ======================================== */
.section-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(180deg, transparent, rgba(253, 249, 246, 0.5));
  pointer-events: none;
}

.section-divider-top {
  top: 0;
  bottom: auto;
  background: linear-gradient(0deg, transparent, rgba(253, 249, 246, 0.5));
}

/* Curved divider */
.curved-divider {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 80px;
  pointer-events: none;
}

.curved-divider svg {
  width: 100%;
  height: 100%;
}

/* ========================================
   SCROLL-TRIGGERED ANIMATIONS
   ======================================== */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger-delay-1 {
  transition-delay: 0.1s;
}
.stagger-delay-2 {
  transition-delay: 0.2s;
}
.stagger-delay-3 {
  transition-delay: 0.3s;
}
.stagger-delay-4 {
  transition-delay: 0.4s;
}
.stagger-delay-5 {
  transition-delay: 0.5s;
}
.stagger-delay-6 {
  transition-delay: 0.6s;
}

/* Typography Utility */
h1,
h2,
h3,
h4 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}
h1 {
  font-size: 3.5rem;
  letter-spacing: -1px;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
h2 {
  font-size: 2.8rem;
  letter-spacing: -0.5px;
}
h3 {
  font-size: 1.5rem;
}
p {
  font-size: 1.125rem;
  color: rgba(41, 26, 32, 0.8);
  margin-bottom: 1.5rem;
}
.text-center {
  text-align: center;
}
.text-muted {
  color: rgba(41, 26, 32, 0.6);
  font-size: 0.9rem;
}
.highlight {
  color: var(--brand-primary);
  font-weight: 600;
}

/* Wrapper */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 1.1rem;
  gap: 10px;
  position: relative;
  overflow: hidden; /* For shine effect */
}
.btn-primary {
  background: var(--gradient-brand);
  color: white;
  box-shadow: 0 10px 20px rgba(214, 28, 78, 0.3);
  z-index: 1;
}
/* Shine Effect */
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: all 0.6s;
  z-index: -1;
}
.btn-primary:hover::before {
  left: 100%;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(214, 28, 78, 0.5);
}
.btn-secondary {
  background: rgba(255, 255, 255, 0.8);
  color: var(--brand-primary);
  border: 1px solid rgba(214, 28, 78, 0.2);
}
.btn-secondary:hover {
  background: white;
  border-color: var(--brand-primary);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.btn-pulse {
  animation: pulseGlow 3s infinite;
}

/* Footer Buttons */
.btn-white {
  background: white;
  color: var(--brand-primary);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.btn-white:hover {
  background: #f8f8f8;
  transform: translateY(-3px);
  color: var(--brand-primary);
}

.btn-outline-white {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.8);
  color: white;
}
.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
  transform: translateY(-3px);
}

@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(214, 28, 78, 0.4);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(214, 28, 78, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(214, 28, 78, 0);
  }
}

/* Glass Card */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--blur-amount));
  -webkit-backdrop-filter: blur(var(--blur-amount));
  border: var(--glass-border);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: var(--glass-shadow);
  transition: transform 0.3s ease;
}
.glass-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.75);
}

/* --- SECTIONS --- */

/* Header */
header {
  padding: 20px 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(253, 249, 246, 0.85); /* Slightly opaque for legibility */
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.traction-ribbon {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.85); /* Slightly transparent */
  backdrop-filter: blur(10px);
  padding: 1.5rem 3rem;
  border-radius: 24px;
  box-shadow: 0 15px 40px rgba(214, 28, 78, 0.05); /* Tinted shadow */
  margin-top: 40px;
  border: 1px solid rgba(255, 255, 255, 0.6);
}
.traction-text h3 {
  font-size: 1.5rem;
  color: var(--brand-primary);
  margin-bottom: 5px;
}
.traction-text p {
  font-size: 1rem;
  color: #666;
  margin-bottom: 0;
}
.traction-ribbon img {
  height: 70px; /* Slightly larger */
  border-radius: 20px;
  mix-blend-mode: multiply; /* The trick to hide white box */
  filter: contrast(1.1); /* Pop colors */
}

/* Footer & CTA */
.nav-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-links {
  display: flex;
  align-items: center;
  flex-wrap: nowrap; /* Prevent Pitch Deck button from wrapping incorrectly */
}
.logo-area {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--brand-primary);
}
.logo-icon {
  height: 48px;
  width: auto;
  transition: all 0.4s ease, filter 0.4s ease;
  filter: drop-shadow(0 4px 6px rgba(214, 28, 78, 0.2));
}
.logo-text {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 2rem;
  background: linear-gradient(
    135deg,
    var(--brand-primary) 0%,
    var(--brand-secondary) 50%,
    var(--brand-primary) 100%
  ); /* Use variables */
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.5px;
  margin-left: 10px;
  filter: drop-shadow(0 2px 4px rgba(254, 18, 126, 0.15)); /* Adjusted shadow color slightly */
  transition: background-position 0.6s ease;
}

/* Logo Hover Effects */
.logo-area {
  cursor: pointer;
}

.logo-area:hover .logo-text {
  background-position: right center;
}
.logo-area:hover .logo-icon {
  transform: scale(1.1) rotate(10deg);
  filter: drop-shadow(0 0 15px rgba(253, 167, 105, 0.6));
}
/* Nav Links - Underline Effect */
.nav-links a {
  margin-left: 30px;
  text-decoration: none;
  color: var(--brand-accent);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding-bottom: 5px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--brand-primary);
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 0.3s ease-out;
}
.nav-links a:hover {
  color: var(--brand-primary);
}
.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

/* Fix for Button inside Nav */
.nav-links a.btn {
  color: white !important; /* Override nav link color */
  padding-bottom: initial; /* Reset padding */
  margin-left: 20px;
}
.nav-links a.btn::after {
  display: none; /* No underline for button */
}
.nav-links a.btn:hover {
  color: white !important;
  transform: translateY(-2px);
}

/* Hero */
.hero-section {
  padding-top: 180px; /* Space for fixed header */
  padding-bottom: 100px;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  perspective: 1000px; /* Essential for 3D effect */
}
.hero-visual img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
  /* Animation removed here to be controlled by JS, or combined carefully */
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 0.1s ease-out; /* Smooth follow */
}
/* Optional: Retain floating when not hovering if desired, but JS usually override. 
   Let's keep floating only if JS isn't active acting, but simple is better: remove float for now or handle via JS. */
@keyframes floating {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0);
  }
}

/* Stats Scroller (Traction / Logos) */
.traction-bar {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-top: 50px;
  flex-wrap: wrap;
}
.traction-item {
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--brand-accent);
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0.8;
}
.traction-item i {
  color: var(--brand-secondary);
}

/* Problem Section */
/* Problem Section */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

/* Problem cards - Full Bleed Image */
.card-problem {
  display: flex;
  flex-direction: column;
  padding: 0; /* No padding so image touches edges */
  overflow: hidden; /* Clips image to border-radius */
  height: 100%;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.card-problem img {
  width: 100%;
  height: 240px; /* Fixed height for consistency */
  object-fit: cover; /* Ensures image fills the space */
  object-position: center;
  margin: 0;
  border-bottom: 1px solid rgba(254, 18, 126, 0.05); /* Subtle separator */
  /* No transform on img hover as requested */
}

/* Text wrapper for padding */
.card-content {
  padding: 1.5rem 2rem 2.5rem;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card-problem h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
  font-weight: 700;
  margin-top: 10px;
}
.card-problem p {
  font-size: 1rem;
  margin-bottom: 0;
  color: rgba(41, 26, 32, 0.7);
  line-height: 1.5;
}

/* Hover: Enliven WHOLE card */
.card-problem:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px rgba(214, 28, 78, 0.15);
}
.card-problem:hover img {
  /* Explicitly doing nothing to image as requested */
  transform: none;
}

/* Response for tablet/mobile */
@media (max-width: 992px) {
  .problem-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .problem-grid {
    grid-template-columns: 1fr;
  }
  .card-problem {
    padding: 0 !important; /* Force full bleed on mobile, overriding generic .glass-card styles */
    border-radius: 20px; /* Ensure nice rounded corners on mobile */
  }

  .card-problem {
    padding: 0 !important; /* Force full bleed on mobile, overriding generic .glass-card styles */
    border-radius: 20px; /* Ensure nice rounded corners on mobile */
  }
}

/* Competitive Block (Separate Feature) */
.competitive-block {
  margin-top: 60px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 243, 230, 0.8));
  border: 1px solid rgba(254, 18, 126, 0.1);
  border-radius: 30px;
  padding: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  position: relative;
}

.competitive-block .content-side {
  padding: 60px;
  flex: 1;
  z-index: 2;
}

.competitive-block .visual-side {
  flex: 1;
  height: 400px;
  background: radial-gradient(circle at center, rgba(254, 18, 126, 0.05), transparent 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.competitive-block img {
  max-width: 80%;
  max-height: 80%;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
  transition: transform 0.5s ease;
}

.competitive-block:hover img {
  transform: scale(1.05) rotate(-2deg);
}

.label-pill {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(254, 18, 126, 0.1);
  color: var(--brand-primary);
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (max-width: 992px) {
  .competitive-block {
    flex-direction: column-reverse;
    text-align: center;
  }
  .competitive-block .visual-side {
    width: 100%;
    height: 300px;
  }
  .competitive-block .content-side {
    padding: 40px 30px;
  }
}

/* Mobile specific overrides for Competitive Block to ensure Full Bleed */
@media (max-width: 600px) {
  .competitive-block {
    border-radius: 20px;
    margin-top: 40px;
  }
  .competitive-block .visual-side {
    height: 240px; /* Match standard card image height */
    width: 100%;
    padding: 0;
    display: block;
    background: linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.5),
      rgba(255, 243, 230, 0.5)
    ); /* Subtle bg in case load delay */
  }
  .competitive-block img {
    /* Force overrides of desktop styles */
    max-width: none !important;
    max-height: none !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transform: none !important;
    margin: 0 !important;
    display: block;
  }
  .competitive-block .content-side {
    padding: 2rem 1.5rem;
  }
}

/* Solution Section */
.solution-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}
.card-feature {
  text-align: center;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center; /* Always center icons */
}
.card-feature img {
  height: 150px;
  width: 150px;
  object-fit: contain;
  margin-bottom: 24px;
  transition: transform 0.4s ease, filter 0.4s ease;
  border-radius: 28px;
  /* Glowing background circle effect */
  padding: 15px;
  background: linear-gradient(145deg, rgba(254, 18, 126, 0.08), rgba(253, 167, 105, 0.1));
  box-shadow: 0 8px 25px rgba(254, 18, 126, 0.15), inset 0 0 20px rgba(255, 255, 255, 0.5);
}
.card-feature:hover img {
  transform: scale(1.15) rotate(3deg);
  filter: drop-shadow(0 10px 20px rgba(254, 18, 126, 0.25));
}

/* AI Feature (Split) */
.ai-section {
  background: radial-gradient(circle at center, rgba(214, 28, 78, 0.05) 0%, transparent 70%);
}
.ai-demo-img {
  width: 100%;
  border-radius: 30px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}
.quote-box {
  margin: 30px 0;
  padding: 20px;
  border-left: 4px solid var(--brand-primary);
  background: rgba(255, 255, 255, 0.5);
  border-radius: 0 12px 12px 0;
}
.quote-line {
  font-style: italic;
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}
.quote-line.ai {
  color: var(--brand-primary);
  font-weight: 700;
}

/* Market Section */
.chart-img {
  width: 100%;
  max-width: 800px;
  margin: 40px auto;
  display: block;
  border-radius: 20px;
}
.market-stats-row {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-bottom: 40px;
}
.stat-box h2 {
  color: var(--brand-primary);
  margin-bottom: 5px;
}

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}
.team-card {
  text-align: center;
}
.team-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  border: 4px solid white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Footer */
footer {
  padding: 80px 0 40px;
  background: white;
  margin-top: 0; /* Removed gap - team section handles the transition */
  border-top: none; /* Seamless transition */
}
.footer-cta-box {
  /* More elegant, deeper gradient - less screaming pink */
  background: linear-gradient(135deg, #c2185b 0%, #e91e63 40%, #f06292 100%);
  color: white;
  border-radius: 30px;
  padding: 60px;
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(194, 24, 91, 0.25);
}
.footer-cta-box h2 {
  color: white; /* Override default heading gradient */
  background: none;
  -webkit-text-fill-color: white;
}
.footer-cta-box p {
  color: rgba(255, 255, 255, 0.9);
}
.btn-white {
  background: white;
  color: var(--brand-primary);
}
.btn-white:hover {
  background: #f0f0f0;
}

/* Hide mobile menu on desktop */
.mobile-menu-btn {
  display: none;
}

.mobile-menu {
  display: none;
}

/* Mobile Responsive */
@media (max-width: 992px) {
  :root {
    --section-padding: 60px 0;
  }

  h1 {
    font-size: 2.4rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-section {
    padding-top: 140px;
    padding-bottom: 60px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }

  .hero-visual {
    order: -1;
    margin-bottom: 20px;
  }

  .hero-visual img {
    max-width: 80%;
  }

  .hero-btns,
  .hero-cta {
    justify-content: center;
    flex-wrap: wrap;
  }

  .traction-bar {
    gap: 20px;
    margin-top: 30px;
  }

  .problem-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .card-competitor {
    grid-column: span 2;
    flex-direction: column;
    text-align: center;
  }

  .solution-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .card-feature {
    padding: 1.5rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center; /* Center icons and content */
  }

  .card-feature img {
    height: 120px; /* Keep icons large on mobile */
    width: 120px;
    margin: 0 auto 20px; /* Center horizontally */
  }

  .market-stats-row {
    gap: 30px;
  }

  .team-grid {
    gap: 20px;
  }

  .traction-ribbon {
    flex-direction: column;
    text-align: center;
    gap: 20px;
    padding: 1.5rem;
  }

  .footer-cta-box {
    padding: 40px 20px;
    margin-bottom: 40px;
  }

  /* Hide decorative backgrounds on mobile for performance */
  .section-bg {
    opacity: 0.5;
  }

  .chart-grid {
    display: none;
  }
}

/* --- TOAST NOTIFICATION --- */
.toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: rgba(41, 26, 32, 0.9);
  color: white;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 500;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  z-index: 3000;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 12px;
}
.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  visibility: visible;
}
.toast i {
  color: var(--brand-secondary);
}
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(5px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}
.modal-content {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  padding: 3rem;
  border-radius: 24px;
  width: 90%;
  max-width: 500px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.5);
}
.modal-overlay.active .modal-content {
  transform: translateY(0);
}
.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--brand-accent);
  cursor: pointer;
}
.form-group {
  margin-bottom: 20px;
  text-align: left;
}
.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 0.9rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 12px;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.8);
  transition: border-color 0.3s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 3px rgba(214, 28, 78, 0.1);
}
.modal-title {
  font-size: 1.8rem;
  margin-bottom: 10px;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}
.modal-desc {
  margin-bottom: 30px;
  color: #666;
  font-size: 0.95rem;
}

/* --- EMAIL HELPER OPTIONS --- */
.email-options {
  display: grid;
  gap: 15px;
  margin-top: 25px;
}

.email-option-card {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 16px;
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 16px;
  text-decoration: none;
  color: var(--brand-accent);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.email-option-card:hover {
  transform: translateY(-2px);
  background: rgba(254, 18, 126, 0.03);
  border-color: rgba(254, 18, 126, 0.2);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.03);
}

.email-option-card .icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.email-option-card.gmail .icon-circle {
  background: #fff4f4;
  color: #ea4335;
}

.email-option-card.default .icon-circle {
  background: #f0f7ff;
  color: #007aff;
}

.email-option-card.copy .icon-circle {
  background: #f5f5f7;
  color: var(--brand-accent);
}

.email-option-card .text-content {
  flex-grow: 1;
}

.email-option-card .opt-title {
  display: block;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 2px;
}

.email-option-card .opt-desc {
  display: block;
  font-size: 0.8rem;
  color: #777;
}

.copy-success-badge {
  background: #4caf50;
  color: white;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  opacity: 0;
  transition: opacity 0.3s;
}

.copy-success-badge.show {
  opacity: 1;
}

.email-back-btn {
  margin-top: 20px;
  background: none;
  border: none;
  color: #777;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.email-back-btn:hover {
  color: var(--brand-primary);
}

/* Show hamburger menu at 670px */
@media (max-width: 670px) {
  .nav-links {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 32px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1100;
  }

  .hamburger-line {
    width: 100%;
    height: 3px;
    background: var(--brand-primary);
    border-radius: 3px;
    transition: all 0.3s ease;
  }

  .mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }

  .mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }

  .mobile-menu {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: rgba(253, 249, 246, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transform: translateY(-150%);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.68, -0.15, 0.265, 1.15);
    z-index: 999;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(254, 18, 126, 0.1);
  }

  .mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
  }

  .mobile-nav-link {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--brand-accent);
    text-decoration: none;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: color 0.3s ease;
  }

  .mobile-nav-link:hover,
  .mobile-nav-link:active {
    color: var(--brand-primary);
  }

  .mobile-cta-btn {
    margin-top: 10px;
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 600px) {
  :root {
    --section-padding: 40px 0;
  }

  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.1rem;
  }

  p {
    font-size: 1rem;
  }

  .container {
    padding: 0 20px; /* Equal padding on both sides */
  }

  /* Hide desktop nav on mobile */
  .nav-links {
    display: none;
  }

  /* Mobile Hamburger Button */
  .mobile-menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 32px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1100;
  }

  .hamburger-line {
    width: 100%;
    height: 3px;
    background: var(--brand-primary);
    border-radius: 3px;
    transition: all 0.3s ease;
  }

  /* Hamburger animation when open */
  .mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }

  .mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }

  /* Mobile Menu Overlay */
  .mobile-menu {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: rgba(253, 249, 246, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transform: translateY(-150%);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.68, -0.15, 0.265, 1.15);
    z-index: 999;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(254, 18, 126, 0.1);
  }

  .mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
  }

  .mobile-nav-link {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--brand-accent);
    text-decoration: none;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: color 0.3s ease;
  }

  .mobile-nav-link:hover,
  .mobile-nav-link:active {
    color: var(--brand-primary);
  }

  .mobile-cta-btn {
    margin-top: 10px;
    width: 100%;
    text-align: center;
  }

  .hero-section {
    padding-top: 100px;
    padding-bottom: 40px;
  }

  .hero-visual img {
    max-width: 90%;
  }

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

  .problem-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .card-competitor {
    grid-column: span 1;
  }

  .solution-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .card-feature {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .card-feature img {
    height: 100px; /* Keep icons visible on small screens */
    width: 100px;
    margin: 0 auto 16px;
  }

  .glass-card {
    padding: 1.25rem;
    border-radius: 16px;
  }

  .market-stats-row {
    flex-direction: column;
    gap: 16px;
  }

  .stat-box h2 {
    font-size: 2rem;
  }

  .chart-img {
    margin: 20px auto;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .team-avatar {
    width: 80px;
    height: 80px;
  }

  .traction-ribbon {
    margin-top: 20px;
    padding: 1rem;
    border-radius: 16px;
  }

  .traction-ribbon img {
    height: 50px;
  }

  .footer-cta-box {
    padding: 30px 16px;
    border-radius: 20px;
    margin-bottom: 30px;
  }

  .footer-cta-box h2 {
    font-size: 1.4rem;
  }

  /* Hide all decorative backgrounds on small mobile */
  .section-bg {
    display: none;
  }

  .bg-blob {
    opacity: 0.2;
  }

  /* Modal adjustments */
  .modal-content {
    padding: 1.5rem;
    border-radius: 16px;
  }

  .modal-title {
    font-size: 1.4rem;
  }
}

/* Modal Themes (Dynamic) */
.modal-theme-master .btn-primary {
  background: linear-gradient(135deg, var(--brand-secondary), #ffcc33);
  box-shadow: 0 10px 20px rgba(253, 167, 105, 0.4);
}
.modal-theme-master .modal-title {
  background: linear-gradient(135deg, var(--brand-secondary), #ffcc33);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.modal-theme-master .form-group input:focus,
.modal-theme-master .form-group textarea:focus {
  border-color: var(--brand-secondary);
  box-shadow: 0 0 0 3px rgba(253, 167, 105, 0.1);
}

/* ========================================
   SOCIAL LINKS
   ======================================== */
.social-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin: 40px 0;
  padding: 20px 0;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

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

.social-link:hover::before {
  left: 100%;
}

.social-link i {
  font-size: 1.3rem;
  transition: transform 0.3s ease;
}

.social-link:hover i {
  transform: scale(1.2) rotate(-5deg);
}

/* LinkedIn specific styles */
.social-link.linkedin {
  background: linear-gradient(135deg, #0077b5, #00a0dc);
  color: white;
  box-shadow: 0 8px 25px rgba(0, 119, 181, 0.35);
}

.social-link.linkedin:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 119, 181, 0.5);
}

.social-link.linkedin:active {
  transform: translateY(-2px) scale(1);
}

/* Responsive */
@media (max-width: 480px) {
  .social-links {
    margin: 30px 0;
    padding: 15px 0;
  }

  .social-link {
    padding: 12px 24px;
    font-size: 0.9rem;
  }

  .social-link i {
    font-size: 1.1rem;
  }
}
