:root {
  /* Mohamisme 2026 Color Palette */
  --mirage: #16182A;
  --white-linen: #F1E9DD;
  --black-haze: #F7F7F8;
  --snow-drift: #F7F9F9;
  --dark-tan: #601208;
  --bull-shot: #8A4F1A;
  --astral: #316F84;

  /* Color assignments */
  --bg: var(--black-haze);
  --fg: var(--mirage);
  --muted: var(--astral);
  --accent: var(--mirage);
  --accent-hover: var(--dark-tan);
  --accent-light: var(--white-linen);
  --card: var(--snow-drift);
  --card-hover: var(--white-linen);
  --card-secondary: var(--white-linen);
  --border: var(--white-linen);
  --border-hover: var(--astral);
  --ring: var(--astral);
  --success: var(--astral);
  --warning: var(--bull-shot);
  --error: var(--dark-tan);

  /* Enhanced spacing and sizing */
  --radius: 16px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --radius-xl: 24px;

  --step--2: clamp(0.74rem, 0.70rem + 0.22vw, 0.86rem);
  --step--1: clamp(0.88rem, 0.82rem + 0.29vw, 1.05rem);
  --step-0: clamp(1.00rem, 0.92rem + 0.40vw, 1.20rem);
  --step-1: clamp(1.25rem, 1.12rem + 0.64vw, 1.60rem);
  --step-2: clamp(1.56rem, 1.38rem + 0.94vw, 2.10rem);
  --step-3: clamp(1.95rem, 1.70rem + 1.35vw, 2.80rem);
  --step-4: clamp(2.44rem, 2.09rem + 1.94vw, 3.60rem);
  --step-5: clamp(3.05rem, 2.61rem + 2.33vw, 4.50rem);
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: var(--bg-dark);
    --fg: var(--fg-dark);
    --muted: var(--muted-dark);
    --card: var(--card-dark);
    --card-hover: var(--card-hover-dark);
    --card-secondary: var(--card-secondary-dark);
    --border: var(--border-dark);
    --border-hover: var(--border-hover-dark);
    --ring: var(--ring-dark);
  }
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100vh;
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto,
    "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji",
    "Segoe UI Emoji";
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: 'cv02', 'cv03', 'cv04', 'cv11';
  overflow-x: hidden;
  overflow-y: hidden;
  cursor: none;
}

/* Enable scrolling on mobile devices */
@media (max-width: 768px) {
  html,
  body {
    overflow-y: auto;
    height: auto;
    min-height: 100vh;
  }
}

/* Show default cursor when popups are open */
body:has(.modal.show),
body:has(.why-choose-popup.show),
body:has(#sudo-console:not([style*="display: none"])),
body.popup-open {
  cursor: auto;
}

/* Custom Cursor */
.cursor {
  position: fixed;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent);
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.1s ease;
  mix-blend-mode: difference;
}

.cursor-follower {
  position: fixed;
  width: 40px;
  height: 40px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transition: all 0.15s ease;
  opacity: 0.3;
}

.cursor-hover {
  transform: scale(1.5);
  background: var(--white-linen);
}

.cursor-follower-hover {
  transform: scale(0.5);
  opacity: 0.6;
}


.container {
  height: 100vh;
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px 40px;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 20px;
  position: relative;
  z-index: 2;
}


header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  background: var(--bg);
  z-index: 10;
}

.timezone-display {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  position: relative;
}

.timezone-text {
  font-size: 11px;
  color: var(--muted);
  font-weight: 500;
  opacity: 0.7;
  line-height: 1;
}

.time-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 3px 8px;
  transition: all 0.3s ease;
}

.time-pill:hover {
  border-color: var(--accent);
  box-shadow: 0 1px 4px rgba(49, 111, 132, 0.15);
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.status-dot.available {
  background: #10B981;
  box-shadow: 0 0 4px rgba(16, 185, 129, 0.4);
}

.status-dot.sleeping {
  background: #EF4444;
  box-shadow: 0 0 4px rgba(239, 68, 68, 0.4);
}

.current-time {
  font-size: 12px;
  color: var(--fg);
  font-weight: 600;
  font-family: 'SF Mono', 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
  line-height: 1;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
  position: relative;
}

/* Expanding Time Pill - Horizontal Expansion */
.time-pill {
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  display: flex;
  align-items: center;
  min-width: fit-content;
}

.time-pill:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 16px rgba(49, 111, 132, 0.2);
}

.availability-text {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--mirage);
  color: var(--white-linen);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 11px;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 12px;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  text-align: left;
  line-height: 1.2;
  min-width: 160px;
  z-index: 1;
}

.time-pill:hover .availability-text {
  transform: translateX(0);
}

.time-pill:hover .current-time {
  opacity: 0;
  transform: translateX(20px);
}

.time-pill:hover {
  min-width: 160px;
}

/* Responsive adjustments for even more compact header */
@media (max-width: 768px) {
  header {
    padding: 8px 0;
    gap: 8px;
  }
  
  .timezone-text {
    font-size: 10px;
  }
  
  .time-pill {
    padding: 2px 6px;
    gap: 4px;
  }
  
  .status-dot {
    width: 5px;
    height: 5px;
  }
  
  .current-time {
    font-size: 11px;
  }
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  font-weight: 700;
  font-size: var(--step-1);
}

.logo {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.logo:hover {
  transform: scale(1.05);
}

.logo svg {
  width: 32px;
  height: 32px;
  fill: var(--accent);
}

.email-btn {
  background: var(--fg);
  color: var(--bg);
  border: none;
  padding: 12px 20px;
  border-radius: var(--radius);
  font-size: var(--step--1);
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
  cursor: pointer;
}

.email-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px color-mix(in oklab, var(--fg), transparent 70%);
}

/* UX Mode Toggle */
.ux-mode-toggle {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 8px 12px;
  color: var(--fg);
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  position: relative;
}

.ux-mode-toggle:hover {
  background: var(--card-hover);
  border-color: var(--border-hover);
}

.toggle-text {
  font-size: 0.85rem;
  font-weight: 500;
}

.toggle-switch {
  width: 32px;
  height: 18px;
  background: var(--border);
  border-radius: 9px;
  position: relative;
  transition: all 0.3s ease;
}

.toggle-slider {
  width: 14px;
  height: 14px;
  background: var(--fg);
  border-radius: 50%;
  position: absolute;
  top: 2px;
  left: 2px;
  transition: all 0.3s ease;
}

.ux-mode-toggle.active .toggle-switch {
  background: var(--accent);
}

.ux-mode-toggle.active .toggle-slider {
  transform: translateX(14px);
  background: var(--bg);
}

main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  height: 100%;
  align-items: start;
  padding: 0;
  overflow: visible;
}

