@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --teal-900: #042526;
  --teal-800: #083c3e;
  --teal-700: #005f60;
  --teal-600: #087577;
  --teal-500: #0a8f91;
  --teal-400: #14b8ba;
  --teal-300: #5eead4;
  --teal-100: #e6f6f6;
  --teal-50: #f2fbfb;
  --slate-900: #090e14;
  --slate-800: #131b24;
  --slate-700: #222d38;
  --slate-600: #3f4e5e;
  --slate-500: #64748b;
  --slate-400: #94a3b8;
  --slate-300: #cbd5e1;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;
  --white: #ffffff;
  --card-bg: rgba(255, 255, 255, 0.94);
  --card-dark: rgba(8, 20, 26, 0.88);
  --border-light: rgba(10, 143, 145, 0.18);
  --border-subtle: #e2e8f0;
  --shadow-sm: 0 2px 8px rgba(4, 37, 38, 0.04);
  --shadow-md: 0 10px 30px rgba(4, 37, 38, 0.08);
  --shadow-lg: 0 20px 45px rgba(4, 37, 38, 0.12);
  --shadow-glow: 0 0 25px rgba(10, 143, 145, 0.25);
  --font-serif: 'Cinzel', serif;
  --font-sans: 'Plus Jakarta Sans', sans-serif;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-full: 9999px;
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--slate-50);
  color: var(--slate-800);
}

body {
  font-family: var(--font-sans);
  line-height: 1.65;
  background-color: var(--slate-50);
  color: var(--slate-800);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

html body h1,
body h1,
h1 {
  font-family: var(--font-serif) !important;
  font-weight: 800 !important;
  letter-spacing: -0.02em !important;
  color: var(--slate-900);
  line-height: 1.15 !important;
  font-size: clamp(2.8rem, 5.8vw, 4.6rem) !important;
}

html body h2,
body h2,
h2 {
  font-family: var(--font-serif) !important;
  font-weight: 700 !important;
  letter-spacing: -0.015em !important;
  color: var(--slate-900);
  line-height: 1.2 !important;
  font-size: clamp(2.2rem, 4.2vw, 3.5rem) !important;
}

html body h3,
body h3,
h3 {
  font-family: var(--font-serif) !important;
  font-weight: 700 !important;
  color: var(--slate-900);
  line-height: 1.25 !important;
  font-size: clamp(1.6rem, 2.8vw, 2.3rem) !important;
}

html body h4,
body h4,
h4 {
  font-family: var(--font-serif) !important;
  font-weight: 600 !important;
  color: var(--slate-900);
  line-height: 1.3 !important;
  font-size: clamp(1.25rem, 2vw, 1.65rem) !important;
}

html body h5,
body h5,
h5 {
  font-family: var(--font-serif) !important;
  font-weight: 600 !important;
  font-size: 1.15rem !important;
}

html body h6,
body h6,
h6 {
  font-family: var(--font-serif) !important;
  font-weight: 600 !important;
  font-size: 1rem !important;
}

html body .serif,
.serif {
  font-family: var(--font-serif) !important;
}

p {
  color: var(--slate-600);
  font-size: 1.05rem;
  line-height: 1.75;
}

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

a:hover {
  color: var(--teal-500);
}

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

.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.header-inner {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0.85rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.header-logo img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

.logo-brand {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--teal-900);
  text-transform: uppercase;
}

.logo-brand span {
  color: var(--teal-500);
}

.header-nav {
  display: none;
}

@media (min-width: 1080px) {
  .header-nav {
    display: block;
  }
}

.header-nav ul {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  list-style: none;
}

.header-nav a {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--slate-700);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  padding: 0.4rem 0.6rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.header-nav a:hover,
.header-nav a.active {
  color: var(--teal-700);
  background: var(--teal-50);
}

.header-contacts {
  display: none;
  align-items: center;
  gap: 1.25rem;
}

@media (min-width: 1280px) {
  .header-contacts {
    display: flex;
  }
}

.contact-box {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--slate-600);
}

.contact-box i {
  color: var(--teal-500);
  font-size: 0.875rem;
}

