@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
  /* Premium Brand Colors */
  --color-primary: #8C6A5A;
  --color-primary-light: #D5B9AD;
  --color-primary-dark: #6C4F42;
  --color-secondary: #F7EFEA;
  --color-accent: #E3C3B6;
  --color-dark: #231C1A;
  --color-gray: #756D69;
  --color-light-gray: #FBF9F7;
  --color-white: #FFFFFF;
  --color-success: #5F8D5F;

  /* Premium Gradients */
  --gradient-bg: linear-gradient(135deg, #FBF9F7 0%, #F4EBE6 100%);
  --gradient-primary: linear-gradient(135deg, #A48171 0%, #8C6A5A 100%);
  --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.5) 100%);
  --gradient-dark: linear-gradient(135deg, #2A2421 0%, #1A1514 100%);

  /* Typography */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2.5rem;
  --spacing-lg: 5rem;
  --spacing-xl: 8rem;
  --spacing-xxl: 12rem;

  /* Transitions & Radii */
  --transition-fast: 0.3s ease;
  --transition-smooth: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  --border-radius-sm: 12px;
  --border-radius-md: 24px;
  --border-radius-lg: 32px;

  /* Shadows for Depth */
  --shadow-soft: 0 10px 30px rgba(140, 106, 90, 0.05);
  --shadow-medium: 0 20px 40px rgba(140, 106, 90, 0.15);
  --shadow-hover: 0 35px 70px rgba(140, 106, 90, 0.25);
  --shadow-glass: 0 8px 32px rgba(140, 106, 90, 0.1);
  --shadow-glow: 0 0 60px rgba(140, 106, 90, 0.4);
}

@media (max-width: 768px) {
  :root {
    --spacing-md: 1.5rem;
    --spacing-lg: 2.5rem;
    --spacing-xl: 4rem;
    --spacing-xxl: 5rem;
    --border-radius-lg: 20px;
    --border-radius-md: 16px;
  }
}

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

/* Explicitly reset tags to override WordPress theme defaults and protect the premium UI */
html, body, div, section, header, footer, main,
h1, h2, h3, h4, h5, h6, p, ul, ol, li, a, img, figure {
  margin: 0;
  padding: 0;
}

/* Force WordPress container defaults to zero so custom spacing is maintained */
#site-content {
  margin: 0 !important;
  padding: 0 !important;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--color-dark);
  background: var(--gradient-bg);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

ul, ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: var(--spacing-sm);
  color: var(--color-dark);
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  line-height: 1.1;
}

h2 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}

p {
  margin-bottom: var(--spacing-md);
  font-size: 1.15rem;
  color: var(--color-gray);
  font-weight: 300;
}

strong {
  font-weight: 500;
  color: var(--color-dark);
}

.bg-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-heading);
  font-size: clamp(8rem, 20vw, 25rem);
  color: rgba(140, 106, 90, 0.04);
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
  font-weight: 700;
  letter-spacing: -0.05em;
}

/* Layout Utilities */
.container {
  width: 88%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.section {
  padding: var(--spacing-xxl) 0;
  position: relative;
  overflow: hidden;
}

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

.grid {
  display: grid;
  gap: var(--spacing-lg);
}

.flex-center {
  align-items: center;
  justify-content: center;
}

.col-2 {
  grid-template-columns: 1fr 1fr;
}

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

.col-4 {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 900px) {
  .col-2 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .col-3,
  .col-4 {
    grid-template-columns: 1fr;
  }
}

/* UI Components */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--gradient-primary);
  color: var(--color-white);
  padding: 1.2rem 3.5rem;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1.1rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  letter-spacing: 1px;
  box-shadow: 0 10px 20px rgba(140, 106, 90, 0.2);
  position: relative;
  overflow: hidden;
  z-index: 10;
}

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

.btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
}

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

.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
  box-shadow: none;
}

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

/* Navbar CTA Button */
.nav-cta {
  padding: 0.65rem 1.8rem;
  font-size: 0.88rem;
  letter-spacing: 0.5px;
  box-shadow: 0 6px 18px rgba(140, 106, 90, 0.3);
}

.nav-cta:hover {
  box-shadow: 0 10px 28px rgba(140, 106, 90, 0.45);
}

/* Glassmorphism Cards */
.glass-card {
  background: var(--gradient-glass);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--border-radius-lg);
  padding: var(--spacing-md);
  box-shadow: var(--shadow-glass);
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.glass-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(255, 255, 255, 1);
}

/* Ambient Blobs & Textures */
.ambient-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  z-index: 0;
  opacity: 0.5;
  pointer-events: none;
  animation: float 15s ease-in-out infinite alternate;
}

.blob-1 {
  width: 600px;
  height: 600px;
  background: var(--color-primary-light);
  top: -200px;
  left: -200px;
}

.blob-2 {
  width: 700px;
  height: 700px;
  background: var(--color-secondary);
  bottom: -300px;
  right: -200px;
  animation-delay: -7s;
}

.blob-3 {
  width: 500px;
  height: 500px;
  background: var(--color-accent);
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.3;
}

.texture-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.8" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)" opacity="0.06"/%3E%3C/svg%3E');
  pointer-events: none;
  z-index: 1;
}

@keyframes float {
  0% {
    transform: translateY(0) scale(1);
  }
  100% {
    transform: translateY(-40px) scale(1.05);
  }
}

@keyframes pulse-glow {
  0% {
    box-shadow: 0 0 40px rgba(140, 106, 90, 0.3);
  }
  50% {
    box-shadow: 0 0 100px rgba(140, 106, 90, 0.7);
  }
  100% {
    box-shadow: 0 0 40px rgba(140, 106, 90, 0.3);
  }
}

/* Animations & Rendering Fixes */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all var(--transition-smooth);
}

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

/* Fallback for mask-reveal to prevent invisible content */
.mask-reveal {
  clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
  transition: clip-path 1.2s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
  opacity: 0;
}

.mask-reveal.active {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  opacity: 1;
}

/* Parallax wrapper to prevent JS from overwriting CSS animations */
.parallax-wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
  pointer-events: none;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(251, 249, 247, 0.7);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  padding: 1.2rem 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  transition: all 0.4s ease;
}

.site-header.scrolled {
  box-shadow: var(--shadow-medium);
  padding: 0.8rem 0;
  background: rgba(251, 249, 247, 0.98);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--color-primary);
  letter-spacing: 1px;
}

