/* ====================================
   MAEVE AI - Mobile First CSS
   ==================================== */

/* Import Satoshi Font from Fontshare API */
@import url('https://api.fontshare.com/v2/css?f[]=satoshi@300,400,500,700&display=swap');

/* Import Cormorant Garamond Serif from Google Fonts for Editorial Mockups */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&display=swap');

/* ====================================
   CSS VARIABLES & THEME
   ==================================== */

:root {
  /* Colors */
  --color-dark: #0F0F0F;
  --color-dark-secondary: #1A1A1A;
  --color-light: #F5F1ED;
  --color-gold: #DA9F32;
  --color-orange: #C16200;
  --color-green: #144A32; /* Prestigious equestrian Hunter Green */
  --color-green-light: #1D6343; /* Vibrant Hunter Green hover */

  /* Typography */
  --font-primary: 'Satoshi', sans-serif;
  --font-weight-light: 300;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-bold: 700;

  /* Base Sizing */
  --base-unit: 1rem;
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;
  --spacing-3xl: 6rem;

  /* Typography Scale - Mobile First */
  --font-size-h1: 2rem;
  --font-size-h2: 1.5rem;
  --font-size-h3: 1.25rem;
  --font-size-body: 1rem;
  --font-size-small: 0.875rem;

  --line-height-tight: 1.2;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.75;

  /* Borders & Effects */
  --border-radius-sm: 0.25rem;
  --border-radius-md: 0.5rem;
  --border-radius-lg: 1rem;
  --transition-smooth: all 0.3s ease;

  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(15, 15, 15, 0.1);
  --shadow-md: 0 4px 12px rgba(15, 15, 15, 0.15);
  --shadow-lg: 0 8px 24px rgba(15, 15, 15, 0.2);
}

/* ====================================
   RESET & NORMALIZE
   ==================================== */

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

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

body {
  font-family: var(--font-primary);
  font-size: var(--font-size-body);
  line-height: var(--line-height-normal);
  color: var(--color-light);
  background-color: var(--color-dark);
  font-weight: var(--font-weight-regular);
}

/* ====================================
   TYPOGRAPHY
   ==================================== */

h1 {
  font-size: var(--font-size-h1);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-tight);
  margin-bottom: var(--spacing-md);
  color: var(--color-light);
}

h2 {
  font-size: var(--font-size-h2);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-tight);
  margin-bottom: var(--spacing-md);
  color: var(--color-light);
}

h3 {
  font-size: var(--font-size-h3);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-tight);
  margin-bottom: var(--spacing-sm);
  color: var(--color-light);
}

p {
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--spacing-md);
  color: var(--color-light);
}

small {
  font-size: var(--font-size-small);
}

strong {
  font-weight: var(--font-weight-bold);
}

/* ====================================
   LINKS
   ==================================== */

a {
  color: var(--color-gold);
  text-decoration: none;
  transition: var(--transition-smooth);
}

a:hover {
  color: var(--color-orange);
}

/* ====================================
   BUTTONS & CTAs
   ==================================== */

.btn {
  display: inline-block;
  padding: var(--spacing-sm) var(--spacing-md);
  font-family: var(--font-primary);
  font-size: var(--font-size-body);
  font-weight: var(--font-weight-medium);
  text-align: center;
  border: none;
  border-radius: var(--border-radius-md);
  cursor: pointer;
  transition: var(--transition-smooth);
  text-decoration: none;
}

.btn-primary {
  background-color: var(--color-green);
  color: var(--color-light);
}

.btn-primary:hover {
  background-color: var(--color-green-light);
  color: var(--color-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(20, 74, 50, 0.28); /* prestigious green shadow glow */
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-green);
  border: 2px solid var(--color-green);
}

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

.btn-block {
  width: 100%;
}

/* ====================================
   LAYOUT & SPACING
   ==================================== */

.container {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.container-sm {
  max-width: 640px;
}

.container-md {
  max-width: 768px;
}

.container-lg {
  max-width: 1024px;
}

.container-xl {
  max-width: 1280px;
}

section {
  padding: var(--spacing-3xl) var(--spacing-md);
}

/* ====================================
   FLEXBOX UTILITIES
   ==================================== */

.flex {
  display: flex;
}

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

.flex-wrap {
  flex-wrap: wrap;
}

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

.items-start {
  align-items: flex-start;
}

.items-end {
  align-items: flex-end;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-start {
  justify-content: flex-start;
}

.gap-sm {
  gap: var(--spacing-sm);
}

.gap-md {
  gap: var(--spacing-md);
}

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

/* ====================================
   GRID UTILITIES
   ==================================== */

.grid {
  display: grid;
}

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

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

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

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

/* ====================================
   TYPOGRAPHY UTILITIES
   ==================================== */

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

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

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

.text-gold {
  color: var(--color-gold);
}

.text-orange {
  color: var(--color-orange);
}

.text-light {
  color: var(--color-light);
}

.font-light {
  font-weight: var(--font-weight-light);
}

.font-medium {
  font-weight: var(--font-weight-medium);
}

.font-bold {
  font-weight: var(--font-weight-bold);
}

/* ====================================
   BACKGROUND UTILITIES
   ==================================== */

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

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

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

.bg-light-text {
  color: var(--color-dark);
}

/* ====================================
   SECTION: HERO
   ==================================== */

.hero {
  background-color: var(--color-dark);
  background-image: url('img/1.jpeg');
  background-size: cover;
  background-position: center bottom;
  background-attachment: fixed;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(15, 15, 15, 0.7);
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-grid {
  grid-template-columns: 1fr;
  gap: var(--spacing-3xl);
}

.video-container {
  position: relative;
  width: 100%;
  max-width: 290px; /* Snug smartphone width that fits hero grids beautifully */
  margin: 0 auto;
  aspect-ratio: 9/16; /* Portrait aspect ratio for vertical YouTube Shorts */
  overflow: hidden;
  border: 10px solid #1A1A1A; /* Premium phone bezel */
  border-radius: 36px; /* Rounded smartphone corners */
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5); /* Immersive deep shadow */
  background-color: #000;
}

.video-container iframe,
.video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;
}

.hero-ctas {
  margin-top: var(--spacing-lg);
}

.hero-ctas .btn {
  padding: var(--spacing-md) var(--spacing-lg);
  font-size: var(--font-size-body);
}

/* Hero Responsive */
@media (min-width: 768px) {
  .hero {
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .hero-ctas {
    flex-direction: row;
  }

  .hero-ctas .btn {
    flex: 1;
  }
}

/* ====================================
   SECTION: TRUST BUILDING 01
   ==================================== */

.trust-01 {
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-orange) 100%);
  padding: var(--spacing-md) 0; /* Reduced padding for a slightly narrower snug ribbon */
  box-shadow: inset 0 4px 10px rgba(15, 15, 15, 0.05), inset 0 -4px 10px rgba(15, 15, 15, 0.05);
}

.trust-01 .container {
  max-width: 640px; /* Snug, narrower width for high-impact readability */
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-md);
  text-align: center;
}

.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-xs) 0;
  transition: var(--transition-smooth);
}

.trust-item:hover {
  transform: scale(1.03);
}

.trust-text {
  font-size: 1.05rem;
  font-weight: var(--font-weight-bold); /* Bold 700 Satoshi weight for high-contrast */
  font-style: italic; /* Beautiful editorial italics */
  color: var(--color-dark); /* Contrast deep black #0F0F0F */
  line-height: var(--line-height-relaxed);
  margin-bottom: 0;
  text-align: center;
  letter-spacing: -0.01em;
}

/* Responsive Grid for Trust Points */
@media (min-width: 640px) {
  .trust-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    align-items: center;
  }
}

@media (min-width: 768px) {
  .trust-grid {
    gap: var(--spacing-lg);
  }
}

/* ====================================
   SECTION: PROBLEMS (IT'S NOT YOU - IT'S THEM)
   ==================================== */

.problems {
  background-color: var(--color-dark); /* #0F0F0F */
  /* Elegant hand-crafted bendy lines (custom SVG paths) layered on top of abstract ambient glows */
  background-image: 
    url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 800'%3E%3Cpath d='M-100,200 C300,100 800,600 1300,400' fill='none' stroke='rgba(218,159,50,0.06)' stroke-width='1.5'/%3E%3Cpath d='M-50,600 C400,800 600,100 1250,200' fill='none' stroke='rgba(218,159,50,0.06)' stroke-width='1.5'/%3E%3Cpath d='M200,-50 C400,400 200,600 900,850' fill='none' stroke='rgba(193,98,0,0.04)' stroke-width='1'/%3E%3C/svg%3E"),
    radial-gradient(circle at 15% 20%, rgba(218, 159, 50, 0.06) 0%, rgba(15, 15, 15, 0) 50%),
    radial-gradient(circle at 85% 80%, rgba(193, 98, 0, 0.05) 0%, rgba(15, 15, 15, 0) 50%),
    radial-gradient(circle at 50% 50%, rgba(218, 159, 50, 0.03) 0%, rgba(15, 15, 15, 0) 45%);
  background-size: cover, auto, auto, auto;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  padding: var(--spacing-3xl) 0;
}

.problems .container {
  position: relative;
  z-index: 2;
}

.problems-content {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-2xl);
  max-width: 100%;
}

.problems-header {
  font-size: 1.75rem; /* Mobile: slightly smaller than hero's 2rem */
  line-height: var(--line-height-tight);
  max-width: 1000px;
  text-align: left;
}

.problems-list {
  list-style: none;
  padding: 0;
  margin: var(--spacing-sm) 0;
  display: flex;
  flex-direction: column;
  gap: 1.4rem; /* Reduced by 30% from 2rem (var(--spacing-lg)) */
  max-width: 1000px;
}

.problems-item {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-md);
  padding: var(--spacing-xs) 0;
}

.problems-arrow {
  width: 20px;
  height: 20px;
  color: var(--color-gold);
  flex-shrink: 0;
  margin-top: 4px; /* Perfect alignment with standard text line-height */
}

.problems-item-text {
  font-size: 1.15rem;
  font-weight: var(--font-weight-regular);
  color: var(--color-light);
  line-height: var(--line-height-relaxed);
}

.problems-outro {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  margin-top: var(--spacing-sm);
  max-width: 1000px;
}

.outro-warning {
  color: var(--color-light);
  opacity: 0.75;
  font-size: 1.15rem;
  line-height: var(--line-height-relaxed);
  margin-bottom: 0;
}

.solution-highlight-box {
  padding: 0;
  margin: 0;
}

.solution-text {
  font-size: 1.35rem;
  font-weight: var(--font-weight-medium);
  line-height: var(--line-height-relaxed);
  color: var(--color-light);
  margin-bottom: 0;
}

/* Single Column Desktop Typography Upgrades */
@media (min-width: 768px) {
  .problems-header {
    font-size: 2.5rem; /* Tablet/Medium: slightly smaller than hero's 3rem */
  }

  .problems-item-text {
    font-size: 1.25rem;
  }
  
  .solution-text {
    font-size: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .problems-header {
    font-size: 3rem; /* Laptop: slightly smaller than hero's 3.5rem */
  }
}

@media (min-width: 1280px) {
  .problems-header {
    font-size: 3.5rem; /* Desktop: slightly smaller than hero's 4rem */
  }
}

/* ====================================
   SECTION: HOW IT WORKS
   ==================================== */

.how-it-works {
  background-color: var(--color-light); /* Off-white #F5F1ED */
  position: relative;
  overflow: hidden;
  padding: var(--spacing-3xl) 0;
}

.how-it-works-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-2xl);
}

.how-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.section-tag {
  display: inline-block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: var(--spacing-md); /* Increased spacing for premium breathing room */
}

.how-header {
  font-size: 1.75rem; /* Mobile header size */
  line-height: var(--line-height-tight);
  margin-bottom: var(--spacing-sm);
}

.text-dark {
  color: var(--color-dark) !important; /* Pitch black #0F0F0F */
}

.text-dark-secondary {
  color: #333333 !important; /* Highly readable dark grey */
}

.highlight-orange {
  color: var(--color-orange);
  font-style: italic;
  font-weight: var(--font-weight-light);
}

.context-paragraph {
  font-size: 1.15rem;
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--spacing-lg);
  max-width: 900px;
}

.actions-list {
  list-style: none;
  padding: 0;
  margin: var(--spacing-md) 0;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
  width: 100%;
  max-width: 600px;
}

.action-item {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  padding: var(--spacing-sm) 0;
  border-bottom: 1px solid rgba(15, 15, 15, 0.08);
}

.action-item:last-child {
  border-bottom: none;
}

.action-bullet {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color-orange);
  flex-shrink: 0;
}

.actions-outro {
  font-size: 1.15rem;
  font-style: italic;
  color: #555555; /* Soft secondary off-black */
  margin-top: var(--spacing-xs);
  margin-bottom: var(--spacing-md);
}

.action-text {
  font-size: 1.15rem;
  font-weight: var(--font-weight-medium);
}

.benefits-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-xl);
}

.benefit-badge {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  background-color: rgba(193, 98, 0, 0.05); /* Soft brand orange wash */
  border: 1px solid rgba(193, 98, 0, 0.08);
  padding: var(--spacing-xs) var(--spacing-md);
  border-radius: 100px;
  transition: var(--transition-smooth);
}

.benefit-badge:hover {
  background-color: rgba(193, 98, 0, 0.08);
  border-color: rgba(193, 98, 0, 0.15);
}

