/* TidyRoll Landing Page Styles */

/* CSS Variables */
:root {
  --background: #0B0F1A;
  --surface: #121A2B;
  --text-primary: #EAF0FF;
  --text-muted: #A8B3CF;
  --accent: #2AF6C5;
  --delete: #FF3B5C;
  --pro: #FFB020;
  --pro-gradient-start: #2AF6C5;
  --pro-gradient-end: #3A7BFF;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Inter', 'Segoe UI', Roboto, sans-serif;
  background-color: var(--background);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

.text-gradient {
  background: linear-gradient(135deg, var(--pro-gradient-start), var(--pro-gradient-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

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

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(42, 246, 197, 0.3);
}

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

.btn-secondary:hover {
  background-color: rgba(42, 246, 197, 0.1);
}

.btn-pro {
  background: linear-gradient(135deg, var(--pro), #FF8C00);
  color: var(--background);
}

.btn-pro:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 176, 32, 0.3);
}

/* Glass Card */
.glass-card {
  background: rgba(18, 26, 43, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(234, 240, 255, 0.1);
  border-radius: 16px;
}

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  background: rgba(11, 15, 26, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(234, 240, 255, 0.05);
}

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

.nav-logo {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-logo svg {
  width: 32px;
  height: 32px;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

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

.nav-cta {
  padding: 10px 20px;
  font-size: 14px;
}

/* Mobile Menu */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.mobile-menu-btn span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: all 0.3s ease;
}

.mobile-menu {
  display: none;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .nav-cta {
    display: none;
  }
  
  .mobile-menu-btn {
    display: flex;
  }
  
  .mobile-menu {
    display: block;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--surface);
    padding: 24px;
    transform: translateY(-100%);
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
  }
  
  .mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  
  .mobile-menu a {
    display: block;
    padding: 12px 0;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 18px;
    border-bottom: 1px solid rgba(234, 240, 255, 0.1);
  }
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(42, 246, 197, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content h1 {
  font-size: clamp(40px, 6vw, 64px);
  margin-bottom: 24px;
}

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

.hero-content p {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 500px;
}

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

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

/* iPhone Mockup */
.iphone-mockup {
  position: relative;
  width: 280px;
  height: 580px;
  background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
  border-radius: 44px;
  padding: 12px;
  box-shadow: 
    0 50px 100px rgba(0, 0, 0, 0.5),
    inset 0 0 0 2px rgba(255, 255, 255, 0.1);
}

.iphone-screen {
  width: 100%;
  height: 100%;
  background: var(--surface);
  border-radius: 36px;
  overflow: hidden;
  position: relative;
}

.iphone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 28px;
  background: #1a1a1a;
  border-radius: 0 0 20px 20px;
  z-index: 10;
}

/* Swipe Cards Animation */
.swipe-cards {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 260px;
}

.swipe-card {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  background: linear-gradient(135deg, #1a2a3a, #0d1520);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  transition: transform 0.5s ease;
}

.swipe-card:nth-child(1) {
  transform: rotate(-3deg) translateY(10px);
  z-index: 1;
}

.swipe-card:nth-child(2) {
  transform: rotate(2deg) translateY(5px);
  z-index: 2;
}

.swipe-card:nth-child(3) {
  transform: rotate(0deg);
  z-index: 3;
}

.swipe-card.swiping-right {
  animation: swipeRight 1.5s ease-in-out infinite;
}

.swipe-card.swiping-left {
  animation: swipeLeft 1.5s ease-in-out infinite;
}

@keyframes swipeRight {
  0%, 100% { transform: translateX(0) rotate(0deg); }
  50% { transform: translateX(30px) rotate(5deg); }
}

@keyframes swipeLeft {
  0%, 100% { transform: translateX(0) rotate(0deg); }
  50% { transform: translateX(-30px) rotate(-5deg); }
}

/* Floating Elements */
.floating-badge {
  position: absolute;
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 14px;
  animation: float 3s ease-in-out infinite;
}

.badge-keep {
  top: 20%;
  right: -40px;
  background: rgba(42, 246, 197, 0.2);
  color: var(--accent);
  border: 1px solid var(--accent);
  animation-delay: 0s;
}

.badge-delete {
  bottom: 25%;
  left: -40px;
  background: rgba(255, 59, 92, 0.2);
  color: var(--delete);
  border: 1px solid var(--delete);
  animation-delay: 1.5s;
}

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

@media (max-width: 968px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .hero-visual {
    order: -1;
  }
  
  .iphone-mockup {
    width: 240px;
    height: 500px;
  }
}

/* Features Section */
.features {
  padding: 100px 0;
  position: relative;
}

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

.section-header h2 {
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 16px;
}

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

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

.feature-card {
  padding: 32px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 24px;
}

.feature-icon.accent {
  background: rgba(42, 246, 197, 0.15);
  color: var(--accent);
}

.feature-icon.gradient {
  background: linear-gradient(135deg, rgba(42, 246, 197, 0.15), rgba(58, 123, 255, 0.15));
  color: var(--accent);
}

.feature-icon.white {
  background: rgba(234, 240, 255, 0.1);
  color: var(--text-primary);
}

.feature-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 15px;
}

/* How It Works Section */
.how-it-works {
  padding: 100px 0;
  background: var(--surface);
}

.steps-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.step {
  text-align: center;
  position: relative;
}

.step-number {
  font-size: 72px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--pro-gradient-start), var(--pro-gradient-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.5;
  line-height: 1;
  margin-bottom: 20px;
}

.step h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.step p {
  color: var(--text-muted);
  font-size: 15px;
  max-width: 280px;
  margin: 0 auto;
}

.step-connector {
  position: absolute;
  top: 40px;
  right: -20px;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
}

.step:last-child .step-connector {
  display: none;
}

@media (max-width: 768px) {
  .steps-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  
  .step-connector {
    display: none;
  }
}

/* Pricing Section */
.pricing {
  padding: 100px 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 900px;
  margin: 60px auto 0;
}

.pricing-card {
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.pricing-card.pro {
  border: 2px solid transparent;
  background: 
    linear-gradient(var(--surface), var(--surface)) padding-box,
    linear-gradient(135deg, var(--pro-gradient-start), var(--pro-gradient-end)) border-box;
}

.pricing-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, var(--pro-gradient-start), var(--pro-gradient-end));
  color: var(--background);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.pricing-card h3 {
  font-size: 24px;
  margin-bottom: 8px;
}

.pricing-price {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 24px;
}

.pricing-price span {
  font-size: 18px;
  font-weight: 400;
  color: var(--text-muted);
}

.pricing-features {
  list-style: none;
  margin-bottom: 32px;
}

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

.pricing-features li svg {
  color: var(--accent);
  flex-shrink: 0;
}

.pricing-options {
  text-align: center;
  margin-top: 40px;
  padding: 24px;
  border-radius: 12px;
  background: rgba(18, 26, 43, 0.5);
}

.pricing-options h4 {
  font-size: 14px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.pricing-options-list {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.pricing-options-list span {
  color: var(--text-primary);
  font-size: 14px;
}

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

/* Privacy Section */
.privacy {
  padding: 100px 0;
  background: var(--surface);
}

.privacy-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.privacy-content > p {
  font-size: 20px;
  color: var(--text-muted);
  margin-bottom: 48px;
  line-height: 1.7;
}

.trust-badges {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.trust-badge {
  padding: 24px;
  text-align: center;
}

.trust-badge-icon {
  font-size: 32px;
  margin-bottom: 12px;
}

.trust-badge h4 {
  font-size: 14px;
  color: var(--text-primary);
}

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

/* FAQ Section */
.faq {
  padding: 100px 0;
}

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

.faq-item {
  border-bottom: 1px solid rgba(234, 240, 255, 0.1);
}

.faq-question {
  width: 100%;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 18px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: var(--accent);
}

.faq-question svg {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: 24px;
}

.faq-answer p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.7;
}

/* Footer */
.footer {
  padding: 60px 0 30px;
  background: var(--background);
  border-top: 1px solid rgba(234, 240, 255, 0.1);
}

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

.footer-logo {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
}

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

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

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

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(234, 240, 255, 0.05);
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 14px;
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* App Store Button */
.app-store-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #000;
  color: #fff;
  padding: 12px 24px;
  border-radius: 12px;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.app-store-btn:hover {
  background: #1a1a1a;
  transform: translateY(-2px);
}

.app-store-btn svg {
  width: 28px;
  height: 28px;
}

.app-store-btn span {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.app-store-btn .small {
  font-size: 10px;
  opacity: 0.8;
}

.app-store-btn .large {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
}

/* ============================================
   Support Page Styles
   ============================================ */

.support-page {
  min-height: 100vh;
  padding: 120px 0 80px;
}

.support-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.support-info h1 {
  font-size: clamp(36px, 5vw, 48px);
  margin-bottom: 24px;
}

.support-info > p {
  color: var(--text-muted);
  font-size: 18px;
  margin-bottom: 40px;
  line-height: 1.7;
}

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

.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
}

.contact-method-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(42, 246, 197, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

.contact-method h3 {
  font-size: 16px;
  margin-bottom: 4px;
}

.contact-method p {
  color: var(--text-muted);
  font-size: 14px;
}

.contact-form-card {
  padding: 40px;
}

.contact-form-card h2 {
  font-size: 24px;
  margin-bottom: 8px;
}

.contact-form-card > p {
  color: var(--text-muted);
  margin-bottom: 32px;
}

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

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

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  background: rgba(11, 15, 26, 0.8);
  border: 1px solid rgba(234, 240, 255, 0.15);
  border-radius: 12px;
  color: var(--text-primary);
  font-size: 16px;
  font-family: inherit;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(42, 246, 197, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
  opacity: 0.6;
}

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

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23A8B3CF' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.form-group select option {
  background: var(--surface);
  color: var(--text-primary);
}

.turnstile-wrapper {
  margin-bottom: 24px;
}

.form-submit {
  width: 100%;
}

.form-message {
  padding: 16px;
  border-radius: 12px;
  margin-bottom: 24px;
  display: none;
}

.form-message.success {
  display: block;
  background: rgba(42, 246, 197, 0.15);
  border: 1px solid var(--accent);
  color: var(--accent);
}

.form-message.error {
  display: block;
  background: rgba(255, 59, 92, 0.15);
  border: 1px solid var(--delete);
  color: var(--delete);
}

.form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

@media (max-width: 968px) {
  .support-grid {
    grid-template-columns: 1fr;
  }
  
  .support-info {
    text-align: center;
  }
  
  .contact-methods {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .contact-method {
    flex: 1;
    min-width: 250px;
  }
}

@media (max-width: 480px) {
  .contact-form-card {
    padding: 24px;
  }
}

/* ============================================
   Legal Page Styles (Datenschutz, Impressum)
   ============================================ */

.legal-page {
  min-height: 100vh;
  padding: 120px 0 80px;
}

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

.legal-header {
  margin-bottom: 48px;
}

.legal-header h1 {
  font-size: clamp(32px, 5vw, 48px);
  margin-bottom: 16px;
}

.legal-header .last-updated {
  color: var(--text-muted);
  font-size: 14px;
}

.legal-content {
  padding: 40px;
}

.legal-content h2 {
  font-size: 24px;
  margin-top: 40px;
  margin-bottom: 16px;
  color: var(--accent);
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content h3 {
  font-size: 18px;
  margin-top: 28px;
  margin-bottom: 12px;
}

.legal-content p {
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.8;
}

.legal-content ul {
  color: var(--text-muted);
  margin-bottom: 16px;
  padding-left: 24px;
  line-height: 1.8;
}

.legal-content li {
  margin-bottom: 8px;
}

.legal-content a {
  color: var(--accent);
  text-decoration: none;
}

.legal-content a:hover {
  text-decoration: underline;
}

.legal-content strong {
  color: var(--text-primary);
}

.contact-box {
  background: rgba(42, 246, 197, 0.1);
  border: 1px solid rgba(42, 246, 197, 0.3);
  border-radius: 12px;
  padding: 20px;
  margin: 24px 0;
}

.contact-box p {
  margin-bottom: 8px;
}

.contact-box p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .legal-content {
    padding: 24px;
  }
}

/* ============================================
   Utility Classes
   ============================================ */

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

.mobile-menu-cta {
  margin-top: 16px;
  width: 100%;
}

.btn-full-width {
  width: 100%;
}

/* ============================================
   Modal / Popup Styles
   ============================================ */

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: var(--surface);
  border: 1px solid rgba(234, 240, 255, 0.1);
  border-radius: 20px;
  padding: 40px;
  max-width: 420px;
  width: 90%;
  text-align: center;
  transform: scale(0.9) translateY(20px);
  transition: transform 0.3s ease;
}

.modal-overlay.active .modal {
  transform: scale(1) translateY(0);
}

.modal-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(42, 246, 197, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: var(--accent);
}

.modal-icon svg {
  width: 32px;
  height: 32px;
}

.modal h3 {
  font-size: 24px;
  margin-bottom: 12px;
}

.modal p {
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.6;
}

.modal-close {
  width: 100%;
}
