/* ==========================================================================
   CSS Custom Properties & Design System (Premium Perfection)
   ========================================================================== */
:root {
  /* Color Palette */
  --c-primary: #a184c0;
  --c-primary-dark: #7a5c9a;
  --c-primary-light: #e2d6f0;
  --c-secondary: #d5e9dc;
  --c-secondary-dark: #a8cfb6;
  --c-gold: #d4a373;

  /* Neutral & Backgrounds */
  --c-bg: #fcfbfa;
  /* Off-white warm */
  --c-bg-soft: #f4eff9;
  --c-surface: #ffffff;
  --c-surface-glass: rgba(255, 255, 255, 0.65);
  --c-dark: #2a2135;
  /* Deep purple-grey */

  /* Text */
  --c-text-main: #342e3a;
  --c-text-muted: #6b6375;

  /* Typography (Fluid Base) */
  --font-heading: 'Lora', serif;
  --font-body: 'Inter', sans-serif;

  --text-sm: clamp(0.85rem, 1vw, 0.95rem);
  --text-base: clamp(1rem, 1.2vw, 1.125rem);
  --text-lg: clamp(1.15rem, 1.5vw, 1.35rem);
  --text-xl: clamp(1.5rem, 2vw, 1.75rem);
  --text-2xl: clamp(2rem, 3.5vw, 2.75rem);
  --text-3xl: clamp(2.5rem, 5vw, 4.25rem);

  /* Spacing System */
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 2rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --section-padding: 10rem;

  /* Shapes */
  --border-radius-sm: 12px;
  --border-radius-md: 20px;
  --border-radius-lg: 32px;
  --border-radius-pill: 100px;

  /* Shadows & Effects */
  --shadow-soft: 0 10px 40px -10px rgba(161, 132, 192, 0.12);
  --shadow-hover: 0 25px 50px -12px rgba(161, 132, 192, 0.25);
  --glass-border: 1px solid rgba(255, 255, 255, 0.4);
  --transition-fast: 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  --transition-slow: 0.7s cubic-bezier(0.25, 1, 0.2, 1);
}

/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--c-text-main);
  background-color: var(--c-bg);
  line-height: 1.65;
  overflow-x: hidden;
  width: 100%;
  position: relative;
  -webkit-font-smoothing: antialiased;
  letter-spacing: -0.01em;
}

main {
  overflow-x: clip;
  width: 100%;
  position: relative;
}

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

/* Loading Screen */
.loading {
  overflow: hidden;
  height: 100vh;
}

.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--c-bg);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 3px solid var(--c-primary-light);
  border-top-color: var(--c-primary);
  animation: spin 1s infinite linear, pulse 2s infinite ease-in-out;
  margin-bottom: 24px;
}

.loader-text {
  font-family: var(--font-heading);
  color: var(--c-primary);
  font-size: var(--text-lg);
  letter-spacing: 2px;
  animation: pulse 2s infinite ease-in-out;
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 0.6;
    transform: scale(0.95);
  }

  50% {
    opacity: 1;
    transform: scale(1.05);
  }
}

/* Typography */
h1,
h2,
h3,
h4,
.font-heading {
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.15;
  color: var(--c-dark);
}

.text-gradient {
  /* A very subtle gradient, more elegant than vibrant */
  background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-dark) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  display: inline-block;
}

p {
  margin-bottom: 1rem;
}

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

.text-center {
  text-align: center;
}

.container {
  width: 88%;
  max-width: 1140px;
  /* narrowed down for better line lengths */
  margin: 0 auto;
}

.container-narrow {
  max-width: 900px;
}

.section-padding {
  padding: var(--section-padding) 0;
}

.bg-soft {
  background-color: var(--c-bg-soft);
}

.mt-2 {
  margin-top: var(--space-md);
}

.mt-3 {
  margin-top: 1.5rem;
}

.mt-4 {
  margin-top: var(--space-lg);
}

.mt-5 {
  margin-top: 3rem;
}

.mt-6 {
  margin-top: var(--space-xl);
}

.mb-4 {
  margin-bottom: var(--space-lg);
}

.mb-5 {
  margin-bottom: 3rem;
}

.mb-6 {
  margin-bottom: var(--space-xl);
}

.mb-spacer {
  margin-bottom: var(--space-xl);
}

/* Background Shapes & Noise */
.bg-shapes {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.noise-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)"/%3E%3C/svg%3E');
  opacity: 0.03;
  mix-blend-mode: multiply;
}

