:root {
  --primary-dark: #0f0f23;
  --primary-indigo: #1a1a2e;
  --primary-blue: #16213e;
  --accent-electric: #0f3460;
  --accent-gold: #e94560;
  --accent-bright: #ffd700;

  --gradient-primary: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  --gradient-accent: linear-gradient(45deg, #e94560 0%, #ffd700 100%);
  --gradient-secondary: linear-gradient(90deg, #16213e 0%, #0f3460 100%);

  --font-primary: 'Inter', sans-serif;

  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
  --shadow-glow: 0 0 20px rgba(233, 69, 96, 0.3);
}

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

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  color: #ffffff;
  background: var(--gradient-primary);
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(26, 26, 46, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--spacing-sm) var(--spacing-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-dot {
  width: 8px;
  height: 8px;
  background: var(--accent-gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: var(--spacing-lg);
}

.nav-menu a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-accent);
  transition: width 0.3s ease;
}

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

.cta-button {
  background: var(--gradient-accent);
  color: var(--primary-dark);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-lg);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-glow);
}

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

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(233, 69, 96, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
  animation: float 20s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--spacing-xl) var(--spacing-md);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-2xl);
  align-items: center;
}

.hero-title {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-lg);
}

.hero-title-main {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-title-sub {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  color: rgba(255, 255, 255, 0.8);
  font-weight: 300;
}

.hero-description {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--spacing-xl);
  line-height: 1.7;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-xl);
}

.stat {
  text-align: center;
  padding: var(--spacing-md);
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: var(--spacing-xs);
}

.hero-cta {
  display: inline-block;
  background: var(--gradient-accent);
  color: var(--primary-dark);
  padding: 1rem 2rem;
  border-radius: var(--radius-xl);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-glow);
}

.hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 40px rgba(233, 69, 96, 0.6);
}

.hero-visual {
  position: relative;
  height: 400px;
}

.floating-elements {
  position: relative;
  height: 100%;
}

.element {
  position: absolute;
  font-size: 3rem;
  animation: float-element 6s ease-in-out infinite;
}

.element-1 {
  top: 20%;
  left: 20%;
  animation-delay: 0s;
}

.element-2 {
  top: 40%;
  right: 15%;
  animation-delay: 2s;
}

.element-3 {
  bottom: 30%;
  left: 10%;
  animation-delay: 4s;
}

.element-4 {
  bottom: 20%;
  right: 25%;
  animation-delay: 1s;
}

@keyframes float-element {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

.section-header {
  text-align: center;
  margin-bottom: var(--spacing-2xl);
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: var(--spacing-md);
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto;
}

.about {
  padding: var(--spacing-2xl) 0;
  background: rgba(255, 255, 255, 0.02);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-lg);
}

.about-card {
  padding: var(--spacing-xl);
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 215, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
}

.about-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(233, 69, 96, 0.3);
}

.card-icon {
  font-size: 3rem;
  margin-bottom: var(--spacing-md);
}

.about-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: var(--spacing-md);
  color: var(--accent-bright);
}

.about-card p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.tips-section {
  padding: var(--spacing-2xl) 0;
}

.tips-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-2xl);
  align-items: center;
}

.tips-content.reverse {
  direction: rtl;
}

.tips-content.reverse .tips-text {
  direction: ltr;
}

.tips-text h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: var(--spacing-md);
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tips-text p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--spacing-xl);
  line-height: 1.7;
}

.tips-list {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}

.tip-item {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-md);
}

.tip-number {
  background: var(--gradient-accent);
  color: var(--primary-dark);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.tip-content h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: var(--spacing-xs);
  color: var(--accent-bright);
}

.tip-content p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.tips-visual {
  position: relative;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chart-container {
  display: flex;
  align-items: end;
  gap: var(--spacing-sm);
  height: 200px;
}

.chart-bar {
  width: 40px;
  background: var(--gradient-accent);
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  transition: all 0.3s ease;
  position: relative;
}

.chart-bar:hover {
  transform: scaleY(1.1);
}

.chart-bar::after {
  content: '';
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-dark);
  color: var(--accent-bright);
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.chart-bar:hover::after {
  opacity: 1;
}

.tax-visual {
  width: 250px;
  height: 250px;
  position: relative;
}

.tax-circle {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: conic-gradient(var(--accent-gold) 32%, rgba(255, 215, 0, 0.2) 32%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.tax-circle::before {
  content: '';
  position: absolute;
  width: 80%;
  height: 80%;
  border-radius: 50%;
  background: var(--gradient-primary);
}

.tax-percentage {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-gold);
  z-index: 1;
}

.tax-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: var(--spacing-xs);
  z-index: 1;
}

.savings-piggy {
  position: relative;
  width: 200px;
  height: 180px;
}

.piggy-body {
  width: 150px;
  height: 120px;
  background: var(--accent-gold);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  position: relative;
  margin: 0 auto;
}

.piggy-ear {
  position: absolute;
  width: 30px;
  height: 40px;
  background: var(--accent-gold);
  border-radius: 50%;
  top: -10px;
}

.piggy-ear.left { left: 20px; }
.piggy-ear.right { right: 20px; }

.piggy-eye {
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--primary-dark);
  border-radius: 50%;
  top: 30px;
}