.benefit-text {
  font-size: 0.85rem;
  font-weight: var(--font-weight-bold);
  letter-spacing: -0.01em;
}

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

.image-container-editorial {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius-lg);
  box-shadow: 0 15px 35px rgba(15, 15, 15, 0.08);
  aspect-ratio: 4 / 3;
  background-color: #EADECF; /* Soft warm placeholder color under image */
}

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

.image-container-editorial:hover .how-image {
  transform: scale(1.04);
}

/* Responsive Upgrades for How It Works Section */
@media (min-width: 768px) {
  .how-header {
    font-size: 2.5rem; /* Match balanced header sizing rules */
  }
}

@media (min-width: 1000px) {
  .how-it-works-grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: var(--spacing-3xl);
    align-items: center;
  }
}

@media (min-width: 1024px) {
  .how-header {
    font-size: 3rem;
  }
}

@media (min-width: 1280px) {
  .how-header {
    font-size: 3.5rem;
  }
}

/* ====================================
   SECTION: TRUST BUILDING 02 - REVIEW
   ==================================== */

.trust-02 {
  display: none; /* Temporarily hidden per user request */
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-orange) 100%);
  padding: var(--spacing-lg) 0; /* Reduced vertical padding */
  box-shadow: inset 0 4px 12px rgba(15, 15, 15, 0.08), inset 0 -4px 12px rgba(15, 15, 15, 0.08);
  position: relative;
  overflow: hidden;
}

/* Subtle glowing light-leak over the gradient background */
.trust-02::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 60%);
  pointer-events: none;
}

.trust-02 .container {
  max-width: 600px; /* Snugger, narrower container for perfect line lengths */
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
}

.review-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
}

.review-quote-icon {
  width: 36px;
  height: 36px;
  color: var(--color-dark);
  opacity: 0.12;
  margin-bottom: var(--spacing-xs); /* Reduced spacing */
  transition: var(--transition-smooth);
}

.review-wrapper:hover .review-quote-icon {
  opacity: 0.22;
  transform: translateY(-2px);
}

.review-quote-icon svg {
  width: 100%;
  height: 100%;
}

.review-text-block {
  font-family: var(--font-primary);
  font-size: 1.1rem; /* Highly readable mobile sizing */
  font-weight: var(--font-weight-light); /* Sleek light weight */
  font-style: italic; /* Beautiful editorial italics */
  color: var(--color-dark); /* Strict pitch-black contrast */
  line-height: 1.6;
  margin: 0 0 var(--spacing-lg) 0; /* Reduced spacing */
  letter-spacing: -0.01em;
  border: none;
  padding: 0;
  background: transparent;
}

.review-highlight {
  font-weight: var(--font-weight-bold); /* Emphasize key phrases in bold */
  font-style: italic; /* Keep italic harmony */
  color: var(--color-dark);
}

.review-author-block {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-md);
  text-align: left;
}

.review-avatar-container {
  position: relative;
}

.review-avatar-placeholder {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--color-dark);
  color: var(--color-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--font-weight-bold);
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 12px rgba(15, 15, 15, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.25);
  transition: var(--transition-smooth);
}

.review-wrapper:hover .review-avatar-placeholder {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(15, 15, 15, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
}

.review-meta {
  display: flex;
  flex-direction: column;
}

.review-author {
  font-size: 1rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-dark);
  font-style: normal;
  line-height: 1.3;
}

.review-company {
  font-size: 0.8rem;
  font-weight: var(--font-weight-medium);
  color: var(--color-dark);
  opacity: 0.75;
  line-height: 1.3;
}

/* Desktop sizing upgrades */
@media (min-width: 768px) {
  .trust-02 {
    padding: var(--spacing-xl) 0; /* Reduced vertical padding on desktop */
  }

  .review-quote-icon {
    width: 44px;
    height: 44px;
    margin-bottom: var(--spacing-sm); /* Reduced margin */
  }

  .review-text-block {
    font-size: 1.35rem; /* Sleeker, highly cohesive text size for narrow column */
    line-height: 1.65;
    margin-bottom: var(--spacing-lg); /* Reduced margin */
  }

  .review-avatar-placeholder {
    width: 54px;
    height: 54px;
    font-size: 1.05rem;
  }

  .review-author {
    font-size: 1.1rem;
  }

  .review-company {
    font-size: 0.9rem;
  }
}

/* ====================================
   SECTION: THE SETUP
   ==================================== */

.setup {
  background-color: var(--color-dark); /* #0F0F0F */
  /* Elegant organic sweeping lines specifically arranged differently for the setup timeline background */
  background-image: 
    url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 800'%3E%3Cpath d='M-100,700 C300,500 500,-100 1300,150' fill='none' stroke='rgba(218,159,50,0.05)' stroke-width='1.5'/%3E%3Cpath d='M200,850 C500,400 700,50 1300,600' fill='none' stroke='rgba(193,98,0,0.04)' stroke-width='1.5'/%3E%3Cpath d='M-50,150 C400,100 800,800 1250,650' fill='none' stroke='rgba(218,159,50,0.04)' stroke-width='1'/%3E%3C/svg%3E"),
    radial-gradient(circle at 80% 20%, rgba(218, 159, 50, 0.05) 0%, rgba(15, 15, 15, 0) 55%),
    radial-gradient(circle at 20% 80%, rgba(193, 98, 0, 0.04) 0%, rgba(15, 15, 15, 0) 55%),
    radial-gradient(circle at 50% 50%, rgba(218, 159, 50, 0.02) 0%, rgba(15, 15, 15, 0) 45%);
  background-size: cover, auto, auto, auto;
  background-repeat: no-repeat;
  padding: var(--spacing-xl) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  position: relative;
  overflow: hidden;
}

.setup-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-2xl);
  position: relative;
  z-index: 2;
}

.setup-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.setup-header {
  margin-top: var(--spacing-xs);
  margin-bottom: var(--spacing-md);
}

.setup-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-md);
}

.setup-badge {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs); /* Elegant gap between checkmark and text */
  background-color: var(--color-dark-secondary); /* #1A1A1A */
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: var(--spacing-xs) var(--spacing-md);
  border-radius: 50px; /* Modern capsule shape */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: var(--transition-smooth);
}

.setup-badge:hover {
  border-color: rgba(218, 159, 50, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(218, 159, 50, 0.06);
}

.setup-badge-check {
  width: 14px;
  height: 14px;
  color: var(--color-gold); /* Golden checkmark contrast */
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

.setup-badge:hover .setup-badge-check {
  transform: scale(1.1);
  color: var(--color-orange); /* Subtle hover transition shift */
}

.setup-badge-text {
  font-size: var(--font-size-small);
  font-weight: var(--font-weight-medium);
  color: var(--color-light);
  opacity: 0.85;
  letter-spacing: -0.01em;
}

/* Timeline Layout */
.setup-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.timeline-container {
  background-color: var(--color-dark-secondary); /* #1A1A1A card */
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: var(--border-radius-lg);
  padding: var(--spacing-xl) var(--spacing-lg);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  position: relative;
}

.timeline-title {
  font-size: 1.15rem;
  line-height: var(--line-height-relaxed);
  font-weight: var(--font-weight-medium);
  margin-bottom: var(--spacing-xl);
  letter-spacing: -0.01em;
}

.timeline-steps {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xl);
  position: relative;
}

/* Vertical connector line */
.timeline-steps::before {
  content: '';
  position: absolute;
  top: 15px;
  left: 20px;
  width: 1px;
  height: calc(100% - 30px);
  background: linear-gradient(to bottom, rgba(218, 159, 50, 0.3) 0%, rgba(193, 98, 0, 0.05) 100%);
}

.timeline-step {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-md);
  position: relative;
  z-index: 2;
}

.step-marker {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--color-dark);
  border: 1px solid rgba(218, 159, 50, 0.3);
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

.timeline-step:hover .step-marker {
  border-color: var(--color-gold);
  background-color: var(--color-gold);
  box-shadow: 0 0 15px rgba(218, 159, 50, 0.4);
}

.step-num {
  font-family: var(--font-primary);
  font-size: var(--font-size-small);
  font-weight: var(--font-weight-bold);
  color: var(--color-gold);
  transition: var(--transition-smooth);
}

.timeline-step:hover .step-num {
  color: var(--color-dark);
}

.step-content {
  display: flex;
  flex-direction: column;
  padding-top: 6px;
}

.step-text {
  font-size: 1.05rem;
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-tight);
  margin-bottom: 2px;
}

.step-sub {
  font-size: var(--font-size-small);
  font-weight: var(--font-weight-regular);
  opacity: 0.7;
}

/* Tablet & Desktop Grid responsive upgrade */
@media (min-width: 1000px) {
  .setup-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
  }

  .setup-header {
    font-size: 2.5rem;
  }

  .timeline-container {
    padding: var(--spacing-2xl);
  }
}

@media (min-width: 1024px) {
  .setup-grid {
    grid-template-columns: 0.95fr 1.05fr;
  }

  .setup-header {
    font-size: 3rem;
  }
}

/* ====================================
   COMPONENT: HEADER/SUBHEADER
   ==================================== */

.header {
  font-size: var(--font-size-h1);
  font-weight: var(--font-weight-regular);
  line-height: var(--line-height-tight);
  color: var(--color-light);
  margin-bottom: var(--spacing-md);
}

.highlight-gold {
  color: var(--color-gold);
  font-style: italic;
  font-weight: var(--font-weight-light);
}

.subheader {
  font-size: var(--font-size-body);
  font-weight: var(--font-weight-regular);
  line-height: var(--line-height-relaxed);
  color: var(--color-light);
  margin-bottom: var(--spacing-lg);
}

/* ====================================
   COMPONENT: NOTE/CALLOUT
   ==================================== */

.note {
  background-color: var(--color-dark-secondary);
  border-left: 4px solid var(--color-gold);
  padding: var(--spacing-md);
  border-radius: var(--border-radius-md);
  font-size: var(--font-size-body);
  line-height: var(--line-height-relaxed);
  margin: var(--spacing-lg) 0;
}

.note p {
  margin-bottom: 0;
}

/* ====================================
   COMPONENT: TESTIMONIAL
   ==================================== */

.testimonial {
  background-color: var(--color-dark-secondary);
  padding: var(--spacing-lg);
  border-radius: var(--border-radius-md);
  border: 1px solid rgba(218, 159, 50, 0.2);
}

.testimonial-text {
  font-size: var(--font-size-body);
  line-height: var(--line-height-relaxed);
  font-style: italic;
  margin-bottom: var(--spacing-md);
  color: var(--color-light);
}

.testimonial-author {
  font-size: var(--font-size-small);
  font-weight: var(--font-weight-medium);
  color: var(--color-gold);
}

/* ====================================
   COMPONENT: FEATURE LIST
   ==================================== */

.feature-list {
  list-style: none;
}

.feature-list li {
  padding: var(--spacing-sm) 0;
  line-height: var(--line-height-relaxed);
  color: var(--color-light);
}

.feature-list li::before {
  content: "✓ ";
  color: var(--color-gold);
  font-weight: var(--font-weight-bold);
  margin-right: var(--spacing-xs);
}

/* ====================================
   RESPONSIVE: TABLET (640px+)
   ==================================== */

@media (min-width: 640px) {
  :root {
    --font-size-h1: 2.5rem;
    --font-size-h2: 1.75rem;
    --font-size-h3: 1.5rem;
    --spacing-lg: 2.5rem;
    --spacing-xl: 3.5rem;
    --spacing-2xl: 5rem;
    --spacing-3xl: 7rem;
  }

  .container {
    padding: 0 var(--spacing-lg);
  }

  section {
    padding: var(--spacing-3xl) var(--spacing-lg);
  }

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

/* ====================================
   RESPONSIVE: TABLET/MEDIUM (768px+)
   ==================================== */

@media (min-width: 768px) {
  :root {
    --font-size-h1: 3rem;
    --font-size-h2: 2rem;
    --font-size-h3: 1.75rem;
    --spacing-3xl: 8rem;
  }

  .container {
    padding: 0 var(--spacing-lg);
  }

  section {
    padding: var(--spacing-3xl) var(--spacing-lg);
  }
}

/* ====================================
   RESPONSIVE: LAPTOP (1024px+)
   ==================================== */

@media (min-width: 1024px) {
  :root {
    --font-size-h1: 3.5rem;
    --font-size-h2: 2.25rem;
    --font-size-h3: 2rem;
    --font-size-body: 1.125rem;
  }

  .container {
    max-width: 1024px;
    padding: 0 var(--spacing-lg);
    margin: 0 auto;
  }

  section {
    padding: var(--spacing-3xl) var(--spacing-lg);
  }

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

  .grid-cols-3 {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

/* ====================================
   RESPONSIVE: DESKTOP (1280px+)
   ==================================== */

@media (min-width: 1280px) {
  :root {
    --font-size-h1: 4rem;
    --font-size-h2: 2.5rem;
    --spacing-3xl: 10rem;
  }

  .container {
    max-width: 1280px;
    padding: 0 var(--spacing-lg);
    margin: 0 auto;
  }

  section {
    padding: var(--spacing-3xl) var(--spacing-lg);
  }
}

/* ====================================
   UTILITY: SPACING
   ==================================== */

.mt-sm { margin-top: var(--spacing-sm); }
.mt-md { margin-top: var(--spacing-md); }
.mt-lg { margin-top: var(--spacing-lg); }
.mt-xl { margin-top: var(--spacing-xl); }

.mb-sm { margin-bottom: var(--spacing-sm); }
.mb-md { margin-bottom: var(--spacing-md); }
.mb-lg { margin-bottom: var(--spacing-lg); }
.mb-xl { margin-bottom: var(--spacing-xl); }

.pt-sm { padding-top: var(--spacing-sm); }
.pt-md { padding-top: var(--spacing-md); }
.pt-lg { padding-top: var(--spacing-lg); }
.pt-xl { padding-top: var(--spacing-xl); }

.pb-sm { padding-bottom: var(--spacing-sm); }
.pb-md { padding-bottom: var(--spacing-md); }
.pb-lg { padding-bottom: var(--spacing-lg); }
.pb-xl { padding-bottom: var(--spacing-xl); }

/* ====================================
   UTILITY: VISIBILITY
   ==================================== */

.hidden {
  display: none;
}

.block {
  display: block;
}

/* ====================================
   SECTION: THE DESIGN (LIGHT BACKGROUND)
   ==================================== */

.design {
  background-color: var(--color-light); /* Off-white #F5F1ED */
  padding: var(--spacing-xl) 0;
  border-top: 1px solid rgba(15, 15, 15, 0.05);
  position: relative;
  overflow: hidden;
}

.design-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-2xl);
  position: relative;
  z-index: 2;
}

.design-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.design-header {
  font-size: 1.75rem;
  line-height: var(--line-height-tight);
  margin-bottom: var(--spacing-sm);
  max-width: 600px;
}

.design-bullets {
  width: 100%;
}

.design-bullet-item {
  display: flex;
  gap: var(--spacing-md);
  align-items: flex-start;
  padding: var(--spacing-sm) 0;
  border-bottom: 1px solid rgba(15, 15, 15, 0.05);
}

.design-bullet-item:last-child {
  border-bottom: none;
}

.design-bullet-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: rgba(218, 159, 50, 0.1);
  border: 1px solid rgba(218, 159, 50, 0.2);
  color: var(--color-gold);
  flex-shrink: 0;
}

