/* ============================================
   SEOLAXY - Clean CSS (replaces Tailwind)
   ============================================ */

/* --- CSS Variables --- */
:root {
  /* Colors */
  --purple-primary: #410A69;
  --purple-600: #9333ea;
  --purple-500: #a855f7;
  --purple-400: #c084fc;
  --purple-300: #d8b4fe;
  --purple-200: #e9d5ff;
  --purple-100: #f3e8ff;
  --purple-50: #faf5ff;
  --yellow-primary: #FFD814;
  --yellow-400: #facc15;
  --orange-400: #fb923c;
  --orange-500: #f97316;
  --indigo-900: #312e81;
  --pink-400: #f472b6;
  --gray-900: #111827;
  --gray-700: #374151;
  --gray-600: #4b5563;
  --gray-500: #6b7280;
  --gray-400: #9ca3af;
  --gray-300: #d1d5db;
  --gray-200: #e5e7eb;
  --gray-100: #f3f4f6;
  --gray-50: #f9fafb;
  --white: #ffffff;
  --black: #000000;
  
  /* Typography */
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  
  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;
  
  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
  --shadow-2xl: 0 25px 50px -12px rgba(0,0,0,0.25);
}

/* --- Reset --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0 solid var(--gray-200);
}

html {
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  font-family: var(--font-body);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  line-height: inherit;
}

h1, h2, h3, h4, h5, h6 { font-size: inherit; font-weight: inherit; }
a { color: inherit; text-decoration: inherit; }
img, video { max-width: 100%; height: auto; display: block; }
button, input, select, textarea { font-family: inherit; font-size: 100%; }
button { cursor: pointer; }
ul, ol { list-style: none; }

/* --- Typography --- */
.font-heading { font-family: var(--font-heading); }
.font-sans, .font-body { font-family: var(--font-body); }

