@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800;900&display=swap');

/* --- Brand Design System (High Legibility Refined) --- */
:root {
  --bg-space: #1E293B;          /* Balanced Medium Slate Blue-Gray (Soft on the eyes) */
  --bg-indigo: #0F172A;         /* Deeper Slate section highlight */
  --bg-card: #334155;           /* Solid Lighter Slate Card panel */
  --bg-card-hover: #475569;
  --accent-violet: #8B5CF6;     /* Royal Violet */
  --accent-purple-light: #C084FC; /* Soft Lavender highlight */
  --accent-gold: #F59E0B;       /* Bronze Gold highlight */
  --accent-amber: #D97706;      /* Amber highlight */
  --accent-emerald: #10B981;    /* Emerald status green */
  --text-primary: #FFFFFF;      /* Crisp white text */
  --text-secondary: #E2E8F0;    /* Light Slate Gray text */
  --text-muted: #94A3B8;        /* Muted Slate Gray */
  --border-color: rgba(255, 255, 255, 0.08); /* Clean thin borders */
  --border-hover: rgba(192, 132, 252, 0.25);  /* Subtle violet border highlight */
  
  --gradient-aurora: linear-gradient(135deg, var(--accent-violet) 0%, var(--accent-purple-light) 100%);
  --gradient-cyan-teal: linear-gradient(90deg, var(--accent-gold) 0%, var(--accent-amber) 100%);
  --gradient-dark: linear-gradient(180deg, var(--bg-space) 0%, #0F172A 100%);
  
  --font-sans: 'Inter', sans-serif;
  --font-title: 'Outfit', sans-serif;
  
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.15);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.2);
  --shadow-glow: 0 0 20px rgba(139, 92, 246, 0.05);
  --shadow-glow-violet: 0 0 20px rgba(139, 92, 246, 0.15);
  
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  
  --header-height: 80px;
}

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

html {
  scroll-behavior: smooth;
  font-family: var(--font-sans);
  background-color: var(--bg-space);
  color: var(--text-primary);
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  position: relative;
  background-image: var(--gradient-dark);
}

::selection {
  background: var(--accent-violet);
  color: #FFFFFF;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-space);
}
::-webkit-scrollbar-thumb {
  background: var(--bg-indigo);
  border-radius: 4px;
  border: 2px solid var(--bg-space);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-violet);
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

p {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

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

/* --- Utility Classes --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

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

.text-violet {
  color: var(--accent-purple-light); /* Soft lavender for optimal contrast on slate/charcoal backgrounds */
}

.section-padding {
  padding: 120px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.section-header p {
  font-size: 1.125rem;
}

/* --- Header & Navigation --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: var(--transition-normal);
  border-bottom: 1px solid transparent;
}

.header.scrolled {
  background-color: rgba(30, 41, 59, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  height: 70px;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  height: 48px;
  width: auto;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.4));
  transition: var(--transition-normal);
}

.header.scrolled .logo-img {
  height: 40px;
}

.logo-text {
  font-family: var(--font-title);
  font-weight: 900;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  color: var(--text-primary);
  display: flex;
  flex-direction: column;
}

.logo-subtitle {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--text-muted);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding: 8px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-violet);
  transition: var(--transition-fast);
  border-radius: 2px;
}

.nav-link:hover, .nav-link.active {
  color: var(--text-primary);
}

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

.nav-cta {
  background: var(--accent-violet);
  color: var(--text-primary);
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.9rem;
}

.nav-cta:hover {
  transform: translateY(-2px);
  background-color: var(--accent-purple-light);
  box-shadow: var(--shadow-glow-violet);
}

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  margin: 5px 0;
  transition: var(--transition-fast);
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: var(--header-height);
  overflow: hidden;
}

/* Subtle Ambient Background Light (Restrained) */
.aurora-bg {
  position: absolute;
  top: -20%;
  left: -20%;
  width: 140%;
  height: 140%;
  z-index: 0;
  background: radial-gradient(circle at 50% 50%, rgba(124, 58, 237, 0.03) 0%, transparent 60%);
  filter: blur(80px);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--accent-gold);
  margin-bottom: 24px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--accent-gold);
  box-shadow: 0 0 6px var(--accent-gold);
}

.hero-content h1 {
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.hero-content h1 span.text-gold {
  color: var(--accent-gold);
}

.hero-content p.lead {
  font-size: 1.25rem;
  line-height: 1.6;
  max-width: 650px;
  margin: 0 auto 40px auto;
  color: var(--text-secondary);
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition-fast);
  border: none;
  outline: none;
}