.design-bullet-icon {
  width: 22px;
  height: 22px;
  color: var(--color-orange);
}

.design-bullet-text {
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 0;
}

.design-note {
  background-color: #ECE6DF; /* Premium warm sand background offset */
  border-left: 3px solid var(--color-gold);
  padding: var(--spacing-md) var(--spacing-lg);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  width: 100%;
}

.design-note:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-left-color: var(--color-orange);
}

.note-text {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0;
}

.note-highlight {
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}

/* Right Column: Style Previews Showcase */
.design-showcase {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.design-mockups {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
  width: 100%;
}

.mockup-card {
  height: 520px; /* Uniform luxury alignment */
  box-sizing: border-box;
  border-radius: var(--border-radius-lg);
  padding: var(--spacing-md);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(15, 15, 15, 0.08);
  position: relative;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
  overflow: hidden;
  cursor: default;
  min-width: 0;
  max-width: 100%;
}

/* Light Card Style - Kobi's Place */
.mockup-card.mockup-light {
  background-color: #F7FBFF; /* Crisp light ice-blue/white */
  border-color: rgba(24, 95, 165, 0.12);
}

.mockup-card.mockup-light:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 12px 30px rgba(24, 95, 165, 0.12);
  border-color: rgba(24, 95, 165, 0.3);
}

/* Dark Card Style - Hans Dings */
.mockup-card.mockup-dark {
  background-color: #121413; /* Deep luxury charcoal */
  border-color: rgba(255, 255, 255, 0.03);
}

.mockup-card.mockup-dark:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 12px 30px rgba(218, 159, 50, 0.15);
  border-color: rgba(218, 159, 50, 0.3);
}

/* Mockup Header Elements */
.mockup-header-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: var(--spacing-xs);
  border-bottom: 1px solid rgba(15, 15, 15, 0.04);
}

.mockup-dark .mockup-header-bar {
  border-bottom-color: rgba(255, 255, 255, 0.05);
}

.mockup-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.mockup-light .mockup-logo {
  color: #185FA5; /* Royal Blue */
}

.mockup-dark .mockup-logo {
  color: #C5A880; /* Elegant Gold */
}

.mockup-nav-dashes {
  display: flex;
  gap: 4px;
}

.mockup-nav-dashes span {
  width: 12px;
  height: 2px;
  border-radius: 1px;
}

.mockup-light .mockup-nav-dashes span {
  background-color: rgba(24, 95, 165, 0.2);
}

.mockup-dark .mockup-nav-dashes span {
  background-color: rgba(255, 255, 255, 0.15);
}

/* Hero Caption area inside mockups */
.mockup-hero-area {
  padding: var(--spacing-xs) 0;
}

.mockup-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  font-weight: var(--font-weight-light);
  line-height: 1.3;
  margin-bottom: 0;
}

.mockup-light .mockup-hero-title {
  color: var(--color-dark);
}

.mockup-dark .mockup-hero-title {
  color: var(--color-light);
}

/* Miniature Sales Horse Card */
.mockup-horse-card {
  border-radius: var(--border-radius-md);
  border: 1px solid rgba(15, 15, 15, 0.06);
  background-color: rgba(255, 255, 255, 0.5);
  padding: var(--spacing-sm);
  display: flex;
  flex-direction: column; /* Restored elegant vertical layout */
  gap: var(--spacing-sm);
}

.mockup-light .mockup-horse-card {
  border: 1.5px solid rgba(24, 95, 165, 0.35); /* more visible blue border */
}

.mockup-dark .mockup-horse-card {
  background-color: #222423; /* slightly lighter dark gray to stand out */
  border: 1.5px solid rgba(218, 159, 50, 0.45); /* more visible gold border */
}

.mockup-horse-img-placeholder {
  width: 100%; /* Spans full card width */
  height: 160px; /* Generous tall height to show the full horse uncropped */
  border-radius: var(--border-radius-sm);
  overflow: hidden;
  position: relative;
}

.mockup-horse-gradient {
  width: 100%;
  height: 100%;
  transition: var(--transition-smooth);
}

.mockup-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: var(--transition-smooth);
}

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

.mockup-horse-gradient.light-grad {
  background: linear-gradient(135deg, #ECE6DF 0%, #D8D1C7 100%);
}

.mockup-card:hover .mockup-horse-gradient.light-grad {
  background: linear-gradient(135deg, #E6F1FB 0%, #B5D4F4 100%);
  transform: scale(1.05);
}

.mockup-horse-gradient.dark-grad {
  background: linear-gradient(135deg, #222220 0%, #1A1A19 100%);
}

.mockup-card:hover .mockup-horse-gradient.dark-grad {
  background: linear-gradient(135deg, #181816 0%, #C5A880 100%);
  transform: scale(1.05);
}

.mockup-status {
  position: absolute;
  top: 6px;
  left: 6px;
  font-size: 0.55rem;
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 2px 6px;
  border-radius: 4px;
  line-height: 1;
}

.mockup-status.status-light {
  background-color: #185FA5;
  color: #ffffff;
}

.mockup-status.status-dark {
  background-color: #C5A880;
  color: #111111;
}

.mockup-horse-details {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mockup-horse-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.9rem;
  font-weight: var(--font-weight-bold);
  line-height: 1.2;
  margin-bottom: 0;
}

.mockup-light .mockup-horse-name {
  color: var(--color-dark);
}

.mockup-dark .mockup-horse-name {
  color: var(--color-light);
}

.mockup-horse-breed {
  font-size: 0.6rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-dark); /* dark color by default (light theme) */
  opacity: 0.95;
}

.mockup-dark .mockup-horse-breed {
  color: var(--text-light-secondary);
  opacity: 0.6;
}

.mockup-horse-tags {
  display: flex;
  gap: 4px;
  margin-top: 4px;
  flex-wrap: wrap;
}

.mockup-tag {
  font-size: 0.55rem;
  padding: 1px 5px;
  border-radius: 3px;
  border: 1px solid rgba(15, 15, 15, 0.08);
}

.mockup-light .mockup-tag {
  border-color: rgba(24, 95, 165, 0.2);
  color: #185FA5;
}

.mockup-dark .mockup-tag {
  border-color: rgba(218, 159, 50, 0.2);
  color: var(--color-gold);
}

.mockup-card-label {
  font-size: 0.75rem;
  text-align: center;
  font-weight: var(--font-weight-medium);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: var(--spacing-xs);
  opacity: 0.7;
}

.mockup-light .mockup-card-label {
  color: #185FA5;
}

.mockup-dark .mockup-card-label {
  color: #C5A880;
}

/* ====================================
   RESPONSIVE LAYOUT UPGRADES FOR DESIGN SECTION
   ==================================== */

@media (min-width: 640px) {
  .design-mockups {
    flex-direction: row;
    gap: var(--spacing-md);
  }
  
  .mockup-card {
    flex: 1;
  }
}

@media (min-width: 768px) {
  .design {
    padding: var(--spacing-xl) 0;
  }
  
  .design-header {
    font-size: 2.5rem;
  }
  
  .design-bullet-text {
    font-size: 1.1rem;
  }
}

@media (min-width: 1024px) {
  .design-header {
    font-size: 3rem;
  }
}

@media (min-width: 1350px) {
  .design-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: var(--spacing-3xl);
    align-items: center;
  }
}

/* ====================================
   SECTION: SUPPORT/TRUST (DARK OVERLAY & BACKGROUND IMAGE 2.JPEG)
   ==================================== */

.support-trust {
  position: relative;
  overflow: hidden;
  padding: var(--spacing-3xl) 0;
  
  /* Immersive parallax background utilizing image 2.jpeg */
  background-image: url('img/2.jpeg');
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 50vh;
  display: flex;
  align-items: center;
}

/* Semi-transparent dark overlay for perfect text contrast (WCAG AAA compliant) */
.support-trust::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(to bottom, rgba(15, 15, 15, 0.7) 0%, rgba(15, 15, 15, 0.25) 50%, rgba(15, 15, 15, 0.7) 100%);
  z-index: 1;
  pointer-events: none;
}

.support-trust .container {
  max-width: 720px; /* Snugger, professional width for centered reading column */
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.support-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.support-header {
  font-size: 2rem;
  line-height: var(--line-height-tight);
  margin-top: var(--spacing-sm);
  margin-bottom: var(--spacing-md);
  max-width: 600px;
}

.support-card {
  width: 100%;
  max-width: 680px;
  background: rgba(15, 15, 15, 0.45); /* slightly lighter dark backdrop for cleaner look */
  backdrop-filter: blur(4px); /* reduced glass blur for maximum text legibility */
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.06); /* subtler glass boundary */
  border-radius: var(--border-radius-lg);
  padding: var(--spacing-xl) var(--spacing-lg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  margin-bottom: var(--spacing-lg);
  transition: var(--transition-smooth);
}

.support-card:hover {
  border-color: rgba(218, 159, 50, 0.25); /* soft gold tint change */
  transform: translateY(-2px);
}

.support-intro {
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--color-light);
  margin-bottom: var(--spacing-md);
}

.support-body {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--color-light);
  opacity: 0.85;
  margin-bottom: var(--spacing-sm);
}

/* Active Message Icon Styling */
.support-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: rgba(218, 159, 50, 0.1);
  border: 1px solid rgba(218, 159, 50, 0.25);
  color: var(--color-gold);
  transition: var(--transition-smooth);
  cursor: default;
}

.support-icon-wrapper:hover {
  transform: scale(1.08) translateY(-2px);
  background-color: var(--color-gold);
  color: var(--color-dark);
  box-shadow: 0 0 20px rgba(218, 159, 50, 0.4);
}

.support-icon {
  width: 28px;
  height: 28px;
  transition: var(--transition-smooth);
}

/* Tablet & Desktop sizing updates for support section */
@media (min-width: 768px) {
  .support-trust {
    padding: var(--spacing-3xl) 0;
  }

  .support-header {
    font-size: 2.75rem;
  }

  .support-intro {
    font-size: 1.4rem;
  }

  .support-body {
    font-size: 1.15rem;
  }
}

/* ====================================
   SECTION: THE PRICING (LIGHT BACKGROUND)
   ==================================== */

.pricing {
  background-color: var(--color-light); /* Off-white #F5F1ED */
  padding: var(--spacing-xl) 0;
  border-top: 1px solid rgba(15, 15, 15, 0.05);
  position: relative;
  overflow: hidden;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-2xl);
  position: relative;
  z-index: 2;
}

.pricing-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.pricing-header {
  font-size: 1.75rem;
  line-height: var(--line-height-tight);
  margin-bottom: var(--spacing-sm);
  max-width: 600px;
}

.pricing-lead {
  font-size: 1.25rem;
  line-height: 1.6;
  max-width: 600px;
}

.pricing-note {
  background-color: #ECE6DF; /* Warm sand background offset */
  border-left: 3px solid var(--color-gold);
  padding: var(--spacing-md) var(--spacing-lg);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  width: 100%;
}

.pricing-note:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-left-color: var(--color-orange);
}

/* Right Column: Features Card */
.pricing-right {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.pricing-features-card {
  width: 100%;
  background-color: #ffffff; /* Pure white contrast panel */
  border: 1px solid rgba(15, 15, 15, 0.06);
  border-radius: var(--border-radius-lg);
  padding: var(--spacing-xl);
  box-shadow: var(--shadow-md);
  transition: var(--transition-smooth);
}

.pricing-features-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(218, 159, 50, 0.35); /* warm gold tint border */
}

