/* fusion-crypt.com - Charisma Development */
/* Mobile-first, Flexbox only */

:root {
  --primary: #1a1a2e;
  --secondary: #16213e;
  --accent: #e94560;
  --accent-hover: #ff6b6b;
  --light: #f8f9fa;
  --text: #2d3436;
  --text-light: #636e72;
  --white: #ffffff;
  --gold: #d4af37;
  --gradient-dark: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  --gradient-accent: linear-gradient(135deg, #e94560 0%, #ff6b6b 100%);
  --shadow: 0 10px 40px rgba(0,0,0,0.1);
  --shadow-strong: 0 20px 60px rgba(0,0,0,0.2);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  line-height: 1.3;
  font-weight: 700;
}

h1 { font-size: 2.2rem; }
h2 { font-size: 1.8rem; }
h3 { font-size: 1.4rem; }

@media (min-width: 768px) {
  h1 { font-size: 3.5rem; }
  h2 { font-size: 2.5rem; }
  h3 { font-size: 1.8rem; }
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.container-narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(26, 26, 46, 0.95);
  backdrop-filter: blur(10px);
  padding: 15px 0;
  transition: all 0.3s ease;
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
}

.nav-logo span {
  color: var(--accent);
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
}

.nav-toggle span {
  width: 25px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s ease;
}

.nav-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 300px;
  height: 100vh;
  background: var(--primary);
  display: flex;
  flex-direction: column;
  padding: 80px 30px;
  transition: right 0.3s ease;
}

.nav-menu.active {
  right: 0;
}

.nav-menu a {
  color: var(--white);
  padding: 15px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-size: 1.1rem;
}

.nav-menu a:hover {
  color: var(--accent);
}

