@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500;600;700&family=Lora:ital,wght@0,400;0,500;0,600;1,400&display=swap');

:root {
  --primary-color: #C0392B;
  --secondary-color: #922B21;
  --accent-color: #E74C3C;
  --light-color: #FDEDEC;
  --dark-color: #1A0A09;
  --gradient-primary: linear-gradient(135deg, #E74C3C 0%, #922B21 100%);
  --hover-color: #A93226;
  --background-color: #FAFAFA;
  --text-color: #2C3E50;
  --border-color: rgba(192, 57, 43, 0.2);
  --divider-color: rgba(146, 43, 33, 0.1);
  --shadow-color: rgba(146, 43, 33, 0.15);
  --highlight-color: #F39C12;
  --gold-color: #D4AC0D;
  --main-font: 'Oswald', sans-serif;
  --alt-font: 'Lora', serif;
  --section-padding: 5rem 0;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--alt-font);
  color: var(--text-color);
  background-color: var(--background-color);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ===================== TYPOGRAPHY ===================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--main-font);
  font-weight: 600;
  line-height: 1.2;
  color: var(--dark-color);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); letter-spacing: 0.03em; }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); letter-spacing: 0.02em; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }
p  { font-size: 1.05rem; line-height: 1.8; }

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

/* ===================== HEADER ===================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(26, 10, 9, 0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(231, 76, 60, 0.3);
  padding: 0 2rem;
  transition: all 0.3s ease;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--main-font);
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.logo-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
}

.logo span {
  color: var(--accent-color);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  list-style: none;
}

.nav-menu a {
  font-family: var(--main-font);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  padding: 0.5rem 0.9rem;
  border-radius: 3px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--accent-color);
  transition: width 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: #fff;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 80%;
}

.nav-cta {
  background: var(--gradient-primary) !important;
  color: #fff !important;
  padding: 0.5rem 1.2rem !important;
  border-radius: 3px;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px var(--shadow-color);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  background: rgba(26, 10, 9, 0.99);
  padding: 1.5rem 2rem;
  z-index: 999;
  border-bottom: 2px solid var(--accent-color);
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from { transform: translateY(-10px); opacity: 0; }
  to   { transform: translateY(0);     opacity: 1; }
}

.mobile-nav.open { display: block; }

.mobile-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.mobile-nav a {
  font-family: var(--main-font);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  display: block;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color 0.3s ease;
}

.mobile-nav a:hover { color: var(--accent-color); }

/* ===================== HERO ===================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 70px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('img/bg.jpg');
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(26,10,9,0.88) 0%, rgba(146,43,33,0.6) 60%, rgba(26,10,9,0.5) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
  width: 100%;
}

.hero-tag {
  display: inline-block;
  font-family: var(--main-font);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-color);
  border: 1px solid var(--accent-color);
  padding: 0.35rem 1rem;
  border-radius: 2px;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.6s ease both;
}

.hero h1 {
  color: #fff;
  max-width: 700px;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.7s ease 0.1s both;
}

.hero h1 span {
  color: var(--accent-color);
}

.hero p {
  color: rgba(255,255,255,0.85);
  max-width: 560px;
  margin-bottom: 2.5rem;
  font-size: 1.1rem;
  animation: fadeInUp 0.7s ease 0.2s both;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.7s ease 0.3s both;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-block;
  font-family: var(--main-font);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.9rem 2.2rem;
  border-radius: 3px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.btn-primary {
  background: var(--gradient-primary);
  color: #fff;
  box-shadow: 0 4px 20px rgba(231, 76, 60, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(231, 76, 60, 0.5);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--dark-color);
  color: #fff;
}

.btn-dark:hover {
  background: #2c1110;
  transform: translateY(-2px);
  color: #fff;
}

/* ===================== SECTIONS ===================== */
.section {
  padding: var(--section-padding);
}

.section-alt {
  background: #F5F0EF;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-label {
  font-family: var(--main-font);
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-color);
  display: block;
  margin-bottom: 0.8rem;
  font-weight: 500;
}

.section-title {
  margin-bottom: 1.2rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: #666;
  max-width: 600px;
  margin-bottom: 3rem;
}

.divider {
  width: 50px;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: 2px;
  margin-bottom: 2rem;
}

/* ===================== CONTENT SPLIT ===================== */
.content-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.content-split.reverse { direction: rtl; }
.content-split.reverse > * { direction: ltr; }

.content-image {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 20px 60px var(--shadow-color);
}

.content-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.content-image:hover img { transform: scale(1.03); }

.content-image::before {
  content: '';
  position: absolute;
  top: -12px;
  left: -12px;
  right: 12px;
  bottom: 12px;
  border: 2px solid var(--accent-color);
  border-radius: 6px;
  z-index: -1;
  opacity: 0.4;
}