.pricing-features-title {
  font-size: 1.2rem;
  margin-bottom: var(--spacing-md);
}

.pricing-features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.pricing-feature-item {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-md);
}

.pricing-feature-check {
  width: 20px;
  height: 20px;
  color: var(--color-orange); /* Golden-orange checkmark */
  flex-shrink: 0;
  margin-top: 3px;
}

.pricing-feature-text {
  font-size: 1.05rem;
  line-height: 1.5;
}

/* Responsive updates for Pricing section */
@media (min-width: 768px) {
  .pricing {
    padding: var(--spacing-xl) 0;
  }

  .pricing-header {
    font-size: 2.5rem;
  }

  .pricing-lead {
    font-size: 1.4rem;
  }
}

@media (min-width: 1024px) {
  .pricing-header {
    font-size: 3rem;
  }
}

@media (min-width: 1350px) {
  .pricing-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
  }
}

/* ====================================
   SECTION: THE CTA (DARK OVERLAY & WA FORM)
   ==================================== */

.cta {
  background-color: #0B1C16; /* Deep luxury equestrian forest green */
  /* Elegant ambient gold glow behind the form */
  background-image: 
    radial-gradient(circle at 50% 50%, rgba(218, 159, 50, 0.08) 0%, rgba(11, 28, 22, 0) 70%);
  padding: var(--spacing-3xl) 0;
  border-top: 1px solid rgba(218, 159, 50, 0.15); /* Gold border top for premium separation */
  position: relative;
  overflow: hidden;
}

.cta .container {
  max-width: 640px; /* Snugger, professional width for centered reading column */
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.cta-header {
  font-size: 2rem;
  line-height: var(--line-height-tight);
  margin-bottom: var(--spacing-sm);
}

.cta-subtitle {
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 480px;
  margin: 0 auto;
}

.cta-form-wrapper {
  width: 100%;
  max-width: 580px;
}

.cta-form {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
  width: 100%;
}

.cta-input {
  flex: 1;
  background-color: #1A1A1A; /* Crisp dark contrast */
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-md);
  padding: var(--spacing-sm) var(--spacing-md);
  font-family: var(--font-primary);
  font-size: var(--font-size-body);
  color: var(--color-light);
  outline: none;
  transition: var(--transition-smooth);
}

.cta-input::placeholder {
  color: var(--color-light);
  opacity: 0.4;
}

.cta-input:focus {
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(218, 159, 50, 0.15);
  background-color: #222220; /* Slightly lighter on focus */
}

.cta-btn {
  white-space: nowrap;
  font-weight: var(--font-weight-bold);
  padding: var(--spacing-sm) var(--spacing-xl);
}

.cta-subtext {
  display: block;
  font-size: 0.8rem;
  opacity: 0.6;
}

/* Tablet & Desktop Layout upgrades for CTA section */
@media (min-width: 640px) {
  .cta-form {
    flex-direction: row;
    align-items: center;
    gap: var(--spacing-sm);
  }

  .cta-input {
    margin-bottom: 0;
  }
}

@media (min-width: 768px) {
  .cta {
    padding: var(--spacing-3xl) 0;
  }

  .cta-header {
    font-size: 3rem;
  }

  .cta-subtitle {
    font-size: 1.25rem;
    max-width: 540px;
  }
}

/* ==========================================================================
   COMPONENT: PORTRAIT VIDEO SOUND OVERLAY
   ========================================================================== */
.video-sound-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(15, 15, 15, 0.25); /* Lighter dimming for absolute clarity */
  backdrop-filter: blur(1px); /* reduced glass blur */
  -webkit-backdrop-filter: blur(1px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), backdrop-filter 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.video-sound-overlay:hover {
  background-color: rgba(15, 15, 15, 0.35);
  backdrop-filter: blur(2px); /* reduced glass blur */
  -webkit-backdrop-filter: blur(2px);
}

.sound-overlay-badge {
  background: rgba(20, 74, 50, 0.75); /* Luxury Traditional Hunter Green with reduced opacity */
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px); /* reduced glass blur */
  -webkit-backdrop-filter: blur(4px);
  padding: 10px 18px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.05);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
  animation: overlayBadgePulse 2s infinite ease-in-out;
}

.video-sound-overlay:hover .sound-overlay-badge {
  transform: scale(1.05);
  background: rgba(29, 99, 67, 0.95); /* Elite interactive green lift */
  border-color: var(--color-gold); /* Shimmers Maeve signature Gold */
  box-shadow: 0 15px 35px rgba(218, 159, 50, 0.25); /* Gold glow surrounding */
}

.sound-overlay-icon {
  width: 20px;
  height: 20px;
  color: var(--color-light);
  transition: color 0.4s ease;
}

.video-sound-overlay:hover .sound-overlay-icon {
  color: var(--color-gold);
}

.sound-overlay-text {
  font-family: var(--font-primary); /* Elegant Satoshi typeface */
  font-size: 0.8rem;
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-light);
  white-space: nowrap;
  transition: color 0.4s ease;
}

.video-sound-overlay:hover .sound-overlay-text {
  color: var(--color-gold);
}

.video-sound-overlay.fade-out {
  opacity: 0;
  pointer-events: none;
}

@keyframes overlayBadgePulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  }
  50% {
    transform: scale(1.03);
    box-shadow: 0 12px 35px rgba(20, 74, 50, 0.45);
  }
}

/* ==========================================================================
   COMPONENT: HOW IT WORKS INTERACTIVE SIMULATOR
   ========================================================================== */
.how-interactive-demo {
  position: relative;
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.how-device-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 18.5; /* Modern high-aspect bezel */
  background-color: #1A1A1A;
  border: 11px solid #292929;
  border-radius: 38px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.18), 0 0 0 1px rgba(255, 255, 255, 0.05);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  z-index: 5;
  
  /* Guarantee Chrome compositor rounded clip rendering during 3D hardware transitions */
  transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
  isolation: isolate;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

/* Screen Viewport Wrapper for pixel-perfect clipping of transformed child elements in Chrome */
.device-viewport {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 27px; /* 38px frame border-radius - 11px border = 27px inner radius */
  z-index: 6;
  
  /* Force a GPU composite layer inside a static container for Chrome clip protection */
  transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
  isolation: isolate;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  mask-image: -webkit-radial-gradient(white, black);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

/* Simulated Bezel Accents */
.device-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 18px;
  background-color: #292929;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  z-index: 100;
}

.device-home-bar {
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 4px;
  background-color: rgba(255, 255, 255, 0.25);
  border-radius: 2px;
  z-index: 100;
}

/* Sliding Screen Panels */
.demo-screens-slider {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  width: 200%;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.85, 0, 0.15, 1);
  will-change: transform;
  transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.demo-screens-slider.slide-to-website {
  transform: translate3d(-50%, 0, 0);
  -webkit-transform: translate3d(-50%, 0, 0);
}

.demo-screen {
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 27px; /* Matches inner viewport perfectly to completely eliminate sharp corners */
  transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

/* --------------------------------------------------------------------------
   SCREEN 1: WHATSAPP CHAT DESIGN SYSTEM
   -------------------------------------------------------------------------- */
.screen-whatsapp {
  background-color: #ECE5DD; /* Traditional WA Light Sand Wallpaper */
  background-image: radial-gradient(rgba(0, 0, 0, 0.04) 1px, transparent 0),
                    radial-gradient(rgba(0, 0, 0, 0.04) 1px, transparent 0);
  background-size: 8px 8px;
  background-position: 0 0, 4px 4px;
  position: relative;
}

.whatsapp-header {
  background-color: #075E54; /* Prestige WhatsApp Hunter-Teel */
  color: var(--color-light);
  padding: 24px 14px 8px 14px; /* Give room for notch */
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  z-index: 10;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.whatsapp-header-left {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-right: 2px;
}

.wa-back-arrow {
  font-size: 0.95rem;
  font-weight: bold;
  color: var(--color-light);
  opacity: 0.9;
  cursor: pointer;
  display: inline-block;
  transform: scaleX(1.15);
  margin-right: 1px;
}

.whatsapp-avatar-img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-color: #FFFFFF;
}

.whatsapp-header-info {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  min-width: 0; /* Critical for ellipsis truncation inside flex children */
  margin-right: 4px;
}

.whatsapp-name {
  font-family: var(--font-primary);
  font-size: 0.74rem; /* Balanced size for longer brand name */
  font-weight: var(--font-weight-bold);
  letter-spacing: -0.01em;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis; /* Graceful text overflow fallback */
}

.whatsapp-status {
  font-family: var(--font-primary);
  font-size: 0.58rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: var(--font-weight-medium);
}

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

.wa-menu-dots {
  display: flex;
  flex-direction: column;
  gap: 3.5px;
  cursor: pointer;
  padding: 4px 6px;
  margin-right: -4px;
}

.wa-dot {
  width: 3.5px;
  height: 3.5px;
  background-color: var(--color-light);
  border-radius: 50%;
  opacity: 0.9;
}

/* Message Feed Grid */
.whatsapp-chat-body {
  flex-grow: 1;
  padding: 12px 10px 30px 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
  scrollbar-width: none; /* Hide scrollbars for screenshot layout */
  transition: padding-bottom 0.35s cubic-bezier(0.1, 0.9, 0.2, 1);
}
.whatsapp-chat-body::-webkit-scrollbar {
  display: none;
}

/* Staggered Pop Animations */
.wa-message {
  max-width: 82%;
  padding: 7px 10px;
  border-radius: 10px;
  font-family: var(--font-primary);
  font-size: 0.72rem;
  line-height: 1.35;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.08);
  animation: waBubblePop 0.35s cubic-bezier(0.18, 0.89, 0.32, 1.2) forwards;
  opacity: 0;
  transform: scale(0.9) translateY(5px);
}