.piggy-eye.left { left: 40px; }
.piggy-eye.right { right: 40px; }

.piggy-nose {
  position: absolute;
  width: 15px;
  height: 10px;
  background: #ff6b6b;
  border-radius: 50%;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
}

.piggy-mouth {
  position: absolute;
  width: 20px;
  height: 10px;
  border: 2px solid var(--primary-dark);
  border-top: none;
  border-radius: 0 0 50% 50%;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
}

.coins {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
}

.coin {
  display: inline-block;
  width: 30px;
  height: 30px;
  background: var(--accent-gold);
  border-radius: 50%;
  margin: 0 2px;
  animation: coin-bounce 2s ease-in-out infinite;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--primary-dark);
}

.coin-1 { animation-delay: 0s; }
.coin-2 { animation-delay: 0.5s; }
.coin-3 { animation-delay: 1s; }

@keyframes coin-bounce {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.testimonials {
  padding: var(--spacing-2xl) 0;
  background: rgba(255, 255, 255, 0.02);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-lg);
}

.testimonial-card {
  padding: var(--spacing-xl);
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 215, 0, 0.1);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(233, 69, 96, 0.3);
}

.testimonial-content {
  margin-bottom: var(--spacing-lg);
}

.testimonial-content p {
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  font-size: 1.1rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
}

.author-avatar {
  width: 50px;
  height: 50px;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--primary-dark);
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-weight: 600;
  color: var(--accent-bright);
}

.author-title {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.contact-form {
  padding: var(--spacing-2xl) 0;
}

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

.form-header {
  text-align: center;
  margin-bottom: var(--spacing-2xl);
}

.form-header h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: var(--spacing-md);
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.form-header p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
}

.form-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-2xl);
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-xl);
  padding: var(--spacing-2xl);
  border: 1px solid rgba(255, 215, 0, 0.1);
}

.calculator {
  background: var(--gradient-primary);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
  text-align: center;
  border: 2px solid rgba(233, 69, 96, 0.3);
}

.calc-display {
  background: var(--primary-dark);
  border-radius: var(--radius-md);
  padding: var(--spacing-md);
  margin-bottom: var(--spacing-lg);
  border: 2px solid var(--accent-gold);
}

#calc-result {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-gold);
  font-family: 'Courier New', monospace;
}

.calc-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-md);
}

.calc-btn {
  background: var(--gradient-accent);
  color: var(--primary-dark);
  border: none;
  padding: var(--spacing-md);
  border-radius: var(--radius-md);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.calc-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.clear-btn {
  grid-column: 1 / -1;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.clear-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

.calc-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.form-fields {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.form-group {
  position: relative;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: var(--spacing-md) var(--spacing-md) var(--spacing-md) var(--spacing-md);
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 215, 0, 0.2);
  border-radius: var(--radius-md);
  color: #ffffff;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 3px rgba(233, 69, 96, 0.1);
}

.form-group label {
  position: absolute;
  left: var(--spacing-md);
  top: var(--spacing-md);
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.3s ease;
  pointer-events: none;
  background: transparent;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group select:focus + label,
.form-group select:not([value=""]) + label {
  top: -8px;
  left: var(--spacing-sm);
  font-size: 0.8rem;
  color: var(--accent-gold);
  background: var(--gradient-primary);
  padding: 0 var(--spacing-xs);
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-lg);
}

.form-consent input[type="checkbox"] {
  margin-top: 2px;
  width: 18px;
  height: 18px;
  accent-color: var(--accent-gold);
}

.form-consent label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
}

.form-consent a {
  color: var(--accent-gold);
  text-decoration: none;
}

.form-consent a:hover {
  text-decoration: underline;
}

.submit-btn {
  background: var(--gradient-accent);
  color: var(--primary-dark);
  border: none;
  padding: var(--spacing-md) var(--spacing-lg);
  border-radius: var(--radius-lg);
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
  box-shadow: var(--shadow-glow);
}

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

.btn-arrow {
  transition: transform 0.3s ease;
}

.submit-btn:hover .btn-arrow {
  transform: translateX(5px);
}

.footer {
  background: var(--primary-dark);
  padding: var(--spacing-2xl) 0 var(--spacing-xl);
  border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-xl);
}