/* Promotional Banner */
.promo-banner {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: var(--gradient-primary);
  color: var(--color-white);
  padding: 0.6rem 0;
  z-index: 990;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(140, 106, 90, 0.15);
}

.promo-banner-track {
  display: flex;
  width: max-content;
  animation: scroll-promo 30s linear infinite;
}

.promo-banner-track:hover {
  animation-play-state: paused;
}

.promo-banner-content {
  display: flex;
  align-items: center;
}

.promo-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 2.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  white-space: nowrap;
}

.promo-item i {
  font-size: 1.1rem;
  color: var(--color-secondary);
}

.promo-item::after {
  content: '•';
  position: relative;
  right: -2.5rem;
  color: rgba(255, 255, 255, 0.4);
}

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

@media (max-width: 768px) {
  .promo-item {
    padding: 0 1.5rem;
    font-size: 0.8rem;
  }
  .promo-item::after {
    right: -1.5rem;
  }
}

@media (max-width: 480px) {
  .promo-banner {
    padding: 0.5rem 0;
  }
}

/* Hero Section */
.hero {
  padding-top: calc(var(--spacing-md) + 120px);
  min-height: 90vh;
  display: flex;
  align-items: center;
  background-image: radial-gradient(circle at 50% 50%, var(--color-white) 0%, var(--color-secondary) 100%);
}

.hero-text {
  padding-right: 2rem;
  padding-top: var(--spacing-md);
  position: relative;
  z-index: 3;
}

.hero-text .subheading {
  font-family: var(--font-body);
  color: var(--color-primary);
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-bottom: var(--spacing-sm);
  display: inline-block;
  padding: 0.6rem 1.2rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 1);
  border-radius: 30px;
  box-shadow: var(--shadow-soft);
}

.hero-composition {
  position: relative;
  width: 100%;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: 90%;
  background: var(--color-primary-light);
  filter: blur(100px);
  border-radius: 50%;
  z-index: 0;
  opacity: 0.5;
  animation: pulse-glow 8s infinite;
}

.img-bg {
  position: absolute;
  left: 0;
  z-index: 2;
  max-width: 100%;
  top: 60%;
  transform: translateY(-50%);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-medium);
  border: 6px solid var(--color-white);
  animation: float-slight 8s ease-in-out infinite alternate;
}

.img-main {
  position: absolute;
  right: -20%;
  z-index: 3;
  max-width: 65%;
  top: 50%;
  transform: translateY(-40%);
  filter: drop-shadow(0 25px 40px rgba(140, 106, 90, 0.4));
  animation: float 6s ease-in-out infinite alternate;
}

@keyframes float-slight {
  0% { transform: translateY(-50%); }
  100% { transform: translateY(calc(-50% - 15px)); }
}

@media (max-width: 900px) {
  .hero {
    padding-top: calc(var(--spacing-md) + 120px);
    padding-bottom: var(--spacing-xl);
    text-align: center;
    min-height: auto;
  }
  .hero .grid {
    gap: 1rem !important;
  }
  .hero-text {
    padding-right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero-text p {
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-composition {
    height: 420px;
    max-width: 450px;
    margin: 1rem auto 0 auto;
  }
  .img-bg {
    max-width: 80% !important;
    left: 0 !important;
  }
  .img-main {
    max-width: 55% !important;
    right: 0 !important;
  }
}

@media (max-width: 480px) {
  .hero-composition {
    height: 330px;
  }
  .site-header {
    padding: 0.8rem 0;
  }
  .site-header.scrolled {
    padding: 0.6rem 0;
  }
  .site-header .logo-wrap img {
    max-height: 38px !important;
  }
  .nav-cta {
    padding: 0.5rem 1.2rem;
    font-size: 0.8rem;
  }
}

/* Agitate Redesign */
.agitate {
  background: var(--color-light-gray);
  position: relative;
}

.agitate::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('https://images.unsplash.com/photo-1558591710-4b4a1ae0f04d?auto=format&fit=crop&q=80') center/cover fixed;
  opacity: 0.1;
  pointer-events: none;
}

.agitate-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: var(--spacing-lg);
  align-items: start;
}

.agitate-card {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  transition: all var(--transition-smooth);
  background: var(--color-dark);
  height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.agitate-card:nth-child(even) {
  transform: translateY(40px);
}

.agitate-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.agitate-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0.6;
}

.agitate-card:hover .agitate-img img {
  transform: scale(1.1);
  opacity: 0.8;
}

.agitate-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.2) 60%, transparent 100%);
  z-index: 1;
  transition: all var(--transition-fast);
}

.agitate-card:hover::after {
  background: linear-gradient(to top, rgba(140, 106, 90, 0.95) 0%, rgba(140, 106, 90, 0.4) 60%, transparent 100%);
}

.icon-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 1.4rem;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all var(--transition-fast);
}

.agitate-card:hover .icon-badge {
  background: var(--color-white);
  color: var(--color-primary);
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.agitate-content {
  position: relative;
  z-index: 2;
  padding: 2rem;
  transition: all var(--transition-fast);
}

.agitate-content h4 {
  color: var(--color-white);
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 0.8rem;
  font-family: var(--font-body);
}

.agitate-content p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.5;
  transition: all var(--transition-fast);
}

.agitate-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(255, 255, 255, 0.3);
}

.agitate-card:nth-child(even):hover {
  transform: translateY(30px);
}

.agitate-card:hover .agitate-content p {
  color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 1024px) {
  .agitate-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .agitate-card:nth-child(even) {
    transform: translateY(0);
  }
  .agitate-card:nth-child(even):hover {
    transform: translateY(-10px);
  }
}

@media (max-width: 600px) {
  .agitate-grid {
    grid-template-columns: 1fr;
  }
}

/* Root Cause Redesign */
.root-cause {
  background: url('https://images.unsplash.com/photo-1615397323861-1eb476a6cefb?auto=format&fit=crop&q=80') center/cover fixed;
  position: relative;
  color: var(--color-white);
  padding: var(--spacing-xxl) 0;
}

.root-cause::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-dark);
  opacity: 0.95;
}

.root-cause h2 {
  color: var(--color-white);
  position: relative;
  z-index: 2;
  margin-bottom: var(--spacing-md);
}

.root-cause-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  align-items: center;
  position: relative;
  z-index: 2;
}