.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-\[10px\] { font-size: 10px; line-height: 1; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-5xl { font-size: 3rem; line-height: 1; }
.text-6xl { font-size: 3.75rem; line-height: 1; }

.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

.leading-tight { line-height: 1.25; }
.leading-snug { line-height: 1.375; }
.leading-none { line-height: 1; }
.leading-snugger { line-height: 1.2; }
.leading-normal { line-height: 1.5; }
.leading-relaxed { line-height: 1.625; }

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

.tracking-wide { letter-spacing: 0.025em; }
.italic { font-style: italic; }
.underline { text-decoration: underline; }
.whitespace-nowrap { white-space: nowrap; }

.antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* --- Colors --- */
.text-white { color: var(--white); }
.text-black { color: var(--black); }
.text-gray-400 { color: var(--gray-400); }
.text-gray-500 { color: var(--gray-500); }
.text-gray-600 { color: var(--gray-600); }
.text-gray-700 { color: var(--gray-700); }
.text-gray-900 { color: var(--gray-900); }
.text-purple-600 { color: var(--purple-600); }
.text-yellow-400 { color: var(--yellow-400); }
.text-green-500 { color: #22c55e; }
.text-gray-300 { color: var(--gray-300); }
.text-gray-800 { color: #1f2937; }

.text-white\/30 { color: rgba(255,255,255,0.3); }
.text-white\/50 { color: rgba(255,255,255,0.5); }
.text-white\/60 { color: rgba(255,255,255,0.6); }
.text-white\/70 { color: rgba(255,255,255,0.7); }
.text-white\/80 { color: rgba(255,255,255,0.8); }
.text-white\/90 { color: rgba(255,255,255,0.9); }

/* Additional opacity variants */
.bg-black\/60 { background-color: rgba(0,0,0,0.6); }
.bg-white\/10 { background-color: rgba(255,255,255,0.1); }
.border-white\/10 { border-color: rgba(255,255,255,0.1); }
.border-white\/20 { border-color: rgba(255,255,255,0.2); }
.border-white\/30 { border-color: rgba(255,255,255,0.3); }
.from-purple-600\/50 { --tw-gradient-from: rgba(147, 51, 234, 0.5); }
.from-purple-900\/50 { --tw-gradient-from: rgba(88, 28, 135, 0.5); }
.from-white\/10 { --tw-gradient-from: rgba(255, 255, 255, 0.1); }
.via-indigo-900\/30 { --tw-gradient-via: rgba(49, 46, 129, 0.3); }
.to-black\/20 { --tw-gradient-to: rgba(0, 0, 0, 0.2); }

.bg-white { background-color: var(--white); }
.bg-gray-50 { background-color: var(--gray-50); }
.bg-purple-100 { background-color: var(--purple-100); }
.bg-purple-300 { background-color: var(--purple-300); }
.bg-purple-400 { background-color: var(--purple-400); }
.bg-purple-500 { background-color: var(--purple-500); }
.bg-orange-300 { background-color: #fdba74; }
.bg-orange-400 { background-color: var(--orange-400); }
.bg-pink-400 { background-color: var(--pink-400); }

.bg-white\/5 { background-color: rgba(255,255,255,0.05); }
.bg-white\/10 { background-color: rgba(255,255,255,0.1); }
.bg-white\/80 { background-color: rgba(255,255,255,0.8); }
.bg-white\/90 { background-color: rgba(255,255,255,0.9); }
.bg-black\/60 { background-color: rgba(0,0,0,0.6); }
.bg-green-500 { background-color: #22c55e; }
.bg-red-500 { background-color: #ef4444; }

/* --- Spacing --- */
.p-2 { padding: var(--space-2); }
.p-4 { padding: var(--space-4); }
.p-6 { padding: var(--space-6); }
.p-8 { padding: var(--space-8); }

.px-3 { padding-left: var(--space-3); padding-right: var(--space-3); }
.px-4 { padding-left: var(--space-4); padding-right: var(--space-4); }
.px-6 { padding-left: var(--space-6); padding-right: var(--space-6); }
.px-8 { padding-left: var(--space-8); padding-right: var(--space-8); }

.py-1 { padding-top: var(--space-1); padding-bottom: var(--space-1); }
.py-1\.5 { padding-top: 0.375rem; padding-bottom: 0.375rem; }
.py-2 { padding-top: var(--space-2); padding-bottom: var(--space-2); }
.py-2\.5 { padding-top: 0.625rem; padding-bottom: 0.625rem; }
.py-3 { padding-top: var(--space-3); padding-bottom: var(--space-3); }
.py-3\.5 { padding-top: 0.875rem; padding-bottom: 0.875rem; }
.mt-0\.5 { margin-top: 0.125rem; }
.py-4 { padding-top: var(--space-4); padding-bottom: var(--space-4); }
.py-8 { padding-top: var(--space-8); padding-bottom: var(--space-8); }
.py-12 { padding-top: var(--space-12); padding-bottom: var(--space-12); }
.py-16 { padding-top: var(--space-16); padding-bottom: 10px; }
@media (min-width: 768px) {
    .py-16 { padding-bottom: var(--space-16); }
}
.py-20 { padding-top: var(--space-20); padding-bottom: var(--space-20); }
.py-24 { padding-top: var(--space-24); padding-bottom: var(--space-24); }

.pt-6 { padding-top: var(--space-6); }
.pt-12 { padding-top: var(--space-12); }
.pt-16 { padding-top: var(--space-16); }
.pt-24 { padding-top: var(--space-24); }
.pb-1 { padding-bottom: var(--space-1); }
.pb-7 { padding-bottom: 1.75rem; }
.pb-8 { padding-bottom: var(--space-8); }
.pb-16 { padding-bottom: var(--space-16); }
.pb-20 { padding-bottom: var(--space-20); }
.pb-24 { padding-bottom: var(--space-24); }
.pb-32 { padding-bottom: var(--space-32); }
.pl-8 { padding-left: var(--space-8); }
.pr-4 { padding-right: var(--space-4); }
.pr-12 { padding-right: var(--space-12); }

.m-0 { margin: 0; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mx-2 { margin-left: var(--space-2); margin-right: var(--space-2); }

.mt-0\.5 { margin-top: 0.125rem; }
.mt-2 { margin-top: var(--space-2); }
.mt-4 { margin-top: var(--space-4); }
.mt-12 { margin-top: var(--space-12); }
.mt-auto { margin-top: auto; }
.mt-\[4px\] { margin-top: 4px; }
.mt-1 { margin-top: var(--space-1); }
.mt-6 { margin-top: var(--space-6); }
.mt-8 { margin-top: 24px; } /* tighter on mobile */
@media (min-width: 1024px) {
  .mt-8 { margin-top: var(--space-8); }
}
.mt-24 { margin-top: var(--space-24); }
.-mt-3 { margin-top: -0.75rem; }

.mb-2 { margin-bottom: var(--space-2); }
.mb-3 { margin-bottom: var(--space-3); }
.mb-4 { margin-bottom: var(--space-4); }
.mb-6 { margin-bottom: var(--space-6); }
.mb-8 { margin-bottom: 24px; } /* tighter on mobile */
@media (min-width: 1024px) {
  .mb-8 { margin-bottom: var(--space-8); }
}
.mb-12 { margin-bottom: var(--space-12); }
.mb-16 { margin-bottom: 30px; } /* 30px on mobile/tablet */
@media (min-width: 1024px) {
  .mb-16 { margin-bottom: var(--space-16); } /* 64px on desktop */
}
.mb-20 { margin-bottom: 30px; } /* 30px on mobile/tablet */
@media (min-width: 1024px) {
  .mb-20 { margin-bottom: var(--space-20); } /* 80px on desktop */
}
.mb-1 { margin-bottom: var(--space-1); }
.mb-10 { margin-bottom: 2.5rem; }

.my-4 { margin-top: var(--space-4); margin-bottom: var(--space-4); }

.ml-1 { margin-left: var(--space-1); }
.ml-5 { margin-left: var(--space-5); }
.ml-6 { margin-left: var(--space-6); }
.ml-2 { margin-left: var(--space-2); }
.mr-2 { margin-right: var(--space-2); }
.mr-3 { margin-right: var(--space-3); }

/* --- Layout --- */
.block { display: block; }
.inline-block { display: inline-block; }
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.grid { display: grid; }
.grid-cols-1 { grid-template-columns: repeat(1, 1fr); }
.hidden { display: none; }

/* Dropdowns without JS (click only via <details>/<summary>) */
.dropdown-container > .dropdown-menu {
  display: none;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
}

.dropdown-container[open] > .dropdown-menu {
  display: block;
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.dropdown-container[open] .dropdown-chevron {
  transform: rotate(180deg) !important;
}

.dropdown-container > summary {
  list-style: none;
  cursor: pointer;
}

.dropdown-container > summary::-webkit-details-marker {
  display: none;
}

/* Fix nav button background - reset all backgrounds */
.dropdown-trigger,
.dropdown-container button,
.dropdown-container summary,
.mobile-accordion-trigger,
.mobile-accordion button,
#mobile-menu-button {
  background: transparent !important;
  background-color: transparent !important;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
}

.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.flex-shrink-0 { flex-shrink: 0; }
.flex-1 { flex: 1 1 0%; }
.flex-grow { flex-grow: 1; }
.grow { flex-grow: 1; }

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

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

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

.gap-0\.5 { gap: 0.125rem; }
.gap-1 { gap: var(--space-1); }
.gap-2 { gap: var(--space-2); }
.gap-3 { gap: var(--space-3); }
.gap-4 { gap: var(--space-4); }
.gap-5 { gap: var(--space-5); }
.gap-6 { gap: var(--space-6); }
.gap-8 { gap: var(--space-8); }
/* gap-12: 20px on mobile, 48px on desktop */
.gap-12 { gap: 20px; }
@media (min-width: 1024px) {
  .gap-12 { gap: var(--space-12); }
}

.space-y-1 > * + * { margin-top: var(--space-1); }
.space-y-2 > * + * { margin-top: var(--space-2); }
.space-y-3 > * + * { margin-top: var(--space-3); }
.space-y-4 > * + * { margin-top: var(--space-4); }
.space-y-5 > * + * { margin-top: var(--space-5); }

.order-1 { order: 1; }
.order-2 { order: 2; }

/* --- Sizing --- */
.w-2 { width: 0.5rem; }
.w-4 { width: 1rem; }
.w-5 { width: 1.25rem; }
.w-6 { width: 1.5rem; }
.w-10 { width: 2.5rem; }
.w-12 { width: 3rem; }
.w-14 { width: 3.5rem; }
.w-16 { width: 4rem; }
.w-24 { width: 6rem; }
.w-40 { width: 10rem; }
.w-48 { width: 12rem; }
.w-64 { width: 16rem; }
.w-72 { width: 18rem; }
.w-80 { width: 20rem; }
.w-96 { width: 24rem; }
.w-full { width: 100%; }
.w-auto { width: auto; }
.w-\[300px\] { width: 300px; }

.h-1 { height: 0.25rem; }
.h-4 { height: 1rem; }
.h-5 { height: 1.25rem; }
.h-6 { height: 1.5rem; }
.h-8 { height: 2rem; }
.h-10 { height: 2.5rem; }
.h-12 { height: 3rem; }
.h-14 { height: 3.5rem; }
.h-16 { height: 4rem; }
.h-24 { height: 6rem; }
.h-40 { height: 10rem; }
.h-48 { height: 12rem; }
.h-64 { height: 16rem; }
.h-72 { height: 18rem; }
.h-80 { height: 20rem; }
.h-96 { height: 24rem; }
.h-full { height: 100%; }
.h-auto { height: auto; }

.min-h-\[85vh\] { min-height: 85vh; }
.min-h-\[60vh\] { min-height: 60vh; }
.min-h-screen { min-height: 100vh; }
.max-h-\[85vh\] { max-height: 85vh; }

.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-6xl { max-width: 72rem; }
.max-w-7xl { max-width: 80rem; }
.max-w-\[280px\] { max-width: 280px; }
.max-w-\[320px\] { max-width: 320px; }
.max-h-\[85vh\] { max-height: 85vh; }
.w-\[300px\] { width: 300px; }
.z-\[100\] { z-index: 100; }

/* --- Position --- */
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.sticky { position: sticky; }

.inset-0 { inset: 0; }
.-inset-4 { inset: -1rem; }
.-inset-12 { inset: -3rem; }
.inset-y-0 { top: 0; bottom: 0; }

.top-0 { top: 0; }
.top-4 { top: 1rem; }
.top-20 { top: 5rem; }
.top-1\/2 { top: 50%; }
.top-1\/4 { top: 25%; }
.top-1\/2 { top: 50%; }
.top-full { top: 100%; }

.bottom-0 { bottom: 0; }
.bottom-20 { bottom: 5rem; }
.bottom-1\/4 { bottom: 25%; }

.left-0 { left: 0; }
.left-10 { left: 2.5rem; }
.left-1\/3 { left: 33.333333%; }
.left-1\/4 { left: 25%; }

.right-0 { right: 0; }
.right-4 { right: 1rem; }
.right-10 { right: 2.5rem; }
.right-1\/3 { right: 33.333333%; }
.right-1\/4 { right: 25%; }

.z-0 { z-index: 0; }
.z-10 { z-index: 10; }
.z-20 { z-index: 20; }
.z-50 { z-index: 50; }
.z-\[100\] { z-index: 100; }

/* --- Borders --- */
.border { border-width: 1px; }
.border-2 { border-width: 2px; }
.border-4 { border-width: 4px; }
.border-t { border-top-width: 1px; }
.border-b { border-bottom-width: 1px; }

.border-gray-100 { border-color: var(--gray-100); }
.border-gray-200 { border-color: var(--gray-200); }
.border-gray-300 { border-color: var(--gray-300); }
.border-purple-200 { border-color: var(--purple-200); }
.border-purple-600 { border-color: var(--purple-600); }
.border-white\/10 { border-color: rgba(255,255,255,0.1); }
.border-white\/20 { border-color: rgba(255,255,255,0.2); }
.border-white\/30 { border-color: rgba(255,255,255,0.3); }

.rounded-md { border-radius: var(--radius-sm); }
.rounded-lg { border-radius: var(--radius-md); }
.rounded-xl { border-radius: var(--radius-lg); }
.rounded-2xl { border-radius: var(--radius-xl); }
.rounded-full { border-radius: var(--radius-full); }

/* --- Effects --- */
.shadow-sm { box-shadow: var(--shadow-sm); }
.shadow-md { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }
.shadow-xl { box-shadow: var(--shadow-xl); }
.shadow-2xl { box-shadow: var(--shadow-2xl); }

.opacity-5 { opacity: 0.05; }
.opacity-10 { opacity: 0.1; }
.opacity-20 { opacity: 0.2; }
.opacity-25 { opacity: 0.25; }
.opacity-30 { opacity: 0.3; }
.opacity-60 { opacity: 0.6; }
.opacity-75 { opacity: 0.75; }

.blur { filter: blur(8px); }
.blur-2xl { filter: blur(40px); }
.blur-3xl { filter: blur(64px); }
.filter { }
.invert { filter: invert(100%); }

.backdrop-blur-sm { backdrop-filter: blur(4px); }
.backdrop-blur-md { backdrop-filter: blur(12px); }
.backdrop-blur-lg { backdrop-filter: blur(16px); }

/* --- Overflow --- */
.overflow-hidden { overflow: hidden; }
.overflow-visible { overflow: visible; }
.overflow-x-hidden { overflow-x: hidden; }
.overflow-y-auto { overflow-y: auto; }

/* --- Object Fit --- */
.object-cover { object-fit: cover; }
.object-contain { object-fit: contain; }

/* --- Background --- */
.bg-no-repeat { background-repeat: no-repeat; }
.bg-right-bottom { background-position: right bottom; }

/* Gradient utilities - these work with from/via/to classes */
.bg-gradient-to-r { background-image: linear-gradient(to right, var(--tw-gradient-from, transparent), var(--tw-gradient-to, transparent)); }
.bg-gradient-to-t { background-image: linear-gradient(to top, var(--tw-gradient-from, transparent), var(--tw-gradient-to, transparent)); }
.bg-gradient-to-br { background-image: linear-gradient(to bottom right, var(--tw-gradient-from, transparent), var(--tw-gradient-via, transparent), var(--tw-gradient-to, transparent)); }
.bg-gradient-to-tl { background-image: linear-gradient(to top left, var(--tw-gradient-from, transparent), var(--tw-gradient-to, transparent)); }

/* Gradient color stops */
.from-purple-600 { --tw-gradient-from: #9333ea; }
.from-purple-600\/50 { --tw-gradient-from: rgba(147, 51, 234, 0.5); }
.from-purple-900\/50 { --tw-gradient-from: rgba(88, 28, 135, 0.5); }
.from-white\/10 { --tw-gradient-from: rgba(255, 255, 255, 0.1); }
.via-purple-600 { --tw-gradient-via: #9333ea; }
.via-indigo-900\/30 { --tw-gradient-via: rgba(49, 46, 129, 0.3); }
.to-black\/20 { --tw-gradient-to: rgba(0, 0, 0, 0.2); }
.to-indigo-900 { --tw-gradient-to: #312e81; }
.to-transparent { --tw-gradient-to: transparent; }

/* --- Transitions --- */
.transition { transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1); }
.transition-all { transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1); }
.transition-colors { transition: color, background-color, border-color 0.15s cubic-bezier(0.4, 0, 0.2, 1); }
.transition-transform { transition: transform 0.15s cubic-bezier(0.4, 0, 0.2, 1); }
.transition-shadow { transition: box-shadow 0.15s cubic-bezier(0.4, 0, 0.2, 1); }

.duration-200 { transition-duration: 0.2s; }
.duration-300 { transition-duration: 0.3s; }
.duration-700 { transition-duration: 0.7s; }

.ease-in-out { transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); }

/* --- Transforms --- */
.transform { transform: translate(var(--tw-translate-x, 0), var(--tw-translate-y, 0)); }
.rotate-180 { transform: rotate(180deg); }

/* --- Pointer --- */
.pointer-events-none { pointer-events: none; }
.appearance-none { appearance: none; }
.outline-none { outline: none; }

/* --- Hover States --- */
.hover\:-translate-y-0\.5:hover { transform: translateY(-0.125rem); }
.hover\:-translate-y-1:hover { transform: translateY(-0.25rem); }
.hover\:scale-105:hover { transform: scale(1.05); }
.hover\:bg-white:hover { background-color: var(--white); }
.hover\:bg-white\/5:hover { background-color: rgba(255,255,255,0.05); }
.hover\:bg-white\/10:hover { background-color: rgba(255,255,255,0.1); }
.hover\:bg-white\/20:hover { background-color: rgba(255,255,255,0.2); }
.hover\:bg-gray-50:hover { background-color: var(--gray-50); }
.hover\:bg-purple-50:hover { background-color: var(--purple-50); }
.hover\:text-white:hover { color: var(--white); }
.hover\:text-gray-600:hover { color: var(--gray-600); }
.hover\:text-purple-700:hover { color: #7c3aed; }
.hover\:text-purple-800:hover { color: #6b21a8; }
.hover\:text-blue-800:hover { color: #1e40af; }
.hover\:border-purple-100:hover { border-color: var(--purple-100); }
.hover\:border-purple-300:hover { border-color: var(--purple-300); }
.hover\:border-white\/50:hover { border-color: rgba(255,255,255,0.5); }
.hover\:shadow-md:hover { box-shadow: var(--shadow-md); }
.hover\:shadow-lg:hover { box-shadow: var(--shadow-lg); }
.hover\:shadow-xl:hover { box-shadow: var(--shadow-xl); }
.hover\:shadow-orange-500\/50:hover { box-shadow: 0 10px 15px -3px rgba(249,115,22,0.5); }
.hover\:shadow-purple-500\/50:hover { box-shadow: 0 10px 15px -3px rgba(168,85,247,0.5); }
.hover\:underline:hover { text-decoration: underline; }
.hover\:-translate-y-0\.5:hover { transform: translateY(-0.125rem); }
.hover\:bg-white\/5:hover { background-color: rgba(255,255,255,0.05); }
.hover\:bg-white\/10:hover { background-color: rgba(255,255,255,0.1); }
.hover\:bg-white\/20:hover { background-color: rgba(255,255,255,0.2); }
.hover\:border-white\/50:hover { border-color: rgba(255,255,255,0.5); }

.active\:translate-y-0:active { transform: translateY(0); }

.focus\:border-transparent:focus { border-color: transparent; }
.focus\:ring-2:focus { box-shadow: 0 0 0 2px var(--orange-400); }
.focus\:ring-orange-400:focus { box-shadow: 0 0 0 2px var(--orange-400); }

/* --- Responsive: sm (640px) --- */
@media (min-width: 640px) {
  .sm\:w-auto { width: auto; }
  .sm\:flex-row { flex-direction: row; }
  .sm\:px-8 { padding-left: 2rem; padding-right: 2rem; }
  .sm\:py-4 { padding-top: 1rem; padding-bottom: 1rem; }
  .sm\:text-base { font-size: 1rem; line-height: 1.5rem; }
  .sm\:gap-1 { gap: 0.25rem; }
  .sm\:gap-2 { gap: 0.5rem; }
  .sm\:gap-4 { gap: 1rem; }
  .sm\:px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
  .sm\:text-xs { font-size: 0.75rem; line-height: 1rem; }
  .sm\:w-5 { width: 1.25rem; }
  .sm\:h-5 { height: 1.25rem; }
}

/* --- Responsive: md (768px) --- */
@media (min-width: 768px) {
  .md\:flex { display: flex; }
  .md\:inline-flex { display: inline-flex; }
  .md\:hidden { display: none; }
  .md\:flex-row { flex-direction: row; }
  
  .md\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
  
  .md\:w-96 { width: 24rem; }
  .md\:w-\[calc\(33\.333\%-17px\)\] { width: calc(33.333% - 17px); }
  .md\:w-\[410px\] { width: 410px; }
  .md\:h-96 { height: 24rem; }
  
  .md\:p-10 { padding: 2.5rem; }
  .md\:p-12 { padding: 3rem; }
  .md\:pt-11 { padding-top: 2.75rem; }
  .md\:pt-16 { padding-top: 4rem; }
  .md\:pt-24 { padding-top: 6rem; }
  .md\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
  .md\:px-8 { padding-left: 2rem; padding-right: 2rem; }
  .md\:py-20 { padding-top: 5rem; padding-bottom: 5rem; }
  .md\:py-24 { padding-top: 6rem; padding-bottom: 6rem; }
  .md\:py-28 { padding-top: 7rem; padding-bottom: 7rem; }
  .md\:pt-\[200px\] { padding-top: 160px; }
  .md\:pb-\[76px\] { padding-bottom: 76px; }
  .md\:pb-\[180px\] { padding-bottom: 180px; }
  .md\:mb-16 { margin-bottom: 4rem; }
  .md\:mb-20 { margin-bottom: 5rem; }
  .md\:mt-20 { margin-top: 5rem; }
  
  .md\:gap-16 { gap: 4rem; }
  
  .md\:text-lg { font-size: 1.125rem; line-height: 1.75rem; }
  .md\:text-xl { font-size: 1.25rem; line-height: 1.75rem; }
  .md\:text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
  .md\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
  .md\:text-5xl { font-size: 3rem; line-height: 1; }
  .md\:text-base { font-size: 1rem; line-height: 1.5rem; }
  .md\:leading-tight { line-height: 1.25; }
  .md\:leading-relaxed { line-height: 1.625; }
  
  .md\:items-center { align-items: center; }
  .md\:min-h-\[85vh\] { min-height: 85vh; }
}

/* --- Responsive: lg (1024px) --- */
@media (min-width: 1024px) {
  .lg\:order-1 { order: 1; }
  .lg\:order-2 { order: 2; }
  
  .lg\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
  
.lg\:items-stretch { align-items: stretch; }
  .lg\:items-end { align-items: flex-end; }
  .lg\:gap-8 { gap: 2rem; }
  .lg\:gap-20 { gap: 5rem; }
  
  .lg\:w-\[525px\] { width: 525px; }

  .lg\:p-14 { padding: 3.5rem; }
  .lg\:px-8 { padding-left: 2rem; padding-right: 2rem; }
  .lg\:py-24 { padding-top: 6rem; padding-bottom: 6rem; }
  .lg\:py-32 { padding-top: 8rem; padding-bottom: 8rem; }
  .lg\:py-36 { padding-top: 9rem; padding-bottom: 9rem; }
  
  .lg\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
  .lg\:text-5xl { font-size: 3rem; line-height: 1; }
  .lg\:text-6xl { font-size: 3.75rem; line-height: 1; }
  .lg\:text-lg { font-size: 1.125rem; line-height: 1.75rem; }
}

/* --- Custom Animations --- */
@keyframes pulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.5; }
}
.animate-pulse-custom { animation: pulse 3s cubic-bezier(0.4, 0, 0.6, 1) infinite; }

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.animate-spin { animation: spin 1s linear infinite; }

@keyframes chevron-bounce {
  0%, 100% { opacity: 0.3; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(4px); }
}
.chevron-1 { animation: chevron-bounce 2s infinite; }
.chevron-2 { animation: chevron-bounce 2s 0.2s infinite; }

@keyframes subtle-pulse-ring {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 0; transform: scale(1.08); }
}
.cta-pulse { position: relative; }
.cta-pulse::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 0.375rem;
  border: 1.5px solid rgba(255, 216, 20, 0.4);
  animation: subtle-pulse-ring 3s ease-in-out infinite;
  pointer-events: none;
}

/* --- Custom Components --- */

/* Logo hover effect */
.logo-container { position: relative; display: inline-block; }
.logo-default, .logo-hover { transition: opacity 0.3s ease; display: block; height: 2.5rem; }
.logo-hover { position: absolute; top: 0; left: 0; opacity: 0; }
.logo-container:hover .logo-default { opacity: 0; }
.logo-container:hover .logo-hover { opacity: 1; }

/* Animated underline */
.animate-underline { position: relative; }
.animate-underline::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--yellow-primary);
  transition: width 0.3s ease;
}
.animate-underline:hover::after { width: 100%; }

/* Hero links */
.hero-link {
  color: var(--yellow-primary);
  text-decoration: none;
  transition: text-decoration 0.2s ease;
}
.hero-link:hover {
  text-decoration: underline;
  text-decoration-color: var(--yellow-primary);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

/* Scroll chevrons */
.scroll-chevrons { transition: opacity 0.3s ease; }
.scroll-chevrons:hover { opacity: 0.8; }

/* Skip link */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--yellow-primary);
  color: var(--black);
  padding: 8px 16px;
  text-decoration: none;
  font-weight: 600;
  z-index: 100;
  border-radius: 0 0 4px 4px;
  transition: top 0.3s ease;
}
.skip-link:focus { top: 0; }

/* Gradient button animated */
.gradient-btn-animated {
  background: linear-gradient(135deg, #410A69 0%, #5a1a8a 25%, #6b2da0 50%, #5a1a8a 75%, #410A69 100%);
  background-size: 200% 200%;
  animation: gradientShift 3s ease infinite;
  transition: box-shadow 0.2s ease;
}
.gradient-btn-animated:hover {
  box-shadow: 0 15px 35px -5px rgba(139, 92, 246, 0.7);
}
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Scroll margin for sticky header */
section[id], div[id] { scroll-margin-top: 80px; }
.scroll-mt-32 { scroll-margin-top: 8rem; }

/* Container */
.container { width: 100%; margin: 0 auto; padding: 0 1rem; }
@media (min-width: 640px) { .container { max-width: 640px; } }
@media (min-width: 768px) { .container { max-width: 768px; } }
@media (min-width: 1024px) { .container { max-width: 1024px; } }
@media (min-width: 1280px) { .container { max-width: 1280px; } }

/* Placeholder */
.placeholder-gray-500::placeholder { color: var(--gray-500); opacity: 1; }

/* Nedim column responsive */
.nedim-column {
  display: none;
}

@media (min-width: 1024px) {
  .nedim-column {
    display: flex;
    position: relative;
    bottom: -80px;
  }
}

/* Ensure newsletter section allows overflow */
.newsletter-section,
.newsletter-section > div,
.newsletter-section .grid {
  overflow: visible !important;
}

/* Brand colors as classes */
.bg-purple-brand { background-color: #410A69; }
.text-purple-brand { color: #410A69; }
.border-purple-brand { border-color: #410A69; }
.text-blue-600 { color: #2563eb; }
.text-blue-800 { color: #1e40af; }
.bg-yellow-brand { background-color: #FFD814; }
.bg-yellow-brand:hover { background-color: #FFDD00; }
.bg-dark { background-color: #0a0a0a; }

/* Specific component styles */
.faq-card-padding { padding-top: 24px !important; padding-bottom: 24px !important; }
.faq-content-padding { padding-top: 20px !important; }
.mt-50 { margin-top: 50px; }
.text-red-500 { color: #ef4444; }
.animation-delay-1s { animation-delay: 1s; }
.border-white-30 { border-color: rgba(255, 255, 255, 0.3); }

/* Hero background logo */
.bg-hero-logo {
  background-image: url('/attached_assets/SEOLAXY-HP-white-logo-background-2-0.svg');
  background-size: 55%;
  filter: brightness(0) invert(1);
}

/* Hero section padding */
.hero-padding { padding-top: 100px; padding-bottom: 80px; }

/* Text size variants */
.text-lg-relaxed { font-size: 1.1rem; line-height: 1.4; }
.text-yellow-brand { color: #FFD814; }

/* Brand gradient backgrounds */
.bg-brand-gradient {
  background: linear-gradient(135deg, #410A69 0%, #5a1a8a 50%, #6b2da0 100%);
}
.bg-brand-gradient-light {
  background: linear-gradient(135deg, #faf5ff 0%, #f5f3ff 30%, #ede9fe 70%, #e9d5ff 100%);
}

.bg-brand-gradient-simple {
  background: linear-gradient(135deg, #410A69 0%, #5a1a8a 100%);
}

/* Newsletter hero section */
.newsletter-hero-bg {
  background-color: #410A69;
  padding-top: 30px;
  padding-bottom: 30px;
}

@media (min-width: 768px) {
  .newsletter-hero-bg {
    padding-top: 30px;
    padding-bottom: 80px;
  }
}

.newsletter-section {
  /* Base styles for newsletter section */
}


/* ============================================
   Cookiebot Banner - Complete Styling
   ============================================ */

/* Main Dialog Container */
#CybotCookiebotDialog {
  position: fixed !important;
  bottom: 0 !important;
  top: auto !important;
  left: 0 !important;
  right: 0 !important;
  transform: none !important;
  width: 100% !important;
  max-width: 100% !important;
  border-radius: 0 !important;
  border-top-left-radius: 16px !important;
  border-top-right-radius: 16px !important;
  box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.2) !important;
  background: #ffffff !important;
  padding: 24px 32px !important;
  z-index: 99999 !important;
}

/* Dialog Body */
#CybotCookiebotDialogBody {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 !important;
}

#CybotCookiebotDialogBodyContent {
  padding: 0 !important;
}

/* Title */
#CybotCookiebotDialogBodyContentTitle {
  font-size: 18px !important;
  font-weight: 700 !important;
  color: #1f2937 !important;
  margin-bottom: 12px !important;
}

/* Text Content */
#CybotCookiebotDialogBodyContentText {
  font-size: 14px !important;
  line-height: 1.6 !important;
  color: #4b5563 !important;
}

#CybotCookiebotDialogBodyContentText a {
  color: #410A69 !important;
  text-decoration: underline !important;
}

/* Buttons Container */
#CybotCookiebotDialogBodyButtons {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 12px !important;
  margin-top: 16px !important;
}

/* All Buttons Base Style */
#CybotCookiebotDialogBodyButtons a,
#CybotCookiebotDialogBodyButtons button {
  padding: 12px 24px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  border-radius: 8px !important;
  transition: all 0.2s ease !important;
  border: none !important;
  cursor: pointer !important;
}

/* Accept Button (Primary) */
#CybotCookiebotDialogBodyLevelButtonLevelOptinAllowAll,
#CybotCookiebotDialogBodyButtonAccept {
  background: #410A69 !important;
  color: #ffffff !important;
}

#CybotCookiebotDialogBodyLevelButtonLevelOptinAllowAll:hover,
#CybotCookiebotDialogBodyButtonAccept:hover {
  background: #5a1a8a !important;
}

/* Decline Button */
#CybotCookiebotDialogBodyButtonDecline {
  background: #f3f4f6 !important;
  color: #374151 !important;
}

#CybotCookiebotDialogBodyButtonDecline:hover {
  background: #e5e7eb !important;
}

/* Customize/Details Button */
#CybotCookiebotDialogBodyLevelButtonCustomize,
#CybotCookiebotDialogBodyLevelButtonLevelOptinDeclineAll {
  background: transparent !important;
  color: #410A69 !important;
  border: 2px solid #410A69 !important;
}

#CybotCookiebotDialogBodyLevelButtonCustomize:hover,
#CybotCookiebotDialogBodyLevelButtonLevelOptinDeclineAll:hover {
  background: #f3e8ff !important;
}

/* Powered by Cookiebot link */
#CybotCookiebotDialogPoweredbyLink {
  font-size: 11px !important;
  color: #9ca3af !important;
  margin-top: 12px !important;
}

/* ============================================
   Cookiebot - Mobile Styles (max-width: 768px)
   ============================================ */
@media (max-width: 768px) {
  #CybotCookiebotDialog {
    padding: 16px 20px !important;
    border-top-left-radius: 12px !important;
    border-top-right-radius: 12px !important;
  }

  #CybotCookiebotDialogBodyContentTitle {
    font-size: 15px !important;
    margin-bottom: 8px !important;
  }

  #CybotCookiebotDialogBodyContentText {
    font-size: 12px !important;
    line-height: 1.5 !important;
  }

  #CybotCookiebotDialogBodyButtons {
    gap: 8px !important;
    margin-top: 12px !important;
    flex-direction: column !important;
  }

  #CybotCookiebotDialogBodyButtons a,
  #CybotCookiebotDialogBodyButtons button {
    padding: 10px 20px !important;
    font-size: 13px !important;
    width: 100% !important;
    text-align: center !important;
  }

  #CybotCookiebotDialogPoweredbyLink {
    font-size: 10px !important;
    text-align: center !important;
    display: block !important;
  }
}