@media (max-width: 768px) {
  main {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .left-column {
    gap: 20px;
  }
  
  .hero-card,
  .cta-card {
    padding: 24px;
  }
  
  .cta-buttons {
    margin-bottom: 0;
  }
}

/* Left and Right Column Layout */
.left-column {
  display: flex;
  flex-direction: column;
  gap: 24px;
  height: 100%;
  justify-content: flex-start;
}

.right-column {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}

.content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  height: 100%;
  max-height: calc(100vh - 120px);
  justify-content: flex-start;
  overflow: hidden;
}

.hero-card {
  background: 
    radial-gradient(circle at 20% 20%, rgba(49, 111, 132, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(22, 24, 42, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 60%, rgba(241, 233, 221, 0.08) 0%, transparent 50%),
    linear-gradient(135deg, var(--black-haze) 0%, var(--white-linen) 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(20px);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  flex: 0 0 auto;
  max-height: 400px;
}

.hero-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 60% 30%, rgba(49, 111, 132, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 30% 70%, rgba(241, 233, 221, 0.03) 0%, transparent 60%);
  border-radius: var(--radius-lg);
  pointer-events: none;
  animation: backgroundShift 20s ease-in-out infinite;
}


@keyframes backgroundShift {
  0%, 100% { 
    transform: translateX(0) translateY(0) rotate(0deg);
    opacity: 0.8;
  }
  25% { 
    transform: translateX(10px) translateY(-5px) rotate(90deg);
    opacity: 0.6;
  }
  50% { 
    transform: translateX(-5px) translateY(10px) rotate(180deg);
    opacity: 0.9;
  }
  75% { 
    transform: translateX(5px) translateY(-10px) rotate(270deg);
    opacity: 0.7;
  }
}


/* Additional floating elements */
.hero-card .floating-element-1,
.hero-card .floating-element-2 {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.hero-card .floating-element-1 {
  width: 6px;
  height: 6px;
  background: rgba(49, 111, 132, 0.3);
  top: 25%;
  left: 20%;
  border-radius: 50%;
  animation: floatUp 12s ease-in-out infinite;
  box-shadow: 0 0 4px rgba(49, 111, 132, 0.2);
}

.hero-card .floating-element-2 {
  width: 8px;
  height: 4px;
  background: rgba(241, 233, 221, 0.25);
  top: 65%;
  right: 25%;
  border-radius: 50px;
  animation: floatUp 15s ease-in-out infinite 3s;
  box-shadow: 0 0 3px rgba(241, 233, 221, 0.15);
}


@keyframes floatUp {
  0%, 100% { 
    transform: translateY(0) scale(1);
    opacity: 0;
  }
  10% { 
    opacity: 0.4;
  }
  90% { 
    opacity: 0.4;
  }
  50% { 
    transform: translateY(-25px) scale(1.2);
    opacity: 0.6;
  }
}

.hero-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px color-mix(in oklab, var(--fg), transparent 90%);
}

.profile-section {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 32px;
  position: relative;
  z-index: 2;
}

.profile-text {
  flex: 1;
  position: relative;
  z-index: 2;
}

.profile-image {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px color-mix(in oklab, var(--accent), transparent 40%);
  overflow: hidden;
  border: 3px solid var(--border);
}

.profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.profile-image:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 24px color-mix(in oklab, var(--accent), transparent 60%);
}

h1 {
  font-size: 3.5rem;
  line-height: 1.1;
  margin: 0 0 20px;
  letter-spacing: -0.02em;
  font-weight: 800;
  color: var(--fg);
}

.subtitle {
  font-size: 1.25rem;
  color: var(--muted);
  margin: 0 0 4px;
  line-height: 1.5;
  font-weight: 400;
}


.cta-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
  align-items: center;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  margin-bottom: 0;
}

.button {
  appearance: none;
  border: 1px solid var(--border);
  background: var(--fg);
  color: var(--bg);
  padding: 12px 20px;
  border-radius: var(--radius);
  font-size: var(--step--1);
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
}

.button:hover {
  /* No transform to avoid cropping - keeping this rule for future hover effects */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.button.secondary {
  background: transparent;
  color: var(--fg);
  border-color: var(--border);
}

.button.secondary:hover {
  background: var(--card-hover);
  border-color: var(--border-hover);
}

/* Primary CTA Button */
.button.primary-cta {
  background: var(--accent);
  color: var(--accent-light);
  border: 1px solid var(--accent);
  font-weight: 600;
  padding: 12px 20px;
  font-size: var(--step--1);
  min-width: fit-content;
  max-width: 180px;
}

.button.primary-cta:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  animation: none;
}

/* Secondary CTA Button */
.button.secondary-cta {
  background: transparent;
  color: var(--fg);
  border: 1px solid var(--border);
  font-weight: 500;
  padding: 12px 20px;
  font-size: var(--step--1);
  min-width: fit-content;
  max-width: 180px;
}