.root-cause-visual {
  position: relative;
  padding: 2rem;
}

.visual-container {
  position: relative;
  border-radius: 100px 100px 20px 20px;
  z-index: 2;
}

.visual-container img {
  border-radius: 100px 100px 20px 20px;
  width: 100%;
  height: 500px;
  object-fit: cover;
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow-medium);
  border: 2px solid rgba(255, 255, 255, 0.1);
  transition: all var(--transition-smooth);
}

.visual-offset-bg {
  position: absolute;
  top: 20px;
  left: -20px;
  width: 100%;
  height: 100%;
  border-radius: 100px 100px 20px 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 1;
  transition: all var(--transition-smooth);
}

.root-cause-visual:hover .visual-container img {
  transform: translate(-10px, -10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  border-color: rgba(255, 255, 255, 0.3);
}

.root-cause-visual:hover .visual-offset-bg {
  transform: translate(10px, 10px);
  background: rgba(255, 255, 255, 0.03);
}

.cause-panels {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.cause-panel {
  display: flex;
  align-items: center;
  gap: 25px;
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.15);
  padding: 2rem;
  transition: all var(--transition-fast);
}

.cause-panel:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateX(15px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.panel-icon {
  width: 70px;
  height: 70px;
  flex-shrink: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: var(--color-primary-light);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 0 15px rgba(255, 255, 255, 0.05);
  transition: all var(--transition-fast);
}

.cause-panel:hover .panel-icon {
  background: var(--color-primary);
  color: var(--color-white);
  transform: scale(1.1) rotate(10deg);
  border-color: var(--color-primary-light);
}

.panel-text h3 {
  color: var(--color-white);
  font-size: 1.4rem;
  margin-bottom: 0.3rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.panel-text p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.15rem;
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .root-cause-split {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .root-cause-visual {
    padding: 1rem;
    max-width: 450px;
    margin: 0 auto;
  }
  .visual-container img {
    height: auto;
    max-height: 400px;
  }
  .visual-offset-bg {
    left: 10px;
    top: 10px;
  }
  .cause-panel {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }
  .cause-panel:hover {
    transform: translateY(-10px);
  }
}

/* Snap-8 Redesign */
.snap-8 {
  background: var(--color-secondary);
  position: relative;
  padding-top: var(--spacing-xl);
  padding-bottom: 0;
}

.snap-8-ambient-wash {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center 35%, rgba(255, 255, 255, 0.45) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.floating-molecule {
  position: absolute;
  right: -150px;
  top: -150px;
  opacity: 0.15;
  width: 800px;
  pointer-events: none;
  z-index: 1;
  animation: float 20s infinite alternate;
}

/* Snap-8 Centered Layout */
.snap-8-centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 900px;
  margin: 0 auto var(--spacing-xl) auto;
  position: relative;
  z-index: 2;
}

.snap-8-text {
  position: relative;
  z-index: 2;
}

/* Premium Prominent Stat */
.prominent-stat.premium-stat {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  background: var(--gradient-glass);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  padding: 1.5rem;
  border-radius: var(--border-radius-md);
  margin-bottom: 2.5rem;
  box-shadow: var(--shadow-glass);
  border-left: none;
}

.prominent-stat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  color: var(--color-white);
  border-radius: 50%;
  font-size: 1.5rem;
  box-shadow: 0 5px 15px rgba(140, 106, 90, 0.3);
}

.premium-stat strong {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--color-dark);
  line-height: 1.4;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

/* Premium Comparison Table */
.comparison-table.premium-table {
  background: var(--color-white);
  border-radius: var(--border-radius-md);
  padding: 1.5rem 1.5rem 1.5rem 1.5rem;
  box-shadow: var(--shadow-medium);
  margin-top: 1.5rem;
  border: 1px solid rgba(140, 106, 90, 0.08);
}

.comp-table-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(140, 106, 90, 0.08);
  align-items: center;
  transition: background var(--transition-fast);
}

.comp-table-row:hover:not(.comp-table-header) {
  background: rgba(140, 106, 90, 0.02);
  border-radius: 8px;
}

.comp-table-row:last-child {
  border-bottom: none;
}

.comp-table-header {
  border-bottom: 2px solid rgba(140, 106, 90, 0.15);
  margin-bottom: 0.5rem;
  padding-bottom: 1.2rem;
  align-items: flex-end;
}

.feature-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-dark);
}

.feature-label i {
  font-size: 1.3rem;
  color: var(--color-primary);
  background: rgba(140, 106, 90, 0.1);
  padding: 6px;
  border-radius: 8px;
}

.botox-col {
  color: var(--color-gray);
  font-family: var(--font-heading);
  font-size: 1.1rem;
}

.snap8-col {
  position: relative;
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  background: rgba(140, 106, 90, 0.04);
  border-radius: 12px;
  padding: 1rem 0;
  margin: -1rem 0;
}

.comp-table-header .snap8-col {
  padding-top: 2.2rem;
}

.highlight-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-primary);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
  box-shadow: 0 4px 10px rgba(140, 106, 90, 0.2);
}

.success-icon {
  color: var(--color-success);
  font-size: 1.5rem;
  filter: drop-shadow(0 2px 4px rgba(95, 141, 95, 0.2));
}

.error-icon {
  color: #e57373;
  font-size: 1.5rem;
}

.snap-8-cta {
  margin-top: 2.5rem;
}

.snap-8-hero-visual {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 400px;
}

.product-backdrop-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(140, 106, 90, 0.12) 0%, rgba(140, 106, 90, 0) 70%);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

.floating-product-hero {
  position: relative;
  z-index: 2;
  max-height: 650px;
  width: auto;
  filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.2));
  animation: float-hero 6s ease-in-out infinite;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), filter 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.floating-product-hero:hover {
  transform: scale(1.03) translateY(-5px) !important;
  filter: drop-shadow(0 40px 60px rgba(140, 106, 90, 0.25));
}

@keyframes float-hero {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-20px); filter: drop-shadow(0 40px 50px rgba(0, 0, 0, 0.1)); }
  100% { transform: translateY(0px); }
}

.gradient-heading {
  font-size: clamp(3rem, 6vw, 4.5rem);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  margin-bottom: var(--spacing-sm);
  filter: drop-shadow(0 10px 20px rgba(140, 106, 90, 0.1));
}

