/*!*****************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[13].oneOf[12].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[13].oneOf[12].use[3]!./src/app/globals.css ***!
  \*****************************************************************************************************************************************************************************************************************************************************************/
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400&family=Montserrat:wght@300;400;500;600;700&display=swap');

/* globals.css */

/* 1. Light Classic (Default) */
:root, [data-theme="light-classic"] {
  --primary-color: #000000;
  --primary-hover: #333333;
  --secondary-color: #404040;
  --secondary-hover: #000000;
  --bg-color: #F7F7F7;
  --bg-surface: #FFFFFF;
  --bg-card: #FFFFFF;
  --bg-subtle: #f8f9fa;
  --text-main: #000000;
  --text-muted: #666666;
  --glass-bg: #FFFFFF;
  --glass-border: #EAEAEA;
  --danger: #ef4444;
  --success: #10b981;
  --input-bg: #FFFFFF;
}

/* 2. Light Blue / Elegance */
[data-theme="light-blue"] {
  --primary-color: #1e3a8a; /* Indigo-900 */
  --primary-hover: #1e40af;
  --secondary-color: #3b82f6;
  --secondary-hover: #2563eb;
  --bg-color: #f0f4f8;
  --bg-surface: #ffffff;
  --bg-card: #ffffff;
  --bg-subtle: #e0e7ff;
  --text-main: #0f172a;
  --text-muted: #475569;
  --glass-bg: #ffffff;
  --glass-border: #cbd5e1;
  --danger: #ef4444;
  --success: #10b981;
  --input-bg: #ffffff;
}

/* 3. Dark Minimal */
[data-theme="dark-minimal"] {
  --primary-color: #ffffff;
  --primary-hover: #e2e8f0;
  --secondary-color: #94a3b8;
  --secondary-hover: #cbd5e1;
  --bg-color: #0f172a;
  --bg-surface: #1e293b;
  --bg-card: #1e293b;
  --bg-subtle: #334155;
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --glass-bg: #1e293b;
  --glass-border: #334155;
  --danger: #f87171;
  --success: #34d399;
  --input-bg: #0f172a;
}

/* 4. Dark Premium (Gold) */
[data-theme="dark-gold"] {
  --primary-color: #d4af37; /* Gold */
  --primary-hover: #b8962e;
  --secondary-color: #a38c41;
  --secondary-hover: #d4af37;
  --bg-color: #121212;
  --bg-surface: #1a1a1a;
  --bg-card: #1a1a1a;
  --bg-subtle: #242424;
  --text-main: #f5f5f5;
  --text-muted: #a3a3a3;
  --glass-bg: #1a1a1a;
  --glass-border: #333333;
  --danger: #ff5252;
  --success: #4caf50;
  --input-bg: #121212;
}

/* 5. Lilo & Stitch (Admin Only) */
[data-theme="lilo-stitch"] {
  --primary-color: #ec4899; /* Hibiscus Pink */
  --primary-hover: #be185d;
  --secondary-color: #3b82f6; /* Stitch Blue */
  --secondary-hover: #1d4ed8;
  --bg-color: #e0f2fe; /* Ocean Water */
  --bg-surface: #ffffff;
  --bg-card: #ffffff;
  --bg-subtle: #fce7f3; /* Light Pink */
  --text-main: #1e3a8a; /* Deep Blue */
  --text-muted: #475569;
  --glass-bg: #ffffff;
  --glass-border: #93c5fd;
  --danger: #ef4444;
  --success: #10b981;
  --input-bg: #ffffff;
}