/* ============================================
   Cookiebot - Small Mobile (max-width: 480px)
   ============================================ */
@media (max-width: 480px) {
  #CybotCookiebotDialog {
    padding: 12px 16px !important;
  }

  #CybotCookiebotDialogBodyContentTitle {
    font-size: 14px !important;
  }

  #CybotCookiebotDialogBodyContentText {
    font-size: 11px !important;
  }

  #CybotCookiebotDialogBodyButtons a,
  #CybotCookiebotDialogBodyButtons button {
    padding: 10px 16px !important;
    font-size: 12px !important;
  }
}

/* ============================================
   Component Classes (replacing inline styles)
   ============================================ */

/* Video/Content Cards */
.video-card {
  text-decoration: none;
  display: block;
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}
.video-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
}

.video-card-image-wrap {
  position: relative;
  overflow: hidden;
}

.video-card-image {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.video-card:hover .video-card-image {
  transform: scale(1.05);
}

.video-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.video-card:hover .video-card-overlay {
  opacity: 1;
}

.video-card-overlay-dark {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.video-card:hover .video-card-overlay-dark {
  opacity: 1;
}

.video-play-button {
  width: 50px;
  height: 50px;
  background: rgba(255,255,255,0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-card-content {
  padding: 16px 18px 20px;
}

.video-card-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #1a1a2e;
  line-height: 1.4;
  margin: 0;
}

.video-card-arrow {
  width: 20px;
  height: 20px;
  margin-left: 3px;
}

/* Icon sizes */
.icon-22 { width: 22px; height: 22px; }
.icon-84 { width: 84px; height: 84px; }

/* Spacing utilities for specific values */
.mt-80 { margin-top: 80px; }
.mt-60 { margin-top: 60px; }
.mb-60 { margin-bottom: 60px; }
.mb-1_2em { margin-bottom: 1.2em; }
.mb-0 { margin-bottom: 0; }
.mt-3rem { margin-top: 3rem; }
.mb-3rem { margin-bottom: 3rem; }

/* Section padding variants */
.faq-card-padding-lg { padding-top: 28px !important; padding-bottom: 28px !important; }

/* Max widths */
.max-w-800 { max-width: 800px; }
.max-w-900 { max-width: 900px; }
.max-w-1220 { max-width: 1220px; }
.max-w-1268 { max-width: 1268px; }

/* Content container */
.content-container {
  max-width: 1268px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Width utilities */
.w-75 { width: 75%; }

/* List styles */
.list-disc { list-style-type: disc; }

/* Quote/highlight block */
.quote-block {
  background-color: #f5f3ff;
  border-left: 4px solid #410a69;
  margin-top: 3rem;
  margin-bottom: 3rem;
  padding: 1.5rem;
}
.quote-block.italic { font-style: italic; }

/* Quote styling for inline */
.quote-styled {
  margin-top: 3rem;
  margin-bottom: 3rem;
  font-style: italic;
}

/* Section header typography */
.section-title-large {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  color: #1a1a2e;
}

.section-subtitle {
  font-size: 1.125rem;
  color: #6b7280;
  text-align: center;
  margin-bottom: 60px;
  max-width: 900px;
}

/* Highlight/badge text */
.highlight-badge {
  background-color: rgba(255, 216, 20, 0.2);
  color: #FFD814;
}

/* Gradient variants */
.bg-brand-gradient-dark {
  background: linear-gradient(135deg, #2d0a4e 0%, #410A69 50%, #5a1a8a 100%);
}

.bg-brand-gradient-beige {
  background: linear-gradient(135deg, #f8f7f4 0%, #f5f4f1 50%, #f2f1ee 100%);
}

/* Border/separator utilities */
.border-b-separator { border-bottom: 1px solid #e5e7eb; margin-bottom: 10px; padding-bottom: 10px; }
.border-t-separator { border-top: 1px solid #e5e7eb; margin-top: 10px; }

/* Video embed aspect ratio */
.aspect-video-embed { padding-bottom: 56.25%; }

/* Button/card variants */
.btn-outline-purple { background-color: white; border-color: #410a69; }

/* Hero section padding variant */
.hero-section-padding { background-color: #410A69; padding-top: 80px; padding-bottom: 80px; }

/* Standard section padding - 30px mobile, 80px desktop */
.section-padding-80 {
  padding-top: 30px !important;
  padding-bottom: 30px !important;
}

@media (min-width: 768px) {
  .section-padding-80 {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
  }
}

/* Hero section: mobile 94px top (64px header + 30px visible), 30px bottom */
/* Desktop: 144px top (64px header + 80px visible), 80px bottom */
.hero-section {
  padding-top: 94px !important;
  padding-bottom: 30px !important;
}

@media (min-width: 768px) {
  .hero-section {
    padding-top: 144px !important;
    padding-bottom: 80px !important;
  }
}

/* ============================================
   SEMANTIC COMPONENT CLASSES
   ============================================ */

/* --- Site Header --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  background-color: #410A69;
}

.site-header-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .site-header-inner {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .site-header-inner {
    padding: 0 2rem;
  }
}

.site-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

.site-logo-wrap {
  flex-shrink: 0;
  margin-top: 4px;
}

/* --- Main Navigation --- */
.main-nav {
  display: none;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .main-nav {
    display: flex;
  }
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  white-space: nowrap;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  transition: color 0.15s ease;
  padding-bottom: 0.25rem;
}

.nav-link:hover {
  color: #ffffff;
}

.nav-icon {
  width: 1rem;
  height: 1rem;
  margin-right: 0.5rem;
}

.nav-chevron {
  width: 1rem;
  height: 1rem;
  transition: transform 0.3s ease;
}

/* --- Dropdown Menu --- */
.dropdown-panel {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 0.5rem;
  width: 16rem;
  background: #ffffff;
  border-radius: 0.75rem;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
  border: 1px solid #f3f4f6;
  overflow: hidden;
  z-index: 50;
}

.dropdown-panel-inner {
  padding: 0.5rem 0;
}

.dropdown-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  color: #374151;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.dropdown-link:hover {
  background-color: #faf5ff;
  color: #7c3aed;
}

.dropdown-link-icon {
  width: 1rem;
  height: 1rem;
  color: #9333ea;
}

.dropdown-link-text {
  font-weight: 500;
}

/* Dropdown item (nav dropdown links) */
.dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  color: #374151;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.dropdown-item:hover {
  background-color: #faf5ff;
  color: #7c3aed;
}

/* --- Header Actions --- */
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header-btn-login {
  display: none;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 0.5rem;
  transition: background-color 0.15s ease, border-color 0.15s ease;
}

@media (min-width: 768px) {
  .header-btn-login {
    display: inline-flex;
  }
}

.header-btn-login:hover {
  background-color: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.5);
}

.header-btn-cta {
  display: none;
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #000000;
  background-color: #FFD814;
  border-radius: 0.5rem;
  transition: background-color 0.15s ease, transform 0.15s ease;
}

@media (min-width: 768px) {
  .header-btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
  }
}

.header-btn-cta:hover {
  background-color: #FFDD00;
  transform: translateY(-1px);
}

/* --- Mobile Menu Button --- */
.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  color: #ffffff;
  background: transparent;
  border: none;
  cursor: pointer;
}

@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }
}

.mobile-menu-icon {
  width: 1.5rem;
  height: 1.5rem;
}

/* --- Mobile Menu Panel --- */
.mobile-menu {
  display: none;
  position: fixed;
  top: 4rem;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #410A69;
  z-index: 40;
  overflow-y: auto;
  padding: 1rem;
}

.mobile-menu.is-open {
  display: block;
}

@media (min-width: 768px) {
  .mobile-menu {
    display: none !important;
  }
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  border-radius: 0.5rem;
  transition: background-color 0.15s ease;
}

.mobile-nav-link:hover {
  background-color: rgba(255,255,255,0.1);
}

.mobile-accordion-panel {
  padding-left: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mobile-accordion-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.8);
  border-radius: 0.375rem;
  transition: background-color 0.15s ease;
}

.mobile-accordion-link:hover {
  background-color: rgba(255,255,255,0.1);
}

.mobile-accordion-chevron {
  width: 1rem;
  height: 1rem;
  transition: transform 0.3s ease;
}

/* Mobile accordion using details/summary */
details.mobile-accordion > summary {
  list-style: none;
}

details.mobile-accordion > summary::-webkit-details-marker {
  display: none;
}

details.mobile-accordion[open] .mobile-accordion-chevron {
  transform: rotate(180deg);
}

.mobile-menu-cta {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

/* --- Hero Section --- */
.hero-bg {
  position: relative;
  overflow: hidden;
  background-color: #410A69;
}

.hero-decorative {
  position: absolute;
  inset: 0;
  opacity: 0.3;
}

.hero-blob {
  position: absolute;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  filter: blur(64px);
  animation: pulse 3s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.hero-blob-yellow {
  top: 25%;
  left: 25%;
  background-color: #FFD814;
}

.hero-blob-purple {
  bottom: 25%;
  right: 25%;
  background-color: #a855f7;
  animation-delay: 1s;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 80rem;
  margin: 0 auto;
  padding: 144px 1rem 80px;
  text-align: center;
}

@media (min-width: 768px) {
  .hero-content {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .hero-content {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.hero-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 2.25rem;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3rem;
    line-height: 1.25;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 3.75rem;
  }
}

.hero-subtitle {
  font-size: 1.125rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.8);
  max-width: 48rem;
  margin: 0 auto 2rem;
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.625;
  }
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .hero-cta-group {
    flex-direction: row;
    justify-content: center;
  }
}

/* --- Buttons --- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  color: #000000;
  background-color: #FFD814;
  border-radius: 0.5rem;
  transition: background-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}

.btn-primary:hover {
  background-color: #FFDD00;
  transform: translateY(-2px);
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
}

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

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  background-color: transparent;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 0.5rem;
  transition: background-color 0.15s ease, border-color 0.15s ease;
}

.btn-secondary:hover {
  background-color: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.5);
}

.btn-sm {
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
}

.btn-icon {
  width: 1.25rem;
  height: 1.25rem;
}

/* --- Section Container --- */
.section-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .section-container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .section-container {
    padding: 0 2rem;
  }
}

/* --- Section Title --- */
.section-title-wrap {
  text-align: center;
  margin-bottom: 5rem;
}

.section-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.875rem;
  color: #111827;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.25rem;
  }
}

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