.btn-burger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--teal-50);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  color: var(--teal-900);
  font-size: 1.25rem;
  cursor: pointer;
  transition: var(--transition);
}

@media (min-width: 1080px) {
  .btn-burger {
    display: none;
  }
}

.btn-burger:hover {
  background: var(--teal-100);
  color: var(--teal-600);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  height: calc(100vh - 70px);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 1.5rem 1.5rem 3rem 1.5rem;
  overflow-y: auto;
  z-index: 999;
  flex-direction: column;
  gap: 1rem;
  border-top: 1px solid var(--border-light);
  animation: slideDown 0.3s ease-out forwards;
}

.mobile-menu.active {
  display: flex;
}

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

.mobile-menu a {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 600;
  color: var(--slate-800);
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
}

.mobile-menu a:hover {
  background: var(--teal-50);
  color: var(--teal-700);
  border-color: var(--teal-300);
}

.mobile-menu a i {
  color: var(--teal-500);
  width: 20px;
  text-align: center;
}

.mobile-menu-contacts {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--slate-200);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.mobile-menu-contacts .contact-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--slate-600);
}

.mobile-menu-contacts .contact-row i {
  color: var(--teal-500);
  margin-top: 0.2rem;
}

.container {
  width: 100%;
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-narrow {
  max-width: 960px;
}

.container-wide {
  max-width: 1440px;
}

.section {
  padding: 5.5rem 0;
  position: relative;
}

.section-hero {
  padding: 7rem 0 6rem 0;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  position: relative;
}

.section-dark {
  background-color: var(--slate-900);
  color: var(--slate-100);
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: var(--white);
}

.section-dark p {
  color: var(--slate-300);
}

.section-teal-tint {
  background-color: var(--teal-50);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.section-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 3.5rem auto;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.9rem;
  background: var(--teal-100);
  color: var(--teal-800);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
  border: 1px solid var(--border-light);
}

html body .section-hero h1,
.section-hero h1 {
  font-size: clamp(3rem, 6.2vw, 4.8rem) !important;
  font-weight: 800 !important;
  line-height: 1.12 !important;
  letter-spacing: -0.02em !important;
}

html body .section-title,
.section-title {
  font-size: clamp(2.4rem, 4.8vw, 3.8rem) !important;
  font-weight: 800 !important;
  line-height: 1.15 !important;
  letter-spacing: -0.015em !important;
  margin-bottom: 1.25rem !important;
}

.section-sub {
  font-size: 1.125rem;
  color: var(--slate-500);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.85rem 1.85rem;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  font-family: var(--font-sans);
}

.btn-primary {
  background: var(--teal-700);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(0, 95, 96, 0.28);
}

.btn-primary:hover {
  background: var(--teal-600);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0, 95, 96, 0.38);
}

.btn-outline {
  background: transparent;
  border-color: var(--teal-600);
  color: var(--teal-700);
}

.btn-outline:hover {
  background: var(--teal-50);
  color: var(--teal-800);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--white);
  backdrop-filter: blur(8px);
}

.btn-outline-white:hover {
  background: var(--white);
  color: var(--teal-900);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.5rem 1.15rem;
  font-size: 0.8125rem;
  border-radius: var(--radius-sm);
}

.btn-lg {
  padding: 1.1rem 2.4rem;
  font-size: 1.05rem;
  border-radius: var(--radius-md);
}

.card {
  background: var(--card-bg);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--teal-400);
}

.card-dark {
  background: var(--card-dark);
  border-color: rgba(255, 255, 255, 0.1);
  color: var(--slate-100);
}

.card-dark:hover {
  border-color: var(--teal-400);
  box-shadow: var(--shadow-glow);
}

.card-media {
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 1.5rem;
  position: relative;
  background-size: cover;
  background-position: center;
  min-height: 220px;
}

.card-media img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: var(--transition);
}