@media (min-width: 992px) {
  .nav-toggle {
    display: none;
  }

  .nav-menu {
    position: static;
    width: auto;
    height: auto;
    background: transparent;
    flex-direction: row;
    padding: 0;
    gap: 30px;
  }

  .nav-menu a {
    padding: 10px 0;
    border: none;
    font-size: 0.95rem;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
}

.btn-primary {
  background: var(--gradient-accent);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(233, 69, 96, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(233, 69, 96, 0.5);
}

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

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

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

.btn-dark:hover {
  background: var(--secondary);
}

.btn-gold {
  background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
  color: var(--primary);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(212, 175, 55, 0.5);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  background: var(--gradient-dark);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 100px 0 60px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 150%;
  background: radial-gradient(ellipse, rgba(233, 69, 96, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

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

.hero-badge {
  display: inline-block;
  background: rgba(233, 69, 96, 0.2);
  color: var(--accent);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 0.9rem;
  margin-bottom: 25px;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 25px;
}

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

.hero-text {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  margin-bottom: 35px;
  max-width: 600px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.hero-visual {
  display: none;
}

@media (min-width: 992px) {
  .hero .container {
    display: flex;
    align-items: center;
    gap: 60px;
  }

  .hero-content {
    flex: 1;
  }

  .hero-visual {
    display: block;
    flex: 1;
  }

  .hero-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-strong);
  }
}

/* Section Base */
.section {
  padding: 60px 0;
}

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

.section-dark {
  background: var(--gradient-dark);
  color: var(--white);
}

.section-light {
  background: var(--light);
}

.section-accent {
  background: var(--gradient-accent);
  color: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  margin-bottom: 15px;
}

.section-header p {
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

.section-dark .section-header p {
  color: rgba(255,255,255,0.7);
}

/* Hook Section */
.hook {
  background: var(--light);
  padding: 50px 0;
}

.hook-inner {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  text-align: center;
}

.hook-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hook-icon svg {
  width: 40px;
  height: 40px;
  fill: var(--white);
}

.hook h2 {
  color: var(--primary);
}

@media (min-width: 768px) {
  .hook-inner {
    flex-direction: row;
    text-align: left;
  }
}

/* Story Section */
.story {
  padding: 80px 0;
}

.story-content {
  max-width: 700px;
  margin: 0 auto;
}

.story-content p {
  font-size: 1.15rem;
  margin-bottom: 25px;
  color: var(--text);
}

.story-content p:first-of-type::first-letter {
  font-size: 4rem;
  float: left;
  line-height: 1;
  padding-right: 15px;
  color: var(--accent);
  font-weight: 700;
}

.story-highlight {
  background: linear-gradient(135deg, rgba(233, 69, 96, 0.1) 0%, rgba(255, 107, 107, 0.1) 100%);
  padding: 30px;
  border-left: 4px solid var(--accent);
  margin: 40px 0;
  border-radius: 0 10px 10px 0;
}

.story-highlight p {
  font-style: italic;
  color: var(--primary);
  margin: 0;
}

/* Problem Section */
.problem {
  background: var(--primary);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.problem::after {
  content: '?';
  position: absolute;
  right: -50px;
  bottom: -100px;
  font-size: 400px;
  color: rgba(255,255,255,0.03);
  font-weight: 700;
}

.problem-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}

.problem-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: rgba(255,255,255,0.05);
  padding: 25px;
  border-radius: 15px;
}

.problem-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.problem-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--white);
}

.problem-item h4 {
  margin-bottom: 8px;
}

.problem-item p {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
}

/* Insight Section */
.insight {
  background: linear-gradient(180deg, var(--light) 0%, var(--white) 100%);
}

.insight-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.insight-card {
  background: var(--white);
  padding: 40px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

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

.insight-number {
  font-size: 4rem;
  font-weight: 700;
  color: rgba(233, 69, 96, 0.1);
  position: absolute;
  top: 10px;
  right: 20px;
}

.insight-card h3 {
  margin-bottom: 15px;
  color: var(--primary);
}

@media (min-width: 768px) {
  .insight-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .insight-card {
    flex: 1 1 calc(50% - 20px);
  }
}

/* Trust Section */
.trust {
  background: var(--white);
}

.trust-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-bottom: 60px;
}

.stat-item {
  text-align: center;
  padding: 30px;
  background: var(--light);
  border-radius: 15px;
  flex: 1 1 200px;
  max-width: 250px;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent);
  display: block;
}

.stat-label {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* Testimonials */
.testimonials {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.testimonial {
  background: var(--light);
  padding: 35px;
  border-radius: 20px;
  position: relative;
}

.testimonial::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 25px;
  font-size: 5rem;
  color: rgba(233, 69, 96, 0.15);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-content {
  position: relative;
  z-index: 1;
}

.testimonial p {
  font-style: italic;
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gradient-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
}

.testimonial-info strong {
  display: block;
  color: var(--primary);
}

.testimonial-info span {
  font-size: 0.85rem;
  color: var(--text-light);
}

@media (min-width: 768px) {
  .testimonials {
    flex-direction: row;
  }

  .testimonial {
    flex: 1;
  }
}

/* Benefits Section */
.benefits {
  background: var(--gradient-dark);
  color: var(--white);
}

.benefits-grid {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.benefit-item {
  display: flex;
  gap: 20px;
  padding: 25px;
  background: rgba(255,255,255,0.05);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.benefit-item:hover {
  background: rgba(255,255,255,0.1);
  transform: translateX(10px);
}

.benefit-icon {
  width: 60px;
  height: 60px;
  min-width: 60px;
  background: var(--gradient-accent);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-icon svg {
  width: 30px;
  height: 30px;
  fill: var(--white);
}

.benefit-content h4 {
  margin-bottom: 8px;
}

.benefit-content p {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
}

@media (min-width: 768px) {
  .benefits-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .benefit-item {
    flex: 1 1 calc(50% - 15px);
  }
}

/* Services/Pricing Section */
.services {
  background: var(--light);
}

.services-grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.service-card {
  background: var(--white);
  border-radius: 25px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-strong);
}

.service-card.featured {
  border: 3px solid var(--accent);
  position: relative;
}

.service-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--gradient-accent);
  color: var(--white);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.service-header {
  padding: 40px 30px 20px;
  text-align: center;
}

.service-header h3 {
  color: var(--primary);
  margin-bottom: 10px;
}

.service-header p {
  color: var(--text-light);
  font-size: 0.95rem;
}

.service-price {
  text-align: center;
  padding: 20px 30px;
  border-top: 1px solid var(--light);
  border-bottom: 1px solid var(--light);
}

.price-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
}

.price-value span {
  font-size: 1rem;
  color: var(--text-light);
  font-weight: 400;
}

.service-features {
  padding: 30px;
}

.service-features ul {
  list-style: none;
}

.service-features li {
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
}

.service-features li::before {
  content: '';
  width: 20px;
  height: 20px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
}

.service-footer {
  padding: 0 30px 40px;
  text-align: center;
}

@media (min-width: 768px) {
  .services-grid {
    flex-direction: row;
    align-items: stretch;
  }

  .service-card {
    flex: 1;
  }
}

/* Form Section */
.form-section {
  background: var(--gradient-dark);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.form-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(233, 69, 96, 0.2) 0%, transparent 70%);
}

.form-wrapper {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.form-info h2 {
  margin-bottom: 20px;
}

.form-info p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 30px;
}

.form-benefits {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-benefit {
  display: flex;
  align-items: center;
  gap: 15px;
}

.form-benefit-icon {
  width: 40px;
  height: 40px;
  background: rgba(233, 69, 96, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-benefit-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--accent);
}

.contact-form {
  background: var(--white);
  padding: 40px;
  border-radius: 25px;
  box-shadow: var(--shadow-strong);
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--primary);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid var(--light);
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: var(--white);
  color: var(--text);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  width: 100%;
  padding: 18px;
  font-size: 1.1rem;
}

@media (min-width: 992px) {
  .form-wrapper {
    flex-direction: row;
    align-items: center;
  }

  .form-info {
    flex: 1;
  }

  .contact-form {
    flex: 1;
    max-width: 500px;
  }
}

/* Urgency Section */
.urgency {
  background: var(--accent);
  color: var(--white);
  text-align: center;
  padding: 50px 0;
}

.urgency h3 {
  margin-bottom: 15px;
}

.urgency p {
  margin-bottom: 25px;
  opacity: 0.9;
}

.urgency-timer {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.timer-item {
  background: rgba(0,0,0,0.2);
  padding: 15px 25px;
  border-radius: 10px;
}

.timer-value {
  font-size: 2rem;
  font-weight: 700;
  display: block;
}

.timer-label {
  font-size: 0.8rem;
  opacity: 0.8;
}

/* About Section */
.about-hero {
  background: var(--gradient-dark);
  color: var(--white);
  padding: 150px 0 80px;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.about-text h1 {
  margin-bottom: 20px;
}

.about-text p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 15px;
}

.about-image {
  border-radius: 20px;
  overflow: hidden;
}

@media (min-width: 992px) {
  .about-content {
    flex-direction: row;
    align-items: center;
  }

  .about-text {
    flex: 1;
  }

  .about-image {
    flex: 1;
  }
}

/* Team Section */
.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.team-member {
  text-align: center;
  flex: 1 1 250px;
  max-width: 300px;
}

.team-avatar {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: var(--gradient-accent);
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--white);
}

.team-member h4 {
  color: var(--primary);
  margin-bottom: 5px;
}

.team-member span {
  color: var(--accent);
  font-size: 0.9rem;
}

/* Contact Page */
.contact-hero {
  background: var(--gradient-dark);
  color: var(--white);
  padding: 150px 0 80px;
  text-align: center;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 40px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(255,255,255,0.05);
  padding: 25px;
  border-radius: 15px;
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon svg {
  width: 28px;
  height: 28px;
  fill: var(--white);
}

.contact-details h4 {
  margin-bottom: 5px;
}

.contact-details p {
  color: rgba(255,255,255,0.7);
}

@media (min-width: 768px) {
  .contact-info {
    flex-direction: row;
  }

  .contact-item {
    flex: 1;
  }
}

/* Footer */
.footer {
  background: var(--primary);
  color: var(--white);
  padding: 60px 0 30px;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom: 40px;
}

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

.footer-logo {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.footer-logo span {
  color: var(--accent);
}

.footer-brand p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
}

.footer-links h5 {
  margin-bottom: 20px;
  color: var(--white);
}

.footer-links ul {
  list-style: none;
}

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

.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 30px;
  text-align: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
}

@media (min-width: 768px) {
  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }

  .footer-links {
    flex: 1;
    max-width: 200px;
  }
}

/* Sticky CTA */
.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.sticky-cta.visible {
  opacity: 1;
  visibility: visible;
}

.sticky-cta .btn {
  box-shadow: 0 5px 30px rgba(233, 69, 96, 0.5);
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--primary);
  color: var(--white);
  padding: 20px;
  z-index: 9999;
  display: none;
}