.button.secondary-cta:hover {
  background: var(--card-hover);
  border-color: var(--border-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.cta-card {
  background: 
    linear-gradient(135deg, var(--card) 0%, var(--card-hover) 100%),
    radial-gradient(circle at 30% 20%, rgba(49, 111, 132, 0.03) 0%, transparent 50%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  position: relative;
  overflow: visible;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 
    0 8px 24px rgba(0, 0, 0, 0.08),
    0 4px 12px rgba(0, 0, 0, 0.04);
  flex-shrink: 0;
}

.plus-button {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #000000;
  border: none;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 
    0 4px 12px rgba(0, 0, 0, 0.15),
    0 2px 6px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}

.cta-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(135deg, 
      rgba(49, 111, 132, 0.02) 0%, 
      transparent 50%);
  border-radius: var(--radius-lg);
  pointer-events: none;
}

.cta-card:hover {
  transform: translateY(-2px);
  box-shadow: 
    0 12px 32px rgba(0, 0, 0, 0.12),
    0 6px 16px rgba(0, 0, 0, 0.06);
  border-color: var(--border-hover);
}

.cta-card h2 {
  font-size: 2.8rem;
  line-height: 1.1;
  margin: 0 0 24px;
  font-weight: 800;
  color: var(--fg);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  letter-spacing: -0.02em;
  position: relative;
  z-index: 2;
}

.cta-card .button {
  margin-top: 8px;
  background: var(--fg);
  color: var(--bg);
  border: 1px solid var(--border);
  font-weight: 500;
  padding: 12px 24px;
  font-size: 1rem;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.cta-card .button:hover {
  background: var(--accent);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.placeholder {
  background: var(--card-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.placeholder:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px color-mix(in oklab, var(--fg), transparent 90%);
}

.placeholder-content {
  text-align: center;
  color: var(--muted);
  font-size: 1.5rem;
  font-weight: 500;
}

.placeholder-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--accent);
  font-size: 32px;
  transition: all 0.3s ease;
}

.placeholder-icon:hover {
  transform: scale(1.1);
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 600ms ease, transform 600ms ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
  .button:hover,
  .email-btn:hover,
  .hero-card:hover,
  .cta-card:hover,
  .placeholder:hover,
  .profile-image:hover,
  .logo:hover,
  .placeholder-icon:hover {
    transform: none !important;
  }
}

/* Loading state */
body:not(.loaded) .reveal {
  opacity: 0;
  transform: translateY(20px);
}

body.loaded .reveal {
  transition: opacity 600ms ease, transform 600ms ease;
}

/* Enhanced header transitions */
header {
  transition: transform 0.3s ease, backdrop-filter 0.3s ease;
}

/* Focus states for accessibility */
.button:focus-visible,
.email-btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* Improved button states */
.button:active,
.email-btn:active {
  transform: translateY(0);
}

/* Smooth transitions for all interactive elements */
* {
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

/* Hide cursor when popups are open */
.modal.show ~ .cursor,
.modal.show ~ .cursor-follower,
.why-choose-popup.show ~ .cursor,
.why-choose-popup.show ~ .cursor-follower,
#sudo-console:not([style*="display: none"]) ~ .cursor,
#sudo-console:not([style*="display: none"]) ~ .cursor-follower {
  display: none !important;
}

/* Alternative approach - hide cursor when body has popup classes */
body:has(.modal.show) .cursor,
body:has(.modal.show) .cursor-follower,
body:has(.why-choose-popup.show) .cursor,
body:has(.why-choose-popup.show) .cursor-follower,
body:has(#sudo-console:not([style*="display: none"])) .cursor,
body:has(#sudo-console:not([style*="display: none"])) .cursor-follower,
body.popup-open .cursor,
body.popup-open .cursor-follower {
  display: none !important;
}

/* Mobile cursor fallback */
@media (max-width: 768px) {
  body {
    cursor: auto;
  }
  
  .cursor,
  .cursor-follower {
    display: none !important;
  }
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .container {
    padding: 0 24px;
  }
  
  main {
    gap: 32px;
  }
  
  h1 {
    font-size: 2.8rem;
  }
  
  .cta-card h2 {
    font-size: 2rem;
  }
}

/* Hide UX mode elements by default */
.color-palette {
  display: none !important;
}

.ux-spacing-guide,
.ux-typography-guide,
.ux-radius-indicator,
.ux-gap-guide {
  display: none !important;
}

/* UX Mode Styles - Design System Inspector */
body.ux-mode {
  --bg: #F7F7F8;
  --fg: #16182A;
  --card: #FFFFFF;
  --card-hover: #F1E9DD;
  --card-secondary: #F7F9F9;
  --border: #E5E5E5;
  --border-hover: #D0D0D0;
  --accent: #316F84;
  --accent-hover: #2A5F73;
  --accent-light: rgba(49, 111, 132, 0.1);
  --accent-lighter: rgba(49, 111, 132, 0.05);
  --text-muted: #666666;
  --text-light: #999999;
  --shadow: rgba(0, 0, 0, 0.1);
  --shadow-hover: rgba(0, 0, 0, 0.15);
  --shadow-light: rgba(0, 0, 0, 0.05);
  --radius: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --spacing-xs: 4px;
  --spacing-sm: 8px;
  --spacing-md: 16px;
  --spacing-lg: 24px;
  --spacing-xl: 32px;
  --spacing-2xl: 48px;
  --spacing-3xl: 64px;
  --step--2: 0.75rem;
  --step--1: 0.875rem;
  --step-0: 1rem;
  --step-1: 1.125rem;
  --step-2: 1.25rem;
  --step-3: 1.5rem;
  --step-4: 1.875rem;
  --step-5: 2.25rem;
  --step-6: 3rem;
  --step-7: 3.75rem;
  --step-8: 4.5rem;
  --step-9: 6rem;
  --step-10: 8rem;
}

/* Design System Inspector Overlays */
body.ux-mode::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    /* Grid overlay */
    linear-gradient(90deg, rgba(49, 111, 132, 0.1) 1px, transparent 1px),
    linear-gradient(0deg, rgba(49, 111, 132, 0.1) 1px, transparent 1px);
  background-size: 8px 8px;
  pointer-events: none;
  z-index: 1000;
  opacity: 0.3;
}

/* Component Labels - Only show in UX mode */
.ux-mode .hero-card::after {
  content: 'Hero Card Component';
  position: absolute;
  top: -30px;
  left: 0;
  background: #316F84;
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  z-index: 1001;
  pointer-events: none;
}

.ux-mode .cta-card::after {
  content: 'CTA Card Component';
  position: absolute;
  top: -30px;
  left: 0;
  background: #316F84;
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  z-index: 1001;
  pointer-events: none;
}

.ux-mode .email-btn::after {
  content: 'Email Button';
  position: absolute;
  top: -25px;
  left: 0;
  background: #316F84;
  color: white;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 600;
  z-index: 1001;
  pointer-events: none;
}

/* Spacing Guides - Only show when UX mode is active */
.ux-mode .hero-card {
  position: relative;
  border: 2px dashed #316F84 !important;
}

.ux-mode .hero-card::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  height: 1px;
  background: #316F84;
  z-index: 1001;
}

.ux-mode .cta-card {
  position: relative;
  border: 2px dashed #316F84 !important;
}

.ux-mode .cta-card::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  height: 1px;
  background: #316F84;
  z-index: 1001;
}

/* Radius Indicators */
.ux-mode .hero-card {
  position: relative;
}

.ux-mode .hero-card .radius-indicator {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(49, 111, 132, 0.9);
  color: white;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 600;
  z-index: 1001;
  pointer-events: none;
}

.ux-mode .cta-card .radius-indicator {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(49, 111, 132, 0.9);
  color: white;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 600;
  z-index: 1001;
  pointer-events: none;
}

/* Spacing Measurements */
/* UX Mode Spacing Guides */
.ux-mode .ux-spacing-guide {
  position: absolute;
  background: #316F84;
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 4px;
  z-index: 1001;
  pointer-events: none;
  box-shadow: 0 2px 8px rgba(49, 111, 132, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.ux-mode .ux-spacing-top {
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
}

.ux-mode .ux-spacing-left {
  top: 50%;
  left: -25px;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

.ux-mode .ux-spacing-right {
  top: 50%;
  right: -25px;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

.ux-mode .ux-spacing-bottom {
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
}

/* Color Palette Display */
.ux-mode .color-palette {
  position: fixed;
  top: 120px;
  right: 20px;
  background: white;
  border: 2px solid #316F84;
  border-radius: 8px;
  padding: 16px;
  z-index: 1002;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  font-size: 12px;
  max-width: 200px;
}

.ux-mode .color-palette h3 {
  margin: 0 0 12px 0;
  color: #316F84;
  font-size: 14px;
  font-weight: 700;
}

.ux-mode .color-item {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  gap: 8px;
}

.ux-mode .color-swatch {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  border: 1px solid #ddd;
}

.ux-mode .color-name {
  font-weight: 500;
  color: #333;
}

.ux-mode .color-hex {
  font-size: 10px;
  color: #666;
  font-family: monospace;
}

body.ux-mode .hero-card {
  background: linear-gradient(135deg, #FFFFFF 0%, #F7F9F9 100%);
  border: 2px solid #316F84;
  box-shadow: 
    0 8px 32px rgba(49, 111, 132, 0.15),
    0 4px 16px rgba(49, 111, 132, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

body.ux-mode .hero-card::before {
  background: 
    radial-gradient(circle at 60% 30%, rgba(49, 111, 132, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 30% 70%, rgba(49, 111, 132, 0.05) 0%, transparent 60%);
}

body.ux-mode .cta-card {
  background: linear-gradient(135deg, #316F84 0%, #2A5F73 100%);
  border: 2px solid #316F84;
  color: #FFFFFF;
}

body.ux-mode .cta-card h2 {
  color: #FFFFFF;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

body.ux-mode .cta-card .button {
  background: #FFFFFF;
  color: #316F84;
  border: 2px solid #FFFFFF;
  font-weight: 600;
}

body.ux-mode .cta-card .button:hover {
  background: #F1E9DD;
  color: #2A5F73;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

body.ux-mode .floating-element-1,
body.ux-mode .floating-element-2 {
  background: rgba(49, 111, 132, 0.2);
  box-shadow: 0 0 8px rgba(49, 111, 132, 0.3);
}

body.ux-mode .ux-mode-toggle.active {
  background: #316F84;
  color: #FFFFFF;
  border-color: #316F84;
}

/* Disable animations in UX mode */
body.ux-mode * {
  animation-duration: 0s !important;
  animation-delay: 0s !important;
  transition-duration: 0s !important;
  transition-delay: 0s !important;
}

body.ux-mode .floating-element-1,
body.ux-mode .floating-element-2 {
  animation: none !important;
}

body.ux-mode .hero-card::before {
  animation: none !important;
}

/* Show UX mode elements only when UX mode is active */
body.ux-mode .color-palette {
  display: block !important;
}

body.ux-mode .ux-spacing-guide,
body.ux-mode .ux-typography-guide,
body.ux-mode .ux-radius-indicator,
body.ux-mode .ux-gap-guide {
  display: block !important;
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
  
  main {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .content {
    gap: 20px;
  }
  
  .profile-section {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  
  .profile-image {
    align-self: center;
    width: 80px;
    height: 80px;
  }
  
  .cta-buttons {
    justify-content: center;
  }
  
  .hero-card,
  .cta-card {
    padding: 36px;
  }
  
  h1 {
    font-size: 2.5rem;
  }
  
  .cta-card h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  
  .hero-card,
  .cta-card {
    padding: 28px;
  }
  
  .cta-buttons {
    margin-bottom: 0;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  .cta-card h2 {
    font-size: 1.5rem;
  }
  
  .subtitle {
    font-size: 1rem;
  }
  
  .profile-image {
    width: 70px;
    height: 70px;
  }
}

/* Enhanced CTA Button Styles */
.cta-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 8px;
  justify-content: center;
}

.why-button-container {
  display: flex;
  justify-content: center;
  margin-top: 4px;
  margin-bottom: 6px;
}

.why-button {
  background: transparent;
  color: var(--muted);
  border: none;
  font-size: var(--step--2);
  padding: 2px 0;
  font-weight: 400;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 2px;
  transition: all 0.3s ease;
  cursor: pointer;
  font-style: italic;
  letter-spacing: 0.3px;
}

.why-button:hover {
  color: var(--fg);
  text-decoration-color: var(--accent);
  text-decoration-thickness: 2px;
  transform: translateY(-1px);
}

.cta-button {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
  border: none;
  color: white;
  font-weight: 600 !important;
  font-size: var(--step--1) !important;
  padding: 12px 20px !important;
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 
    0 8px 25px rgba(49, 111, 132, 0.3),
    0 4px 12px rgba(49, 111, 132, 0.2);
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 280px;
  justify-content: center;
}

.cta-button:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 
    0 12px 35px rgba(49, 111, 132, 0.4),
    0 6px 20px rgba(49, 111, 132, 0.3);
}

.cta-button:active {
  transform: translateY(-1px) scale(1.01);
}

.button-text {
  transition: transform 0.3s ease;
}

.button-arrow {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
  display: inline-block;
}

.cta-button:hover .button-arrow {
  transform: translateX(4px);
}

.cta-button:hover .button-text {
  transform: translateX(-2px);
}

/* Pulsing animation to grab attention */
@keyframes ctaPulse {
  0%, 100% {
    box-shadow: 
      0 8px 25px rgba(49, 111, 132, 0.3),
      0 4px 12px rgba(49, 111, 132, 0.2),
      0 0 0 0 rgba(49, 111, 132, 0.4);
  }
  50% {
    box-shadow: 
      0 8px 25px rgba(49, 111, 132, 0.3),
      0 4px 12px rgba(49, 111, 132, 0.2),
      0 0 0 8px rgba(49, 111, 132, 0.1);
  }
}

.cta-button {
  animation: ctaPulse 3s ease-in-out infinite;
}

/* HeyForm Integration Styles */
.heyform-trigger {
  /* Ensure HeyForm triggers inherit all existing button styles */
  all: inherit;
  appearance: none;
  border: 1px solid var(--border);
  background: var(--fg);
  color: var(--bg);
  padding: 12px 20px;
  border-radius: var(--radius);
  font-size: var(--step--1);
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
  line-height: inherit;
  text-align: center;
  white-space: nowrap;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

/* Primary CTA HeyForm trigger */
.heyform-trigger.primary-cta {
  background: var(--accent);
  color: var(--accent-light);
  border: 1px solid var(--accent);
  font-weight: 600;
  padding: 12px 20px;
  font-size: var(--step--1);
  min-width: fit-content;
  max-width: 180px;
}

.heyform-trigger.primary-cta:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  animation: none;
}

/* CTA Button HeyForm trigger */
.heyform-trigger.cta-button {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
  border: none;
  color: white;
  font-weight: 600 !important;
  font-size: var(--step--1) !important;
  padding: 12px 20px !important;
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: fit-content;
  max-width: 280px;
  animation: ctaPulse 3s ease-in-out infinite;
}

.heyform-trigger.cta-button:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 
    0 12px 35px rgba(49, 111, 132, 0.4),
    0 6px 20px rgba(49, 111, 132, 0.3);
}

.heyform-trigger.cta-button:active {
  transform: translateY(-1px) scale(1.01);
}

/* Override any HeyForm default styles */
[data-heyform-id] {
  display: inline-block;
}

[data-heyform-id] .heyform__trigger-button {
  display: none !important;
}

/* Ensure HeyForm modal doesn't interfere with custom cursor */
body:has(.heyform-modal) {
  cursor: auto;
}

/* Plus Button - Inline positioning */
.plus-button:hover {
  background: #333333;
  transform: scale(1.05);
  box-shadow: 
    0 6px 20px rgba(0, 0, 0, 0.2),
    0 3px 10px rgba(0, 0, 0, 0.15);
}

.plus-button:active {
  transform: scale(0.95);
}

.plus-icon {
  font-size: 20px;
  font-weight: 300;
  transition: transform 0.3s ease;
}

.plus-button:hover .plus-icon {
  transform: scale(1.1);
}

/* Why Choose Me Popup */
.why-choose-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10001;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.why-choose-popup.show {
  display: flex;
  animation: popupFadeIn 0.3s ease-out;
}

.why-choose-popup .popup-content {
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.95) 0%, 
    rgba(248, 250, 252, 0.98) 100%);
  border-radius: 24px;
  box-shadow: 
    0 32px 64px rgba(0, 0, 0, 0.12),
    0 0 0 1px rgba(255, 255, 255, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  max-width: 480px;
  width: 100%;
  max-height: 85vh;
  overflow: hidden;
  animation: popupSlideIn 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.why-choose-popup .popup-header {
  padding: 28px 28px 20px 28px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  background: linear-gradient(135deg, 
    rgba(49, 111, 132, 0.05) 0%, 
    rgba(49, 111, 132, 0.02) 100%);
  position: relative;
}

.why-choose-popup .popup-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 28px;
  right: 28px;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(49, 111, 132, 0.1) 50%, 
    transparent 100%);
}

.why-choose-popup .popup-header h3 {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--mirage);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.why-choose-popup .popup-close {
  background: rgba(49, 111, 132, 0.08);
  border: 1px solid rgba(49, 111, 132, 0.15);
  font-size: 18px;
  color: var(--mirage);
  cursor: pointer;
  padding: 0;
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.why-choose-popup .popup-close:hover {
  background: rgba(49, 111, 132, 0.15);
  border-color: rgba(49, 111, 132, 0.25);
  color: var(--astral);
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(49, 111, 132, 0.2);
}

.why-choose-popup .popup-body {
  padding: 28px;
  max-height: calc(85vh - 100px);
  overflow-y: auto;
}

.stats-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 32px;
}

.stat-item {
  text-align: center;
  padding: 24px 16px;
  background: linear-gradient(135deg, 
    rgba(49, 111, 132, 0.03) 0%, 
    rgba(49, 111, 132, 0.01) 100%);
  border-radius: 16px;
  border: 1px solid rgba(49, 111, 132, 0.08);
  position: relative;
  overflow: hidden;
}

.stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, 
    var(--astral) 0%, 
    rgba(49, 111, 132, 0.3) 100%);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--astral);
  line-height: 1;
  margin-bottom: 8px;
  text-shadow: 0 2px 4px rgba(49, 111, 132, 0.1);
}

.stat-label {
  font-size: 0.9rem;
  color: var(--mirage);
  font-weight: 600;
  opacity: 0.8;
}

.explanation {
  margin-bottom: 32px;
}

.explanation p {
  margin: 0 0 16px 0;
  color: var(--mirage);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.5;
}

.explanation ul {
  margin: 0 0 20px 0;
  padding-left: 0;
  list-style: none;
}

.explanation li {
  margin-bottom: 12px;
  color: var(--mirage);
  font-size: 0.95rem;
  line-height: 1.5;
  padding-left: 24px;
  position: relative;
}

.explanation li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--astral);
  font-weight: 700;
  font-size: 0.9rem;
}

.popup-cta {
  text-align: center;
  padding-top: 24px;
  position: relative;
}

.popup-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(49, 111, 132, 0.2) 50%, 
    transparent 100%);
}

.popup-cta .btn-primary {
  width: 100%;
  max-width: 280px;
  padding: 16px 24px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--astral) 0%, rgba(49, 111, 132, 0.9) 100%);
  border: none;
  color: white;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 16px rgba(49, 111, 132, 0.3);
}

.popup-cta .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(49, 111, 132, 0.4);
  background: linear-gradient(135deg, rgba(49, 111, 132, 0.95) 0%, var(--astral) 100%);
}

@keyframes popupFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes popupSlideIn {
  from {
    opacity: 0;
    transform: scale(0.85) translateY(30px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* Simple Legal Page Styles - Complete Isolation */
.simple-legal-page {
  background: var(--bg) !important;
  min-height: 100vh !important;
  width: 100vw !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow-x: hidden !important;
}

/* Override ALL possible container styles */
.simple-legal-page .container,
.simple-legal-page > div,
.simple-legal-page main,
.simple-legal-page .simple-content {
  max-width: none !important;
  width: 100% !important;
  height: auto !important;
  display: block !important;
  grid-template-rows: none !important;
  grid-template-columns: none !important;
  gap: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
}

.simple-header {
  padding: 20px 40px !important;
  background: var(--card) !important;
  border-bottom: 1px solid var(--border) !important;
  position: sticky !important;
  top: 0 !important;
  z-index: 100 !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  box-sizing: border-box !important;
}

.back-link {
  color: var(--text-muted) !important;
  text-decoration: none !important;
  font-size: 0.9rem !important;
  font-weight: 500 !important;
  transition: color 0.2s ease !important;
  padding: 8px 12px !important;
  border-radius: 8px !important;
}

.back-link:hover {
  color: var(--astral) !important;
  background: rgba(49, 111, 132, 0.05) !important;
}

.simple-content {
  max-width: 800px !important;
  margin: 0 auto !important;
  padding: 40px 20px !important;
  width: 100% !important;
  box-sizing: border-box !important;
  display: block !important;
}

.simple-container {
  background: var(--card) !important;
  border-radius: 20px !important;
  padding: 48px !important;
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.08),
    0 0 0 1px rgba(255, 255, 255, 0.1) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  box-sizing: border-box !important;
}

.simple-container h1 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--mirage);
  margin: 0 0 16px 0;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.last-updated {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0 0 48px 0;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.simple-container section {
  margin-bottom: 48px;
}

.simple-container h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--mirage);
  margin: 0 0 20px 0;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.simple-container h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--mirage);
  margin: 24px 0 12px 0;
  line-height: 1.4;
}