.btn-primary {
  background: var(--accent-violet);
  color: var(--text-primary);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background-color: var(--accent-purple-light);
  box-shadow: var(--shadow-glow-violet);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--text-secondary);
  transform: translateY(-2px);
}

/* Background grid overlay */
.grid-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-size: 50px 50px;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  mask-image: radial-gradient(circle at 50% 50%, black, transparent 80%);
  -webkit-mask-image: radial-gradient(circle at 50% 50%, black, transparent 80%);
  pointer-events: none;
}

/* --- Services Section --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition: var(--transition-normal);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-hover);
  background-color: var(--bg-card-hover);
  box-shadow: var(--shadow-glow), var(--shadow-md);
}

.service-icon {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  color: var(--accent-gold);
  transition: var(--transition-normal);
}

.service-card:hover .service-icon {
  background: rgba(124, 58, 237, 0.08);
  color: var(--accent-purple-light);
  border-color: rgba(124, 58, 237, 0.2);
}

.service-icon svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.service-card p {
  margin-bottom: 24px;
  flex-grow: 1;
}

.service-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.service-features li svg {
  width: 16px;
  height: 16px;
  color: var(--accent-gold);
  flex-shrink: 0;
}


/* --- About Section (Core Mission) --- */
.about-wrapper {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.about-details h3 {
  font-size: 1.8rem;
  margin-bottom: 16px;
  margin-top: 30px;
}

.about-details h3:first-of-type { margin-top: 0; }
.about-details p { margin-bottom: 20px; }
.about-graphics { display: flex; justify-content: center; position: relative; }

.owl-badge {
  position: relative;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.01) 0%, rgba(255, 255, 255, 0.002) 100%);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.badge-logo-img {
  width: 130px;
  height: auto;
  z-index: 2;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.5));
  transition: var(--transition-normal);
}

.owl-badge:hover .badge-logo-img {
  transform: scale(1.05);
  filter: drop-shadow(0 4px 15px rgba(124, 58, 237, 0.25));
}

.badge-glow-ring {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 1px dashed rgba(148, 163, 184, 0.1);
  animation: spin-clockwise 35s linear infinite;
  z-index: 1;
}

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

.badge-glow-ring-2 {
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  border: 1px dashed rgba(124, 58, 237, 0.1);
  animation: spin-counter-clockwise 30s linear infinite;
  z-index: 1;
}

@keyframes spin-counter-clockwise {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(-360deg); }
}

/* --- Contact Section --- */
.contact-wrapper {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
}

.contact-info h3 {
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.contact-info p {
  margin-bottom: 40px;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-method-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.method-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  flex-shrink: 0;
}

.contact-method-item:hover .method-icon {
  color: var(--accent-violet);
  border-color: rgba(124, 58, 237, 0.25);
  background: rgba(124, 58, 237, 0.03);
}

.method-icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.method-text h5 {
  font-size: 1rem;
  margin-bottom: 4px;
  color: var(--text-primary);
}

.method-text p {
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* Contact Form Card */
.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--shadow-md);
  position: relative;
}

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

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

.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
  text-transform: uppercase;
}

.form-input {
  background: rgba(15, 23, 42, 0.4);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 14px 16px;
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.form-input::placeholder { color: var(--text-muted); }

.form-input:focus {
  outline: none;
  border-color: var(--accent-violet);
  background: rgba(15, 23, 42, 0.6);
  box-shadow: 0 0 15px rgba(124, 58, 237, 0.1);
}

textarea.form-input {
  min-height: 130px;
  resize: vertical;
}

.form-status {
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  display: none;
  animation: fade-in 0.3s ease;
}

.form-status.success {
  display: block;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: var(--accent-emerald);
}

.form-status.error {
  display: block;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #F87171;
}

@keyframes fade-in {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}

/* --- Footer --- */
.footer {
  background: #0A0C10;
  border-top: 1px solid var(--border-color);
  padding: 60px 0 30px 0;
  color: #94A3B8;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 50px;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-brand {
  max-width: 350px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-logo-img { height: 36px; width: auto; filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3)); }

.footer-logo-text {
  font-family: var(--font-title);
  font-weight: 900;
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  color: #F8FAFC;
}

.footer-links-group { display: flex; gap: 80px; }
.footer-links { list-style: none; }

.footer-links h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: #F8FAFC;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

.footer-links li { margin-bottom: 12px; }

.footer-links a {
  font-size: 0.9rem;
  color: #94A3B8;
}

.footer-links a:hover {
  color: var(--accent-violet);
  padding-left: 2px;
}

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

.footer-socials { display: flex; gap: 16px; }

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94A3B8;
  transition: var(--transition-fast);
}