.section-title-light {
  color: #ffffff;
}

/* --- Feature Cards --- */
.feature-card {
  margin-bottom: 4rem;
}

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

.feature-card-inner {
  padding: 1.5rem;
  border-radius: 0.75rem;
  border: 1px solid #e5e7eb;
  background-color: #ffffff;
  box-shadow: 0 1px 2px 0 rgba(0,0,0,0.05);
}

@media (min-width: 768px) {
  .feature-card-inner {
    padding: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .feature-card-inner {
    padding: 3.5rem;
  }
}

.feature-card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .feature-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.feature-card-badge {
  display: inline-block;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #000000;
  background-color: #FFD814;
  margin-bottom: 1.5rem;
}

.feature-card-label {
  font-size: 1.125rem;
  font-weight: 600;
  color: #4b5563;
  margin-bottom: 1rem;
  line-height: 1.625;
}

.feature-card-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  color: #111827;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .feature-card-title {
    font-size: 1.875rem;
  }
}

.feature-card-text {
  font-size: 1.125rem;
  line-height: 1.625;
  color: #374151;
}

.feature-card-text + .feature-card-text {
  margin-top: 1rem;
}

.feature-card-image-wrap {
  position: relative;
  padding: 1rem;
}

.feature-card-image {
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
  border: 4px solid #410A69;
}