.subtitle-heading {
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--color-dark);
  line-height: 1.4;
  margin-bottom: var(--spacing-md);
}

.editorial-p {
  line-height: 1.8;
  font-size: 1.1rem;
  color: var(--color-dark);
}

@media (max-width: 900px) {
  .snap-8-centered {
    text-align: center;
  }
  .premium-stat strong {
    white-space: normal;
    font-size: 1.1rem;
  }
  .floating-molecule {
    width: 300px;
    right: -100px;
    top: -100px;
  }
}

.expression-title {
  font-size: 1.7rem;
}

.expression-showcase-wrapper {
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-top: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 60px 60px 0 0;
  padding: var(--spacing-md) 0 var(--spacing-lg);
  margin-top: -40px;
  position: relative;
  z-index: 1;
}

.expression-showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.2rem;
  position: relative;
  z-index: 2;
}

.showcase-card {
  background: var(--color-white);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(140, 106, 90, 0.06);
  transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  border: 1px solid rgba(255, 255, 255, 0.85);
  height: 440px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.showcase-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-medium);
  border-color: var(--color-primary-light);
}

.showcase-img {
  width: 100%;
  height: 250px;
  overflow: hidden;
  position: relative;
}

.showcase-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.showcase-card:hover .showcase-img img {
  transform: scale(1.08);
}

.showcase-badge {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(140, 106, 90, 0.15);
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.35rem 0.75rem;
  border-radius: 50px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  letter-spacing: 0.5px;
  z-index: 5;
}

.showcase-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  padding: 1.5rem 1.75rem;
  background: var(--color-white);
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(140, 106, 90, 0.05);
  justify-content: flex-start;
  align-items: flex-start;
  text-align: left;
}

.showcase-content h5 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 0.5rem;
  line-height: 1.25;
}

.showcase-content p {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--color-gray);
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 1100px) {
  .expression-showcase-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
  }
}

@media (max-width: 600px) {
  .expression-title {
    font-size: 1.4rem;
  }
  .expression-showcase-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .showcase-card {
    height: auto;
    min-height: 380px;
  }
}

/* Product */
.product {
  background: var(--color-white);
  position: relative;
}

.product-split {
  display: grid;
  grid-template-columns: 5fr 5fr;
  gap: var(--spacing-xl);
  align-items: center;
}

.product-benefits-content h2 {
  margin-bottom: 0.5rem;
}

.product-benefits-content .subtitle-p {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--color-primary);
  margin-bottom: 2rem;
  font-weight: 500;
}

.product-benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .product-benefits-grid {
    grid-template-columns: 1fr;
  }
}

.benefit-card {
  background: var(--color-white);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(140, 106, 90, 0.08);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  display: flex;
  flex-direction: column;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.benefit-card-img {
  width: 100%;
  height: 160px;
  position: relative;
}

.benefit-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.benefit-card-icon {
  position: absolute;
  bottom: -20px;
  right: 20px;
  width: 48px;
  height: 48px;
  background: var(--gradient-primary);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 10px rgba(140, 106, 90, 0.2);
  border: 3px solid var(--color-white);
  z-index: 10;
}

.benefit-card-text {
  padding: 2.5rem 1.5rem 1.5rem 1.5rem;
  text-align: left;
}

.benefit-card-text h5 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.benefit-card-text p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-gray);
  line-height: 1.5;
  margin: 0;
}

.product-image-wrapper {
  position: relative;
}

.product-image-wrapper::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  right: 20px;
  bottom: 20px;
  border: 2px dashed var(--color-primary-light);
  border-radius: var(--border-radius-lg);
  z-index: 0;
}

.product img {
  box-shadow: var(--shadow-hover);
  border-radius: var(--border-radius-lg);
  position: relative;
  z-index: 2;
  border: 8px solid var(--color-secondary);
}

@media (max-width: 900px) {
  .product-split {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    text-align: center;
  }
  .product-image-wrapper {
    max-width: 450px;
    margin: 0 auto;
    width: 100%;
  }
  .product-image-wrapper::before {
    top: -10px;
    left: -10px;
    right: 10px;
    bottom: 10px;
    border-radius: var(--border-radius-md);
  }
}

/* Timeline Section Redesign */
.timeline-section {
  background: var(--color-secondary);
  position: relative;
  padding-top: var(--spacing-xxl);
  padding-bottom: var(--spacing-xxl);
}

.timeline-split-new {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 6rem;
  align-items: start;
}

.timeline-left {
  position: relative;
  height: 100%;
}

.sticky-wrapper {
  position: sticky;
  top: 120px;
  z-index: 10;
}

.product-visual-card {
  background: var(--gradient-glass);
  backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--border-radius-lg);
  padding: 3rem;
  margin-top: 2rem;
  box-shadow: var(--shadow-medium);
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.visual-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background: #DBC3F0;
  opacity: 0.3;
  filter: blur(60px);
  border-radius: 50%;
  z-index: 0;
  animation: pulse-glow 8s infinite alternate;
}

.product-visual-card img {
  position: relative;
  z-index: 2;
  max-width: 95%;
  transform: scale(1.05);
}

.timeline-right {
  position: relative;
  padding-top: 1rem;
}

.timeline-track {
  position: relative;
  padding-left: 40px;
  padding-bottom: 2rem;
}

.timeline-track::before {
  content: '';
  position: absolute;
  top: 20px;
  bottom: 0;
  left: 6px;
  width: 2px;
  background: linear-gradient(to bottom, #B3D8A8 0%, rgba(179, 216, 168, 0.3) 70%, rgba(140, 106, 90, 0.1) 100%);
  z-index: 1;
}

.timeline-card {
  position: relative;
  margin-bottom: 4rem;
  padding-left: 1.5rem;
  transition: all var(--transition-smooth);
  cursor: default;
}

.timeline-card:last-child {
  margin-bottom: 0;
}

.timeline-node {
  position: absolute;
  left: -39px;
  top: 10px;
  width: 14px;
  height: 14px;
  background: #B3D8A8;
  border-radius: 50%;
  z-index: 2;
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 1), 0 0 15px rgba(179, 216, 168, 0.6);
  transition: all var(--transition-fast);
}

.timeline-card:last-child .timeline-node {
  background: #E0E0E0;
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 1);
}

.pill-badge {
  display: inline-block;
  padding: 0.4rem 1.2rem;
  background: var(--color-white);
  border: 1px solid rgba(140, 106, 90, 0.15);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 1rem;
  box-shadow: var(--shadow-soft);
  transition: all var(--transition-fast);
}