.card:hover .card-media img {
  transform: scale(1.04);
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

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

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

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

@media (min-width: 1080px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.grid-4 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
}

@media (min-width: 640px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1080px) {
  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.grid-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: center;
}

@media (min-width: 992px) {
  .grid-split {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.grid-split.reverse {
  direction: ltr;
}

@media (min-width: 992px) {
  .grid-split.reverse {
    grid-template-columns: 0.9fr 1.1fr;
  }
  .grid-split.reverse > :first-child {
    order: 2;
  }
  .grid-split.reverse > :last-child {
    order: 1;
  }
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: var(--teal-100);
  color: var(--teal-800);
}

.badge-outline {
  background: transparent;
  border: 1px solid var(--teal-400);
  color: var(--teal-600);
}

.feature-icon-box {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-md);
  background: var(--teal-50);
  border: 1px solid var(--border-light);
  color: var(--teal-700);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
  transition: var(--transition);
}

.card:hover .feature-icon-box {
  background: var(--teal-700);
  color: var(--white);
  transform: rotate(4deg) scale(1.05);
}

.hud-widget {
  background: rgba(13, 31, 38, 0.85);
  border: 1px solid rgba(10, 143, 145, 0.4);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.75rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--white);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 1.25rem;
  box-shadow: var(--shadow-glow);
}

.hud-item {
  display: flex;
  flex-direction: column;
}

.hud-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--teal-300);
  margin-bottom: 0.25rem;
}

.hud-val {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
}

.accordion-item {
  background: var(--white);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  overflow: hidden;
  transition: var(--transition);
}

.accordion-item.active {
  border-color: var(--teal-500);
  box-shadow: var(--shadow-sm);
}

.accordion-header {
  padding: 1.25rem 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--slate-900);
  background: var(--white);
  transition: var(--transition);
  user-select: none;
}

.accordion-header:hover {
  color: var(--teal-700);
  background: var(--teal-50);
}

.accordion-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--teal-50);
  color: var(--teal-700);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
  background: var(--teal-700);
  color: var(--white);
}

.accordion-content {
  display: none;
  padding: 1.25rem 1.75rem 1.5rem 1.75rem;
  border-top: 1px solid var(--slate-100);
  color: var(--slate-600);
  font-size: 0.95rem;
  line-height: 1.7;
}

.accordion-item.active .accordion-content {
  display: block;
}

.menu-filter-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 2.5rem;
}

.menu-filter-btn {
  padding: 0.6rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--slate-700);
  cursor: pointer;
  transition: var(--transition);
}

.menu-filter-btn:hover,
.menu-filter-btn.active {
  background: var(--teal-700);
  color: var(--white);
  border-color: var(--teal-700);
}

.dish-card {
  cursor: pointer;
  transition: var(--transition);
}

.dish-card.active-dish {
  border-color: var(--teal-500);
  box-shadow: 0 0 0 2px var(--teal-400), var(--shadow-md);
}

.dish-preview-box {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 840px) {
  .dish-preview-box {
    grid-template-columns: 320px 1fr;
    align-items: center;
  }
}

.slider-container {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.slider-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.slide-item {
  min-width: 100%;
  flex-shrink: 0;
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--border-subtle);
  color: var(--teal-900);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.slider-btn:hover {
  background: var(--teal-700);
  color: var(--white);
}

.calc-widget {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}

.calc-group {
  margin-bottom: 1.75rem;
}

.calc-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.6rem;
  color: var(--slate-800);
}

.calc-range {
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: var(--slate-200);
  outline: none;
  -webkit-appearance: none;
}

.calc-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--teal-600);
  cursor: pointer;
  border: 2px solid var(--white);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.calc-range::-webkit-slider-thumb:hover {
  background: var(--teal-700);
  transform: scale(1.15);
}

.calc-checkboxes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.85rem;
  margin-top: 0.5rem;
}

.calc-checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1rem;
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.calc-checkbox-label:hover {
  background: var(--teal-50);
  border-color: var(--teal-300);
}

.calc-total-box {
  background: var(--teal-900);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
  text-align: center;
}

.calc-total-amount {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--teal-300);
}

.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(4, 18, 22, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  animation: fadeIn 0.25s ease-out;
}

