/* ULVEN - Persönliche Transformation & Selbstentwicklung */
/* Einzigartiges Design für ulven.ink */

/* ========== EINZIGARTIGE SCHRIFTARTEN ========== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&family=Crimson+Text:ital,wght@0,400;0,600;1,400&display=swap');

/* ========== CSS VARIABLEN - AUSSERGEWÖHNLICHE FARBPALETTE ========== */
:root {
  /* Einzigartige Farbpalette - Tiefes Indigo, Goldener Sonnenuntergang, Minze */
  --color-primary: #2D1B69;          /* Tiefes Indigo - Weisheit */
  --color-secondary: #FFB347;        /* Goldener Sonnenuntergang - Transformation */
  --color-accent: #95E1D3;           /* Beruhigende Minze - Balance */
  --color-dark: #1A0F3E;             /* Sehr dunkles Violett */
  --color-darker: #0D0820;           /* Fast Schwarz mit Violett */
  --color-light: #F5F2F7;            /* Sehr helles Lavendel */
  --color-white: #FFFFFF;
  
  /* Gradient-Kombinationen */
  --gradient-sunset: linear-gradient(135deg, #FFB347 0%, #FFCC70 50%, #FFE4A8 100%);
  --gradient-wisdom: linear-gradient(135deg, #2D1B69 0%, #4A2F8C 50%, #6B46B0 100%);
  --gradient-balance: linear-gradient(135deg, #95E1D3 0%, #B8F5E8 100%);
  --gradient-hero: linear-gradient(135deg, rgba(45, 27, 105, 0.95) 0%, rgba(74, 47, 140, 0.9) 100%);
  --gradient-card: linear-gradient(135deg, rgba(255, 179, 71, 0.1) 0%, rgba(149, 225, 211, 0.1) 100%);
  
  /* Schriftarten */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --font-accent: 'Crimson Text', serif;
  
  /* Größen */
  --container-width: 1320px;
  --section-padding: 140px;
  --border-radius: 32px;
  --transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow-soft: 0 20px 60px rgba(45, 27, 105, 0.15);
  --shadow-strong: 0 30px 80px rgba(45, 27, 105, 0.25);
}

/* ========== RESET UND GRUNDSTILE ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-body);
  background: var(--color-darker);
  color: var(--color-light);
  line-height: 1.8;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}

/* ========== EINZIGARTIGER HINTERGRUND ========== */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 15% 20%, rgba(255, 179, 71, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 85% 80%, rgba(149, 225, 211, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(45, 27, 105, 0.12) 0%, transparent 50%);
  z-index: -2;
}

body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    repeating-linear-gradient(90deg, rgba(255, 179, 71, 0.02) 0px, transparent 1px, transparent 80px),
    repeating-linear-gradient(0deg, rgba(149, 225, 211, 0.02) 0px, transparent 1px, transparent 80px);
  z-index: -1;
  pointer-events: none;
}

/* ========== TYPOGRAFIE ========== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-white);
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

h1 {
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 800;
  background: var(--gradient-sunset);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  margin-bottom: 2rem;
}

h2 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  color: var(--color-secondary);
}

h3 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 600;
}

h4 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-secondary);
}

p {
  font-size: 1.15rem;
  color: rgba(245, 242, 247, 0.85);
  margin-bottom: 1.5rem;
  line-height: 1.9;
}

.lead-text {
  font-size: 1.4rem;
  font-family: var(--font-accent);
  line-height: 2;
  color: var(--color-accent);
  font-style: italic;
}

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

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

/* ========== CONTAINER ========== */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2.5rem;
}

.section {
  padding: var(--section-padding) 0;
  position: relative;
}

/* ========== HEADER / NAVIGATION ========== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 2rem 0;
  background: rgba(13, 8, 32, 0.7);
  backdrop-filter: blur(30px);
  border-bottom: 1px solid rgba(255, 179, 71, 0.15);
  z-index: 1000;
  transition: var(--transition);
}

.header.scrolled {
  padding: 1.2rem 0;
  background: rgba(13, 8, 32, 0.95);
  box-shadow: 0 10px 40px rgba(45, 27, 105, 0.3);
  border-bottom-color: rgba(149, 225, 211, 0.2);
}

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

.logo {
  display: flex;
  align-items: center;
  transition: var(--transition);
}

.logo img {
  height: 55px;
  transition: var(--transition);
  filter: drop-shadow(0 4px 12px rgba(255, 179, 71, 0.3));
}

.logo:hover {
  transform: translateY(-2px);
}

.logo:hover img {
  filter: drop-shadow(0 8px 20px rgba(255, 179, 71, 0.5));
}

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

.nav-link {
  color: var(--color-light);
  font-weight: 500;
  font-size: 1.05rem;
  position: relative;
  transition: var(--transition);
  letter-spacing: 0.03em;
  font-family: var(--font-body);
}

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

.nav-link:hover {
  color: var(--color-secondary);
  transform: translateY(-2px);
}

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

.nav-cta {
  padding: 0.9rem 2.5rem;
  background: var(--gradient-sunset);
  color: var(--color-dark);
  border-radius: 60px;
  font-weight: 700;
  font-size: 1rem;
  transition: var(--transition);
  box-shadow: 0 10px 30px rgba(255, 179, 71, 0.35);
  letter-spacing: 0.05em;
}

.nav-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 45px rgba(255, 179, 71, 0.5);
  color: var(--color-dark);
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 7px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-toggle span {
  width: 32px;
  height: 3px;
  background: var(--color-secondary);
  border-radius: 3px;
  transition: var(--transition);
}

/* ========== HERO SECTION ========== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 140px;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-hero);
  opacity: 0.4;
  z-index: 0;
}

.hero-content {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text {
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-subtitle {
  font-family: var(--font-accent);
  color: var(--color-accent);
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  font-style: italic;
}

.hero-title {
  margin-bottom: 2.5rem;
  text-shadow: 0 4px 20px rgba(255, 179, 71, 0.3);
}

.hero-description {
  font-size: 1.35rem;
  margin-bottom: 3.5rem;
  line-height: 2;
  color: rgba(245, 242, 247, 0.9);
}

.hero-buttons {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1.4rem 3.5rem;
  font-size: 1.15rem;
  font-weight: 700;
  border-radius: 60px;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  font-family: var(--font-body);
  text-decoration: none;
  letter-spacing: 0.05em;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: var(--gradient-sunset);
  color: var(--color-dark);
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-strong);
  color: var(--color-dark);
}

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

.btn-secondary:hover {
  background: var(--color-secondary);
  color: var(--color-dark);
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(255, 179, 71, 0.4);
}

.hero-visual {
  position: relative;
  animation: fadeInRight 1s ease-out 0.3s both;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-visual img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 30px 60px rgba(255, 179, 71, 0.2));
}

/* ========== SECTION HEADER ========== */
.section-header {
  text-align: center;
  margin-bottom: 6rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.section-subtitle {
  font-family: var(--font-accent);
  color: var(--color-accent);
  font-size: 1.2rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  font-weight: 600;
  font-style: italic;
}

.section-header h2 {
  margin-bottom: 1.5rem;
}

.section-header p {
  font-size: 1.3rem;
  color: rgba(245, 242, 247, 0.8);
}

/* ========== SERVICES / PROGRAM GRID ========== */
.services {
  background: rgba(45, 27, 105, 0.08);
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 3rem;
}

.service-card {
  background: rgba(26, 15, 46, 0.5);
  padding: 3.5rem 3rem;
  border-radius: var(--border-radius);
  border: 2px solid rgba(255, 179, 71, 0.15);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-card);
  opacity: 0;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-12px) scale(1.02);
  border-color: var(--color-secondary);
  box-shadow: 0 25px 60px rgba(255, 179, 71, 0.25);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  width: 90px;
  height: 90px;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 1;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
}