.shape {
  position: absolute;
  filter: blur(100px);
  opacity: 0.4;
  border-radius: 50%;
  animation: floatShape 25s infinite alternate ease-in-out;
}

.shape-1 {
  width: 50vw;
  height: 50vw;
  background: var(--c-primary-light);
  top: -15%;
  left: -10%;
  animation-delay: 0s;
}

.shape-2 {
  width: 45vw;
  height: 45vw;
  background: var(--c-secondary);
  bottom: -15%;
  right: -5%;
  max-width: 100vw;
  animation-delay: -5s;
}

@keyframes floatShape {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(5%, 5%) scale(1.05);
  }
}

/* ==========================================================================
   Components: Buttons & Badges
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.125rem 2.75rem;
  border-radius: var(--border-radius-pill);
  font-weight: 500;
  font-size: var(--text-base);
  text-decoration: none;
  transition: var(--transition-fast);
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
  font-family: var(--font-body);
}

.btn-primary {
  background-color: var(--c-dark);
  color: white;
}

.btn-primary:hover {
  background-color: var(--c-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(122, 92, 154, 0.2);
}

.btn-glow {
  background: linear-gradient(135deg, var(--c-primary), var(--c-primary-dark));
  color: white;
  box-shadow: 0 10px 30px rgba(161, 132, 192, 0.35);
}

.btn-glow:hover {
  box-shadow: 0 15px 40px rgba(161, 132, 192, 0.5);
  transform: translateY(-2px);
}

.btn-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-20deg);
  transition: var(--transition-slow);
}

.btn-glow:hover .btn-shine {
  left: 200%;
}

.btn-outline {
  background: transparent;
  color: var(--c-dark);
  border: 1px solid var(--c-dark);
  padding: 1rem 2.5rem;
}

.btn-outline:hover {
  background: var(--c-dark);
  color: white;
}

.pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 1.25rem;
  background: var(--c-surface-glass);
  backdrop-filter: blur(12px);
  border: var(--glass-border);
  border-radius: var(--border-radius-pill);
  font-size: var(--text-sm);
  color: var(--c-primary-dark);
  margin-bottom: var(--space-lg);
  box-shadow: var(--shadow-soft);
  letter-spacing: 0.5px;
}

.status-dot {
  width: 6px;
  height: 6px;
  background-color: #4a8f62;
  border-radius: 50%;
  box-shadow: 0 0 8px #4a8f62;
  animation: blink 2.5s infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

/* ==========================================================================
   Header
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 0;
  z-index: 1000;
  transition: var(--transition-fast);
}

.header.scrolled {
  padding: 1.25rem 0;
  background: rgba(252, 251, 250, 0.9);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
}

.main-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-logo {
  height: 80px;
}

.nav-links {
  display: flex;
  gap: 3rem;
}

.nav-item {
  text-decoration: none;
  color: var(--c-text-main);
  font-weight: 500;
  font-size: var(--text-sm);
  position: relative;
  padding: 0.5rem 0;
  transition: color 0.3s;
}

.nav-item:hover {
  color: var(--c-primary-dark);
}

.nav-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--c-primary);
  transition: var(--transition-fast);
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-actions .btn {
  padding: 0.875rem 1.75rem;
  font-size: var(--text-sm);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
}

.mobile-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  border-radius: 2px;
  background: var(--c-dark);
  transition: 0.3s;
}

@media (max-width: 992px) {
  .header {
    padding: 0.8rem 0;
  }

  .header.scrolled {
    padding: 0.6rem 0;
  }

  .brand-logo {
    height: 55px;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  }

  body.nav-open .nav-links {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  body.nav-open {
    overflow: hidden;
  }

  .nav-item {
    font-size: 1.75rem;
    font-family: var(--font-heading);
    width: auto;
    text-align: center;
    color: var(--c-dark);
    font-weight: 500;
  }

  .nav-actions {
    z-index: 1000;
  }

  .nav-actions .btn {
    display: none;
  }

  .mobile-toggle {
    display: flex;
    position: relative;
    z-index: 1001;
  }

  body.nav-open .mobile-toggle span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  body.nav-open .mobile-toggle span:nth-child(2) {
    opacity: 0;
  }

  body.nav-open .mobile-toggle span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
  padding-top: 14rem;
  padding-bottom: 8rem;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: center;
}

.hero-title {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-md);
  letter-spacing: -0.02em;
}

.hero-desc {
  font-size: var(--text-lg);
  color: var(--c-text-muted);
  margin-bottom: var(--space-xl);
  max-width: 90%;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
}

.social-proof {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.avatars {
  display: flex;
}

.avatar-placeholder {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: white;
  border: 2px solid var(--c-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -12px;
  box-shadow: var(--shadow-soft);
}

.avatar-placeholder:first-child {
  margin-left: 0;
}

.proof-text {
  font-size: var(--text-sm);
  color: var(--c-text-muted);
  line-height: 1.5;
}

/* Hero Visual */
.hero-visual {
  position: relative;
}