.feature-card-image img {
  width: 100%;
  height: auto;
  display: block;
}

.feature-card-link {
  display: inline-flex;
  align-items: center;
  font-size: 1.125rem;
  font-weight: 600;
  color: #410A69;
  margin-top: 3rem;
}

.feature-card-link:hover {
  text-decoration: underline;
}

.feature-card-link svg {
  width: 1.25rem;
  height: 1.25rem;
  margin-left: 0.5rem;
}

/* --- Order Classes --- */
.order-first {
  order: 1;
}

.order-last {
  order: 2;
}

@media (min-width: 1024px) {
  .lg-order-first {
    order: 1;
  }
  
  .lg-order-last {
    order: 2;
  }
}

/* --- Testimonial Section --- */
.testimonial-card {
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(4px);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}

.testimonial-text {
  font-size: 1rem;
  font-style: italic;
  color: #374151;
  margin-bottom: 1rem;
  line-height: 1.625;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-name {
  font-weight: 600;
  color: #111827;
}

.testimonial-role {
  font-size: 0.875rem;
  color: #6b7280;
}

.testimonial-stars {
  font-size: 0.875rem;
  color: #facc15;
}

/* --- CTA Section --- */
.cta-buttons {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 50px;
}

@media (min-width: 640px) {
  .cta-buttons {
    gap: 1rem;
  }
}

/* --- Footer --- */
.site-footer {
  background-color: #0a0a0a;
  padding: 80px 0;
}

.footer-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .footer-container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .footer-container {
    padding: 0 2rem;
  }
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.footer-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

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

.footer-link {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.15s ease;
}

.footer-link:hover {
  color: #ffffff;
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}

.footer-copyright {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
}

/* --- Nedim Image --- */
.nedim-image-wrap {
  position: relative;
  width: 380px;
  height: 380px;
}

.nedim-image-glow {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(to bottom right, #9333ea, #9333ea, #312e81);
  opacity: 0.2;
  filter: blur(40px);
}

.nedim-image {
  position: relative;
  width: 380px;
  height: 380px;
  object-fit: cover;
  object-position: center 20%;
  border-radius: 50%;
  border: 4px solid #e9d5ff;
}

/* Mobile: smaller Nedim image with adjusted spacing */
@media (max-width: 767px) {
  .nedim-image-wrap {
    width: 260px;
    height: 260px;
    margin-top: 1rem;
    margin-bottom: 0.75rem;
  }
  .newsletter-desc-text {
    font-size: 0.9rem;
  }
  .nedim-image {
    width: 260px;
    height: 260px;
  }
}

/* --- Utility: Text Colors --- */
.text-muted { color: #6b7280; }
.text-dark { color: #111827; }
.text-light { color: rgba(255,255,255,0.8); }

/* --- Utility: Spacing --- */
.mb-sm { margin-bottom: 0.5rem; }
.mb-md { margin-bottom: 1rem; }
.mb-lg { margin-bottom: 1.5rem; }
.mb-xl { margin-bottom: 2rem; }
.mt-sm { margin-top: 0.5rem; }
.mt-md { margin-top: 1rem; }
.mt-lg { margin-top: 1.5rem; }
.mt-xl { margin-top: 2rem; }

/* --- Utility: Display --- */
.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }
.d-grid { display: grid; }

@media (min-width: 768px) {
  .md-d-none { display: none; }
  .md-d-block { display: block; }
  .md-d-flex { display: flex; }
}

@media (min-width: 1024px) {
  .lg-d-none { display: none; }
  .lg-d-block { display: block; }
  .lg-d-flex { display: flex; }
}

/* Max width utilities */
.max-w-700 { max-width: 700px; }
.max-w-900 { max-width: 900px; }
.max-w-800-center { max-width: 800px; margin: 0 auto; }
.max-w-690 { max-width: 690px; width: 100%; }
.max-w-1100 { max-width: 1100px; }

/* Width utilities */
.w-80 { width: 80%; }
.w-280 { width: 280px; height: 280px; }

/* Quote block variant */
.quote-block-sm { 
  background-color: #f5f3ff; 
  border-left: 4px solid #410a69; 
  margin-top: 2rem; 
  margin-bottom: 2rem; 
  padding: 1.5rem; 
}

/* Grid layout for about sections */
.about-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }

/* Order utilities */
.order-1 { order: 1; }
.order-2 { order: 2; }

/* Additional margins */
.mt-100 { margin-top: 100px; }

/* ============================================
   Pricing Section (High Converting Design)
   ============================================ */

.pricing-section {
  position: relative;
  padding: 4rem 1rem;
  background-color: #410A69;
  overflow: hidden;
}

/* Payment trust badges */
.pricing-payment-trust {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.payment-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7);
}

@media (min-width: 768px) {
  .pricing-section {
    padding: 5rem 1.5rem;
  }
}

@media (min-width: 900px) {
  .pricing-section {
    padding: 6rem 2rem;
  }
}

/* Radial highlights */
.pricing-section::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -10%;
  width: 50%;
  height: 60%;
  background: radial-gradient(ellipse, rgba(168, 85, 247, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

.pricing-section::after {
  content: '';
  position: absolute;
  bottom: -20%;
  right: -10%;
  width: 50%;
  height: 60%;
  background: radial-gradient(ellipse, rgba(249, 115, 22, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.pricing-container {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  z-index: 1;
}

/* Header */
.pricing-header {
  text-align: center;
  margin-bottom: 3rem;
}

.pricing-headline {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.75rem;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 1.25rem;
}

@media (min-width: 640px) {
  .pricing-headline {
    font-size: 2.25rem;
  }
}

@media (min-width: 900px) {
  .pricing-headline {
    font-size: 2.75rem;
  }
}

.pricing-subheadline {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  max-width: 720px;
  margin: 0 auto 2rem;
}

@media (min-width: 640px) {
  .pricing-subheadline {
    font-size: 1.125rem;
  }
}

/* Trust bar */
.pricing-trust-bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
}

@media (min-width: 640px) {
  .pricing-trust-bar {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
  }
}

.pricing-trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 9999px;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.9);
  white-space: nowrap;
}

@media (min-width: 640px) {
  .pricing-trust-pill {
    font-size: 0.875rem;
  }
}

.pricing-trust-pill svg {
  width: 1rem;
  height: 1rem;
  color: #FFD814;
  flex-shrink: 0;
}

/* Grid layout */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 900px) {
  .pricing-grid {
    grid-template-columns: 420px 1fr;
    gap: 2.5rem;
    align-items: start;
  }
}

/* Pricing card */
.pricing-card {
  background: #ffffff;
  border-radius: 1.25rem;
  padding: 1.75rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.35);
}

@media (min-width: 640px) {
  .pricing-card {
    padding: 2rem;
  }
}

@media (min-width: 900px) {
  .pricing-card {
    padding: 2.25rem;
  }
}

.pricing-card-header {
  text-align: center;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid #e5e7eb;
  margin-bottom: 1.25rem;
}

.pricing-card-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.375rem;
  color: #1a1a2e;
  margin-bottom: 0.75rem;
}