.modal-overlay.active {
  display: flex;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal-container {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 720px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2.5rem;
  position: relative;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
}

.modal-close-btn {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--slate-100);
  border: none;
  font-size: 1.1rem;
  color: var(--slate-700);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.modal-close-btn:hover {
  background: var(--teal-700);
  color: var(--white);
}

.form-group {
  margin-bottom: 1.35rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--slate-800);
  margin-bottom: 0.4rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.85rem 1.15rem;
  border: 1px solid var(--slate-300);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  background: var(--white);
  color: var(--slate-800);
  transition: var(--transition);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--teal-600);
  box-shadow: 0 0 0 3px rgba(10, 143, 145, 0.15);
}

.form-input.is-invalid,
.form-select.is-invalid,
.form-textarea.is-invalid {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15);
}

.field-error {
  display: none;
  color: #ef4444;
  font-size: 0.785rem;
  margin-top: 0.35rem;
  font-weight: 500;
}

.field-error.active {
  display: block;
}

.honeypot-wrap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.form-loader {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.25rem;
  color: var(--teal-700);
  font-weight: 600;
}

.form-loader.active {
  display: flex;
}

.spinner {
  width: 24px;
  height: 24px;
  border: 3px solid rgba(10, 143, 145, 0.2);
  border-top-color: var(--teal-600);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

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

.form-notification {
  display: none;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-sm);
  background: var(--teal-100);
  color: var(--teal-900);
  border: 1px solid var(--teal-300);
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.form-notification.active {
  display: block;
}

.site-footer {
  background: var(--slate-900);
  color: var(--slate-300);
  padding: 5rem 0 2.5rem 0;
  border-top: 1px solid rgba(10, 143, 145, 0.25);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

@media (min-width: 768px) {
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1140px) {
  .footer-top {
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  }
}

.footer-brand h4 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-brand h4 span {
  color: var(--teal-400);
}

.footer-col h5 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 1.25rem;
  letter-spacing: 0.03em;
}

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

.footer-links a {
  color: var(--slate-400);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--teal-300);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
  font-size: 0.875rem;
  color: var(--slate-400);
}

.footer-contact-item i {
  color: var(--teal-400);
  margin-top: 0.25rem;
}

.footer-social-links {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.footer-social-links a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--slate-300);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: var(--transition);
}

.footer-social-links a:hover {
  background: var(--teal-600);
  color: var(--white);
  border-color: var(--teal-500);
  transform: translateY(-3px);
}

.footer-bottom {
  padding-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  font-size: 0.8125rem;
  color: var(--slate-500);
}

@media (min-width: 840px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.footer-legal-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.footer-legal-bar a {
  color: var(--slate-400);
}

.footer-legal-bar a:hover {
  color: var(--teal-300);
}

.stat-counter {
  text-align: center;
  padding: 1.5rem;
}

.stat-number {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  color: var(--teal-700);
  line-height: 1.1;
  margin-bottom: 0.35rem;
}

.section-dark .stat-number {
  color: var(--teal-300);
}

.stat-label {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--slate-500);
}

.section-dark .stat-label {
  color: var(--slate-400);
}

.timeline {
  position: relative;
  padding-left: 2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 7px;
  height: 100%;
  width: 2px;
  background: var(--teal-400);
}

.timeline-item {
  position: relative;
  margin-bottom: 2rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  top: 6px;
  left: -2rem;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--teal-600);
}

.price-card-popular {
  border: 2px solid var(--teal-500);
  position: relative;
}

.popular-badge {
  position: absolute;
  top: 0;
  right: 2rem;
  background: var(--teal-700);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.35rem 1rem;
  border-bottom-left-radius: var(--radius-sm);
  border-bottom-right-radius: var(--radius-sm);
}

.chip-rate-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(10, 143, 145, 0.1);
  border: 1px solid rgba(10, 143, 145, 0.3);
  color: var(--teal-800);
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-sm);
  font-size: 0.8125rem;
  font-weight: 600;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.5rem;
}

.bento-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--slate-900);
  border: 1px solid rgba(10, 143, 145, 0.25);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  min-height: 280px;
}