[data-theme="lilo-stitch"] .dashboard-layout::after {
  content: "";
  position: fixed;
  bottom: -20px;
  right: 2%;
  width: 450px;
  height: 450px;
  background-image: url('/lilo-stitch-hug.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom right;
  opacity: 0.25;
  pointer-events: none;
  z-index: -1;
}

[data-theme="lilo-stitch"] .dashboard-layout::before {
  content: "";
  position: fixed;
  top: 10%;
  right: 5%;
  width: 250px;
  height: 250px;
  background-image: url('/lilo-dance.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top right;
  opacity: 0.15;
  pointer-events: none;
  z-index: -1;
}

[data-theme="lilo-stitch"] .sidebar::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 250px;
  background-image: url('/stitch-solo.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom center;
  opacity: 0.35;
  pointer-events: none;
  z-index: -1;
}

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

body {
  background-color: var(--bg-color);
  color: var(--text-main);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  line-height: 1.5;
  min-height: 100vh;
}

/* Utils */
.flex-center { display: flex; align-items: center; justify-content: center; min-height: 100vh; }
.w-full { width: 100%; }
.max-w-md { max-width: 28rem; }
.text-center { text-align: center; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mt-4 { margin-top: 1rem; }
.mt-3 { margin-top: 0.75rem; }
.pb-2 { padding-bottom: 0.5rem; }
.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.text-3xl { font-size: 1.875rem; }
.text-xl { font-size: 1.25rem; }
.text-sm { font-size: 0.875rem; }
.text-muted { color: var(--text-muted); }
.text-success { color: var(--success); }
.border-b { border-bottom: 1px solid var(--glass-border); }
.flex { display: flex; }
.items-center { align-items: center; }
.gap-4 { gap: 1rem; }

/* Typography */
.gradient-text {
  background: linear-gradient(to right, #818cf8, #c084fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Clean Components (Replaces Glassmorphism) */
.glass-panel {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.card {
  border-radius: 16px;
  padding: 2.5rem;
}

.card.hoverable {
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.card.hoverable:hover {
  transform: translateY(-5px);
  border-color: #CCCCCC;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* Forms */
.form-stack {
  display: flex;
  flex-direction: column;
  gap: 2rem; /* Increased spacing */
}

.input-group label {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 1rem; /* Increased spacing */
  color: var(--text-main);
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
input[type="tel"],
input[type="url"],
input[type="date"],
input[type="time"],
input[type="month"],
input[type="datetime-local"],
select,
textarea {
  width: 100%;
  padding: 1rem 1.5rem !important; /* Even bigger padding to ensure space from the box border to the text */
  border-radius: 8px; /* Rounder borders */
  background-color: var(--input-bg);
  border: 1px solid var(--glass-border);
  color: var(--text-main);
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.2s ease-in-out;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  box-sizing: border-box;
  min-height: 56px;
}

select {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1.2em;
  padding-right: 3rem;
  cursor: pointer;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  background-color: var(--bg-surface);
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.05);
}

select option {
  background-color: var(--bg-surface);
  color: var(--text-main);
}

input:hover,
select:hover,
textarea:hover {
  border-color: #9CA3AF;
}

.file-input-wrapper {
  position: relative;
  width: 100%;
  height: 5rem;
  background: var(--input-bg);
  border: 1px dashed var(--glass-border);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  overflow: hidden;
  transition: border-color 0.2s;
}
.file-input-wrapper:hover {
  border-color: var(--primary-color);
}
.file-input-hidden {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 10;
}
.file-input-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 90%;
  margin-bottom: 0.5rem;
}
.file-input-btn {
  padding: 0.5rem 1rem;
  border-radius: 6px;
  border: 1px solid var(--glass-border);
  background-color: var(--bg-surface);
  color: var(--text-main);
  font-weight: 600;
  font-size: 0.8rem;
  pointer-events: none;
}
.file-input::-webkit-file-upload-button:hover {
  background-color: var(--primary-color);
  color: var(--bg-color);
}
.file-input::file-selector-button:hover {
  background-color: var(--primary-color);
  color: var(--bg-color);
}

/* Buttons */
.btn-primary, .btn-secondary {
  border: 1px solid var(--primary-color);
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

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

.btn-primary:hover {
  background-color: var(--text-main);
  color: var(--bg-surface);
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-main);
}
.btn-secondary:hover {
  background-color: var(--bg-surface);
}

.btn-success {
  background-color: var(--success);
  color: white;
  border-color: var(--success);
}
.btn-success:hover {
  opacity: 0.9;
}

.btn-small {
  padding: 0.4rem 1rem !important;
  font-size: 0.75rem !important;
  border-radius: 4px !important;
  letter-spacing: normal !important;
  text-transform: none !important;
}

/* Tables */
.admin-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}

.admin-table th, .admin-table td {
  padding: 1rem;
  border-bottom: 1px solid var(--glass-border);
  text-align: left;
  vertical-align: middle;
}

.admin-table th {
  font-weight: 600;
  color: var(--text-muted);
  background-color: var(--bg-subtle);
}

.admin-table tbody tr:hover {
  background-color: var(--bg-subtle);
}

/* Dashboard Layout */
.dashboard-layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 280px;
  padding: 2rem;
  border-right: 1px solid var(--glass-border);
  border-radius: 0;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
}

.sidebar-header {
  margin-bottom: 2.5rem;
}

.nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.nav-links li {
  padding: 0.75rem 1rem;
  border-radius: 4px;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s ease;
  font-weight: 500;
}

.nav-links li:hover {
  background-color: var(--bg-subtle);
  color: var(--text-main);
}
.nav-links li.active {
  background-color: var(--primary-color);
  color: var(--bg-color);
}
.nav-links li.active li {
  color: inherit;
}

/* Theme Switcher Styles */
.theme-switcher-container {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem;
  border-top: 1px solid var(--glass-border);
  margin-top: auto;
}

.theme-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--glass-border);
  cursor: pointer;
  transition: transform 0.2s ease;
}

.theme-btn:hover {
  transform: scale(1.1);
}

.theme-btn.active {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px var(--bg-color), 0 0 0 4px var(--primary-color);
}

.mobile-menu-btn {
  display: none;
}

.dashboard-content {
  flex: 1 1;
  padding: 3rem 4rem;
  overflow-y: auto;
}

.grid-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  grid-gap: 2rem;
  gap: 2rem;
}

.upload-section {
  background: var(--bg-surface);
  padding: 1.25rem;
  border-radius: 8px;
  border: 1px solid var(--glass-border);
}

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

/* =========================================
   RESPONSIVE DESIGN (MÓVIL)
   ========================================= */
@media (max-width: 768px) {
  .dashboard-layout {
    flex-direction: column;
  }
  
  .sidebar {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid var(--glass-border);
    padding: 1rem;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 50;
    background: var(--bg-surface);
    border-radius: 0 0 16px 16px;
    height: auto;
  }
  
  .sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 0 !important;
  }

  .sidebar h2 {
    font-size: 1.5rem;
    margin-bottom: 0;
    text-align: left;
  }

  .mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-main);
    cursor: pointer;
  }

  .nav-links-container {
    display: none;
    flex-direction: column;
    padding-top: 1rem;
    margin-top: 1rem;
    border-top: 1px solid var(--glass-border);
  }

  .nav-links-container.open {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    overflow-x: visible;
    white-space: normal;
    gap: 0.5rem;
    padding-bottom: 0;
  }
  
  .nav-links li {
    padding: 0.5rem 0.75rem;
    font-size: 0.9rem;
  }

  .dashboard-content {
    padding: 1.5rem 1rem;
  }

  .card {
    padding: 1.5rem;
  }

  /* Ajustar los grids de los formularios en móviles */
  .grid-cols-4, .grid-cols-5, .md\:grid-cols-2 {
    grid-template-columns: 1fr !important;
  }
  
  .flex.gap-4 {
    flex-direction: column;
  }
}