.pricing-card-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
}

.pricing-card-amount {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 2.75rem;
  color: #410A69;
}

.pricing-card-period {
  font-size: 1rem;
  color: #6b7280;
}

.pricing-card-gems {
  font-size: 0.875rem;
  color: #6b7280;
  margin-top: 0.625rem;
  line-height: 1.5;
}

.pricing-card-gems strong {
  color: #410A69;
  font-weight: 600;
}

/* Micro value line */
.pricing-micro-value {
  text-align: center;
  font-size: 0.875rem;
  font-weight: 500;
  color: #047857;
  background: #ecfdf5;
  padding: 0.625rem 1rem;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}

/* CTAs */
.pricing-cta-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 1rem 1.5rem;
  background: linear-gradient(135deg, #410A69 0%, #5a1a8a 100%);
  color: #ffffff;
  font-weight: 600;
  font-size: 1.0625rem;
  text-align: center;
  text-decoration: none;
  border: none;
  border-radius: 0.625rem;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  box-shadow: 0 4px 14px rgba(65, 10, 105, 0.35);
}

.pricing-cta-primary svg {
  flex-shrink: 0;
}

.pricing-cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(65, 10, 105, 0.45);
}

.pricing-cta-primary:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(65, 10, 105, 0.3), 0 4px 14px rgba(65, 10, 105, 0.35);
}

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