.social-link:hover {
  color: var(--accent-violet);
  border-color: rgba(124, 58, 237, 0.2);
  background: rgba(124, 58, 237, 0.02);
  transform: translateY(-2px);
}

.social-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* --- Scroll Reveal Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

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

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1), transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

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

/* Staggered Delays */
.reveal-stagger.active > *:nth-child(1) { transition-delay: 0.1s; }
.reveal-stagger.active > *:nth-child(2) { transition-delay: 0.25s; }
.reveal-stagger.active > *:nth-child(3) { transition-delay: 0.4s; }
.reveal-stagger.active > *:nth-child(4) { transition-delay: 0.55s; }


/* --- Pricing Section Styles --- */
.pricing-bg {
  background-color: var(--bg-indigo);
  position: relative;
}

.pricing-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  align-items: stretch;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 40px;
  position: relative;
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.pricing-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-glow), var(--shadow-md);
  background-color: var(--bg-card-hover);
}

/* Highlighted (Most Popular) Card Styling */
.pricing-card.highlighted {
  border: 2px solid var(--accent-violet);
  box-shadow: var(--shadow-glow-violet);
  background-color: rgba(27, 34, 48, 0.6);
}

.pricing-card.highlighted:hover {
  border-color: var(--accent-purple-light);
  box-shadow: 0 0 30px rgba(139, 92, 246, 0.3), var(--shadow-md);
  background-color: rgba(27, 34, 48, 0.8);
}

.pricing-badge {
  position: absolute;
  top: 15px;
  right: -35px;
  background: var(--gradient-aurora);
  color: #FFFFFF;
  font-family: var(--font-title);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 6px 36px;
  transform: rotate(45deg);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
}

.pricing-header {
  margin-bottom: 30px;
}

.pricing-header h3 {
  font-size: 1.6rem;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.pricing-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 24px;
}

.price {
  display: flex;
  align-items: baseline;
  color: var(--text-primary);
  font-family: var(--font-title);
}

.price .currency {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-gold);
  margin-right: 2px;
}

.price .amount {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
}

.price .period {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-left: 8px;
}

.pricing-body {
  flex-grow: 1;
  margin-bottom: 35px;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.pricing-features li svg {
  width: 18px;
  height: 18px;
  color: var(--accent-gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-card.highlighted .pricing-features li svg {
  color: var(--accent-purple-light);
}

.pricing-footer {
  width: 100%;
}

.pricing-btn {
  width: 100%;
  font-size: 0.95rem;
  padding: 12px 24px;
}

/* --- Pricing Trust & Strategy Additions --- */
.pricing-trust-bar {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 30px;
  margin-bottom: 50px;
  backdrop-filter: blur(12px);
}

.trust-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.trust-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(139, 92, 246, 0.08);
  border: 1px solid rgba(139, 92, 246, 0.2);
  color: var(--accent-purple-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 15px rgba(139, 92, 246, 0.15);
}

.trust-icon svg {
  width: 24px;
  height: 24px;
}

.trust-text h4 {
  font-family: var(--font-title);
  font-size: 1.1rem;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.trust-text p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.original-price {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: line-through;
  margin-top: 6px;
  letter-spacing: 0.02em;
}

.pricing-features li.guarantee-feature {
  color: var(--text-primary);
  border-top: 1px dashed var(--border-color);
  padding-top: 12px;
  margin-top: 8px;
}

.pricing-features li.guarantee-feature svg {
  color: #10B981 !important; /* Success Green */
  filter: drop-shadow(0 0 5px rgba(16, 185, 129, 0.3));
}

@media (max-width: 768px) {
  .pricing-trust-bar {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px;
  }
}


/* --- Case Studies Section Styles --- */
.case-studies-bg {
  background-color: var(--bg-space);
  position: relative;
}

.case-studies-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}

.case-studies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.case-card-detail {
  background: var(--bg-indigo);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 40px;
  position: relative;
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}

.case-card-detail:hover {
  transform: translateY(-8px);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-glow), var(--shadow-md);
  background-color: var(--bg-card);
}

.case-image {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  margin-bottom: 24px;
  transition: var(--transition-normal);
}

.case-card-detail:hover .case-image {
  background: rgba(124, 58, 237, 0.08);
  color: var(--accent-purple-light);
  border-color: rgba(124, 58, 237, 0.2);
}

.case-image svg {
  width: 28px;
  height: 28px;
}

.case-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.case-tag {
  align-self: flex-start;
  font-family: var(--font-title);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--accent-purple-light);
  text-transform: uppercase;
  background: rgba(139, 92, 246, 0.1);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.case-card-detail h3 {
  font-size: 1.4rem;
  color: var(--text-primary);
  margin-bottom: 12px;
  line-height: 1.3;
}

.case-card-detail p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 28px;
}

.case-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  border-top: 1px solid var(--border-color);
  padding-top: 20px;
  margin-top: auto;
}

