@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&display=swap');

:root {
  --primary-color: #7928CA;
  --secondary-color: #4C1D95;
  --accent-color: #B264FE;
  --light-color: #F3EBFF;
  --dark-color: #2D0A58;
  --gradient-primary: linear-gradient(135deg, #9F7AEA 0%, #7928CA 100%);
  --hover-color: #6923AD;
  --background-color: #FDFAFF;
  --text-color: #4B5563;
  --border-color: rgba(178, 100, 254, 0.2);
  --divider-color: rgba(76, 29, 149, 0.1);
  --shadow-color: rgba(76, 29, 149, 0.1);
  --highlight-color: #FFD700;
  --main-font: 'Montserrat', sans-serif;
  --alt-font: 'Playfair Display', serif;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--main-font);
  background-color: var(--background-color);
  color: var(--text-color);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(45, 10, 88, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: #ffffff;
}

.logo-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
}

.logo-text {
  font-family: var(--alt-font);
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

.logo-text span {
  display: block;
  font-size: 0.7rem;
  font-family: var(--main-font);
  font-weight: 400;
  color: var(--accent-color);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  list-style: none;
}

.nav-menu a {
  text-decoration: none;
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.5rem 0.9rem;
  border-radius: 6px;
  transition: all 0.25s ease;
  letter-spacing: 0.02em;
}

.nav-menu a:hover {
  color: #ffffff;
  background: rgba(178, 100, 254, 0.2);
}

.nav-menu .nav-cta a {
  background: var(--gradient-primary);
  color: #ffffff;
  padding: 0.5rem 1.2rem;
  font-weight: 600;
}

.nav-menu .nav-cta a:hover {
  background: var(--hover-color);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(121, 40, 202, 0.4);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
  z-index: 1100;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  width: 100%;
  background: rgba(45, 10, 88, 0.98);
  backdrop-filter: blur(16px);
  padding: 1.5rem;
  z-index: 999;
  border-bottom: 1px solid var(--border-color);
  transform: translateY(-20px);
  opacity: 0;
  transition: all 0.3s ease;
}

.mobile-nav.open {
  display: block;
  transform: translateY(0);
  opacity: 1;
}

.mobile-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.mobile-nav ul a {
  display: block;
  text-decoration: none;
  color: rgba(255,255,255,0.9);
  font-size: 1rem;
  font-weight: 500;
  padding: 0.8rem 1rem;
  border-radius: 8px;
  transition: background 0.2s ease;
}

.mobile-nav ul a:hover {
  background: rgba(178, 100, 254, 0.2);
  color: #ffffff;
}

.mobile-nav .mob-cta a {
  background: var(--gradient-primary);
  color: #ffffff;
  text-align: center;
  margin-top: 0.5rem;
  font-weight: 700;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('img/bg.jpg');
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(45,10,88,0.88) 0%, rgba(76,29,149,0.75) 50%, rgba(121,40,202,0.6) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 8rem 1.5rem 4rem;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(178, 100, 254, 0.2);
  border: 1px solid rgba(178, 100, 254, 0.4);
  border-radius: 50px;
  padding: 0.4rem 1rem;
  font-size: 0.8rem;
  color: var(--accent-color);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-badge svg {
  width: 14px;
  height: 14px;
}

.hero h1 {
  font-family: var(--alt-font);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  max-width: 680px;
  margin-bottom: 1.5rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--accent-color);
}

.hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  max-width: 560px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gradient-primary);
  color: #ffffff;
  text-decoration: none;
  padding: 0.9rem 2rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.02em;
  font-family: var(--main-font);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(121,40,202,0.45);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: #ffffff;
  text-decoration: none;
  padding: 0.9rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--main-font);
}

.btn-secondary:hover {
  border-color: var(--accent-color);
  background: rgba(178,100,254,0.1);
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

/* ===== SECTIONS ===== */
.section {
  padding: 5rem 1.5rem;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-color);
  margin-bottom: 0.8rem;
}

.section-title {
  font-family: var(--alt-font);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--dark-color);
  line-height: 1.25;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-color);
  max-width: 580px;
  line-height: 1.8;
}

/* ===== CONTENT WITH IMAGE ===== */
.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 {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px var(--shadow-color);
  position: relative;
}

.content-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.content-image::before {
  content: '';
  position: absolute;
  top: -12px;
  left: -12px;
  right: 12px;
  bottom: 12px;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  z-index: -1;
}

.content-body {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.content-body h2 {
  font-family: var(--alt-font);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--dark-color);
  line-height: 1.25;
}

.content-body p {
  color: var(--text-color);
  line-height: 1.8;
}