.content-text .section-title {
  margin-bottom: 1.2rem;
}

.content-text p {
  color: #555;
  margin-bottom: 1.2rem;
}

/* ===================== FEATURES ===================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.feature-card {
  background: #fff;
  border-radius: 6px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 4px 25px rgba(0,0,0,0.06);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px var(--shadow-color);
}

.feature-card:hover::before { transform: scaleX(1); }

.feature-icon {
  width: 64px;
  height: 64px;
  background: var(--light-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  background: var(--gradient-primary);
}

.feature-icon svg {
  width: 28px;
  height: 28px;
  color: var(--accent-color);
  transition: color 0.3s ease;
}

.feature-card:hover .feature-icon svg { color: #fff; }

.feature-card h3 {
  margin-bottom: 0.8rem;
  font-size: 1.2rem;
}

.feature-card p {
  color: #666;
  font-size: 0.95rem;
}

/* ===================== CTA SECTION ===================== */
.cta-section {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--dark-color) 100%);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 { color: #fff; margin-bottom: 1rem; }
.cta-section p { color: rgba(255,255,255,0.8); max-width: 560px; margin: 0 auto 2.5rem; font-size: 1.05rem; }

/* ===================== HERO SUBPAGES ===================== */
.hero-sub {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, var(--dark-color) 0%, var(--secondary-color) 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.hero-sub::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('img/bg.jpg') center/cover no-repeat;
  opacity: 0.1;
}

.hero-sub .container { position: relative; z-index: 1; }
.hero-sub h1 { color: #fff; margin-bottom: 1rem; }
.hero-sub p { color: rgba(255,255,255,0.8); max-width: 600px; margin: 0 auto; font-size: 1.1rem; }

/* ===================== FORM ===================== */
.form-section {
  padding: var(--section-padding);
  background: #fff;
}

.form-wrap {
  max-width: 640px;
  margin: 0 auto;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 10px 50px rgba(0,0,0,0.08);
  padding: 3rem;
  border: 1px solid var(--border-color);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-family: var(--main-font);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dark-color);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--border-color);
  border-radius: 4px;
  font-family: var(--alt-font);
  font-size: 1rem;
  color: var(--text-color);
  background: var(--background-color);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.8rem;
}

.form-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 3px;
  accent-color: var(--accent-color);
  cursor: pointer;
}

.form-check label {
  font-size: 0.9rem;
  color: #666;
  cursor: pointer;
  line-height: 1.5;
}

.form-check a { color: var(--accent-color); text-decoration: underline; }

.form-disclaimer {
  font-size: 0.82rem;
  color: #999;
  margin-top: 1rem;
  font-style: italic;
  text-align: center;
}

/* ===================== INFO CARDS ===================== */
.info-card {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 6px 30px rgba(0,0,0,0.07);
  border: 1px solid var(--border-color);
  margin-bottom: 2rem;
  display: flex;
  align-items: stretch;
}

.info-card-image {
  width: 45%;
  flex-shrink: 0;
}

.info-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.info-card-body {
  padding: 2rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.info-card-body h3 { margin-bottom: 0.8rem; }
.info-card-body p { color: #666; }

/* ===================== FAQ ===================== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--divider-color);
  padding: 1.5rem 0;
}

.faq-question {
  font-family: var(--main-font);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--dark-color);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  user-select: none;
}

.faq-toggle {
  width: 28px;
  height: 28px;
  background: var(--light-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.faq-toggle svg {
  width: 14px;
  height: 14px;
  color: var(--accent-color);
  transition: transform 0.3s ease;
}

.faq-item.open .faq-toggle { background: var(--accent-color); }
.faq-item.open .faq-toggle svg { color: #fff; transform: rotate(45deg); }

.faq-answer {
  display: none;
  padding-top: 1rem;
  color: #666;
  font-size: 0.98rem;
  line-height: 1.8;
}

.faq-item.open .faq-answer { display: block; animation: fadeIn 0.3s ease; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===================== EXPERT ===================== */
.expert-bio {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 4rem;
  align-items: start;
}

.expert-photo {
  position: relative;
}

.expert-photo img {
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 20px 50px var(--shadow-color);
}

.expert-photo::after {
  content: '';
  position: absolute;
  bottom: -15px;
  right: -15px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--accent-color);
  border-radius: 6px;
  z-index: -1;
  opacity: 0.4;
}

.expert-credentials {
  list-style: none;
  margin-top: 1.5rem;
}

.expert-credentials li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--divider-color);
  font-size: 0.95rem;
  color: #555;
}

.expert-credentials li::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-color);
  flex-shrink: 0;
}