.cookie-banner.visible {
  display: block;
}

.cookie-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  text-align: center;
}

.cookie-text {
  flex: 1;
}

.cookie-text p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
}

.cookie-text a {
  color: var(--accent);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
}

.cookie-btn {
  padding: 10px 25px;
  border-radius: 30px;
  font-size: 0.9rem;
  cursor: pointer;
  border: none;
  font-weight: 600;
}

.cookie-accept {
  background: var(--accent);
  color: var(--white);
}

.cookie-reject {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
}

@media (min-width: 768px) {
  .cookie-inner {
    flex-direction: row;
    text-align: left;
  }
}

/* Thanks Page */
.thanks-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-dark);
  color: var(--white);
  text-align: center;
  padding: 40px 20px;
}

.thanks-content {
  max-width: 600px;
}

.thanks-icon {
  width: 100px;
  height: 100px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
}

.thanks-icon svg {
  width: 50px;
  height: 50px;
  fill: var(--white);
}

.thanks-content h1 {
  margin-bottom: 20px;
}

.thanks-content p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 15px;
}

.thanks-service {
  background: rgba(255,255,255,0.1);
  padding: 20px;
  border-radius: 15px;
  margin: 30px 0;
}

.thanks-service span {
  color: var(--accent);
  font-weight: 600;
}