/* ===== FEATURES ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.feature-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2rem;
  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);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px var(--shadow-color);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: var(--light-color);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  font-size: 1.6rem;
}

.feature-card h3 {
  font-family: var(--main-font);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 0.6rem;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--text-color);
  line-height: 1.7;
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: var(--gradient-primary);
  padding: 5rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-inner {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  font-family: var(--alt-font);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.25;
}

.cta-section p {
  color: rgba(255,255,255,0.88);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #ffffff;
  color: var(--primary-color);
  text-decoration: none;
  padding: 0.9rem 2rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  font-family: var(--main-font);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

/* ===== FORM STYLES ===== */
.form-section {
  padding: 5rem 1.5rem;
  background: #ffffff;
}

.form-container {
  max-width: 680px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--border-color);
  border-radius: 8px;
  font-family: var(--main-font);
  font-size: 0.95rem;
  color: var(--dark-color);
  background: #ffffff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(121,40,202,0.1);
}

.form-group textarea {
  height: 130px;
  resize: vertical;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}

.form-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--primary-color);
  cursor: pointer;
}

.form-checkbox label {
  font-size: 0.85rem;
  color: var(--text-color);
  line-height: 1.6;
  cursor: pointer;
}

.form-checkbox label a {
  color: var(--primary-color);
  text-decoration: none;
}

.form-checkbox label a:hover {
  text-decoration: underline;
}

.form-submit {
  width: 100%;
  padding: 1rem;
  background: var(--gradient-primary);
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-family: var(--main-font);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(121,40,202,0.4);
}

.form-disclaimer {
  margin-top: 1.2rem;
  font-size: 0.78rem;
  color: #9CA3AF;
  line-height: 1.6;
  text-align: center;
}

/* ===== HERO SMALL (inner pages) ===== */
.hero-sm {
  padding: 8rem 1.5rem 4rem;
  background: linear-gradient(135deg, var(--dark-color) 0%, var(--secondary-color) 60%, var(--primary-color) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-sm::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 400"><circle cx="200" cy="100" r="200" fill="rgba(178,100,254,0.06)"/><circle cx="600" cy="300" r="150" fill="rgba(178,100,254,0.04)"/></svg>') no-repeat center;
  background-size: cover;
}

.hero-sm-inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-sm h1 {
  font-family: var(--alt-font);
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.25;
}

.hero-sm p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.82);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ===== EXPERT ===== */
.expert-bio {
  background: #ffffff;
  padding: 5rem 1.5rem;
}

.expert-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 4rem;
  align-items: start;
}

.expert-photo {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px var(--shadow-color);
  position: relative;
}

.expert-photo img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: top;
  display: block;
}

.expert-photo-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(45,10,88,0.92);
  backdrop-filter: blur(8px);
  border-radius: 10px;
  padding: 1rem;
  color: #ffffff;
}

.expert-photo-badge .name {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.expert-photo-badge .title {
  font-size: 0.78rem;
  color: var(--accent-color);
  letter-spacing: 0.04em;
}

.expert-info h2 {
  font-family: var(--alt-font);
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  color: var(--dark-color);
  margin-bottom: 1rem;
  line-height: 1.25;
}

.expert-info p {
  color: var(--text-color);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.expert-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.expert-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-size: 0.95rem;
  color: var(--text-color);
}

.expert-list li::before {
  content: '✦';
  color: var(--accent-color);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Icon items */
.icon-list {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  margin-top: 2rem;
}

.icon-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}

.icon-item .icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--light-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.3rem;
}

.icon-item .icon-text h4 {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--dark-color);
  margin-bottom: 0.3rem;
}

.icon-item .icon-text p {
  font-size: 0.88rem;
  color: var(--text-color);
  line-height: 1.6;
}

/* ===== FAQ ===== */
.faq-section {
  padding: 5rem 1.5rem;
  background: #ffffff;
}

.faq-inner {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border-color);
  border-radius: 12px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 20px var(--shadow-color);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 1.5rem;
  cursor: pointer;
  user-select: none;
  background: #ffffff;
  transition: background 0.2s ease;
}

.faq-question:hover {
  background: var(--light-color);
}

.faq-question h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark-color);
  padding-right: 1rem;
  line-height: 1.5;
}

.faq-toggle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--light-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
  color: var(--primary-color);
  font-weight: 700;
  font-size: 1.1rem;
}

.faq-item.open .faq-toggle {
  background: var(--primary-color);
  color: #ffffff;
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 1.5rem;
}

.faq-item.open .faq-answer {
  max-height: 500px;
  padding: 0 1.5rem 1.2rem;
}