.pricing-cta-secondary {
  display: block;
  width: 100%;
  padding: 0.75rem 1.5rem;
  background: transparent;
  color: #410A69;
  font-weight: 600;
  font-size: 0.9375rem;
  text-align: center;
  text-decoration: none;
  border: 2px solid #d1d5db;
  border-radius: 0.625rem;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
  margin-top: 0.75rem;
}

.pricing-cta-secondary:hover {
  background: #f9fafb;
  border-color: #410A69;
}

.pricing-cta-secondary:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(65, 10, 105, 0.15);
}

.pricing-reassurance {
  text-align: center;
  font-size: 0.8125rem;
  color: #6b7280;
  margin-top: 0.875rem;
}

/* Included lists */
.pricing-included {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e5e7eb;
}

.pricing-included-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #410A69;
  margin-bottom: 0.625rem;
}

.pricing-included-title + .pricing-included-list + .pricing-included-title {
  margin-top: 1.25rem;
}

.pricing-included-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-included-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  padding: 0.375rem 0;
  font-size: 0.875rem;
  color: #374151;
  line-height: 1.4;
}

.pricing-included-list li svg {
  width: 1.125rem;
  height: 1.125rem;
  flex-shrink: 0;
  margin-top: 0.0625rem;
}

.pricing-check-icon {
  color: #10b981;
}