.service-icon img {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 8px 16px rgba(255, 179, 71, 0.3));
}

.service-card h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 1.5rem;
  color: var(--color-white);
}

.service-card p {
  position: relative;
  z-index: 1;
  font-size: 1.1rem;
  line-height: 1.9;
}

/* ========== ABOUT / TRANSFORMATION SECTION ========== */
.about {
  position: relative;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-visual img {
  width: 100%;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-strong);
  filter: drop-shadow(0 20px 40px rgba(149, 225, 211, 0.2));
}

.about-text h2 {
  margin-bottom: 2.5rem;
}

.about-features {
  display: grid;
  gap: 2.5rem;
  margin-top: 3.5rem;
  margin-bottom: 3rem;
}

.feature-item {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  padding: 2rem;
  background: rgba(45, 27, 105, 0.1);
  border-radius: 20px;
  border: 1px solid rgba(149, 225, 211, 0.1);
  transition: var(--transition);
}

.feature-item:hover {
  background: rgba(45, 27, 105, 0.15);
  border-color: rgba(149, 225, 211, 0.3);
  transform: translateX(10px);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-sunset);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 2rem;
  box-shadow: 0 8px 20px rgba(255, 179, 71, 0.3);
}

.feature-content h4 {
  margin-bottom: 0.75rem;
  font-size: 1.4rem;
}