.card-content {
  background: var(--color-white);
  border: 1px solid rgba(140, 106, 90, 0.05);
  border-radius: var(--border-radius-md);
  padding: 2.2rem;
  box-shadow: var(--shadow-soft);
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.card-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--color-primary-light);
  opacity: 0;
  transition: all var(--transition-fast);
}

.icon-accent {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-size: 3.5rem;
  color: rgba(140, 106, 90, 0.05);
  transition: all var(--transition-smooth);
}

.card-content h3 {
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: var(--font-body);
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: var(--color-dark);
  line-height: 1.4;
}

.card-content p {
  margin: 0;
  font-size: 1.05rem;
  color: var(--color-gray);
  line-height: 1.6;
}

/* Timeline Hover Interactions */
.timeline-card:hover {
  transform: translateX(10px);
}

.timeline-card:hover .timeline-node {
  transform: scale(1.3);
  background: var(--color-primary);
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 1), 0 0 20px rgba(140, 106, 90, 0.6);
}

.timeline-card:hover .pill-badge {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}

.timeline-card:hover .card-content {
  box-shadow: var(--shadow-hover);
  border-color: rgba(140, 106, 90, 0.15);
  transform: translateY(-5px);
}

.timeline-card:hover .card-content::before {
  opacity: 1;
}

.timeline-card:hover .icon-accent {
  color: rgba(140, 106, 90, 0.15);
  transform: scale(1.15) rotate(-10deg);
}

@media (max-width: 900px) {
  .timeline-split-new {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .sticky-wrapper {
    position: relative;
    top: 0;
  }
  .timeline-track::before {
    left: 4px;
  }
  .timeline-node {
    left: -41px;
  }
  .how-to-grid {
    gap: 2rem !important;
  }
}

@media (max-width: 480px) {
  .timeline-track {
    padding-left: 20px;
  }
  .timeline-track::before {
    left: 2px;
  }
  .timeline-node {
    left: -23px;
    width: 10px;
    height: 10px;
    top: 12px;
  }
  .timeline-card {
    padding-left: 0.5rem;
    margin-bottom: 2rem;
  }
  .card-content {
    padding: 1.5rem;
  }
}

/* How to use */
.how-to-use {
  background: var(--color-white);
  position: relative;
}

.how-to-grid {
  gap: 4rem !important;
  align-items: center;
}

.video-container-new {
  position: relative;
  width: 100%;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
  border: 1px solid rgba(140, 106, 90, 0.15);
  background: var(--color-secondary);
}

.video-container-new::after {
  content: "";
  display: block;
  padding-bottom: 60%;
}

.video-placeholder-new {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background-position: center !important;
  background-size: cover !important;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.45));
  z-index: 1;
  transition: background 0.4s ease;
}

.video-placeholder-new:hover .video-overlay {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.6));
}

.play-btn-glow {
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(140, 106, 90, 0.15);
  z-index: 1;
  animation: pulse-glow-btn 2.5s infinite;
}

@keyframes pulse-glow-btn {
  0% { transform: scale(0.85); opacity: 0.8; }
  50% { transform: scale(1.2); opacity: 0.3; }
  100% { transform: scale(0.85); opacity: 0.8; }
}

.play-button-new {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: 2;
}

.play-button-new i {
  color: var(--color-primary);
  font-size: 2.2rem;
  margin-left: 4px;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.video-placeholder-new:hover .play-button-new {
  transform: scale(1.1);
  background: var(--color-white);
  box-shadow: var(--shadow-hover);
}

.video-placeholder-new:hover .play-button-new i {
  transform: scale(1.1) rotate(5deg);
}

.video-info-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.2rem 2rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 2;
  color: var(--color-white);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.video-info-bar i {
  margin-right: 5px;
  color: var(--color-primary-light);
}

/* Steps column styles */
.how-to-steps-column {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.step-card {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 2.5rem;
  background: var(--color-white);
  border-radius: var(--border-radius-md);
  border: 1px solid rgba(140, 106, 90, 0.05);
  box-shadow: var(--shadow-medium);
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  position: relative;
  overflow: hidden;
}

.step-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--color-primary-light);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.step-card:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-medium);
  border-color: rgba(140, 106, 90, 0.15);
  background: var(--color-white);
}

.step-card:hover::after {
  transform: scaleY(1);
}

.step-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 600;
  color: var(--color-primary-light);
  line-height: 1;
  transition: color 0.5s ease;
  flex-shrink: 0; 
  min-width: 60px; 
  display: inline-block;
  text-align: left;
}

.step-card:hover .step-number {
  color: var(--color-primary);
}

.step-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--color-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease;
  flex-shrink: 0;
}

.step-icon i {
  color: var(--color-primary);
  font-size: 2rem;
  transition: transform 0.5s ease;
}

.step-details h3 {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.step-details p {
  font-size: 1.05rem;
}

.step-card:hover .step-icon {
  background: var(--color-primary);
}

.step-card:hover .step-icon i {
  color: var(--color-white);
  transform: rotate(10deg) scale(1.1);
}

.step-details h3 {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--color-dark);
}

.step-details p {
  font-size: 0.95rem;
  color: var(--color-gray);
  line-height: 1.5;
}

@media (max-width: 600px) {
  .how-to-steps-column {
    gap: 1.5rem;
  }
  .step-card {
    flex-direction: column;
    text-align: center;
    gap: 1.2rem;
    padding: 1.8rem 1.5rem;
  }
  .step-number {
    font-size: 2.2rem;
  }
  .step-icon {
    width: 60px;
    height: 60px;
  }
  .step-icon i {
    font-size: 1.6rem;
  }
  .step-details h3 {
    font-size: 1.3rem;
  }
  .step-details p {
    font-size: 0.95rem;
  }
  .step-card:hover {
    transform: translateY(-5px);
  }
  .step-card::after {
    width: 100%;
    height: 4px;
    top: auto;
    bottom: 0;
    left: 0;
    transform: scaleX(0);
    transform-origin: left;
  }
  .step-card:hover::after {
    transform: scaleX(1);
  }
}

/* Differentiator Pills */
.differentiator-pills-wrap {
  margin-bottom: var(--spacing-lg);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  position: relative;
  z-index: 2;
}