@keyframes waBubblePop {
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.wa-msg-user {
  align-self: flex-end;
  background-color: #DCF8C6; /* Standard WA User Green */
  border-top-right-radius: 2px;
  color: #1A1A1A;
}

.wa-msg-maeve {
  align-self: flex-start;
  background-color: #FFFFFF;
  border-top-left-radius: 2px;
  color: #1A1A1A;
}

.wa-msg-content {
  word-break: break-word;
}

.wa-msg-time {
  font-size: 0.52rem;
  color: #999999;
  align-self: flex-end;
  margin-top: 2px;
  letter-spacing: 0.02em;
}

.wa-msg-user .wa-msg-time {
  color: #86A873;
}

/* Live updates link styling */
.wa-chat-link {
  color: #075E54;
  font-weight: var(--font-weight-bold);
  text-decoration: underline;
  cursor: pointer;
  word-break: break-all;
  display: inline-block;
}

/* WhatsApp Message Media Card (Upload Progress Simulator) */
.wa-media-card {
  display: flex;
  gap: 8px;
  background-color: rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 6px;
  padding: 6px;
  margin-bottom: 2px;
}

.wa-media-icon {
  font-size: 1.2rem;
  align-self: center;
}

.wa-media-details {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.wa-media-title {
  font-weight: var(--font-weight-bold);
  font-size: 0.65rem;
  color: #333333;
}

.wa-progress-track {
  width: 100%;
  height: 4px;
  background-color: rgba(0, 0, 0, 0.08);
  border-radius: 2px;
  overflow: hidden;
  margin: 4px 0 2px 0;
}

.wa-progress-bar {
  width: 0%;
  height: 100%;
  background-color: #075E54;
  border-radius: 2px;
}

.wa-media-meta {
  font-size: 0.55rem;
  color: #666666;
}

/* Typing indicator bubble dots */
.wa-msg-typing {
  padding: 9px 12px;
  border-radius: 10px;
  display: flex;
  align-items: center;
}

.typing-indicator-dots {
  display: flex;
  gap: 4px;
  align-items: center;
  height: 8px;
}

.typing-dot {
  width: 5px;
  height: 5px;
  background-color: rgba(0, 0, 0, 0.35);
  border-radius: 50%;
  animation: waTypingIndicator 1s infinite ease-in-out;
}

.typing-dot:nth-child(2) {
  animation-delay: 0.2s;
}

.typing-dot:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes waTypingIndicator {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

/* Input Area Bezel Panel */
.whatsapp-input-area {
  background-color: #F0F0F0;
  padding: 8px 12px 24px 12px; /* Generous bottom padding for curved bezel spacing */
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  z-index: 10;
  transition: transform 0.35s cubic-bezier(0.1, 0.9, 0.2, 1), padding-bottom 0.35s ease;
}

.wa-input-row {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.wa-input-attachment {
  font-size: 0.9rem;
  color: #777777;
  cursor: pointer;
}

.whatsapp-input-placeholder {
  flex-grow: 1;
  background-color: #FFFFFF;
  border: 1px solid #E4E4E4;
  border-radius: 18px;
  padding: 5px 12px;
  font-family: var(--font-primary);
  font-size: 0.68rem;
  color: #A0A0A0;
}

.whatsapp-send-btn {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background-color: #075E54;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* --------------------------------------------------------------------------
   SCREEN 2: WEB PREVIEW BRADING (HIREMAEVE.COM EQUESTRIAN REPLICA)
   -------------------------------------------------------------------------- */
.screen-website {
  background-color: #F5F1ED; /* Luxurious off-white stable background */
  position: relative;
  display: flex;
  flex-direction: column;
}

.website-browser-bar {
  background-color: #EAE6E1;
  border-bottom: 1.5px solid rgba(15, 15, 15, 0.08);
  padding: 22px 10px 6px 10px; /* Notch clearance */
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 15;
}

.browser-dots {
  display: flex;
  gap: 4px;
}

.browser-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
}

.dot-red { background-color: #FF5F56; }
.dot-yellow { background-color: #FFBD2E; }
.dot-green { background-color: #27C93F; }

.browser-address-bar {
  background-color: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  padding: 2px 12px;
  font-family: var(--font-primary);
  font-size: 0.58rem;
  font-weight: var(--font-weight-medium);
  color: var(--color-dark);
  display: flex;
  align-items: center;
  gap: 4px;
  width: 66%;
  justify-content: center;
}

.address-text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.address-lock {
  font-size: 0.52rem;
}

.browser-refresh {
  font-size: 0.65rem;
  color: #777777;
  font-weight: var(--font-weight-bold);
}

/* Website Live Preview Area */
.website-preview-content {
  flex-grow: 1;
  padding: 12px 10px 22px 10px; /* Bezel home bar offset */
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  scrollbar-width: none;
  position: relative;
}
.website-preview-content::-webkit-scrollbar {
  display: none;
}

/* Lux slide-down alert notification banner */
.website-synced-banner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--color-gold);
  color: var(--color-dark);
  text-align: center;
  padding: 4px;
  font-family: var(--font-primary);
  font-size: 0.6rem;
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  z-index: 30;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.website-synced-banner.banner-visible {
  transform: translateY(0);
}

.synced-check {
  font-weight: var(--font-weight-bold);
}

.web-preview-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1.5px solid rgba(15, 15, 15, 0.05);
  padding-bottom: 6px;
  margin-bottom: 8px;
}

.web-brand {
  font-family: var(--font-primary);
  font-size: 0.58rem;
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.18em;
  color: var(--color-dark);
}

.web-nav-toggle {
  font-size: 0.65rem;
  color: var(--color-dark);
}

.web-preview-body {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.web-back-link {
  font-family: var(--font-primary);
  font-size: 0.52rem;
  color: var(--color-gold);
  font-weight: var(--font-weight-medium);
  text-decoration: none;
  margin-bottom: 4px;
}

.web-horse-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: var(--color-dark);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1px;
}

.web-horse-tag {
  font-family: var(--font-primary);
  font-size: 0.52rem;
  text-transform: uppercase;
  color: #777777;
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

/* Specs matrix layout matching elite stables */
.web-specs-matrix {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
  margin-bottom: 8px;
}

.web-spec-card {
  background-color: #FFFFFF;
  border: 1px solid rgba(15, 15, 15, 0.03);
  border-radius: 6px;
  padding: 4px 6px;
  display: flex;
  flex-direction: column;
  gap: 1px;
  box-shadow: 0 1px 2px rgba(15, 15, 15, 0.01);
}

.spec-label {
  font-family: var(--font-primary);
  font-size: 0.44rem;
  text-transform: uppercase;
  color: #888888;
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.02em;
}

.spec-value {
  font-family: var(--font-primary);
  font-size: 0.6rem;
  color: var(--color-dark);
  font-weight: var(--font-weight-bold);
}

/* Web Video Frame & Sync Placement */
.web-video-slot {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 8px;
  background-color: #000000;
  overflow: hidden;
  border: 1px solid rgba(15, 15, 15, 0.06);
  margin-bottom: 8px;
}

.video-loading-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ECE5DD;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: var(--font-primary);
  font-size: 0.58rem;
  color: #777777;
  text-align: center;
  padding: 10px;
  z-index: 5;
  transition: opacity 0.3s ease;
}

.loading-spinner {
  width: 14px;
  height: 14px;
  border: 2px solid rgba(0, 0, 0, 0.08);
  border-top-color: var(--color-gold);
  border-radius: 50%;
  animation: waSpinner 0.8s linear infinite;
}

@keyframes waSpinner {
  to { transform: rotate(360deg); }
}

.web-preview-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.web-preview-video.video-active {
  opacity: 1;
}

.web-video-badge {
  position: absolute;
  bottom: 4px;
  left: 4px;
  background-color: #144A32; /* Prestigious Hunter Green */
  color: #FFFFFF;
  padding: 2px 6px;
  border-radius: 3px;
  font-family: var(--font-primary);
  font-size: 0.45rem;
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.03em;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  z-index: 6;
}

.web-video-badge.badge-visible {
  opacity: 1;
  transform: translateY(0);
}

.web-btn-contact {
  background-color: #144A32; /* Hunter Green */
  color: #FFFFFF;
  border: none;
  padding: 5px;
  border-radius: 18px;
  font-family: var(--font-primary);
  font-size: 0.6rem;
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.02em;
  width: 100%;
  cursor: pointer;
  text-align: center;
  transition: var(--transition-smooth);
}

.web-btn-contact:hover {
  background-color: #1D6343;
}

/* --------------------------------------------------------------------------
   SIMULATOR MOCKUP UTILITY CONTROLS (FINGER / RESTART BTN)
   -------------------------------------------------------------------------- */
.demo-pointer-finger {
  position: absolute;
  font-size: 20px;
  z-index: 200;
  pointer-events: none;
  opacity: 0;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.15));
  transition: top 0.7s cubic-bezier(0.25, 0.8, 0.25, 1),
              left 0.7s cubic-bezier(0.25, 0.8, 0.25, 1),
              opacity 0.3s ease,
              transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.demo-controls-bar {
  margin-top: var(--spacing-sm);
  display: flex;
  justify-content: center;
  gap: 10px;
}

.demo-control-btn {
  background: none;
  border: 1px solid rgba(15, 15, 15, 0.12);
  font-family: var(--font-primary);
  font-size: 0.72rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-dark);
  padding: 5px 12px;
  border-radius: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: var(--transition-smooth);
}

.demo-control-btn:hover {
  background-color: var(--color-dark);
  color: var(--color-light);
  border-color: var(--color-dark);
}

.demo-control-btn.demo-muted {
  background-color: rgba(15, 15, 15, 0.05);
  color: rgba(15, 15, 15, 0.6);
  border-color: rgba(15, 15, 15, 0.08);
}

.demo-control-btn.demo-muted:hover {
  background-color: var(--color-dark);
  color: var(--color-light);
  border-color: var(--color-dark);
}

.btn-control-icon {
  font-size: 0.8rem;
  line-height: 1;
}

/* --------------------------------------------------------------------------
   ADDITIONAL BRADING REPLICA STYLES: JKML SHOWJUMPERS DARK LUXURY PROFILE
   -------------------------------------------------------------------------- */
.screen-website {
  background-color: #111111 !important; /* Premium luxury stable dark background */
  position: relative;
  display: flex;
  flex-direction: column;
}

.website-browser-bar {
  background-color: #1F1F1F !important;
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.08) !important;
}

.browser-address-bar {
  background-color: #111111 !important;
  border: 1.5px solid rgba(255, 255, 255, 0.1) !important;
  color: rgba(255, 255, 255, 0.85) !important;
}

.address-lock {
  filter: invert(1);
}

.web-preview-header {
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.08) !important;
  padding-bottom: 8px;
}

.web-brand {
  font-family: var(--font-primary);
  font-size: 0.58rem;
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.18em;
  color: var(--color-gold) !important; /* Signature Gold branding */
}

.web-nav-toggle {
  font-family: var(--font-primary);
  font-size: 0.5rem;
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.5) !important;
  text-decoration: none;
  cursor: pointer;
}

.web-nav-toggle:hover {
  color: var(--color-gold) !important;
}

/* Conformation Photo Cover Bezel */
.web-profile-hero {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 10px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.web-profile-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.web-hero-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background-color: rgba(17, 17, 17, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--color-light);
  font-family: var(--font-primary);
  font-size: 0.44rem;
  font-weight: var(--font-weight-bold);
  padding: 2px 7px;
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Metadata & Specs */
.web-profile-meta {
  margin-bottom: 12px;
  padding: 0 2px;
  text-align: left;
}

.web-horse-id {
  font-family: var(--font-primary);
  font-size: 0.52rem;
  color: rgba(255, 255, 255, 0.35);
  display: block;
  margin-bottom: 2px;
  font-weight: var(--font-weight-bold);
}

.web-horse-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem !important;
  color: var(--color-light) !important;
  font-weight: 400 !important;
  line-height: 1.1;
  margin: 0 0 4px 0;
  letter-spacing: 0.01em;
}

.web-horse-submeta {
  font-family: var(--font-primary);
  font-size: 0.52rem;
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.45);
}

.web-divider-line {
  width: 24px;
  height: 1.5px;
  background-color: var(--color-gold);
  margin: 8px 0 12px 0;
}

/* Bordered Specs Grid Replica (Partition Layout) */
.web-specs-matrix {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 0 !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 4px;
  overflow: hidden;
  background: none !important;
  margin-bottom: 12px;
}

.web-spec-card {
  background-color: transparent !important;
  border: none !important;
  border-right: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 0 !important;
  padding: 6px 8px !important;
  box-shadow: none !important;
  display: flex;
  flex-direction: column;
}

/* Grid Border Fine-tuning */
.web-spec-card:nth-child(3),
.web-spec-card:nth-child(6) {
  border-right: none !important;
}

.web-spec-card:nth-child(4),
.web-spec-card:nth-child(5),
.web-spec-card:nth-child(6) {
  border-bottom: none !important;
}

.spec-label {
  font-family: var(--font-primary);
  font-size: 0.42rem;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35) !important;
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.05em;
  margin-bottom: 1px;
}

.spec-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.72rem !important;
  color: var(--color-light) !important;
  font-weight: 500 !important;
}

/* Milton Gold level highlight matching screenshot gold */
.web-spec-card:nth-child(4) .spec-value {
  color: var(--color-gold) !important;
}

/* 📽 SHOW VIDEO SECTION */
.web-video-section {
  background-color: #181818 !important;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  padding: 8px;
  margin-bottom: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.web-section-title {
  font-family: var(--font-primary);
  font-size: 0.52rem;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85) !important;
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.08em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  padding-bottom: 5px;
  margin-top: 0;
  margin-bottom: 8px;
}

.web-video-slot {
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 4px;
}

.video-loading-placeholder {
  background-color: #1A1A1A !important;
  color: rgba(255, 255, 255, 0.45) !important;
}

.loading-spinner {
  border: 2px solid rgba(255, 255, 255, 0.08) !important;
  border-top-color: var(--color-gold) !important;
}

.web-video-badge {
  background-color: var(--color-gold) !important;
  color: var(--color-dark) !important;
  border-radius: 2px;
  font-size: 0.42rem;
}

/* Bottom Hollow Gold Button */
.web-inquiry-box {
  margin-top: 4px;
}

.web-btn-contact {
  background-color: transparent !important;
  border: 1px solid var(--color-gold) !important; /* Gold Hollow border */
  color: var(--color-gold) !important; /* Gold typography */
  padding: 6px 12px !important;
  border-radius: 4px !important;
  font-family: var(--font-primary);
  font-size: 0.58rem;
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.08em;
  transition: all 0.3s ease;
}

.web-btn-contact:hover {
  background-color: var(--color-gold) !important;
  color: var(--color-dark) !important;
}

/* --------------------------------------------------------------------------
   WHATSAPP INTERACTIVE ANIMATION EXTENSIONS (KEYBOARD & ATTACHMENT MENU)
   -------------------------------------------------------------------------- */
.whatsapp-keyboard {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(22, 22, 22, 0.96); /* slightly more opaque to compensate for less blur */
  backdrop-filter: blur(3px); /* reduced glass blur */
  -webkit-backdrop-filter: blur(3px);
  padding: 8px 6px 16px 6px;
  z-index: 150;
  display: flex;
  flex-direction: column;
  gap: 5px;
  transform: translate3d(0, 100%, 0);
  transition: transform 0.35s cubic-bezier(0.1, 0.9, 0.2, 1);
  border-top: 1.5px solid rgba(255, 255, 255, 0.08);
}

.whatsapp-keyboard.kb-visible {
  transform: translate3d(0, 0, 0);
}

.kb-row {
  display: flex;
  justify-content: center;
  gap: 4px;
}

.kb-row span {
  flex: 1;
  max-width: 24px;
  height: 28px;
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-family: var(--font-primary);
  font-size: 0.65rem;
  font-weight: 500;
  box-shadow: 0 1px 2px rgba(0,0,0,0.25);
  transition: background-color 0.1s ease;
  user-select: none;
}

.kb-row span.kb-special {
  flex: 1.5;
  background-color: rgba(255, 255, 255, 0.08);
  font-size: 0.58rem;
}

.kb-row span.kb-space {
  flex: 5;
  background-color: rgba(255, 255, 255, 0.18);
  font-size: 0.58rem;
}

.kb-row span.key-active {
  background-color: rgba(255, 255, 255, 0.45) !important;
  transform: scale(0.95);
}

/* Attachment Menu */
.wa-attachment-menu {
  position: absolute;
  bottom: 45px;
  left: 10px;
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  padding: 8px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  z-index: 140;
  width: 130px;
  opacity: 0;
  transform: translate3d(0, 12px, 0) scale(0.92);
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.wa-attachment-menu.menu-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  pointer-events: auto;
}

.attach-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  cursor: pointer;
  padding: 4px;
  border-radius: 6px;
  transition: background-color 0.15s ease;
}