.feature-content p {
  color: rgba(245, 242, 247, 0.75);
  font-size: 1.05rem;
}

/* ========== CTA SECTION ========== */
.cta {
  background: var(--gradient-wisdom);
  border-radius: var(--border-radius);
  padding: 6rem 4rem;
  text-align: center;
  margin: 5rem 0;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-strong);
}

.cta::before {
  content: '';
  position: absolute;
  top: -100%;
  left: -100%;
  width: 300%;
  height: 300%;
  background: radial-gradient(circle, rgba(255, 179, 71, 0.15) 0%, transparent 70%);
  animation: rotateCta 25s linear infinite;
}

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

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

.cta h2 {
  color: var(--color-white);
  margin-bottom: 2rem;
}

.cta p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.4rem;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 2;
}

.cta .btn {
  background: var(--color-white);
  color: var(--color-primary);
  font-size: 1.2rem;
  padding: 1.6rem 4rem;
}

.cta .btn:hover {
  background: var(--color-accent);
  color: var(--color-dark);
}

/* ========== KONTAKTFORMULAR - EINZIGARTIG ========== */
.contact-section {
  background: rgba(45, 27, 105, 0.08);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.contact-info h2 {
  margin-bottom: 2.5rem;
}

.contact-details {
  display: grid;
  gap: 2.5rem;
  margin-top: 3.5rem;
}

.contact-item {
  display: flex;
  gap: 2rem;
  align-items: center;
  padding: 2rem;
  background: rgba(26, 15, 46, 0.4);
  border-radius: 24px;
  border: 2px solid rgba(149, 225, 211, 0.15);
  transition: var(--transition);
}

.contact-item:hover {
  border-color: var(--color-accent);
  transform: translateX(10px);
  box-shadow: 0 15px 40px rgba(149, 225, 211, 0.2);
}

.contact-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient-sunset);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(255, 179, 71, 0.3);
}

.contact-text h4 {
  margin-bottom: 0.5rem;
}

.contact-text p {
  color: var(--color-light);
  font-size: 1.15rem;
  margin: 0;
}

.contact-text a {
  color: var(--color-secondary);
  font-weight: 600;
}

/* EINZIGARTIGE FORMULAR-GESTALTUNG */
.contact-form {
  background: rgba(26, 15, 46, 0.6);
  padding: 4rem 3.5rem;
  border-radius: var(--border-radius);
  border: 2px solid rgba(255, 179, 71, 0.2);
  box-shadow: var(--shadow-strong);
  position: relative;
  backdrop-filter: blur(20px);
}

.contact-form::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: var(--gradient-sunset);
  border-radius: var(--border-radius);
  z-index: -1;
  opacity: 0;
  transition: var(--transition);
}

.contact-form:hover::before {
  opacity: 0.4;
}

.form-group {
  margin-bottom: 2.5rem;
  position: relative;
}

.form-group label {
  display: block;
  color: var(--color-secondary);
  font-weight: 700;
  margin-bottom: 1rem;
  font-size: 1.05rem;
  letter-spacing: 0.05em;
  font-family: var(--font-heading);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 1.4rem 1.8rem;
  background: rgba(13, 8, 32, 0.8);
  border: 2px solid rgba(149, 225, 211, 0.2);
  border-radius: 20px;
  color: var(--color-white);
  font-size: 1.1rem;
  font-family: var(--font-body);
  transition: var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(245, 242, 247, 0.4);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-secondary);
  box-shadow: 0 0 0 5px rgba(255, 179, 71, 0.15);
  background: rgba(13, 8, 32, 0.95);
  transform: translateY(-2px);
}

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

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.form-checkbox input[type="checkbox"] {
  width: 24px;
  height: 24px;
  margin-top: 2px;
  cursor: pointer;
  accent-color: var(--color-secondary);
}

.form-checkbox label {
  font-size: 1rem;
  color: rgba(245, 242, 247, 0.8);
  line-height: 1.6;
  cursor: pointer;
}

.form-submit {
  width: 100%;
  padding: 1.8rem;
  font-size: 1.25rem;
  background: var(--gradient-sunset);
  color: var(--color-dark);
  border: none;
  border-radius: 20px;
  cursor: pointer;
  font-weight: 800;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-family: var(--font-heading);
  box-shadow: 0 15px 40px rgba(255, 179, 71, 0.4);
}

.form-submit:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(255, 179, 71, 0.6);
}

.form-submit:active {
  transform: translateY(-2px);
}