.simple-container p {
  color: var(--mirage);
  line-height: 1.6;
  margin: 0 0 16px 0;
  font-size: 1rem;
}

.simple-container ul {
  margin: 0 0 20px 0;
  padding-left: 0;
  list-style: none;
}

.simple-container li {
  margin-bottom: 8px;
  color: var(--mirage);
  line-height: 1.5;
  padding-left: 24px;
  position: relative;
}

.simple-container li::before {
  content: '•';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--astral);
  font-weight: 700;
  font-size: 1.2rem;
}

.simple-container a {
  color: var(--astral);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.simple-container a:hover {
  color: var(--bull-shot);
  text-decoration: underline;
}

.contact-info {
  background: linear-gradient(135deg, 
    rgba(49, 111, 132, 0.03) 0%, 
    rgba(49, 111, 132, 0.01) 100%);
  border-radius: 12px;
  padding: 24px;
  border: 1px solid rgba(49, 111, 132, 0.08);
  margin-top: 16px;
}

.contact-info p {
  margin: 0 0 8px 0;
  font-size: 0.95rem;
}

.contact-info p:last-child {
  margin-bottom: 0;
}

/* Mobile Responsive for Simple Legal Pages */
@media (max-width: 768px) {
  .simple-header {
    padding: 20px 24px;
  }
  
  .simple-content {
    padding: 20px 16px;
  }
  
  .simple-container {
    padding: 32px 24px;
    border-radius: 16px;
  }
  
  .simple-container h1 {
    font-size: 2rem;
  }
  
  .simple-container h2 {
    font-size: 1.3rem;
  }
  
  .simple-container h3 {
    font-size: 1.1rem;
  }
  
  .simple-container p {
    font-size: 0.95rem;
  }
  
  .simple-container li {
    font-size: 0.95rem;
  }
  
  .contact-info {
    padding: 20px;
  }
}
@media (max-width: 768px) {
  .why-choose-popup {
    padding: 16px;
  }
  
  .why-choose-popup .popup-content {
    max-width: 100%;
    border-radius: 20px;
    max-height: 90vh;
  }
  
  .why-choose-popup .popup-header {
    padding: 24px 24px 16px 24px;
  }
  
  .why-choose-popup .popup-header h3 {
    font-size: 1.2rem;
  }
  
  .why-choose-popup .popup-body {
    padding: 24px;
    max-height: calc(90vh - 80px);
  }
  
  .stats-section {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 24px;
  }
  
  .stat-item {
    padding: 20px 16px;
  }
  
  .stat-number {
    font-size: 2.2rem;
  }
  
  .explanation {
    margin-bottom: 24px;
  }
  
  .explanation p {
    font-size: 0.95rem;
  }
  
  .explanation li {
    font-size: 0.9rem;
    margin-bottom: 10px;
  }
  
  .popup-cta {
    padding-top: 20px;
  }
  
  .popup-cta .btn-primary {
    max-width: 100%;
    padding: 14px 20px;
    font-size: 0.95rem;
  }
}

/* Mobile Responsive for CTA */
@media (max-width: 768px) {
  .cta-actions {
    flex-direction: column;
    gap: 12px;
  }
  
  .cta-button {
    min-width: auto;
    width: 100%;
  }
  
  .plus-button {
    width: 44px;
    height: 44px;
  }
  
  .stat-item {
    min-width: auto;
  }
}

/* Contact Modal Styles - Apple-inspired design */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
}