.glass-panel {
  background: var(--c-surface-glass);
  backdrop-filter: blur(24px);
  border: var(--glass-border);
  border-radius: 48px;
  padding: 1.25rem;
  box-shadow: var(--shadow-soft);
  position: relative;
  max-width: 480px;
  margin: 0 auto;
}

.img-inner {
  border-radius: 36px;
  overflow: hidden;
  position: relative;
}

.hero-img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4/5;
}

/* Floating Badges */
.floating-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: var(--border-radius-lg);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: var(--shadow-hover);
  z-index: 10;
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.badge-top-right {
  top: 10%;
  right: -20%;
}

.badge-bottom-left {
  bottom: 15%;
  left: -20%;
}

.icon-box {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-box.green {
  background: var(--c-secondary);
  color: #2e6041;
}

.icon-box.purple {
  background: var(--c-primary-light);
  color: var(--c-primary-dark);
}

.badge-text {
  font-size: var(--text-sm);
  line-height: 1.4;
  color: var(--c-text-muted);
}

.badge-text b {
  font-weight: 600;
  color: var(--c-dark);
}

@media (max-width: 992px) {
  .container {
    width: 92%;
    max-width: 100%;
  }

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

  .hero-desc {
    margin: 0 auto var(--space-xl) auto;
    max-width: 100%;
  }

  .hero-cta {
    align-items: center;
  }

  .social-proof {
    justify-content: center;
    text-align: left;
  }

  .badge-top-right {
    right: -5%;
  }

  .badge-bottom-left {
    left: -5%;
  }
}

@media (max-width: 768px) {
  .floating-badge {
    display: none;
  }
}

/* ==========================================================================
   Section Headers (Reusable)
   ========================================================================== */
.section-subtitle {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--c-primary-dark);
  margin-bottom: 1rem;
  display: block;
}

.section-subtitle.center {
  text-align: center;
}

.h2-title {
  font-size: var(--text-2xl);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.body-large {
  font-size: var(--text-lg);
  line-height: 1.7;
}

/* ==========================================================================
   Empathy Section
   ========================================================================== */
.dark-section {
  background-color: var(--c-dark);
  color: white;
  border-radius: 60px;
  /* Instead of full width wave, a modern rounded container */
  margin: 0 2% 4rem 2%;
  padding: 8rem 4rem;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.1);
}

.empathy-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 6rem;
  align-items: center;
  width: 100%;
  max-width: 100%;
  /* reset nested container */
}

.text-light {
  color: white;
}

.text-muted-light {
  color: rgba(255, 255, 255, 0.65);
  margin-top: var(--space-lg);
}

.cards-stack {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.glass-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 2.5rem;
  border-radius: var(--border-radius-lg);
  transition: var(--transition-slow);
}

.glass-card:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.15);
}

.offset-right {
  margin-left: 3rem;
}

.card-icon {
  margin-bottom: 1.25rem;
}

.glass-card h3 {
  color: white;
  margin-bottom: 0.75rem;
  font-size: var(--text-lg);
  font-family: var(--font-heading);
  font-weight: 500;
}

.glass-card p {
  color: rgba(255, 255, 255, 0.65);
  font-size: var(--text-base);
  line-height: 1.6;
}

@media (max-width: 992px) {
  .dark-section {
    margin: 0 4% 2rem 4%;
    width: 92%;
    border-radius: 40px;
    padding: 5rem 2rem;
  }

  .empathy-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .offset-right {
    margin-left: 0;
  }
}

/* ==========================================================================
   About Section
   ========================================================================== */
.about-wrapper {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 7rem;
  align-items: center;
}

.about-visual {
  position: relative;
}

.portrait-container {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.about-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.portrait-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(42, 33, 53, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
}

.rotating-badge {
  position: absolute;
  top: -50px;
  left: -50px;
  z-index: 3;
  width: 160px;
  height: 160px;
  animation: rotate 20s linear infinite;
}

.badge-center-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  background: var(--c-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(213, 233, 220, 0.5);
  animation: rotateCounter 20s linear infinite;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--c-bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--c-primary-dark);
  border: 1px solid var(--c-primary-light);
}