.attach-item:hover, .attach-item.attach-active {
  background-color: #F0F0F0;
}

.attach-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.62rem;
  color: #FFFFFF;
  box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.attach-document .attach-icon { background-color: #7F66FF; }
.attach-camera .attach-icon { background-color: #FF2E74; }
.attach-gallery .attach-icon { background-color: #C147E9; }
.attach-audio .attach-icon { background-color: #FF8000; }
.attach-location .attach-icon { background-color: #35C759; }
.attach-contact .attach-icon { background-color: #00A3FF; }

.attach-label {
  font-family: var(--font-primary);
  font-size: 0.44rem;
  color: #555555;
  font-weight: 500;
  user-select: none;
}

/* Keyboard active shifts for input area and chat body */
.screen-whatsapp.kb-active .whatsapp-input-area {
  transform: translateY(-118px); /* Shift up exactly by keyboard height */
  padding-bottom: 8px; /* remove bottom bezel home bar padding */
}

.screen-whatsapp.kb-active .whatsapp-chat-body {
  padding-bottom: 128px; /* shift messages up so they are not hidden */
}

/* ==========================================================================
   INTERACTIVE DARK DESIGN PREVIEW MOCKUP (WITH GOLD ACCENTS & INTERACTIVE SCROLL)
   ========================================================================== */

/* Layout & Panels */
.mockup-card.mockup-dark {
  background-color: #111111;
  border-color: rgba(255, 255, 255, 0.04);
  padding: 0; /* Full bleed for premium scrollable viewports */
  display: block;
}

.mockup-dark-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px 14px 20px;
  background-color: #111111;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}

.mockup-dark-viewport {
  width: 100%;
  height: 100%;
  overflow-y: scroll;
  scroll-behavior: smooth;
  padding-top: 52px; /* Offset for the sticky header */
  padding-bottom: 35px; /* Offset for the bottom label */
  box-sizing: border-box;
  scrollbar-width: thin;
  min-width: 0;
  max-width: 100%;
}

.mockup-dark-viewport::-webkit-scrollbar {
  width: 5px;
}
.mockup-dark-viewport::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.02);
}
.mockup-dark-viewport::-webkit-scrollbar-thumb {
  background: rgba(197, 168, 128, 0.25); /* Gold scrollbar thumb */
  border-radius: 3px;
}

.mockup-panel {
  display: flex;
  flex-direction: column;
  width: 100%;
  box-sizing: border-box;
}

.mockup-panel-home {
  display: flex;
}

.mockup-panel-profile {
  display: none; /* Controlled by JS */
  padding: 16px 20px;
  background-color: #111111;
  animation: slideInProfile 0.38s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes slideInProfile {
  from {
    transform: translate3d(30px, 0, 0);
    opacity: 0;
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

/* Section styling inside mockup */
.mockup-sec {
  padding: 40px 20px; /* Generous spacing between sections */
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  gap: 15px;
  box-sizing: border-box;
  text-align: left;
}

/* Custom full-height Hero Section with horse background and dark overlay */
.mockup-sec-hero {
  position: relative;
  background-image: linear-gradient(rgba(17, 17, 17, 0.80), rgba(17, 17, 17, 0.88)), url('img/flavio_jump.png');
  background-size: cover;
  background-position: center;
  height: 433px; /* exact viewport visible area height */
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* Pushes content and scroll hint to opposite poles */
  padding: 35px 20px 20px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-top-wrap {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.mockup-sec-sub {
  font-family: var(--font-primary);
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #C5A880; /* Elegant Gold */
  display: flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
}

.mockup-line {
  display: inline-block;
  width: 18px;
  height: 1px;
  background-color: #C5A880;
}

.mockup-sec-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.25;
  color: #FFFFFF;
  margin: 0;
}

.serif-gold-italic {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: #C5A880;
}

.mockup-sec-desc {
  font-family: var(--font-primary);
  font-size: 0.72rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

/* Gold button */
.mockup-btn-gold {
  background: none;
  border: 1.2px solid #C5A880;
  color: #C5A880;
  font-family: var(--font-primary);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 8px 14px;
  border-radius: 0; /* Sleek square outline button */
  cursor: pointer;
  align-self: flex-start;
  transition: all 0.25s ease;
  margin-top: 6px;
}

.mockup-btn-gold:hover {
  background-color: #C5A880;
  color: #111111;
}

/* Scroll Hint */
.mockup-scroll-hint {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.52rem;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.45);
  align-self: flex-end;
  margin-top: 10px;
  font-family: var(--font-primary);
  font-weight: 500;
}

.scroll-line {
  display: inline-block;
  width: 1px;
  height: 20px;
  background: linear-gradient(to bottom, #C5A880, transparent);
}

/* Testimonials */
.mockup-nav-arrows {
  display: flex;
  gap: 8px;
  align-self: flex-start;
  margin-top: -2px;
}

.mockup-nav-arrows span {
  width: 24px;
  height: 24px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 0.65rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.mockup-nav-arrows span:hover {
  border-color: #C5A880;
  color: #C5A880;
}

.mockup-quote-card {
  border: 1px solid rgba(197, 168, 128, 0.25);
  background-color: rgba(255, 255, 255, 0.02);
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  text-align: left;
}

.quote-text {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.82rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.quote-line {
  width: 20px;
  height: 1px;
  background-color: #C5A880;
  margin-top: 4px;
}

.quote-author {
  font-family: var(--font-primary);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #FFFFFF;
  margin-top: 2px;
  text-transform: uppercase;
}

.quote-sub {
  font-family: var(--font-primary);
  font-size: 0.55rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: -4px;
}

.quote-origin {
  position: absolute;
  bottom: 12px;
  right: 12px;
  font-family: var(--font-primary);
  font-size: 0.48rem;
  letter-spacing: 0.08em;
  color: rgba(197, 168, 128, 0.6);
  font-weight: 600;
}

/* Location */
.location-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}

.loc-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  text-align: left;
}

.loc-icon {
  font-size: 0.85rem;
  line-height: 1.2;
}

.loc-info {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.loc-label {
  font-family: var(--font-primary);
  font-size: 0.48rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #C5A880;
  text-transform: uppercase;
}

.loc-value {
  font-family: var(--font-primary);
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.75);
}

/* Map mockup */
.mockup-map-container {
  height: 130px; /* Taller for beautiful map visibility */
  background-color: #161817;
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
  margin-top: 4px;
}

.mockup-map-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
}

.mockup-map-container:hover .mockup-map-img {
  transform: scale(1.04);
}

/* Current Horses Grid & Card */
.horses-count {
  font-family: var(--font-primary);
  font-size: 0.62rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: -6px;
}

.mockup-horse-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 6px;
}

.mockup-dark-horse-card {
  background-color: #171918;
  border: 1px solid rgba(255, 255, 255, 0.05);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  width: 100%;
  text-align: left;
}

.mockup-dark-horse-card:hover {
  border-color: #C5A880;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(197, 168, 128, 0.1);
}

.card-img-wrapper {
  position: relative;
  width: 100%;
  height: 130px;
  overflow: hidden;
}

.card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.mockup-dark-horse-card:hover .card-img-wrapper img {
  transform: scale(1.04);
}

.card-status-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  font-family: var(--font-primary);
  font-size: 0.48rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background-color: rgba(17, 17, 17, 0.85);
  color: #C5A880;
  border: 1px solid rgba(197, 168, 128, 0.3);
  padding: 2px 6px;
  border-radius: 2px;
}

.card-content {
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.card-horse-id {
  font-family: var(--font-primary);
  font-size: 0.45rem;
  color: rgba(255, 255, 255, 0.35);
  font-weight: 600;
  letter-spacing: 0.05em;
}

.card-horse-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #FFFFFF;
  margin: 0;
}

.card-horse-breed {
  font-family: var(--font-primary);
  font-size: 0.55rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
  letter-spacing: 0.02em;
}

.card-view-profile-btn {
  font-family: var(--font-primary);
  font-size: 0.55rem;
  color: #C5A880;
  font-weight: 700;
  margin-top: 4px;
  letter-spacing: 0.02em;
  transition: opacity 0.2s ease;
}

.mockup-dark-horse-card:hover .card-view-profile-btn {
  opacity: 0.8;
  text-decoration: underline;
}

/* PROFILE PAGE PANEL */
.profile-nav-bar {
  display: flex;
  margin-bottom: 10px;
}

.btn-profile-back {
  font-family: var(--font-primary);
  font-size: 0.58rem;
  font-weight: 700;
  color: #C5A880;
  cursor: pointer;
  letter-spacing: 0.05em;
  display: inline-block;
  transition: all 0.2s ease;
}

.btn-profile-back:hover {
  text-decoration: underline;
}

.profile-main-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.profile-img-container {
  width: 100%;
  height: 150px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.profile-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-status-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  font-family: var(--font-primary);
  font-size: 0.48rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background-color: #C5A880;
  color: #111111;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 2px;
}

.profile-details-wrapper {
  display: flex;
  flex-direction: column;
  gap: 3px;
  text-align: left;
}

.profile-horse-id {
  font-family: var(--font-primary);
  font-size: 0.45rem;
  color: rgba(255, 255, 255, 0.35);
  font-weight: 600;
}

.profile-horse-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  color: #FFFFFF;
  margin: 0;
}

.profile-horse-desc {
  font-family: var(--font-primary);
  font-size: 0.58rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
  letter-spacing: 0.03em;
}

.profile-gold-divider {
  width: 100%;
  height: 1px;
  background-color: rgba(197, 168, 128, 0.2);
  margin: 6px 0;
}

.profile-specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-left: 1px solid rgba(255, 255, 255, 0.05);
  margin: 2px 0 8px 0;
}

.profile-spec-item {
  display: flex;
  flex-direction: column;
  padding: 5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  gap: 1px;
}

.spec-label {
  font-family: var(--font-primary);
  font-size: 0.38rem;
  font-weight: 700;
  color: #C5A880;
  letter-spacing: 0.06em;
}

.spec-val {
  font-family: var(--font-primary);
  font-size: 0.6rem;
  color: #FFFFFF;
  font-weight: 500;
}

.spec-val.highlight-gold {
  color: #C5A880;
}

.profile-action-btn {
  background: none;
  border: 1.2px solid #C5A880;
  color: #C5A880;
  font-family: var(--font-primary);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 8px 12px;
  width: 100%;
  cursor: pointer;
  transition: all 0.25s ease;
}

.profile-action-btn:hover {
  background-color: #C5A880;
  color: #111111;
}

/* Fixed Card Label bottom positioning */
.mockup-dark .mockup-card-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(17, 17, 17, 0.97);
  backdrop-filter: blur(1px); /* reduced glass blur */
  -webkit-backdrop-filter: blur(1px);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 0;
  padding: 8px 0;
  z-index: 90;
  color: #C5A880; /* Gold label text */
  font-size: 0.62rem;
  line-height: 1;
}

/* ==========================================================================
   EXTENDED HORSE PROFILE COMPONENT STYLES
   ========================================================================== */

/* Breadcrumbs and carousel overlay */
.profile-breadcrumbs {
  font-family: var(--font-primary);
  font-size: 0.44rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  margin-bottom: 2px;
  text-align: left;
}

.profile-carousel-indicator {
  position: absolute;
  bottom: 8px;
  left: 10px;
  font-family: var(--font-primary);
  font-size: 0.48rem;
  color: #C5A880;
  font-weight: 700;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 1px 5px;
  border-radius: 2px;
}

/* Price block and actions */
.profile-price-block {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: left;
}

.profile-price-block .price-label {
  font-family: var(--font-primary);
  font-size: 0.48rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
}

.profile-price-block .price-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  color: #C5A880;
  font-weight: 500;
}

.profile-ctas-row {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

.profile-btn-enquire {
  flex: 1.5;
  background-color: #C5A880;
  border: 1.2px solid #C5A880;
  color: #111111;
  font-family: var(--font-primary);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 8px 12px;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.25s ease;
}

.profile-btn-enquire:hover {
  background-color: #B59870;
  border-color: #B59870;
}

.profile-btn-share {
  flex: 1;
  background: none;
  border: 1.2px solid rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
  font-family: var(--font-primary);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 8px 12px;
  border-radius: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: all 0.25s ease;
}

.profile-btn-share:hover {
  border-color: #C5A880;
  color: #C5A880;
}

.share-icon {
  width: 11px;
  height: 11px;
  stroke: currentColor;
}

/* About and Videos layout */
.mockup-sec-about, .mockup-sec-pedigree, .mockup-sec-videos {
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-sizing: border-box;
}

.profile-about-text {
  font-family: var(--font-primary);
  font-size: 0.72rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  text-align: left;
}

/* Pedigree Tree Grid */
.ped-alert-box {
  background-color: #FFFFFF;
  color: #111111;
  font-family: var(--font-primary);
  font-size: 0.5rem;
  font-weight: 700;
  text-align: center;
  padding: 6px;
  border-radius: 2px;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pedigree-headers-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.ped-col-header {
  font-family: var(--font-primary);
  font-size: 0.44rem;
  font-weight: 700;
  color: #C5A880;
  padding: 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  background-color: rgba(255, 255, 255, 0.02);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-align: center;
}

.pedigree-grid-tree {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(8, minmax(32px, auto));
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.pedigree-box {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  padding: 5px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1px;
  box-sizing: border-box;
  text-align: left;
}

.pedigree-box-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.52rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.1;
}

.pedigree-box-meta {
  font-family: var(--font-primary);
  font-size: 0.36rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1;
}

/* Explicit Grid Rows & Columns for Pedigree Tree */
.ped-col-1 { grid-column: 1; }
.ped-col-2 { grid-column: 2; }
.ped-col-3 { grid-column: 3; }

.ped-row-sire { grid-row: 1 / 5; }
.ped-row-dam { grid-row: 5 / 9; }

.ped-row-ss { grid-row: 1 / 3; }
.ped-row-sd { grid-row: 3 / 5; }
.ped-row-ds { grid-row: 5 / 7; }
.ped-row-dd { grid-row: 7 / 9; }

.ped-row-sss { grid-row: 1; }
.ped-row-ssd { grid-row: 2; }
.ped-row-sds { grid-row: 3; }
.ped-row-sdd { grid-row: 4; }
.ped-row-dss { grid-row: 5; }
.ped-row-dsd { grid-row: 6; }
.ped-row-dds { grid-row: 7; }
.ped-row-ddd { grid-row: 8; }

.pedigree-footnote {
  font-family: var(--font-primary);
  font-size: 0.38rem;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.3;
  margin-top: 6px;
  text-align: left;
}

/* Video mockup styling */
.profile-video-container {
  width: 100%;
  height: 130px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  cursor: pointer;
  margin-top: 4px;
}

.profile-video-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.profile-video-container:hover .profile-video-img {
  transform: scale(1.03);
}

.profile-video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: rgba(197, 168, 128, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111111;
  font-size: 0.72rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: all 0.25s ease;
}

.profile-video-container:hover .profile-video-play-btn {
  background-color: #C5A880;
  transform: translate(-50%, -50%) scale(1.08);
}

/* ==========================================================================
   INTERACTIVE LIGHT DESIGN PREVIEW MOCKUP STYLING (Kobi's Place Style)
   ========================================================================== */
:root {
  --color-wellington-blue: #185FA5;
  --color-light-ice-blue: #F7FBFF;
  --color-sky-light-blue: #E8F2FA;
}

.mockup-card.mockup-light {
  height: 520px;
  position: relative;
  box-sizing: border-box;
  padding: 0 !important; /* Overwrite base card paddings to enable full bleed */
  overflow: hidden;
  display: block;
}

/* Light Sticky Header */
.mockup-light-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px 14px 20px;
  background-color: #FFFFFF;
  border-bottom: 1px solid rgba(24, 95, 165, 0.08);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  box-sizing: border-box;
}

.mockup-light-viewport {
  width: 100%;
  height: 100%;
  overflow-y: scroll;
  scroll-behavior: smooth;
  padding-top: 52px; /* Offset for sticky header */
  padding-bottom: 35px; /* Offset for bottom label */
  box-sizing: border-box;
  background-color: var(--color-light-ice-blue);
  scrollbar-width: thin;
  display: flex;
  flex-direction: column;
  min-width: 0;
  max-width: 100%;
}

.mockup-light-viewport::-webkit-scrollbar {
  width: 5px;
}
.mockup-light-viewport::-webkit-scrollbar-track {
  background: rgba(24, 95, 165, 0.01);
}
.mockup-light-viewport::-webkit-scrollbar-thumb {
  background: rgba(24, 95, 165, 0.25); /* Sapphire blue scrollbar thumb */
  border-radius: 3px;
}

.mockup-panel-profile-light {
  display: none; /* Controlled by JS */
  padding: 16px 20px;
  background-color: #FFFFFF;
  animation: slideInProfileLight 0.38s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

@keyframes slideInProfileLight {
  from {
    transform: translate3d(30px, 0, 0);
    opacity: 0;
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

/* Mockup Light Home Page Section styling */
.mockup-sec-hero-light {
  position: relative;
  background-image: linear-gradient(rgba(10, 16, 28, 0.78), rgba(10, 16, 28, 0.88)), url('img/kobi_hero.jpg');
  background-size: 135%;
  background-position: center;
  height: 433px; /* exact visible viewport area */
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 35px 20px 20px 20px;
  border-bottom: 1px solid rgba(24, 95, 165, 0.08);
}

/* Force hero sub-header and line prefix to be white for high readability */
.mockup-sec-hero-light .mockup-sec-sub-light {
  color: #FFFFFF !important;
  font-size: 0.72rem !important; /* Prominent, readable subheader */
}

.mockup-sec-hero-light .mockup-line-light {
  background-color: #FFFFFF !important;
  height: 2px !important; /* Thicker line to match the larger text */
}

/* Airy flex spacing for Kobi's Place hero components */
.mockup-sec-hero-light .hero-top-wrap {
  gap: 26px !important;
}

.mockup-sec-sub-light {
  font-family: var(--font-primary);
  font-size: 0.58rem; /* Increased for high readability */
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--color-wellington-blue);
  display: flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  line-height: 1.35;
  text-align: left;
}

.mockup-sec-sub-light.text-white {
  color: #FFFFFF !important;
}

.mockup-line-light {
  display: inline-block;
  width: 18px;
  height: 1.5px;
  background-color: var(--color-wellington-blue);
  flex-shrink: 0;
}

.mockup-line-light.bg-white {
  background-color: #FFFFFF !important;
}

.mockup-sec-title-light {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.65rem; /* Increased for prestigious editorial look */
  font-weight: 400;
  line-height: 1.25;
  color: #111111;
  margin: 0;
  text-align: left;
}

.mockup-sec-hero-light .mockup-sec-title-light {
  color: #FFFFFF;
  font-size: 2.0rem !important; /* Large, bold editorial title for high legibility */
  line-height: 1.15;
}

.serif-blue-italic {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: #4A93D6; /* high contrast bright slate blue matching screenshot */
}

.mockup-sec-desc-light {
  font-family: var(--font-primary);
  font-size: 0.78rem; /* Increased for clear legibility on mobile view */
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
  text-align: left;
}

.mockup-sec-desc-light.text-dark-secondary {
  color: rgba(15, 15, 15, 0.65);
}

.mockup-btn-blue {
  background: var(--color-wellington-blue);
  border: 1.2px solid var(--color-wellington-blue);
  color: #FFFFFF;
  font-family: var(--font-primary);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 9px 15px;
  border-radius: 0;
  cursor: pointer;
  align-self: flex-start;
  transition: all 0.25s ease;
  margin-top: 6px;
}

.mockup-btn-blue:hover {
  background-color: #124982;
  border-color: #124982;
}

.mockup-scroll-hint-light {
  font-family: var(--font-primary);
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.45);
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.mockup-dots-row {
  display: flex;
  gap: 5px;
}

.mockup-dots-row span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
}

.mockup-dots-row span:nth-child(8) {
  background-color: #4A93D6; /* Highlight active dot */
}

/* Testimonials section */
.mockup-sec-testimonials-light {
  background: linear-gradient(135deg, #185FA5, #378ADD);
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  box-sizing: border-box;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mockup-sec-testimonials-light .mockup-sec-title-light {
  color: #FFFFFF;
}

.mockup-nav-arrows-light {
  display: flex;
  gap: 8px;
  margin-top: -5px;
}

.mockup-nav-arrows-light span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #FFFFFF;
  font-size: 0.7rem;
  cursor: pointer;
  transition: all 0.2s ease;
  box-sizing: border-box;
}

.mockup-nav-arrows-light span:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: #FFFFFF;
}

.mockup-quote-card-light {
  background-color: #FFFFFF;
  border-radius: 2px;
  padding: 24px;
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.08);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-sizing: border-box;
}

.quote-mark-light {
  font-family: sans-serif;
  font-size: 3rem;
  color: rgba(24, 95, 165, 0.08);
  position: absolute;
  top: 5px;
  right: 15px;
  line-height: 1;
}

.quote-text-light {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  line-height: 1.6;
  color: #333333;
  margin: 0;
  text-align: left;
}

.quote-line-light {
  display: block;
  width: 30px;
  height: 1.5px;
  background-color: var(--color-wellington-blue);
  margin-top: 5px;
}

.quote-author-light {
  font-family: var(--font-primary);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #111111;
  text-align: left;
}

/* About Us Section */
.mockup-sec-about-light {
  background-color: #FFFFFF;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  box-sizing: border-box;
  text-align: left;
  border-bottom: 1px solid rgba(24, 95, 165, 0.08);
}

/* Location Section */
.mockup-sec-location-light {
  background-color: #FFFFFF;
  padding: 30px 20px 40px 20px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  box-sizing: border-box;
  border-bottom: 1px solid rgba(24, 95, 165, 0.08);
}

.location-list-light {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.loc-item-light {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.loc-icon-light {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border: 1.2px solid var(--color-wellington-blue);
  border-radius: 0;
  font-size: 0.72rem;
  background: none;
  flex-shrink: 0;
}

.loc-info-light {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: left;
}

.loc-label-light {
  font-family: var(--font-primary);
  font-size: 0.44rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--color-wellington-blue);
}

.loc-value-light {
  font-family: var(--font-primary);
  font-size: 0.65rem;
  line-height: 1.4;
  color: #444444;
}

.mockup-stable-img-container {
  width: 100%;
  border: 1.5px solid var(--color-wellington-blue);
  box-sizing: border-box;
  padding: 0;
  display: flex;
  overflow: hidden;
}

.mockup-stable-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.mockup-stable-img:hover {
  transform: scale(1.03);
}

/* Current Horses list and card styles */
.mockup-sec-horses-light {
  background-color: var(--color-sky-light-blue);
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  box-sizing: border-box;
}

.horses-count-light {
  font-family: var(--font-primary);
  font-size: 0.62rem;
  color: rgba(15, 15, 15, 0.5);
  margin-top: -8px;
  text-align: left;
}

.mockup-horse-grid-light {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.mockup-light-horse-card {
  border-radius: var(--border-radius-md);
  border: 1.5px solid rgba(24, 95, 165, 0.25);
  background-color: #FFFFFF;
  padding: var(--spacing-sm);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
  cursor: pointer;
  box-sizing: border-box;
  transition: all 0.25s ease;
}

.mockup-light-horse-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(24, 95, 165, 0.08);
  border-color: var(--color-wellington-blue);
}

.card-img-wrapper-light {
  position: relative;
  width: 100%;
  height: 160px;
  overflow: hidden;
  display: flex;
}

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

.card-status-badge-light {
  position: absolute;
  top: 8px;
  left: 8px;
  background-color: var(--color-wellington-blue);
  color: #FFFFFF;
  font-family: var(--font-primary);
  font-size: 0.48rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 8px;
  border-radius: 2px;
}

.card-content-light {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
}

.card-subbar-light {
  font-family: var(--font-primary);
  font-size: 0.46rem;
  font-weight: 700;
  color: rgba(15, 15, 15, 0.5);
  display: flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.02em;
}

.card-line-light {
  display: inline-block;
  width: 12px;
  height: 1.5px;
  background-color: var(--color-wellington-blue);
  flex-shrink: 0;
}

.card-tags-row-light {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.card-tag-light {
  font-family: var(--font-primary);
  font-size: 0.44rem;
  font-weight: 700;
  color: var(--color-wellington-blue);
  border: 1px solid rgba(24, 95, 165, 0.25);
  padding: 3px 6px;
  border-radius: 1px;
  letter-spacing: 0.02em;
}

.card-horse-name-light {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #111111;
  margin: 0;
}

/* Light mockup profile details panel */
.profile-nav-bar-light {
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(24, 95, 165, 0.08);
  margin-bottom: 16px;
  text-align: left;
}

.btn-profile-back-light {
  font-family: var(--font-primary);
  font-size: 0.55rem;
  font-weight: 700;
  color: var(--color-wellington-blue);
  cursor: pointer;
  letter-spacing: 0.05em;
  transition: opacity 0.2s ease;
}

.btn-profile-back-light:hover {
  opacity: 0.7;
}

.profile-main-content-light {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.profile-img-container-light {
  position: relative;
  width: 100%;
  height: 160px;
  overflow: hidden;
  display: flex;
  border: 1px solid rgba(24, 95, 165, 0.08);
}

.profile-img-container-light img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-status-badge-light {
  position: absolute;
  top: 8px;
  left: 8px;
  background-color: var(--color-wellington-blue);
  color: #FFFFFF;
  font-family: var(--font-primary);
  font-size: 0.48rem;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 2px;
  letter-spacing: 0.05em;
}

.profile-carousel-indicator-light {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background-color: rgba(15, 23, 42, 0.65);
  color: #FFFFFF;
  font-family: var(--font-primary);
  font-size: 0.44rem;
  font-weight: 700;
  padding: 3px 6px;
  border-radius: 2px;
}

.profile-details-wrapper-light {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}

.profile-breadcrumbs-light {
  font-family: var(--font-primary);
  font-size: 0.46rem;
  font-weight: 700;
  color: rgba(15, 15, 15, 0.4);
  letter-spacing: 0.08em;
}

.profile-breadcrumbs-light span:first-child {
  color: var(--color-wellington-blue);
}

.profile-horse-name-light {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: #111111;
  margin: 0;
  line-height: 1.15;
}

.profile-horse-desc-light {
  font-family: var(--font-primary);
  font-size: 0.52rem;
  font-weight: 700;
  color: rgba(15, 15, 15, 0.5);
  margin: 0;
  letter-spacing: 0.04em;
}

.profile-blue-divider {
  width: 100%;
  height: 1px;
  background-color: rgba(24, 95, 165, 0.08);
}

.profile-specs-grid-light {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(24, 95, 165, 0.08);
  border-left: 1px solid rgba(24, 95, 165, 0.08);
}

.profile-spec-item-light {
  border-bottom: 1px solid rgba(24, 95, 165, 0.08);
  border-right: 1px solid rgba(24, 95, 165, 0.08);
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  box-sizing: border-box;
  text-align: left;
}

.spec-label-light {
  font-family: var(--font-primary);
  font-size: 0.4rem;
  font-weight: 700;
  color: rgba(15, 15, 15, 0.4);
  letter-spacing: 0.05em;
}

.spec-val-light {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: #111111;
}

.spec-val-light.highlight-blue {
  color: var(--color-wellington-blue);
}

.profile-price-block-light {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 5px;
  text-align: left;
}

.price-label-light {
  font-family: var(--font-primary);
  font-size: 0.44rem;
  font-weight: 700;
  color: rgba(15, 15, 15, 0.4);
  letter-spacing: 0.06em;
}

.price-val-light {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--color-wellington-blue);
  line-height: 1;
}

.profile-ctas-row-light {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

.profile-btn-enquire-light {
  flex: 1;
  background-color: var(--color-wellington-blue);
  border: 1px solid var(--color-wellington-blue);
  color: #FFFFFF;
  font-family: var(--font-primary);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 10px 14px;
  border-radius: 0;
  cursor: pointer;
  transition: background-color 0.2s ease;
  box-sizing: border-box;
}

.profile-btn-enquire-light:hover {
  background-color: #124982;
  border-color: #124982;
}

.profile-btn-share-light {
  background: none;
  border: 1px solid rgba(24, 95, 165, 0.25);
  color: var(--color-wellington-blue);
  font-family: var(--font-primary);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 10px 14px;
  border-radius: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
  box-sizing: border-box;
}

.profile-btn-share-light:hover {
  background-color: rgba(24, 95, 165, 0.03);
  border-color: var(--color-wellington-blue);
}

.share-icon-light {
  width: 10px;
  height: 10px;
}

.profile-about-text-light {
  font-family: var(--font-primary);
  font-size: 0.72rem;
  line-height: 1.55;
  color: rgba(15, 15, 15, 0.7);
  margin: 0;
  text-align: left;
}

/* Horizontally Scrollable 4-Generation Pedigree Grid Chart */
.mockup-sec-pedigree-light {
  border-top: 1px solid rgba(24, 95, 165, 0.08);
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.pedigree-scroll-container {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  scrollbar-width: thin;
  padding-bottom: 8px;
}

.pedigree-scroll-container::-webkit-scrollbar {
  height: 4px;
}
.pedigree-scroll-container::-webkit-scrollbar-track {
  background: rgba(24, 95, 165, 0.01);
}
.pedigree-scroll-container::-webkit-scrollbar-thumb {
  background: rgba(24, 95, 165, 0.2);
  border-radius: 2px;
}

.pedigree-headers-row-light {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(24, 95, 165, 0.08);
  border-left: 1px solid rgba(24, 95, 165, 0.08);
}

.ped-col-header-light {
  font-family: var(--font-primary);
  font-size: 0.44rem;
  font-weight: 700;
  color: var(--color-wellington-blue);
  padding: 6px 4px;
  border-bottom: 1px solid rgba(24, 95, 165, 0.08);
  border-right: 1px solid rgba(24, 95, 165, 0.08);
  background-color: rgba(24, 95, 165, 0.02);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-align: center;
  box-sizing: border-box;
}

.pedigree-grid-tree-light {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(8, minmax(36px, auto));
  border-left: 1px solid rgba(24, 95, 165, 0.08);
  box-sizing: border-box;
}

.pedigree-box-light {
  border-bottom: 1px solid rgba(24, 95, 165, 0.08);
  border-right: 1px solid rgba(24, 95, 165, 0.08);
  padding: 6px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
  box-sizing: border-box;
  text-align: left;
  background-color: rgba(24, 95, 165, 0.01);
}

.pedigree-box-name-light {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.52rem;
  font-weight: 700;
  color: #111111;
  line-height: 1.1;
}

.pedigree-box-name-light.text-blue {
  color: var(--color-wellington-blue);
}

.pedigree-box-meta-light {
  font-family: var(--font-primary);
  font-size: 0.36rem;
  color: rgba(15, 15, 15, 0.45);
  line-height: 1;
}

/* Explicit CSS Grid Spanning for 3-Generation Light Pedigree Chart */
.ped-light-col-1 { grid-column: 1; }
.ped-light-col-2 { grid-column: 2; }
.ped-light-col-3 { grid-column: 3; }

.ped-light-row-sire { grid-row: 1 / 5; }
.ped-light-row-dam { grid-row: 5 / 9; }

.ped-light-row-ss { grid-row: 1 / 3; }
.ped-light-row-sd { grid-row: 3 / 5; }
.ped-light-row-ds { grid-row: 5 / 7; }
.ped-light-row-dd { grid-row: 7 / 9; }

.ped-light-row-sss { grid-row: 1; }
.ped-light-row-ssd { grid-row: 2; }
.ped-light-row-sds { grid-row: 3; }
.ped-light-row-sdd { grid-row: 4; }
.ped-light-row-dss { grid-row: 5; }
.ped-light-row-dsd { grid-row: 6; }
.ped-light-row-dds { grid-row: 7; }
.ped-light-row-ddd { grid-row: 8; }

/* Glassmorphic Cover Explore Overlays */
.mockup-explore-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 120; /* High z-index to float over sticky header and scroll viewport */
  background: rgba(15, 23, 42, 0.04); /* Extremely subtle slate navy sheen for maximum preview clarity */
  backdrop-filter: blur(0.5px); /* Ultra-low blur for absolute legibility of underlying mockups */
  -webkit-backdrop-filter: blur(0.5px); /* Safari support */
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  pointer-events: auto; /* Catch taps and clicks */
  cursor: pointer;
  box-sizing: border-box;
}

/* Hover & Class fade out mechanics */
.mockup-card:hover .mockup-explore-overlay,
.mockup-explore-overlay.overlay-hidden {
  opacity: 0;
  pointer-events: none;
  backdrop-filter: blur(0);
  -webkit-backdrop-filter: blur(0);
}

/* Large Center Explore Pill Badges */
.explore-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 30px;
  font-family: var(--font-primary);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

.badge-light-overlay {
  background-color: #FFFFFF;
  border: 1.5px solid var(--color-wellington-blue);
  color: var(--color-wellington-blue);
}

.badge-dark-overlay {
  background-color: #111111;
  border: 1.5px solid #C5A880;
  color: #C5A880;
}

/* Pulse animation on the tap emoji */
.explore-tap-icon {
  font-size: 0.8rem;
  animation: tapIndicatorPulse 1.4s infinite ease-in-out;
  display: inline-block;
}

@keyframes tapIndicatorPulse {
  0%, 100% {
    transform: scale(1) translateY(0);
  }
  50% {
    transform: scale(1.22) translateY(-2px);
  }
}

/* Custom pulsing dot components */
.explore-pulse-dot-light {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--color-wellington-blue);
  position: relative;
}

.explore-pulse-dot-light::after {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border-radius: 50%;
  border: 1.5px solid var(--color-wellington-blue);
  animation: explorePulseRing 1.6s infinite ease-in-out;
}

.explore-pulse-dot-dark {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #C5A880;
  position: relative;
}

.explore-pulse-dot-dark::after {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border-radius: 50%;
  border: 1.5px solid #C5A880;
  animation: explorePulseRing 1.6s infinite ease-in-out;
}

@keyframes explorePulseRing {
  0% {
    transform: scale(0.6);
    opacity: 0.9;
  }
  100% {
    transform: scale(2.4);
    opacity: 0;
  }
}

/* ====================================
   CRO UPGRADES & NEW COMPONENTS
   ==================================== */

/* 1. Floating Glassmorphic Header */
.floating-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: var(--spacing-sm) 0;
  background-color: rgba(15, 15, 15, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(218, 159, 50, 0.08);
  transition: padding 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

.floating-header.header-scrolled {
  padding: 0.65rem 0;
  background-color: rgba(15, 15, 15, 0.88);
  border-bottom-color: rgba(218, 159, 50, 0.2);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
}

.header-container {
  width: 100%;
}

.logo-text {
  font-family: var(--font-primary);
  font-size: 1.35rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-light);
  letter-spacing: -0.02em;
}

.nav-menu {
  display: none; /* Mobile first: hide navigation links, show only logo & CTA */
}

.nav-link {
  font-family: var(--font-primary);
  font-size: 0.9rem;
  font-weight: var(--font-weight-medium);
  color: rgba(245, 241, 237, 0.7);
  letter-spacing: 0.02em;
  position: relative;
  padding: 0.25rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-gold);
  transition: width 0.3s ease;
}

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

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

.nav-cta-btn {
  font-size: 0.825rem;
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius-md);
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* 2. Interactive FAQ Section Accordion styling */
.faq {
  padding: var(--spacing-3xl) 0;
  position: relative;
  background-image: radial-gradient(circle at 50% 0%, rgba(218, 159, 50, 0.04) 0%, rgba(15, 15, 15, 0) 65%);
}

.faq-header {
  margin-bottom: var(--spacing-xl);
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
  max-width: 768px;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--color-dark-secondary);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(218, 159, 50, 0.15);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.faq-item-active {
  border-color: rgba(218, 159, 50, 0.35) !important;
  box-shadow: 0 8px 24px rgba(218, 159, 50, 0.05);
}

.faq-question {
  background: none;
  border: none;
  padding: var(--spacing-md) var(--spacing-lg);
  font-family: var(--font-primary);
  font-size: 1.05rem;
  font-weight: var(--font-weight-medium);
  color: var(--color-light);
  text-align: left;
  cursor: pointer;
  outline: none;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: var(--color-gold);
}

.faq-item-active .faq-question {
  color: var(--color-gold);
  font-weight: var(--font-weight-bold);
}

.chevron-icon {
  width: 20px;
  height: 20px;
  color: rgba(245, 241, 237, 0.4);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), color 0.3s ease;
  flex-shrink: 0;
}

.faq-question:hover .chevron-icon {
  color: var(--color-gold);
}

.faq-item-active .chevron-icon {
  transform: rotate(180deg);
  color: var(--color-gold);
}

.faq-answer {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0 var(--spacing-lg);
  transition: max-height 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.2s ease;
}

.faq-item-active .faq-answer {
  opacity: 1;
  padding-bottom: var(--spacing-lg);
}

.faq-answer p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(245, 241, 237, 0.7);
  margin-bottom: 0;
}

/* 3. Redesigned Conversion Form vertical grid stack */
.cta-form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-md);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.form-label {
  font-family: var(--font-primary);
  font-size: 0.8rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-left: 2px;
}

.cta-form .cta-btn {
  width: 100%;
  font-size: 1rem;
  padding: var(--spacing-sm) var(--spacing-md);
  border-radius: var(--border-radius-md);
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: var(--spacing-sm);
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-orange) 100%);
  border: none;
  color: var(--color-dark) !important;
  box-shadow: 0 4px 15px rgba(218, 159, 50, 0.2);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.cta-form .cta-btn:hover {
  opacity: 0.95;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(218, 159, 50, 0.35);
}