.modal.show {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  animation: modalFadeIn 0.3s ease-out;
}

.modal-content {
  position: relative;
  background: var(--card);
  border-radius: 20px;
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.15),
    0 0 0 1px rgba(255, 255, 255, 0.1);
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow: hidden;
  animation: modalSlideIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: center;
}

.modal-header {
  padding: 32px 32px 24px 32px;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  background: linear-gradient(135deg, var(--card) 0%, var(--card-secondary) 100%);
}

.modal-header > div {
  flex: 1;
}

.modal-header h3 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.01em;
}

.modal-subtext {
  margin: 4px 0 0 0;
  font-size: var(--step--1);
  color: var(--muted);
  font-weight: 500;
}

.modal-close {
  background: none;
  border: none;
  font-size: 24px;
  color: var(--text-muted);
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}

.modal-close:hover {
  background: var(--accent-lighter);
  color: var(--accent);
}

.modal-body {
  padding: 32px;
  max-height: calc(90vh - 120px);
  overflow-y: auto;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-weight: 600;
  color: var(--fg);
  font-size: 0.9rem;
  letter-spacing: -0.01em;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 16px;
  border: 2px solid var(--border);
  border-radius: 12px;
  font-size: 1rem;
  font-family: inherit;
  background: var(--card);
  color: var(--fg);
  transition: all 0.2s ease;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-lighter);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
  font-family: inherit;
}