.feature-text {
  font-size: var(--text-base);
  line-height: 1.5;
  margin-top: 10px;
}

@media (max-width: 992px) {
  .about-wrapper {
    grid-template-columns: 1fr;
    gap: 5rem;
  }

  .about-visual {
    margin: 0 auto;
    max-width: 420px;
    order: -1;
    overflow: visible;
  }

  .portrait-container {
    overflow: visible;
    transform: none !important;
  }

  .parallax {
    transform: none !important;
  }

  .about-text {
    max-width: 100%;
  }

  .rotating-badge {
    left: -20px;
    top: -20px;
  }
}

/* ==========================================================================
   Approach Section
   ========================================================================== */
.max-w-700 {
  max-width: 700px;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.text-balance {
  text-wrap: balance;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: 2.5rem;
  margin-top: var(--space-xl);
}

.outline-card {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--border-radius-lg);
  padding: 3.5rem 2.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-slow);
}

.outline-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  background: rgba(255, 255, 255, 0.9);
}

.card-blob {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  filter: blur(50px);
  opacity: 0.15;
  transition: var(--transition-slow);
}

.outline-card:hover .card-blob {
  transform: scale(1.4);
  opacity: 0.25;
}

.bg-purple {
  background: var(--c-primary);
}

.bg-green {
  background: var(--c-secondary-dark);
}

.bg-gold {
  background: var(--c-gold);
}

.card-icon-large {
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
  display: inline-block;
}

.card-icon-large svg {
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.05));
}

.card-title {
  font-size: var(--text-xl);
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.card-desc {
  color: var(--c-text-muted);
  font-size: var(--text-base);
  position: relative;
  z-index: 2;
  line-height: 1.6;
}

/* ==========================================================================
   Logistics Section
   ========================================================================== */
.logistics-flex {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 6rem;
  align-items: start;
}

.logistics-timeline {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  position: relative;
  padding-left: 24px;
}

.logistics-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg, var(--c-primary) 0%, transparent 100%);
  z-index: 0;
  opacity: 0.3;
}

.timeline-item {
  display: flex;
  gap: 2rem;
  position: relative;
  z-index: 1;
  align-items: flex-start;
}

.timeline-num {
  position: absolute;
  left: -44px;
  top: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--c-bg);
  border: 1px solid var(--c-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--c-primary-dark);
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.box-glass {
  background: var(--c-surface-glass);
  backdrop-filter: blur(10px);
  padding: 2.25rem;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-soft);
  flex-grow: 1;
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.box-glass h3 {
  font-size: var(--text-lg);
  margin-bottom: 0.5rem;
  font-family: var(--font-heading);
}

.box-glass p {
  margin: 0;
  color: var(--c-text-muted);
  font-size: var(--text-base);
}

@media (max-width: 992px) {
  .logistics-flex {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .logistics-info {
    order: -1;
    text-align: center;
    max-width: 100%;
  }
}

/* ==========================================================================
   Contact Section
   ========================================================================== */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 6rem;
  align-items: center;
}

.method-card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 2rem;
  background: white;
  border-radius: var(--border-radius-md);
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(0, 0, 0, 0.02);
  transition: var(--transition-slow);
}

.method-card:hover {
  border-color: var(--c-primary-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.method-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--c-bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
}

.method-text {
  display: flex;
  flex-direction: column;
}

.method-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--c-text-muted);
  margin-bottom: 0.25rem;
}

.method-value {
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--c-dark);
}

.form-header {
  text-align: center;
}

.glass-form {
  background: white;
  padding: 4rem 3.5rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-hover);
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.input-group {
  position: relative;
  margin-bottom: 2.5rem;
}

.input-group input,
.input-group textarea {
  width: 100%;
  padding: 12px 0;
  border: none;
  background: transparent;
  font-size: var(--text-base);
  color: var(--c-text-main);
  font-family: var(--font-body);
}

.input-group input:focus,
.input-group textarea:focus {
  outline: none;
}

.input-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.1);
}

.input-line::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--c-primary);
  transition: 0.4s ease;
}

.input-group input:focus~.input-line::after,
.input-group textarea:focus~.input-line::after {
  width: 100%;
}

.input-group label {
  position: absolute;
  top: 12px;
  left: 0;
  color: var(--c-text-muted);
  font-size: var(--text-base);
  transition: 0.3s ease;
  pointer-events: none;
}