.bento-card:hover {
  transform: translateY(-6px);
  border-color: var(--teal-400);
  box-shadow: 0 20px 40px rgba(4, 37, 38, 0.3), 0 0 25px rgba(20, 184, 186, 0.25);
}

.bento-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1;
}

.bento-card:hover .bento-card-bg {
  transform: scale(1.08);
}

.bento-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 25, 30, 0.2) 0%, rgba(4, 25, 30, 0.75) 50%, rgba(6, 18, 24, 0.96) 100%);
  z-index: 2;
}

.bento-card-content {
  position: relative;
  z-index: 3;
  padding: 2.25rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.bento-span-8 { grid-column: span 12; }
.bento-span-4 { grid-column: span 12; }
.bento-span-6 { grid-column: span 12; }
.bento-span-12 { grid-column: span 12; }

@media (min-width: 900px) {
  .bento-span-8 { grid-column: span 8; min-height: 380px; }
  .bento-span-4 { grid-column: span 4; min-height: 380px; }
  .bento-span-6 { grid-column: span 6; min-height: 340px; }
  .bento-span-12 { grid-column: span 12; min-height: 320px; }
}

.parallax-scene {
  position: relative;
  overflow: hidden;
  perspective: 1000px;
}

.parallax-telemetry-badge {
  position: absolute;
  padding: 0.85rem 1.25rem;
  background: rgba(4, 25, 30, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(20, 184, 186, 0.45);
  border-radius: var(--radius-md);
  color: var(--white);
  box-shadow: 0 14px 35px rgba(0,0,0,0.35);
  z-index: 4;
  animation: floatSlow 7s ease-in-out infinite alternate;
}

@keyframes floatSlow {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(1deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

.parallax-telemetry-badge.pos-top-left { top: 10%; left: 6%; }
.parallax-telemetry-badge.pos-top-right { top: 15%; right: 6%; animation-delay: -2.5s; }
.parallax-telemetry-badge.pos-bottom-left { bottom: 12%; left: 8%; animation-delay: -4.5s; }
.parallax-telemetry-badge.pos-bottom-right { bottom: 10%; right: 8%; animation-delay: -1.2s; }

.deck-tab-container {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  padding-bottom: 0.75rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--border-light);
}

.deck-tab-btn {
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius-md);
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 700;
  border: 1px solid var(--border-light);
  background: white;
  color: var(--slate-700);
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition);
}

.deck-tab-btn.active, .deck-tab-btn:hover {
  background: var(--teal-700);
  color: white;
  border-color: var(--teal-700);
  box-shadow: 0 4px 15px rgba(0, 95, 96, 0.3);
}

.deck-pane {
  display: none;
}

.deck-pane.active {
  display: block;
  animation: fadeIn 0.4s ease-out;
}

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

.compare-matrix-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  background: white;
}

.compare-matrix-table th, .compare-matrix-table td {
  padding: 1.25rem 1.5rem;
  text-align: left;
  border-bottom: 1px solid var(--border-subtle);
}

.compare-matrix-table th {
  background: var(--slate-900);
  color: white;
  font-family: var(--font-serif);
  font-size: 1rem;
}

.compare-matrix-table th.highlight-col {
  background: var(--teal-800);
  color: var(--teal-300);
  border-left: 2px solid var(--teal-400);
  border-right: 2px solid var(--teal-400);
}

.compare-matrix-table td.highlight-col {
  background: var(--teal-50);
  border-left: 2px solid var(--teal-400);
  border-right: 2px solid var(--teal-400);
  font-weight: 600;
}

.privilege-tier-card {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.privilege-tier-card:hover {
  transform: translateY(-4px);
  border-color: var(--teal-500);
  box-shadow: var(--shadow-lg);
}

.privilege-tier-card.tier-sovereign {
  background: linear-gradient(135deg, rgba(4, 37, 38, 0.95), rgba(8, 60, 62, 0.98));
  color: white;
  border-color: var(--teal-400);
}

.privilege-tier-card.tier-sovereign h3,
.privilege-tier-card.tier-sovereign p {
  color: var(--slate-200);
}