.form-actions {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
  margin-top: 8px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.btn-secondary,
.btn-primary {
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  outline: none;
  min-width: 120px;
}

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

.btn-secondary:hover {
  background: var(--border);
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--accent);
  color: white;
  box-shadow: 0 4px 12px rgba(49, 111, 132, 0.3);
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(49, 111, 132, 0.4);
}

.btn-primary:active {
  transform: translateY(0);
}

/* Modal Animations */
@keyframes modalFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* Mobile Responsive for Modal */
@media (max-width: 768px) {
  .modal {
    padding: 16px;
  }
  
  .modal-content {
    border-radius: 16px;
  }
  
  .modal-header {
    padding: 24px 24px 20px 24px;
  }
  
  .modal-header h3 {
    font-size: 1.25rem;
  }
  
  .modal-body {
    padding: 24px;
  }
  
  .form-actions {
    flex-direction: column;
  }
  
  .btn-secondary,
  .btn-primary {
    width: 100%;
  }
}

/* Video Player Style Projects Section */
.projects-section {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  position: relative;
  overflow-y: auto;
  overflow-x: hidden;
  height: 100%;
  max-height: calc(100vh - 160px);
  min-height: 400px;
  display: flex;
  flex-direction: column;
  scrollbar-width: thin;
  scrollbar-color: var(--astral) transparent;
}

.projects-section::-webkit-scrollbar {
  width: 6px;
}

.projects-section::-webkit-scrollbar-track {
  background: transparent;
}

.projects-section::-webkit-scrollbar-thumb {
  background: var(--astral);
  border-radius: 3px;
  opacity: 0.6;
}

.projects-section::-webkit-scrollbar-thumb:hover {
  opacity: 1;
}

.projects-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 50% 50%, 
    rgba(49, 111, 132, 0.06) 0%, 
    rgba(49, 111, 132, 0.03) 30%,
    transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 1;
  border-radius: 16px;
}

.projects-section:hover::before {
  opacity: 1;
}