.differentiator-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 1.5rem;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 100px;
  border: 1px solid rgba(140, 106, 90, 0.2);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-dark);
  box-shadow: var(--shadow-soft);
}

.differentiator-pill i {
  font-size: 1.2rem;
  color: var(--color-primary);
}

@media (max-width: 600px) {
  .differentiator-pills-wrap {
    gap: 0.6rem;
    margin-bottom: var(--spacing-md);
  }
  .differentiator-pill {
    padding: 0.4rem 1rem;
    font-size: 0.75rem;
    gap: 0.4rem;
  }
  .differentiator-pill i {
    font-size: 1rem;
  }
}

/* Why Choose Comparison Chart Redesign */
.why-choose {
  background: url('https://images.unsplash.com/photo-1515377905703-c4788e51af15?auto=format&fit=crop&q=80') center/cover fixed;
  position: relative;
  padding-bottom: var(--spacing-xl);
}

.why-choose::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(251, 249, 247, 0.95);
  backdrop-filter: blur(25px);
}

.comparison-wrapper {
  max-width: 900px;
  margin: 4rem auto 0 auto;
  position: relative;
  z-index: 2;
}

.comparison-headers {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  align-items: end;
  margin-bottom: -15px;
  position: relative;
  z-index: 1;
}

.header-empty {
  height: 100%;
}

.header-arch {
  border-radius: 100px 100px 0 0;
  padding: 2rem 1rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 160px;
  transition: all var(--transition-smooth);
}

.zafera-arch {
  background: var(--gradient-glass);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-bottom: none;
  box-shadow: 0 -10px 30px rgba(140, 106, 90, 0.1);
  position: relative;
}

.other-arch {
  background: rgba(140, 106, 90, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-bottom: none;
}

.arch-img {
  max-height: 120px;
  object-fit: contain;
  filter: drop-shadow(0 15px 25px rgba(140, 106, 90, 0.3));
  position: absolute;
  bottom: 20px;
  transition: all var(--transition-smooth);
}

.comparison-wrapper:hover .arch-img {
  transform: scale(1.05) translateY(-5px);
}

.other-arch h3 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-gray);
  margin: 0;
}

.comparison-rows {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.comp-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  align-items: stretch;
  transition: all var(--transition-fast);
  border-radius: 50px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.comp-row:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: var(--shadow-hover);
  z-index: 10;
  position: relative;
  border-color: rgba(255, 255, 255, 1);
}

.feature-pill {
  background: var(--gradient-primary);
  color: var(--color-white);
  padding: 1.2rem 2rem;
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: 500;
  font-size: 1.1rem;
  border-radius: 50px 0 0 50px;
  box-shadow: inset -5px 0 15px rgba(0, 0, 0, 0.05);
}

.feature-pill i {
  font-size: 1.6rem;
  color: var(--color-primary-light);
  transition: all var(--transition-fast);
}

.comp-row:hover .feature-pill i {
  transform: scale(1.1) rotate(5deg);
  color: var(--color-white);
}

.comp-cell {
  padding: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  transition: background var(--transition-fast);
}

.zafera-cell {
  background: rgba(255, 255, 255, 0.95);
  border-right: 1px solid rgba(140, 106, 90, 0.05);
}

.zafera-cell i {
  color: var(--color-success);
  filter: drop-shadow(0 2px 4px rgba(95, 141, 95, 0.3));
  transition: all var(--transition-fast);
}

.comp-row:hover .zafera-cell i {
  transform: scale(1.15);
}

.other-cell {
  background: rgba(247, 239, 234, 0.7);
  border-radius: 0 50px 50px 0;
}

.other-cell i {
  color: rgba(140, 106, 90, 0.3);
}

.comp-row:hover .other-cell {
  background: rgba(247, 239, 234, 0.4);
}

@media (max-width: 768px) {
  .comparison-headers {
    grid-template-columns: 1.2fr 1fr 1fr;
  }
  .comp-row {
    grid-template-columns: 1.2fr 1fr 1fr;
    border-radius: 20px;
  }
  .feature-pill {
    border-radius: 20px 0 0 20px;
    font-size: 0.9rem;
    padding: 1rem 1rem;
    flex-direction: row;
    text-align: left;
    gap: 10px;
    line-height: 1.2;
  }
  .other-cell {
    border-radius: 0 20px 20px 0;
  }
  .header-arch {
    height: 120px;
    padding: 1rem;
    border-radius: 60px 60px 0 0;
  }
  .arch-img {
    max-height: 80px;
  }
}

@media (max-width: 600px) {
  .comparison-headers {
    display: grid !important;
    grid-template-columns: 2fr 1fr 1fr !important;
    align-items: end;
    gap: 0.3rem;
  }
  .header-arch {
    height: 75px !important;
    padding: 0.5rem 0.2rem !important;
    border-radius: 20px 20px 0 0 !important;
  }
  .arch-img {
    max-height: 50px !important;
    bottom: 10px !important;
  }
  .other-arch h3 {
    font-size: 0.75rem !important;
  }
  .comparison-rows {
    gap: 0.4rem !important;
  }
  .comp-row {
    grid-template-columns: 2fr 1fr 1fr !important;
    border-radius: 20px !important;
    border: 1px solid rgba(140, 106, 90, 0.1) !important;
    background: rgba(255, 255, 255, 0.45);
    align-items: center;
  }
  .feature-pill {
    grid-column: auto !important;
    background: transparent !important;
    color: var(--color-dark) !important;
    padding: 0.6rem 0.3rem 0.6rem 0.6rem !important;
    box-shadow: none !important;
    font-size: 0.78rem !important;
    font-weight: 600 !important;
    border-radius: 0 !important;
    text-align: left !important;
    gap: 6px !important;
    flex-direction: row !important;
  }
  .feature-pill i {
    color: var(--color-primary) !important;
    font-size: 1rem !important;
    flex-shrink: 0;
  }
  .comp-cell {
    padding: 0.6rem 0.2rem !important;
    font-size: 1.15rem !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
  }
  .comp-cell::before {
    display: none !important;
  }
  .zafera-cell {
    background: rgba(95, 141, 95, 0.04) !important;
  }
  .other-cell {
    background: rgba(247, 239, 234, 0.3) !important;
    border-radius: 0 20px 20px 0 !important;
  }
}