.footer-section h4 {
  color: var(--accent-bright);
  margin-bottom: var(--spacing-md);
  font-size: 1.2rem;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--spacing-xs);
  line-height: 1.6;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-md);
  margin-top: var(--spacing-md);
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.social-links {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.social-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.social-link:hover {
  color: var(--accent-gold);
}

.footer-bottom {
  text-align: center;
  padding-top: var(--spacing-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

@media (max-width: 768px) {
  .nav-container {
    flex-direction: column;
    gap: var(--spacing-md);
  }

  .nav-menu {
    gap: var(--spacing-md);
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
    text-align: center;
  }

  .hero-visual {
    order: -1;
    height: 250px;
  }

  .tips-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
  }

  .tips-content.reverse {
    direction: ltr;
  }

  .form-wrapper {
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .calc-buttons {
    grid-template-columns: 1fr;
  }

  .clear-btn {
    grid-column: auto;
  }
}

.privacy-content,
.terms-content,
.cookies-content {
  padding: var(--spacing-2xl) 0;
  min-height: 70vh;
}

.privacy-content h1,
.terms-content h1,
.cookies-content h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: var(--spacing-md);
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.last-updated {
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin-bottom: var(--spacing-2xl);
}

.privacy-content section,
.terms-content section,
.cookies-content section {
  margin-bottom: var(--spacing-2xl);
  padding: var(--spacing-xl);
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 215, 0, 0.1);
}

.privacy-content h2,
.terms-content h2,
.cookies-content h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: var(--spacing-md);
  color: var(--accent-bright);
}

.privacy-content h3,
.terms-content h3,
.cookies-content h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin: var(--spacing-lg) 0 var(--spacing-sm);
  color: var(--accent-gold);
}

.privacy-content p,
.terms-content p,
.cookies-content p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-bottom: var(--spacing-md);
}

.privacy-content ul,
.terms-content ul,
.cookies-content ul {
  margin: var(--spacing-md) 0;
  padding-left: var(--spacing-lg);
}

.privacy-content li,
.terms-content li,
.cookies-content li {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: var(--spacing-xs);
}

.privacy-content a,
.terms-content a,
.cookies-content a {
  color: var(--accent-gold);
  text-decoration: none;
}

.privacy-content a:hover,
.terms-content a:hover,
.cookies-content a:hover {
  text-decoration: underline;
}

.thanks-content {
  padding: var(--spacing-2xl) 0;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.thanks-wrapper {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  padding: var(--spacing-2xl);
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 215, 0, 0.1);
}

.thanks-icon {
  margin-bottom: var(--spacing-xl);
}

.checkmark {
  display: inline-block;
  width: 80px;
  height: 80px;
  background: var(--gradient-accent);
  border-radius: 50%;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 80px;
  color: var(--primary-dark);
  box-shadow: var(--shadow-glow);
}

.thanks-wrapper h1 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: var(--spacing-lg);
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.thanks-message p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-bottom: var(--spacing-xl);
}

.thanks-details {
  text-align: left;
  background: rgba(255, 255, 255, 0.05);
  padding: var(--spacing-lg);
  border-radius: var(--radius-lg);
  margin-bottom: var(--spacing-xl);
  border: 1px solid rgba(255, 215, 0, 0.1);
}

.thanks-details h3 {
  color: var(--accent-bright);
  margin-bottom: var(--spacing-md);
  font-size: 1.3rem;
}

.thanks-details ul {
  list-style: none;
  padding: 0;
}

.thanks-details li {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--spacing-sm);
  padding-left: var(--spacing-sm);
  position: relative;
}

.thanks-details li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: var(--accent-gold);
  border-radius: 50%;
}

.thanks-contact {
  margin-bottom: var(--spacing-xl);
}

.thanks-contact p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--spacing-sm);
}

.contact-info {
  font-size: 1.1rem;
  color: var(--accent-bright);
}

.contact-info a {
  color: var(--accent-gold);
  text-decoration: none;
  display: block;
  margin-bottom: var(--spacing-xs);
}

.contact-info a:hover {
  text-decoration: underline;
}

.thanks-actions {
  margin-top: var(--spacing-xl);
}

@media (max-width: 768px) {
  .privacy-content section,
  .terms-content section,
  .cookies-content section {
    padding: var(--spacing-md);
  }

  .thanks-wrapper {
    padding: var(--spacing-lg);
  }

  .thanks-details {
    text-align: center;
  }

  .thanks-details li {
    text-align: left;
  }
}