/* Scroll indicator */
.projects-section::after {
  content: 'See more projects ↓';
  position: sticky;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(transparent, var(--card) 80%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 0px;
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
  pointer-events: none;
  z-index: 10;
  opacity: 0.8;
  animation: scrollHint 2s ease-in-out infinite;
  transition: opacity 0.3s ease;
}

.projects-section.scrolled::after {
  opacity: 0;
  animation: none;
}

.projects-section.at-end::after {
  content: '✨ You\'ve reached the end! Thanks for exploring my work ✨';
  opacity: 1;
  animation: endMessage 0.5s ease-out;
  color: var(--astral);
  font-weight: 600;
  font-size: 13px;
}

@keyframes endMessage {
  0% { 
    opacity: 0;
    transform: translateY(10px) scale(0.9);
  }
  100% { 
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes scrollHint {
  0%, 100% { 
    opacity: 0.8;
    transform: translateY(0);
  }
  50% { 
    opacity: 1;
    transform: translateY(-2px);
  }
}


.projects-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--fg);
  margin: 0 0 32px 0;
  letter-spacing: -0.02em;
  line-height: 1.1;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.projects-legend {
  text-align: center;
  margin-top: 24px;
  margin-bottom: 0;
}

.legend-text {
  font-size: var(--step--2);
  color: var(--muted);
  font-style: italic;
  background: var(--card-hover);
  padding: 6px 12px;
  border-radius: 20px;
  border: 1px solid var(--border);
}

/* LinkedIn Card - Simple White Design */
.linkedin-card {
  background: white;
  border: 1px solid var(--border);
  text-align: center;
}

.linkedin-card:hover {
  border-color: #0077B5;
  box-shadow: 0 4px 12px rgba(0, 119, 181, 0.15);
}

.linkedin-card .card-title {
  color: var(--fg);
  font-weight: 600;
  font-size: 1.1rem;
  margin: 0;
  padding: 20px;
}

/* Content Rows */
.content-row {
  margin-bottom: 4px;
  position: relative;
  z-index: 2;
}

.content-row:last-child {
  margin-bottom: 0;
}

/* Personal Projects Row - Smaller Height */
.personal-projects-row {
  margin-bottom: 4px;
}

.personal-projects-row .content-carousel {
  max-height: 200px;
}

.row-title {
  font-size: var(--step-0);
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--fg);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  padding-left: 16px;
}

.row-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 20px;
  background: var(--astral);
  border-radius: 2px;
}

/* Content Carousel */
.content-carousel {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.carousel-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 8px 0 16px 0;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

/* Content Cards */
.content-card {
  flex: 0 0 280px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  transform-origin: center;
}

.content-card:hover {
  border-color: var(--astral);
}


/* Card Poster */
.card-poster {
  position: relative;
  height: 180px;
  background: linear-gradient(135deg, var(--astral) 0%, var(--mirage) 50%, var(--bull-shot) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.card-poster::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(49, 111, 132, 0.3) 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(138, 79, 26, 0.2) 0%, transparent 50%);
  pointer-events: none;
}

.poster-icon {
  font-size: 3.5rem;
  opacity: 0.9;
  transition: all 0.3s ease;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.poster-icon img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
  transition: all 0.3s ease;
}

.poster-icon div {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.content-card:hover .poster-icon {
  transform: scale(1.1);
  opacity: 1;
}

.content-card:hover .poster-icon img {
  transform: scale(1.1);
  opacity: 1;
}

.content-card:hover .poster-icon div {
  transform: scale(1.1);
  opacity: 1;
}


/* Card Overlay */
.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
  z-index: 20;
  border-radius: 12px;
}

.content-card:hover .card-overlay {
  opacity: 1;
}


.card-controls {
  display: flex;
  gap: 12px;
  align-items: center;
  z-index: 21;
  position: relative;
}

.control-btn {
  width: 48px;
  height: 48px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fg);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.control-btn.primary {
  background: var(--astral);
  color: var(--white-linen);
  width: 56px;
  height: 56px;
  border: 2px solid var(--astral);
  box-shadow: 0 4px 16px rgba(49, 111, 132, 0.3);
}

.control-btn:hover {
  background: var(--card-hover);
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border-color: var(--astral);
}

.control-btn.primary:hover {
  background: var(--muted);
  color: var(--white-linen);
  box-shadow: 0 4px 12px rgba(49, 111, 132, 0.3);
}

/* Card Metadata */
.card-metadata {
  padding: 20px;
  background: var(--card);
  color: var(--fg);
}

.metadata-pills {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.pill {
  background: rgba(49, 111, 132, 0.08);
  color: var(--muted);
  padding: 2px 6px;
  border-radius: 8px;
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  border: 1px solid rgba(49, 111, 132, 0.15);
  backdrop-filter: blur(4px);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  line-height: 1.2;
}

.card-title {
  font-size: var(--step--1);
  font-weight: 600;
  color: var(--fg);
  margin: 0 0 8px 0;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-description {
  font-size: var(--step--2);
  color: var(--muted);
  line-height: 1.4;
  margin: 0 0 12px 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.genre-tags {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}

.genre {
  color: var(--fg);
  font-size: var(--step--2);
  font-weight: 500;
}

.separator {
  color: var(--muted);
  font-size: var(--step--2);
  font-weight: 300;
}


.project-card {
  background: var(--card-secondary);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  transition: all 0.2s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.project-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-color: var(--accent);
}

.project-card:hover .project-icon {
  transform: scale(1.1);
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
  box-shadow: 0 4px 16px rgba(49, 111, 132, 0.3);
}

.project-card:hover .project-name {
  color: var(--accent);
}

.project-card:hover .tech-tag {
  transform: translateY(-2px);
  background: var(--accent);
  color: white;
  box-shadow: 0 4px 12px rgba(49, 111, 132, 0.3);
}

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

.project-icon {
  font-size: 1.5rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-light);
  border-radius: 8px;
  transition: all 0.2s ease;
}

.project-icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, transparent 50%);
  border-radius: 12px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.project-card:hover .project-icon {
  transform: scale(1.1);
  background: var(--accent);
}

.project-links {
  display: flex;
  gap: 8px;
}

.project-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--card-secondary);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--muted);
  text-decoration: none;
  transition: all 0.2s ease;
}

.project-link:hover {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
  transform: scale(1.05);
}

.project-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--fg);
  margin: 0;
  line-height: 1.4;
}

.project-description {
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.5;
  margin: 0;
}

.project-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
}