/* Visualise Outcome */
.visualise {
  background: var(--gradient-bg);
  padding-bottom: var(--spacing-xxl);
  position: relative;
  overflow: hidden;
}

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

.visualise-content {
  position: relative;
  z-index: 2;
}

.outcome-benefit-list {
  margin-top: var(--spacing-md);
}

.outcome-item {
  display: flex !important;
  align-items: flex-start !important;
  gap: 1.5rem !important;
  padding: 1.5rem !important;
  flex-direction: row;
}

.outcome-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(140, 106, 90, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.5s ease;
}

.outcome-icon-wrap i {
  color: var(--color-primary);
  font-size: 1.6rem;
  transition: all 0.5s ease;
}

.benefit-item.outcome-item:hover .outcome-icon-wrap {
  background: var(--color-primary);
}

.benefit-item.outcome-item:hover .outcome-icon-wrap i {
  color: var(--color-white);
  transform: rotate(10deg) scale(1.1);
  box-shadow: none;
  background: none;
  padding: 0;
  border-radius: 0;
}

.outcome-text {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.outcome-text strong {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-dark);
  line-height: 1.3;
}

.outcome-text span {
  font-size: 0.9rem;
  color: var(--color-gray);
  line-height: 1.5;
}

/* Outcome Image Panel */
.outcome-image-panel {
  position: relative;
  z-index: 2;
}

.outcome-img-frame {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: visible;
}

.outcome-img-glow {
  position: absolute;
  top: 10%;
  left: 10%;
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(140, 106, 90, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
  z-index: 0;
  pointer-events: none;
}

.outcome-image-new {
  width: 100%;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-hover);
  border: 6px solid var(--color-white);
  object-fit: cover;
  position: relative;
  z-index: 1;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.outcome-image-new:hover {
  transform: scale(1.02);
}

.outcome-badge {
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-primary);
  color: var(--color-white);
  padding: 0.8rem 2rem;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  font-weight: 500;
  box-shadow: var(--shadow-hover);
  white-space: nowrap;
  z-index: 3;
}

.outcome-badge i {
  font-size: 1.2rem;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 1.8rem;
  background: var(--gradient-glass);
  border-radius: var(--border-radius-md);
  margin-bottom: 1.5rem;
  font-weight: 500;
  font-size: 1.2rem;
  transition: all var(--transition-fast);
  border: 1px solid rgba(140, 106, 90, 0.1);
  box-shadow: var(--shadow-soft);
}

.benefit-item:hover {
  background: var(--color-white);
  box-shadow: var(--shadow-medium);
  border-color: rgba(140, 106, 90, 0.3);
  transform: translateX(15px);
}

.benefit-item i {
  color: var(--color-primary);
  font-size: 2rem;
  background: rgba(140, 106, 90, 0.08);
  padding: 15px;
  border-radius: 50%;
  transition: all var(--transition-fast);
}

.benefit-item:hover i {
  background: var(--color-primary);
  color: var(--color-white);
  transform: rotate(10deg) scale(1.1);
  box-shadow: var(--shadow-glow);
}

@media (max-width: 900px) {
  .visualise-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .visualise-content {
    text-align: center;
  }
  .outcome-benefit-list {
    text-align: left;
    max-width: 550px;
    margin: 2rem auto 0 auto;
  }
  .outcome-image-panel {
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
  }
}

/* Premium Testimonials - Staggered Grid */
.testimonials {
  background: var(--gradient-dark);
  color: var(--color-white);
  position: relative;
}

.testimonials h2 {
  color: var(--color-white);
}

.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.rating-badge .stars {
  color: #E5C158;
  font-size: 1.1rem;
  display: flex;
  gap: 4px;
}

.rating-badge .rating-text {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  padding-left: 12px;
}

.masonry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-md);
  align-items: start;
}

.masonry-col {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.masonry-col:nth-child(2) {
  margin-top: 50px;
}

.testimoni-card {
  position: relative;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all var(--transition-smooth);
  cursor: pointer;
  background: #000;
}

.testimoni-card img {
  width: 100%;
  transition: transform var(--transition-smooth);
}

/* Gradient overlay to ensure the badge text is always readable */
.testimoni-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 50%);
  opacity: 0.8;
  transition: opacity var(--transition-fast);
  pointer-events: none;
}

/* New Verified Buyer Badge */
.testimoni-overlay {
  position: absolute;
  bottom: 15px;
  left: 15px;
  color: var(--color-white);
  font-size: 0.85rem;
  font-weight: 500;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 0, 0, 0.4);
  padding: 6px 14px;
  border-radius: 30px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimoni-overlay i {
  color: #B3D8A8;
  font-size: 1.1rem;
}

.testimoni-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6);
  border-color: var(--color-primary-light);
  z-index: 10;
}

.testimoni-card:hover img {
  transform: scale(1.05);
}

@media (max-width: 900px) {
  .masonry-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .masonry-col:nth-child(3) {
    display: none;
  }
}

@media (max-width: 600px) {
  .masonry-grid {
    grid-template-columns: 1fr;
  }
  .masonry-col:nth-child(2) {
    margin-top: 0;
  }
}

/* Packages Section Premium Redesign */
.packages {
  background: url('https://images.unsplash.com/photo-1558591710-4b4a1ae0f04d?auto=format&fit=crop&q=80') center/cover fixed;
  position: relative;
  padding-top: var(--spacing-xxl);
  padding-bottom: var(--spacing-xxl);
}

.packages::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(251, 249, 247, 0.96);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  max-width: 880px;
  margin: 0 auto;
  align-items: stretch;
  position: relative;
  z-index: 2;
}

/* Outer Card (Acts as the glass/glow frame) */
.pricing-card {
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border-radius: 36px;
  padding: 12px;
  box-shadow: 0 15px 35px rgba(140, 106, 90, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.6);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(140, 106, 90, 0.15);
  background: rgba(255, 255, 255, 0.5);
}

/* Inner Card (The solid white content area) */
.pricing-card-inner {
  background: var(--color-white);
  border-radius: 26px;
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  box-shadow: inset 0 0 0 1px rgba(140, 106, 90, 0.05);
  position: relative;
  overflow: hidden;
}

/* Popular Card Adjustments */
.pricing-card.popular {
  background: var(--gradient-primary);
  padding: 12px;
  border: none;
  box-shadow: 0 20px 40px rgba(140, 106, 90, 0.25);
  transform: translateY(-10px);
}