.input-group input:focus~label,
.input-group input:not(:placeholder-shown)~label,
.input-group textarea:focus~label,
.input-group textarea:not(:placeholder-shown)~label {
  top: -24px;
  font-size: 0.8rem;
  color: var(--c-primary-dark);
  font-weight: 500;
  letter-spacing: 0.5px;
}

.w-100 {
  width: 100%;
}

@media (max-width: 992px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .glass-form {
    padding: 3rem 1.5rem;
    max-width: 100%;
  }
}

/* Form Compliance (GDPR) */
.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.checkbox-group input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin-top: 3px;
  cursor: pointer;
  accent-color: var(--c-primary);
  flex-shrink: 0;
}

.checkbox-group label {
  font-size: 0.85rem;
  color: var(--c-text-muted);
  line-height: 1.5;
  cursor: pointer;
}

.checkbox-group label a {
  color: var(--c-primary-dark);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.checkbox-group label a:hover {
  color: var(--c-primary);
}

.form-legal-minimal {
  font-size: 0.7rem;
  color: var(--c-text-muted);
  line-height: 1.4;
  opacity: 0.7;
  text-align: center;
}

.form-legal-minimal a {
  color: inherit;
  text-decoration: underline;
}

.form-legal-minimal a:hover {
  color: var(--c-primary);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background: var(--c-dark);
  color: white;
  padding: 6rem 0 2rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 5rem;
  margin-bottom: 4rem;
}

.footer-logo {
  height: 96px;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.footer-bio {
  color: rgba(255, 255, 255, 0.65);
  font-size: var(--text-base);
  max-width: 320px;
  line-height: 1.6;
}

.footer h4 {
  color: white;
  font-family: var(--font-body);
  font-weight: 500;
  margin-bottom: 2rem;
  font-size: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-link {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: 0.3s;
  font-size: 0.95rem;
}

.footer-link:hover {
  color: white;
  transform: translateX(5px);
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: 0.4s ease;
  text-decoration: none;
  background: transparent;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}

.legal-links {
  display: flex;
  gap: 2rem;
}

.legal-links a {
  color: inherit;
  text-decoration: none;
  transition: 0.3s;
}

.legal-links a:hover {
  color: white;
}

@media (max-width: 768px) {
  :root {
    --section-padding: 4.5rem;
    --space-xl: 2.5rem;
    --space-2xl: 3.5rem;
    --text-3xl: clamp(2.4rem, 9vw, 3rem);
    --text-2xl: clamp(1.85rem, 7vw, 2.25rem);
    --text-xl: clamp(1.4rem, 6vw, 1.6rem);
    --text-lg: clamp(1.15rem, 4.5vw, 1.3rem);
  }

  .hero {
    padding-top: 8rem;
    padding-bottom: 4rem;
    min-height: auto;
  }

  .hero-grid {
    gap: 2.5rem;
  }

  .hero-desc {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    line-height: 1.6;
  }

  .hero-cta {
    width: 100%;
  }

  .hero-cta .btn {
    width: 100%;
    margin-bottom: 1.5rem;
  }

  .social-proof {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }

  .glass-panel {
    border-radius: 36px;
    padding: 1rem;
    max-width: 100%;
    margin: 0 auto;
  }

  .img-inner {
    border-radius: 28px;
  }

  .dark-section {
    padding: 3.5rem 1rem;
    border-radius: 32px;
    margin: 0 4% 2.5rem 4%;
    width: 92%;
    max-width: none;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    overflow: hidden;
  }

  .empathy-grid {
    gap: 3rem;
    width: 100%;
    margin: 0 auto;
  }

  .glass-card {
    padding: 1.75rem 1.5rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
  }

  .about-wrapper {
    gap: 3.5rem;
  }

  .rotating-badge {
    transform: scale(0.75);
    transform-origin: top left;
    left: 0;
    top: -10px;
  }

  .approach-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    width: 100%;
    overflow: hidden;
  }

  .outline-card {
    padding: 2rem 1.25rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.85);
    max-width: 100%;
    overflow: hidden;
  }

  .logistics-flex {
    gap: 3.5rem;
  }

  .logistics-timeline {
    margin-left: 1.5rem;
    padding-left: 24px;
    width: auto;
  }

  .timeline-item {
    gap: 1.5rem;
  }

  .timeline-num {
    width: 36px;
    height: 36px;
    left: -42px;
    top: 0;
  }

  .box-glass {
    padding: 1.75rem;
  }

  .contact-wrapper {
    gap: 3.5rem;
  }

  .glass-form {
    padding: 2.5rem 1.25rem;
    border-radius: 20px;
    max-width: 100%;
  }

  .form-header h3 {
    font-size: 1.35rem !important;
  }

  .method-card {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
    padding: 1.75rem;
    border-radius: 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .footer-logo {
    margin: 0 auto 1.5rem auto;
  }

  .footer-bio {
    margin: 0 auto;
    font-size: 1rem;
  }

  .footer-links-group {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }

  .legal-links {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }
}

@media (max-width: 576px) {
  :root {
    --section-padding: 4rem;
  }

  .container {
    width: 90%;
    max-width: 100vw;
  }

  .empathy-grid {
    width: 100%;
  }

  .hero-title {
    font-size: 2.25rem;
  }

  .floating-badge {
    display: none;
  }

  .method-text {
    word-break: break-all;
  }

  .social-proof .proof-text {
    font-size: 0.85rem;
  }
}

/* ==========================================================================
   Animations Utility Classes
   ========================================================================== */
.reveal {
  opacity: 0;
  visibility: hidden;
  transition: all 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}

.reveal.active {
  opacity: 1;
  visibility: visible;
}

.reveal.fade-up {
  transform: translateY(60px);
}

.reveal.fade-up.active {
  transform: translateY(0);
}

.reveal.fade-left {
  transform: translateX(60px);
}

.reveal.fade-left.active {
  transform: translateX(0);
}

.reveal.fade-right {
  transform: translateX(-60px);
}

.reveal.fade-right.active {
  transform: translateX(0);
}

@media (max-width: 768px) {

  .reveal.fade-left,
  .reveal.fade-right {
    transform: translateX(0);
  }
}

.reveal.stagger .reveal-item {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
}

.reveal.stagger.active .reveal-item {
  opacity: 1;
  transform: translateY(0);
}

.reveal.stagger.active .reveal-item:nth-child(1) {
  transition-delay: 0.1s;
}

.reveal.stagger.active .reveal-item:nth-child(2) {
  transition-delay: 0.25s;
}

.reveal.stagger.active .reveal-item:nth-child(3) {
  transition-delay: 0.4s;
}

.reveal.stagger.active .reveal-item:nth-child(4) {
  transition-delay: 0.55s;
}

.delay-1 {
  transition-delay: 0.3s;
}

.delay-2 {
  transition-delay: 0.5s;
}

/* ==========================================================================
   Cookie Banner (GDPR Minimalist)
   ========================================================================== */
#cookie-banner {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: calc(100% - 48px);
  max-width: 400px;
  background: var(--c-surface);
  backdrop-filter: blur(20px);
  border: 1px solid var(--c-primary-light);
  border-radius: var(--border-radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-hover);
  z-index: 10000;
  display: none;
  /* Controlled by JS */
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.6s ease;
}

#cookie-banner.visible {
  display: block;
  transform: translateY(0);
  opacity: 1;
}