.faq-answer p {
  font-size: 0.9rem;
  color: var(--text-color);
  line-height: 1.75;
  border-top: 1px solid var(--divider-color);
  padding-top: 1rem;
}

/* ===== INFO CARD ===== */
.info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.info-card {
  background: var(--light-color);
  border-radius: 14px;
  padding: 1.8rem;
  border-left: 4px solid var(--primary-color);
}

.info-card h4 {
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.info-card p {
  font-size: 0.88rem;
  color: var(--text-color);
  line-height: 1.7;
}

/* ===== THANK PAGE ===== */
.thank-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 1.5rem 5rem;
  text-align: center;
}

.thank-inner {
  max-width: 600px;
  margin: 0 auto;
}

.thank-icon {
  width: 80px;
  height: 80px;
  background: var(--light-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2.5rem;
}

.thank-inner h1 {
  font-family: var(--alt-font);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--dark-color);
  margin-bottom: 1rem;
}

.thank-inner p {
  color: var(--text-color);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.thank-image {
  border-radius: 14px;
  overflow: hidden;
  margin: 2rem 0;
  box-shadow: 0 12px 40px var(--shadow-color);
}

.thank-image img {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
  display: block;
}

/* ===== LEGAL PAGES ===== */
.legal-section {
  min-height: 100vh;
  padding: 8rem 1.5rem 5rem;
}

.legal-inner {
  max-width: 820px;
  margin: 0 auto;
}

.legal-inner h1 {
  font-family: var(--alt-font);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--dark-color);
  margin-bottom: 0.5rem;
}

.legal-date {
  font-size: 0.82rem;
  color: #9CA3AF;
  margin-bottom: 3rem;
}

.legal-inner h2 {
  font-family: var(--main-font);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark-color);
  margin: 2.5rem 0 0.8rem;
}

.legal-inner p {
  font-size: 0.95rem;
  color: var(--text-color);
  line-height: 1.85;
  margin-bottom: 1rem;
}

.legal-inner ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-inner ul li {
  font-size: 0.95rem;
  color: var(--text-color);
  line-height: 1.8;
  margin-bottom: 0.4rem;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--dark-color);
  padding: 3rem 1.5rem 2rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.footer-brand .logo-text {
  font-family: var(--alt-font);
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
  display: block;
}

.footer-brand .logo-text span {
  display: block;
  font-size: 0.7rem;
  font-family: var(--main-font);
  font-weight: 400;
  color: var(--accent-color);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-brand p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  max-width: 280px;
  line-height: 1.7;
  margin-top: 0.6rem;
}

.footer-links h4 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 0.8rem;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.footer-links ul a {
  text-decoration: none;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s ease;
}

.footer-links ul a:hover {
  color: var(--accent-color);
}

.footer-disclaimer {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
  padding: 1rem 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 0.8rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-copyright {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}

.footer-policy-links {
  display: flex;
  gap: 1.2rem;
}

.footer-policy-links a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-policy-links a:hover {
  color: var(--accent-color);
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--dark-color);
  color: #ffffff;
  padding: 1.5rem;
  text-align: center;
  z-index: 9999;
  box-shadow: 0 -4px 15px rgba(0,0,0,0.3);
  border-top: 1px solid var(--border-color);
}

.cookie-btn {
  cursor: pointer;
  padding: 0.6rem 2rem;
  margin: 0.5rem;
  background-color: var(--accent-color);
  color: #ffffff;
  border-radius: 6px;
  border: none;
  display: inline-block;
  font-weight: bold;
  font-family: inherit;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.cookie-btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.cookie-btn-alt {
  background-color: #4B5563;
}

/* ===== UTILITIES ===== */
.text-center { text-align: center; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }

.bg-light {
  background: var(--light-color);
}

.bg-white {
  background: #ffffff;
}

.divider {
  height: 1px;
  background: var(--divider-color);
  margin: 2rem 0;
}

/* Accent text */
.text-accent { color: var(--accent-color); }
.text-primary { color: var(--primary-color); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .content-split {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .content-split.reverse {
    direction: ltr;
  }
  .content-image img {
    height: 300px;
  }
  .expert-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .expert-photo img {
    height: 340px;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-menu { display: none; }
  .hamburger { display: flex; }

  .hero-content {
    padding: 7rem 1.2rem 3rem;
  }

  .footer-top {
    flex-direction: column;
    gap: 1.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-policy-links {
    justify-content: center;
  }

  .section { padding: 3.5rem 1.2rem; }
  .hero-sm { padding: 7rem 1.2rem 3rem; }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .btn-primary, .btn-secondary {
    width: 100%;
    justify-content: center;
  }
  .info-cards {
    grid-template-columns: 1fr;
  }
}