/* Legal Pages */
.legal-page {
  padding: 150px 0 80px;
}

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

.legal-content h1 {
  margin-bottom: 30px;
  color: var(--primary);
}

.legal-content h2 {
  margin-top: 40px;
  margin-bottom: 20px;
  color: var(--primary);
  font-size: 1.5rem;
}

.legal-content p {
  margin-bottom: 15px;
  color: var(--text);
}

.legal-content ul {
  margin-bottom: 20px;
  padding-left: 25px;
}

.legal-content li {
  margin-bottom: 10px;
  color: var(--text);
}

/* Utility */
.text-center { text-align: center; }
.text-accent { color: var(--accent); }
.mb-0 { margin-bottom: 0; }
.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }
.mt-40 { margin-top: 40px; }

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-in {
  animation: fadeInUp 0.6s ease forwards;
}

/* Services Page Specific */
.services-hero {
  background: var(--gradient-dark);
  color: var(--white);
  padding: 150px 0 80px;
  text-align: center;
}

.services-comparison {
  margin-top: 60px;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.comparison-table th,
.comparison-table td {
  padding: 20px;
  text-align: left;
  border-bottom: 1px solid var(--light);
}

.comparison-table th {
  background: var(--primary);
  color: var(--white);
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table tr:hover td {
  background: var(--light);
}

/* Inline CTA */
.inline-cta {
  background: var(--light);
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  margin: 40px 0;
}

.inline-cta h3 {
  margin-bottom: 15px;
  color: var(--primary);
}

.inline-cta p {
  margin-bottom: 25px;
  color: var(--text-light);
}