.pricing-gem-icon {
  color: #a855f7;
}

/* Included note */
.pricing-included-note {
  font-size: 0.8125rem;
  color: #6b7280;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #f3f4f6;
  line-height: 1.5;
  text-align: center;
}

/* Value panel */
.pricing-value-panel {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.25rem;
  padding: 1.75rem;
}

@media (min-width: 640px) {
  .pricing-value-panel {
    padding: 2rem;
  }
}

@media (min-width: 900px) {
  .pricing-value-panel {
    padding: 2.25rem;
  }
}

.pricing-value-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.375rem;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.pricing-value-intro {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
}

.pricing-value-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem 0;
}

.pricing-value-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.5rem 0;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
}

.pricing-value-list li svg {
  width: 1.125rem;
  height: 1.125rem;
  color: #FFD814;
  flex-shrink: 0;
  margin-top: 0.1875rem;
}

/* Proof block */
.pricing-proof {
  background: rgba(255, 255, 255, 0.06);
  border-left: 3px solid #FFD814;
  border-radius: 0 0.5rem 0.5rem 0;
  padding: 1.25rem 1.25rem;
  margin-bottom: 1.5rem;
}

.pricing-proof-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.pricing-proof-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-proof-list li {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  padding: 0.375rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.pricing-proof-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: #FFD814;
  border-radius: 50%;
}

/* Bottom line */
.pricing-bottom-line {
  text-align: center;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.85);
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Value column wrapper */
.pricing-value-column {
  display: flex;
  flex-direction: column;
}

/* Quote */
.pricing-quote {
  text-align: center;
  font-size: 1rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 1.5rem;
}