.dashboard-content {
  animation: fadeIn 0.5s ease-out;
}

/* --- Landing Page Styles --- */
.landing-page {
  min-height: 100vh;
}

.landing-nav {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  border-radius: 0;
  border-top: none;
  border-left: none;
  border-right: none;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: linear-gradient(to top right, var(--primary-color), var(--secondary-color));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: white;
  box-shadow: 0 4px 10px rgba(79, 70, 229, 0.3);
}

.logo-text {
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.025em;
}

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

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

.nav-links-horizontal {
  display: none;
}
@media (min-width: 768px) {
  .nav-links-horizontal {
    display: flex;
    align-items: center;
    gap: 1.5rem;
  }
}

.nav-links-horizontal a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links-horizontal a:hover {
  color: white;
}

.hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 1rem;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background-color: rgba(79, 70, 229, 0.15);
  border-radius: 50%;
  filter: blur(120px);
  z-index: -1;
  pointer-events: none;
}

.hero-badge {
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  display: inline-block;
  text-transform: uppercase;
}

.hero-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  max-width: 56rem;
  letter-spacing: -0.025em;
  line-height: 1.1;
}
@media (min-width: 768px) {
  .hero-title { font-size: 4.5rem; }
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 42rem;
  margin-bottom: 2.5rem;
  line-height: 1.625;
}
@media (min-width: 768px) {
  .hero-subtitle { font-size: 1.25rem; }
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn-large {
  font-size: 1.125rem;
  padding: 0.75rem 2rem;
  text-decoration: none;
}

.section-container {
  max-width: 72rem;
  margin: 0 auto;
}

.method-section {
  padding: 6rem 1rem;
  background-color: rgba(0, 0, 0, 0.4);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-header.left-aligned {
  text-align: left;
}

.section-header h2 {
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 1rem;
}
.section-header p {
  color: var(--text-muted);
  max-width: 42rem;
  margin: 0 auto;
}
.section-header.left-aligned p {
  margin: 0;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 1.5rem;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .features-grid { grid-template-columns: repeat(4, 1fr); }
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.promo-banner {
  margin-top: 4rem;
  text-align: center;
}

.promo-card {
  padding: 2rem;
  display: inline-block;
  max-width: 32rem;
  border-color: rgba(79, 70, 229, 0.3);
}

.schemas-section {
  padding: 6rem 1rem;
  position: relative;
}

.schema-glow {
  position: absolute;
  top: 0;
  right: 0;
  width: 600px;
  height: 600px;
  background-color: rgba(16, 185, 129, 0.1);
  border-radius: 50%;
  filter: blur(100px);
  z-index: -1;
  pointer-events: none;
}

.schemas-grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 2rem;
  gap: 2rem;
}
@media (min-width: 768px) {
  .schemas-grid { grid-template-columns: repeat(2, 1fr); }
}

.schema-card {
  position: relative;
  overflow: hidden;
  padding: 2rem;
}

.schema-free::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background-color: var(--primary-color);
}
.schema-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background-color: var(--secondary-color);
}