.cookie-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cookie-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--c-dark);
}

.cookie-text {
  font-size: 0.9rem;
  color: var(--c-text-muted);
  line-height: 1.5;
  margin-bottom: 0.5rem;
}

.cookie-text a {
  color: var(--c-primary-dark);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.btn-cookie {
  padding: 0.85rem 1.5rem;
  font-size: 0.9rem;
  border-radius: var(--border-radius-pill);
  cursor: pointer;
  transition: var(--transition-fast);
  font-family: var(--font-body);
  font-weight: 500;
  border: none;
  flex: 1;
  min-width: 140px;
  text-align: center;
}

.btn-accept {
  background-color: var(--c-primary);
  color: white;
}

.btn-accept:hover {
  background-color: var(--c-primary-dark);
  transform: translateY(-1px);
}

.btn-reject {
  background-color: var(--c-bg-soft);
  color: var(--c-text-main);
  border: 1px solid var(--c-primary-light);
}

.btn-reject:hover {
  background-color: var(--c-primary-light);
  transform: translateY(-1px);
}

.btn-configure {
  background: transparent;
  color: var(--c-primary-dark);
  text-decoration: underline;
  font-size: 0.85rem;
  flex: none;
  width: 100%;
  margin-top: 0.5rem;
  min-width: unset;
  padding: 0.5rem;
}

@media (max-width: 600px) {
  #cookie-banner {
    bottom: 16px;
    right: 16px;
    width: calc(100% - 32px);
    padding: 1.25rem;
  }

  .cookie-actions {
    flex-direction: column;
  }

  .btn-cookie {
    width: 100%;
  }
}