.case-stat {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent-gold);
  margin-bottom: 2px;
}

.case-card-detail:hover .stat-num {
  color: var(--accent-purple-light);
}

.stat-lbl {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.3;
  font-weight: 500;
}


/* --- Responsive Adaptations --- */
@media (max-width: 992px) {
  .hero-content h1 { font-size: 3.5rem; }
  .about-wrapper { grid-template-columns: 1fr; gap: 40px; }
  .about-graphics { order: -1; }
  .contact-wrapper { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  :root { --header-height: 70px; }
  .section-padding { padding: 80px 0; }
  .section-header h2 { font-size: 2rem; }
  
  .nav-menu {
    position: fixed;
    top: var(--header-height);
    left: -100%;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background-color: rgba(10, 12, 16, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 60px 40px;
    gap: 40px;
    transition: var(--transition-normal);
    border-top: 1px solid var(--border-color);
    z-index: 999;
  }
  
  .nav-menu.active { left: 0; }
  .nav-toggle { display: block; }
  
  .nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .nav-toggle.active span:nth-child(2) { opacity: 0; }
  .nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
  
  .hero-content h1 { font-size: 2.75rem; }
  .hero-content p.lead { font-size: 1.1rem; }
  
  .hero-buttons { flex-direction: column; align-items: center; gap: 12px; }
  .btn { width: 100%; max-width: 300px; }
  
  .footer-links-group { gap: 40px; width: 100%; justify-content: space-between; }
  .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
}

@media (max-width: 480px) {
  .hero-content h1 { font-size: 2.25rem; }
  .footer-links-group { flex-direction: column; gap: 30px; }
}

/* --- Legal Document Page (Privacy Policy) --- */
.legal-hero {
  padding-top: calc(var(--header-height) + 60px);
  padding-bottom: 60px;
  text-align: center;
  min-height: auto;
}

.legal-container {
  max-width: 800px;
  margin: 0 auto;
}

.legal-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.legal-section {
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--border-color);
}

.legal-section h3 {
  font-size: 1.4rem;
  margin-bottom: 16px;
  color: var(--text-primary);
  font-family: var(--font-title);
  font-weight: 700;
}

.legal-section p {
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.legal-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 16px;
}

.legal-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  line-height: 1.6;
  color: var(--text-secondary);
}

.legal-list li::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 10px;
  width: 6px;
  height: 6px;
  background-color: var(--accent-violet);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--accent-violet);
}

.legal-contact-email {
  margin-top: 16px;
  display: flex;
  align-items: center;
}

@media (max-width: 768px) {
  .legal-card {
    padding: 24px;
    border-radius: 16px;
  }
  
  .legal-section h3 {
    font-size: 1.2rem;
  }
}

/* --- Error Page (error.html) --- */
.error-hero {
  min-height: calc(100vh - var(--header-height) - 150px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: calc(var(--header-height) + 40px);
  padding-bottom: 80px;
  position: relative;
}

.error-container {
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
  z-index: 2;
}

.error-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 50px 40px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  transition: var(--transition-normal);
}

.error-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--accent-violet);
}

.error-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 158, 11, 0.3);
  box-shadow: 0 20px 40px rgba(10, 12, 16, 0.6), 0 0 30px rgba(245, 158, 11, 0.05);
}

.error-badge-container {
  margin-bottom: 24px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.error-code {
  font-family: var(--font-title);
  font-size: 5.5rem;
  font-weight: 800;
  line-height: 1;
  color: var(--accent-gold);
  text-shadow: 0 0 30px rgba(245, 158, 11, 0.15);
  letter-spacing: -0.02em;
}

.error-icon-svg {
  width: 36px;
  height: 36px;
  color: var(--accent-gold);
  filter: drop-shadow(0 0 10px rgba(245, 158, 11, 0.3));
  animation: rotate-warning 15s linear infinite;
}

@keyframes rotate-warning {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.error-title {
  font-family: var(--font-title);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.error-description {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 36px;
  font-size: 1rem;
}

.error-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
}

@media (max-width: 576px) {
  .error-card {
    padding: 36px 20px;
    border-radius: 16px;
  }
  
  .error-code {
    font-size: 4rem;
  }
  
  .error-title {
    font-size: 1.5rem;
  }
  
  .error-actions {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  
  .error-actions .btn {
    width: 100%;
    max-width: 260px;
  }
}