.icon-list {
  list-style: none;
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.icon-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.icon-list-icon {
  width: 44px;
  height: 44px;
  background: var(--light-color);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.icon-list-icon svg {
  width: 20px;
  height: 20px;
  color: var(--accent-color);
}

.icon-list li h4 { margin-bottom: 0.25rem; font-size: 1rem; }
.icon-list li p  { font-size: 0.9rem; color: #666; }

/* ===================== STATS ===================== */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
  padding: 3rem 0;
}

.stat-item {
  padding: 1.5rem;
}

.stat-number {
  font-family: var(--main-font);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: #888;
}

/* ===================== PRIVACY / TERMS ===================== */
.policy-content {
  min-height: 100vh;
  padding: 140px 0 5rem;
}

.policy-content .container {
  max-width: 800px;
}

.policy-content h1 {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
  color: var(--dark-color);
}

.policy-date {
  font-size: 0.85rem;
  color: #999;
  margin-bottom: 2.5rem;
  font-style: italic;
}

.policy-section {
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--divider-color);
}

.policy-section:last-child { border-bottom: none; }

.policy-section h2 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--secondary-color);
}

.policy-section p {
  color: #555;
  margin-bottom: 1rem;
}

.policy-section ul {
  padding-left: 1.5rem;
  color: #555;
}

.policy-section ul li { margin-bottom: 0.5rem; }

/* ===================== THANK PAGE ===================== */
.thank-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--background-color);
  padding-top: 70px;
}

.thank-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.thank-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 20px 60px var(--shadow-color);
}

.thank-text .check-icon {
  width: 72px;
  height: 72px;
  background: var(--light-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}

.thank-text .check-icon svg {
  width: 34px;
  height: 34px;
  color: var(--accent-color);
}

.thank-text h1 { margin-bottom: 1rem; }
.thank-text p { color: #666; margin-bottom: 2rem; }

/* ===================== FOOTER ===================== */
.site-footer {
  background: var(--dark-color);
  padding: 3.5rem 0 2rem;
  color: rgba(255,255,255,0.7);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--main-font);
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.footer-logo span { color: var(--accent-color); }

.footer-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
}

.footer-heading {
  font-family: var(--main-font);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.2rem;
  font-weight: 500;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.3s ease;
}

.footer-links a:hover { color: var(--accent-color); }

.footer-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 1.5rem;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
}

.footer-disclaimer {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  max-width: 600px;
  font-style: italic;
  line-height: 1.6;
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

/* ===================== COOKIE BANNER ===================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--dark-color);
  color: #ffffff;
  padding: 1.5rem 2rem;
  text-align: center;
  z-index: 9999;
  box-shadow: 0 -4px 15px rgba(0,0,0,0.3);
  border-top: 2px solid var(--accent-color);
}

.cookie-banner p {
  font-size: 0.9rem;
  margin-bottom: 1rem;
  color: rgba(255,255,255,0.85);
  font-family: var(--alt-font);
}

.cookie-btn {
  cursor: pointer;
  padding: 0.6rem 2rem;
  margin: 0.3rem;
  background-color: var(--accent-color);
  color: #ffffff;
  border-radius: 4px;
  border: none;
  display: inline-block;
  font-weight: bold;
  font-family: var(--main-font);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.cookie-btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.cookie-btn-alt {
  background-color: #4B5563;
}

/* ===================== RESERVE - PRICE ===================== */
.price-box {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--dark-color) 100%);
  border-radius: 8px;
  padding: 2.5rem;
  color: #fff;
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
}

.price-box::before {
  content: '';
  position: absolute;
  top: -30px;
  right: -30px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
}

.price-free {
  font-family: var(--main-font);
  font-size: 3rem;
  font-weight: 700;
  color: var(--highlight-color);
  display: block;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.price-label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  font-style: italic;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .content-split { grid-template-columns: 1fr; gap: 2.5rem; }
  .content-split.reverse { direction: ltr; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .expert-bio { grid-template-columns: 1fr; }
  .expert-photo { max-width: 350px; }
  .thank-inner { grid-template-columns: 1fr; text-align: center; }
  .thank-image { order: -1; }
  .thank-text .check-icon { margin: 0 auto 1.5rem; }
}

@media (max-width: 768px) {
  :root { --section-padding: 3.5rem 0; }

  .nav-menu { display: none; }
  .hamburger { display: flex; }

  .hero { min-height: 90vh; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; }

  .features-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .stats-row { grid-template-columns: 1fr; }

  .info-card { flex-direction: column; }
  .info-card-image { width: 100%; }
  .info-card-image img { height: 220px; }

  .form-wrap { padding: 2rem 1.5rem; }

  .policy-content { padding: 110px 0 3rem; }
}

@media (max-width: 480px) {
  .hero-content { padding: 3rem 1.5rem; }
  .container { padding: 0 1.2rem; }
  .btn { width: 100%; text-align: center; }
}