.tech-tag {
  background: var(--accent-light);
  color: var(--accent);
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

.tech-tag:hover {
  background: var(--accent);
  color: white;
}

/* Mobile Responsive for Video Player Style */
@media (max-width: 768px) {
  .projects-section {
    padding: 20px;
  }
  
  .content-card {
    flex: 0 0 280px;
  }
  
  .card-poster {
    height: 160px;
  }
  
  .poster-icon {
    font-size: 3rem;
  }
  
  .card-metadata {
    padding: 16px;
  }
  
  .card-title {
    font-size: var(--step--2);
  }
  
  .card-description {
    font-size: var(--step--2);
  }
  
  .pill {
    font-size: 9px;
    padding: 2px 5px;
  }
  
  .control-btn {
    width: 40px;
    height: 40px;
  }
  
  .control-btn.primary {
    width: 48px;
    height: 48px;
  }
  
  /* Minimalistic Card Mobile */
  .minimalistic-card {
    flex: 0 0 280px;
    padding: 16px;
    height: 160px;
  }
  
  .minimalistic-icon {
    width: 60px;
    height: 60px;
    font-size: 2.5rem;
    top: 16px;
    right: 16px;
  }
  
  .minimalistic-content {
    padding-right: 80px;
  }
  
  .minimalistic-title {
    font-size: 1.1rem;
  }
  
  .minimalistic-description {
    font-size: 0.85rem;
  }
  
  .minimalistic-btn {
    padding: 6px 10px;
    font-size: 0.75rem;
  }
  
  /* Personal Projects Mobile */
  .personal-projects-row .content-carousel {
    max-height: 150px;
  }
}

@media (max-width: 480px) {
  .projects-section {
    padding: 16px;
  }
  
  .projects-title {
    font-size: 2rem;
    margin-bottom: 24px;
  }
  
  .row-title {
    font-size: var(--step--1);
    margin-bottom: 12px;
  }
  
  .content-row {
    margin-bottom: 4px;
  }
  
  .content-card {
    flex: 0 0 240px;
  }
  
  .card-poster {
    height: 140px;
  }
  
  .poster-icon {
    font-size: 2.5rem;
  }
  
  .card-metadata {
    padding: 12px;
  }
  
  .card-title {
    font-size: var(--step--2);
  }
  
  .card-description {
    font-size: var(--step--2);
  }
  
  .pill {
    font-size: 8px;
    padding: 1px 4px;
  }
  
  .control-btn {
    width: 36px;
    height: 36px;
  }
  
  .control-btn.primary {
    width: 44px;
    height: 44px;
  }
  
  /* Minimalistic Card Small Mobile */
  .minimalistic-card {
    flex: 0 0 240px;
    padding: 12px;
    height: 140px;
  }
  
  .minimalistic-icon {
    width: 50px;
    height: 50px;
    font-size: 2rem;
    top: 12px;
    right: 12px;
  }
  
  .minimalistic-content {
    padding-right: 70px;
  }
  
  .minimalistic-title {
    font-size: 1rem;
  }
  
  .minimalistic-description {
    font-size: 0.8rem;
  }
  
  .minimalistic-btn {
    padding: 5px 8px;
    font-size: 0.7rem;
  }
  
  /* Personal Projects Small Mobile */
  .personal-projects-row .content-carousel {
    max-height: 120px;
  }
}

/* ========================================
   MINIMALISTIC CARD STYLES
   ======================================== */

.minimalistic-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.3s ease;
  cursor: pointer;
  flex: 0 0 280px;
  height: 180px;
  position: relative;
  overflow: hidden;
}

.minimalistic-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(49, 111, 132, 0.15);
  border-color: var(--astral);
}

.minimalistic-icon {
  font-size: 3.5rem;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--astral), var(--mirage));
  border-radius: 12px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(49, 111, 132, 0.2);
  position: absolute;
  top: 20px;
  right: 20px;
}

.minimalistic-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-right: 100px;
  height: 100%;
  justify-content: center;
}

.minimalistic-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--fg);
  margin: 0;
  line-height: 1.3;
}

.minimalistic-description {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.4;
}

.minimalistic-actions {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

.minimalistic-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--card);
  color: var(--fg);
  font-size: 0.8rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
}

.minimalistic-btn:hover {
  background: var(--card-hover);
  border-color: var(--astral);
  transform: translateY(-1px);
}

.minimalistic-btn.primary {
  background: var(--astral);
  color: white;
  border-color: var(--astral);
}

.minimalistic-btn.primary:hover {
  background: var(--muted);
  border-color: var(--muted);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(49, 111, 132, 0.3);
}

.snake-card {
  background: linear-gradient(135deg, var(--card) 0%, var(--card-hover) 100%);
  border: 2px solid var(--border);
}

.snake-card:hover {
  border-color: var(--astral);
  background: linear-gradient(135deg, var(--card-hover) 0%, var(--card) 100%);
}

.coming-soon-card {
  background: linear-gradient(135deg, var(--card) 0%, var(--card-hover) 100%);
  border: 2px solid var(--border);
  position: relative;
  overflow: hidden;
}

.coming-soon-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    rgba(49, 111, 132, 0.05) 0%, 
    rgba(138, 79, 26, 0.03) 50%,
    rgba(49, 111, 132, 0.05) 100%);
  pointer-events: none;
}

.coming-soon-card:hover {
  border-color: var(--astral);
  background: linear-gradient(135deg, var(--card-hover) 0%, var(--card) 100%);
}

.coming-soon-card .minimalistic-icon {
  background: linear-gradient(135deg, var(--astral), var(--bull-shot));
}

.coming-soon-badge {
  background: var(--astral);
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: lowercase;
  letter-spacing: 0.5px;
  display: inline-block;
  transition: all 0.3s ease;
  border: none;
  cursor: default;
}

.coming-soon-badge:hover {
  background: var(--muted);
  transform: scale(1.05);
}

/* ========================================
   EXCITING PROJECTS AD STYLES
   ======================================== */

.exciting-projects-ad {
  background: var(--card);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 180px;
  flex: 0 0 280px;
}

.exciting-projects-ad:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(49, 111, 132, 0.15);
  border-color: var(--border-hover);
}

.coming-soon-content {
  text-align: center;
  padding: 20px;
  max-width: 240px;
  width: 100%;
}

.coming-soon-text {
  margin-bottom: 20px;
}

.main-text {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--fg);
  line-height: 1.2;
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}

.main-text.highlight {
  color: var(--astral);
  font-weight: 700;
}

.coming-soon-subtitle {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 400;
  margin-bottom: 0;
  opacity: 0.9;
  line-height: 1.4;
}


/* Responsive adjustments for the ad */
@media (max-width: 768px) {
  .coming-soon-content {
    padding: 32px 16px;
    max-width: 240px;
  }
  
  .main-text {
    font-size: var(--step-1);
  }
  
  .coming-soon-subtitle {
    font-size: var(--step--2);
    margin-bottom: 24px;
  }
  
  .coming-soon-badge {
    padding: 10px 20px;
    font-size: var(--step--2);
  }
}

@media (max-width: 480px) {
  .coming-soon-content {
    padding: 24px 12px;
    max-width: 200px;
  }
  
  .main-text {
    font-size: var(--step-0);
  }
  
  .coming-soon-subtitle {
    font-size: var(--step--2);
    margin-bottom: 20px;
  }
  
  .coming-soon-badge {
    padding: 8px 16px;
    font-size: var(--step--2);
  }
}