.trust-seals-row {
  margin-top: var(--spacing-lg);
}

.trust-seal {
  opacity: 0.75;
  transition: opacity 0.3s ease;
}

.trust-seal:hover {
  opacity: 1;
}

.seal-icon {
  font-size: 1rem;
}

.seal-text {
  font-family: var(--font-primary);
  font-size: 0.72rem;
  font-weight: var(--font-weight-medium);
  color: var(--color-light);
  letter-spacing: 0.02em;
}

/* 4. Luxury Custom Success Toast */
.custom-success-toast {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  z-index: 10000;
  width: 90%;
  max-width: 440px;
  background-color: rgba(26, 26, 26, 0.95);
  border: 1.5px solid var(--color-gold);
  border-radius: var(--border-radius-lg);
  padding: var(--spacing-lg) var(--spacing-xl);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(218, 159, 50, 0.15);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  animation: toastPopIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
  box-sizing: border-box;
}

@keyframes toastPopIn {
  to {
    transform: translate(-50%, -50%) scale(1);
  }
}

.toast-checkmark {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: rgba(20, 74, 50, 0.2);
  border: 2.5px solid var(--color-green-light);
  color: var(--color-green-light);
  font-size: 1.8rem;
  font-weight: bold;
  margin: 0 auto var(--spacing-sm) auto;
  box-shadow: 0 0 15px rgba(29, 99, 67, 0.3);
}

.toast-title {
  font-size: 1.35rem;
  line-height: 1.2;
}

.toast-desc {
  font-size: 0.925rem;
  line-height: 1.5;
  color: #cccccc;
}

.toast-info {
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--color-gold);
}

.toast-fade-out {
  animation: toastFadeOut 0.4s cubic-bezier(0.6, -0.28, 0.735, 0.045) forwards;
}

@keyframes toastFadeOut {
  to {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.85);
  }
}

/* Responsive Upgrades for Header and Form Grid */
@media (min-width: 768px) {
  .nav-menu {
    display: flex;
  }
  
  .floating-header {
    padding: var(--spacing-md) 0;
  }
  
  .cta-form-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
  }
}

/* Force Form Layout to Stack Vertically on Desktop (Keeping submit button under fields) */
.cta-form {
  flex-direction: column !important;
}