/* ========== FOOTER ========== */
.footer {
  background: rgba(13, 8, 32, 0.95);
  padding: 5rem 0 2.5rem;
  border-top: 2px solid rgba(255, 179, 71, 0.2);
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gradient-sunset);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-brand h3 {
  margin-bottom: 1.5rem;
  background: var(--gradient-sunset);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 2rem;
}

.footer-brand p {
  color: rgba(245, 242, 247, 0.75);
  line-height: 2;
  font-size: 1.05rem;
}

.footer-section h4 {
  color: var(--color-accent);
  margin-bottom: 2rem;
  font-size: 1.3rem;
  font-family: var(--font-heading);
}

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

.footer-links li {
  margin-bottom: 1.2rem;
}

.footer-links a {
  color: rgba(245, 242, 247, 0.75);
  transition: var(--transition);
  display: inline-block;
  font-size: 1.05rem;
}

.footer-links a:hover {
  color: var(--color-secondary);
  transform: translateX(8px);
}

.footer-bottom {
  text-align: center;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255, 179, 71, 0.1);
  color: rgba(245, 242, 247, 0.6);
  font-size: 1rem;
}

/* ========== PRELOADER ========== */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-darker);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-spinner {
  width: 70px;
  height: 70px;
  border: 5px solid rgba(255, 179, 71, 0.2);
  border-top-color: var(--color-secondary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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

/* ========== THANK YOU PAGE ========== */
.thanks-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 140px;
}

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

.thanks-icon {
  width: 140px;
  height: 140px;
  margin: 0 auto 3rem;
  background: var(--gradient-sunset);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  animation: scaleIn 0.7s ease-out;
  box-shadow: var(--shadow-strong);
}

@keyframes scaleIn {
  from { 
    transform: scale(0) rotate(-180deg);
    opacity: 0;
  }
  to { 
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
}

/* ========== LEGAL PAGES ========== */
.legal-page {
  padding-top: 140px;
  min-height: 100vh;
}

.legal-content {
  max-width: 1000px;
  margin: 0 auto;
  background: rgba(26, 15, 46, 0.5);
  padding: 5rem 4.5rem;
  border-radius: var(--border-radius);
  border: 2px solid rgba(255, 179, 71, 0.2);
  backdrop-filter: blur(10px);
}

.legal-content h1 {
  margin-bottom: 3rem;
}

.legal-content h2 {
  font-size: 2.2rem;
  margin-top: 3.5rem;
  margin-bottom: 1.5rem;
  color: var(--color-secondary);
}

.legal-content h3 {
  font-size: 1.6rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--color-accent);
}

.legal-content p {
  margin-bottom: 1.8rem;
  line-height: 2;
  font-size: 1.1rem;
}

.legal-content ul, .legal-content ol {
  margin-left: 2.5rem;
  margin-bottom: 2rem;
  color: rgba(245, 242, 247, 0.85);
}

.legal-content li {
  margin-bottom: 1rem;
  line-height: 1.9;
  font-size: 1.05rem;
}

.legal-content a {
  color: var(--color-secondary);
  text-decoration: underline;
  font-weight: 600;
}

.legal-content a:hover {
  color: var(--color-accent);
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 1200px) {
  :root {
    --section-padding: 100px;
  }
  
  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  }
}

@media (max-width: 968px) {
  .nav-menu {
    position: fixed;
    top: 90px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 90px);
    background: rgba(13, 8, 32, 0.98);
    backdrop-filter: blur(30px);
    flex-direction: column;
    justify-content: center;
    gap: 2.5rem;
    transition: var(--transition);
    border-top: 2px solid rgba(255, 179, 71, 0.2);
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .mobile-toggle {
    display: flex;
  }
  
  .hero-content,
  .about-content,
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .hero-content {
    text-align: center;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  :root {
    --section-padding: 70px;
  }
  
  .container {
    padding: 0 1.5rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .btn {
    width: 100%;
    justify-content: center;
  }
  
  .contact-form {
    padding: 3rem 2rem;
  }
  
  .legal-content {
    padding: 3.5rem 2.5rem;
  }
}

/* ========== SCROLL ANIMATIONS ========== */
.fade-in-up {
  animation: fadeInUp 0.9s ease-out forwards;
}

/* ========== ACCESSIBILITY ========== */
:focus-visible {
  outline: 3px solid var(--color-secondary);
  outline-offset: 4px;
  border-radius: 4px;
}

/* ========== PRINT STYLES ========== */
@media print {
  .header,
  .footer,
  .btn,
  .preloader {
    display: none !important;
  }
}