.pricing-card.popular:hover {
  transform: translateY(-18px);
  box-shadow: 0 30px 60px rgba(140, 106, 90, 0.35);
}

.popular-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.4) 0%, transparent 60%);
  pointer-events: none;
  border-radius: 36px;
}

/* Integrated Banner for Popular Card */
.integrated-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--color-primary-light);
  color: var(--color-dark);
  padding: 8px 20px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 0 26px 0 20px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.integrated-badge i {
  color: var(--color-dark);
  font-size: 1rem;
}

/* Header Typography */
.package-header {
  margin-bottom: 1.5rem;
  text-align: left;
}

.package-subtitle {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--color-gray);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.package-header h3 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--color-dark);
  line-height: 1.1;
  margin: 0;
}

/* Pricing Layout */
.price-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px dashed rgba(140, 106, 90, 0.2);
}

.price-main {
  display: flex;
  align-items: flex-start;
  gap: 4px;
  line-height: 1;
  margin-bottom: 0.8rem;
}

.price-main .currency {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-top: 0.6rem;
}

.price-main .amount {
  font-family: var(--font-heading);
  font-size: 4.5rem;
  font-weight: 600;
  color: var(--color-dark);
  letter-spacing: -2px;
}

.price-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.original-price {
  font-size: 1rem;
  color: #A49D9A;
  text-decoration: line-through;
  font-weight: 500;
}

.savings-tag {
  background: rgba(140, 106, 90, 0.08);
  color: var(--color-primary-dark);
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
}

.savings-tag.highlight {
  background: rgba(95, 141, 95, 0.15);
  color: var(--color-success);
}

/* Features List */
.pricing-features-wrap {
  flex-grow: 1;
  margin-bottom: 2.5rem;
}

.pricing-features {
  text-align: left;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 1.2rem;
  color: var(--color-gray);
  font-size: 1.05rem;
  line-height: 1.4;
}

.pricing-features li strong {
  color: var(--color-dark);
}

.pricing-features i {
  color: var(--color-primary);
  font-size: 1.4rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.package-btn {
  width: 100%;
}

/* Responsive */
@media (max-width: 900px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 0 1rem;
  }
  .pricing-card.popular {
    transform: translateY(0);
  }
  .pricing-card.popular:hover {
    transform: translateY(-8px);
  }
}

/* ===== FOOTER REDESIGN ===== */
.zafera-footer {
  background: var(--gradient-dark);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

/* Thin brand gradient accent bar at top */
.zafera-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-primary);
}

.footer-inner {
  position: relative;
  z-index: 2;
}

/* ── Brand Strip ── */
.footer-brand-strip {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 2.8rem 0;
}

.footer-brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-logo-img {
  max-height: 58px;
  width: auto;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

.footer-tagline {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.01em;
  margin: 0;
  flex: 1;
  text-align: center;
}

/* ── Info Grid ── */
.footer-info-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 3rem;
  padding: 3.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-info-col {
  position: relative;
}

.footer-about {
  max-width: 320px;
}

.footer-info-col+.footer-info-col::before {
  content: '';
  position: absolute;
  top: 0;
  left: -1.5rem;
  width: 1px;
  height: 100%;
  background: rgba(255, 255, 255, 0.07);
}

.footer-col-title {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--color-primary-light);
  margin-bottom: 1.5rem;
}

/* About column */
.footer-about-text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1.8rem;
}

.footer-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gradient-primary);
  color: var(--color-white);
  padding: 0.7rem 1.8rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: all var(--transition-fast);
  box-shadow: 0 8px 20px rgba(140, 106, 90, 0.25);
}

.footer-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(140, 106, 90, 0.4);
  color: var(--color-white);
}

.footer-cta-btn i {
  transition: transform var(--transition-fast);
}

.footer-cta-btn:hover i {
  transform: translateX(4px);
}

/* Quick Links */
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-links li a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.65);
  transition: all var(--transition-fast);
}

.footer-links li a i {
  font-size: 0.75rem;
  color: var(--color-primary-light);
  transition: transform var(--transition-fast);
}

.footer-links li a:hover {
  color: var(--color-white);
  padding-left: 4px;
}

.footer-links li a:hover i {
  transform: translateX(3px);
}

/* Company Block */
.footer-company-block {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-company-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 0.5px;
  margin: 0;
}

.footer-company-reg {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
  margin: 0;
  letter-spacing: 0.3px;
}

.footer-company-address {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin: 0.5rem 0 0;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.footer-company-address i {
  color: var(--color-primary-light);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 3px;
}

/* Contact List */
.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.footer-contact-list li a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.93rem;
  line-height: 1.4;
  transition: all var(--transition-fast);
}

.footer-contact-list li a:hover {
  color: var(--color-white);
}

.footer-contact-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-primary-light);
  font-size: 1rem;
  transition: all var(--transition-fast);
}

.footer-contact-list li a:hover .footer-contact-icon {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
  transform: scale(1.1);
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--color-white);
  font-size: 1.3rem;
  transition: all var(--transition-fast);
}

.social-icons a:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(140, 106, 90, 0.4);
}

/* ── Legal Bar ── */
.footer-legal-bar {
  padding: 1.6rem 0;
}

.footer-legal-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-legal-bar p {
  margin: 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.5;
}

.footer-legal-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-legal-links a {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.35);
  transition: color var(--transition-fast);
}

.footer-legal-links a:hover {
  color: rgba(255, 255, 255, 0.75);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .footer-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
  .footer-info-col+.footer-info-col::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .footer-brand-row {
    flex-direction: column;
    text-align: center;
  }
  .footer-tagline {
    text-align: center;
  }
}

@media (max-width: 600px) {
  .footer-info-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 2.5rem 0;
  }
  .footer-legal-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
  }
}

/* General Mobile UI/UX Fine-Tuning (480px and below) */
@media (max-width: 480px) {
  .container {
    width: 90%;
  }
  .btn {
    padding: 0.9rem 2.2rem;
    font-size: 0.95rem;
  }
  .pricing-card-inner {
    padding: 2rem 1.5rem;
  }
  .price-main .amount {
    font-size: 3.5rem;
  }

  /* Make typography slightly more compact and readable */
  h1 { font-size: 2.2rem !important; }
  h2 { font-size: 1.8rem !important; }
  h3 { font-size: 1.4rem !important; }
  p { font-size: 1rem !important; }
}