.schema-badge {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
  display: block;
}

.schema-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: white;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.2s;
}

.schema-free .schema-link:hover { color: var(--primary-color); }
.schema-premium .schema-link:hover { color: var(--secondary-color); }

.landing-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 3rem 1rem;
  background-color: rgba(0, 0, 0, 0.6);
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .footer-content {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-contact {
  color: var(--text-muted);
  font-size: 0.875rem;
  text-align: center;
}
@media (min-width: 768px) {
  .footer-contact { text-align: left; }
}

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

.footer-copy {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
}

/* ==========================================================================
   OPOSITAGASS CLASSIC WIX THEME (SCOPED TO .opositagass-landing)
   ========================================================================== */

.opositagass-landing {
  background-color: #FFFFFF;
  color: #000000;
  font-family: 'Montserrat', sans-serif;
  min-height: 100vh;
  line-height: 1.6;
}

.opositagass-landing h1, 
.opositagass-landing h2, 
.opositagass-landing h3, 
.opositagass-landing h4,
.opositagass-landing .serif-font {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  color: #000000;
}

/* Classic Navbar */
.classic-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 4rem;
  background-color: #FFFFFF;
  border-bottom: 1px solid #EAEAEA;
}
.classic-nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #000000;
  text-decoration: none;
}
.classic-nav-links {
  display: none;
}
@media (min-width: 768px) {
  .classic-nav-links {
    display: flex;
    gap: 2.5rem;
  }
}
.classic-nav-links a {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #404040;
  text-decoration: none;
  font-weight: 500;
}
.classic-nav-links a:hover {
  color: #000000;
}

/* Classic Button */
.classic-btn {
  background-color: #000000;
  color: #FFFFFF;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  border: 1px solid #000000;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
}
.classic-btn:hover {
  background-color: #FFFFFF;
  color: #000000;
}

/* Hero Section */
.classic-hero {
  text-align: center;
  padding: 6rem 2rem 5rem;
  background-color: #F9F9F9;
}
.classic-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.2;
}
.classic-hero p {
  font-size: 1.1rem;
  color: #404040;
  max-width: 600px;
  margin: 0 auto 2.5rem auto;
}
.classic-hero-image {
  max-width: 900px;
  margin: 4rem auto 0;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* Sections */
.classic-section {
  padding: 6rem 2rem;
  background-color: #FFFFFF;
  text-align: center;
}
.classic-section.gray-bg {
  background-color: #F7F7F7;
}
.classic-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}
.classic-section-subtitle {
  font-size: 1.1rem;
  color: #404040;
  max-width: 700px;
  margin: 0 auto 3rem auto;
}

/* Features/Methods Grid */
.classic-grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 3rem;
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .classic-grid { grid-template-columns: repeat(2, 1fr); }
}

.classic-card {
  padding: 2.5rem;
  background-color: #FFFFFF;
  border: 1px solid #EAEAEA;
  transition: box-shadow 0.3s ease;
}
.classic-card:hover {
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.classic-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.classic-card p {
  color: #666666;
  font-size: 0.95rem;
}

/* Schemes / List View */
.classic-list {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}
.classic-list-item {
  padding: 2rem 0;
  border-bottom: 1px solid #EAEAEA;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 768px) {
  .classic-list-item {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.classic-list-item h4 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

/* Footer */
.classic-footer {
  background-color: #FFFFFF;
  border-top: 1px solid #EAEAEA;
  padding: 4rem 2rem;
  text-align: center;
}
.classic-footer h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.classic-footer a.email-link {
  color: #000000;
  font-size: 1.1rem;
  text-decoration: underline;
  text-underline-offset: 4px;
}

