@import url('https://fonts.googleapis.com/css2?family=Rufina:wght@400;700&family=Lora:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&display=swap');

:root {
  --primary: #4682B4;
  --primary-light: #6A9FCC;
  --primary-dark: #35628A;
  --accent: #8B4513;
  --accent-light: #A0612E;
  --accent-dark: #6B340F;
  --bg: #F0F8FF;
  --bg-alt: #E8F2FC;
  --text: #2C3E50;
  --text-light: #5A6B7D;
  --text-muted: #8899AA;
  --white: #FFFFFF;
  --border: #D0DDE8;
  --shadow: rgba(70, 130, 180, 0.12);
  --shadow-strong: rgba(70, 130, 180, 0.22);
  --aurora-1: linear-gradient(135deg, #4682B4 0%, #6A5ACD 30%, #48D1CC 60%, #4682B4 100%);
  --aurora-2: linear-gradient(45deg, #4682B4 0%, #7B68EE 25%, #48D1CC 50%, #8B4513 75%, #4682B4 100%);
  --aurora-3: linear-gradient(160deg, #35628A 0%, #6A5ACD 40%, #20B2AA 70%, #4682B4 100%);
  --aurora-soft: linear-gradient(135deg, #E8F2FC 0%, #E8E0F0 30%, #E0F5F3 60%, #F0F8FF 100%);
  --iridescent: linear-gradient(90deg, #4682B4, #9370DB, #48D1CC, #8B4513, #4682B4);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-sm: 8px;
  --font-heading: 'Rufina', Georgia, serif;
  --font-body: 'Lora', 'Times New Roman', serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1200px;
  --header-h: 72px;
  --adbar-h: 26px;
}

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

.advertorial-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  text-align: center;
  padding: 5px 0;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  background: var(--text);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.3;
  color: var(--text);
}

h1 { font-size: clamp(2rem, 4vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }

p { margin-bottom: 1rem; }

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

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

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

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ═══════════════════════════════════
   HEADER
   ═══════════════════════════════════ */

.site-header {
  position: fixed;
  top: 26px;
  left: 0;
  right: 0;
  height: var(--header-h);
  z-index: 1000;
  background: rgba(240, 248, 255, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(70, 130, 180, 0.1);
  transition: background var(--transition), box-shadow var(--transition);
}

.site-header.scrolled {
  background: rgba(240, 248, 255, 0.95);
  box-shadow: 0 2px 20px var(--shadow);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
}

.logo-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--aurora-1);
  background-size: 200% 200%;
  animation: auroraShift 6s ease infinite;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  background: var(--aurora-1);
  background-size: 200% 200%;
  animation: auroraShift 6s ease infinite;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@keyframes auroraShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

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

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  position: relative;
  padding: 4px 0;
  transition: color var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--aurora-1);
  background-size: 200% 200%;
  animation: auroraShift 6s ease infinite;
  transition: width var(--transition);
  border-radius: 2px;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

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

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ═══════════════════════════════════
   HERO — Parallax BG + Aurora Overlay
   ═══════════════════════════════════ */

.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--header-h) + var(--adbar-h) + 60px) 24px 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(70, 130, 180, 0.85) 0%,
    rgba(106, 90, 205, 0.7) 30%,
    rgba(72, 209, 204, 0.6) 60%,
    rgba(70, 130, 180, 0.8) 100%
  );
  z-index: 1;
}

.hero-aurora {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 20%, rgba(147, 112, 219, 0.3) 0%, transparent 50%),
              radial-gradient(ellipse at 70% 80%, rgba(72, 209, 204, 0.25) 0%, transparent 50%),
              radial-gradient(ellipse at 50% 50%, rgba(139, 69, 19, 0.1) 0%, transparent 40%);
  z-index: 2;
  animation: auroraPulse 8s ease-in-out infinite alternate;
}

@keyframes auroraPulse {
  0% { opacity: 0.7; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.05); }
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 780px;
}

.hero-badge {
  display: inline-block;
  padding: 6px 18px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 30px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
}

.btn-primary {
  background: var(--white);
  color: var(--primary-dark);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  color: var(--accent);
}

.btn-accent {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
}

.btn-accent:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(139, 69, 19, 0.35);
  color: var(--white);
}

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

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}

/* ═══════════════════════════════════
   SECTIONS — General
   ═══════════════════════════════════ */

.section {
  padding: 80px 0;
}

.section-alt {
  background: var(--bg-alt);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  color: var(--text-light);
  font-size: 1.05rem;
}

.aurora-line {
  width: 60px;
  height: 3px;
  background: var(--aurora-1);
  background-size: 200% 200%;
  animation: auroraShift 6s ease infinite;
  border-radius: 3px;
  margin: 16px auto 0;
}

/* ═══════════════════════════════════
   BOXED CONTENT — Drop Shadow + Gradient BG
   ═══════════════════════════════════ */

.boxed-section {
  padding: 80px 0;
}

.boxed-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: 0 8px 40px var(--shadow), 0 2px 8px rgba(70, 130, 180, 0.06);
  position: relative;
  overflow: hidden;
}

.boxed-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--aurora-1);
  background-size: 200% 200%;
  animation: auroraShift 6s ease infinite;
}

.boxed-card-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.boxed-text h2 {
  margin-bottom: 20px;
}

.boxed-text p {
  color: var(--text-light);
  margin-bottom: 16px;
}

.boxed-text ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.boxed-text ul li {
  padding: 8px 0 8px 28px;
  position: relative;
  color: var(--text-light);
}

.boxed-text ul li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-size: 0.8rem;
}

.boxed-img-wrap {
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius);
  line-height: 0;
}

.boxed-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 4/3;
}

/* ═══════════════════════════════════
   Z-PATTERN — Alternating Content
   ═══════════════════════════════════ */

.zpattern-section {
  padding: 80px 0;
}

.zpattern-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 64px;
}

.zpattern-row:last-child {
  margin-bottom: 0;
}

.zpattern-row.reverse .zpattern-img {
  order: 2;
}

.zpattern-row.reverse .zpattern-text {
  order: 1;
}

.zpattern-img-wrap {
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius-lg);
  line-height: 0;
  box-shadow: 0 8px 30px var(--shadow);
}

.zpattern-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 1;
}

.zpattern-text h3 {
  margin-bottom: 16px;
}

.zpattern-text p {
  color: var(--text-light);
  margin-bottom: 12px;
}

.zpattern-text .highlight-box {
  background: var(--aurora-soft);
  padding: 20px 24px;
  border-radius: var(--radius);
  border-left: 3px solid var(--primary);
  margin-top: 20px;
}

.zpattern-text .highlight-box p {
  color: var(--text);
  margin-bottom: 0;
  font-style: italic;
}

/* ═══════════════════════════════════
   ACCORDION
   ═══════════════════════════════════ */

.accordion-section {
  padding: 80px 0;
  background: var(--aurora-soft);
}

.accordion-grid {
  max-width: 800px;
  margin: 0 auto;
}

.accordion-item {
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 12px;
  box-shadow: 0 2px 12px var(--shadow);
  overflow: hidden;
  border: 1px solid rgba(70, 130, 180, 0.08);
  transition: box-shadow var(--transition);
}

.accordion-item:hover {
  box-shadow: 0 4px 20px var(--shadow-strong);
}

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  text-align: left;
  transition: color var(--transition);
}

.accordion-trigger:hover {
  color: var(--primary);
}

.accordion-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--transition), background var(--transition);
  font-size: 1rem;
  color: var(--primary);
}

.accordion-item.active .accordion-icon {
  transform: rotate(45deg);
  background: var(--primary);
  color: var(--white);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.accordion-body-inner {
  padding: 0 24px 20px;
  color: var(--text-light);
  line-height: 1.8;
}

.accordion-body-inner p {
  margin-bottom: 8px;
}

.accordion-body-inner p:last-child {
  margin-bottom: 0;
}

/* ═══════════════════════════════════
   GRADIENT CTA
   ═══════════════════════════════════ */

.gradient-cta {
  padding: 100px 0;
  background: var(--aurora-3);
  background-size: 200% 200%;
  animation: auroraShift 10s ease infinite;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.gradient-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 40% 40%, rgba(255,255,255,0.1) 0%, transparent 60%);
}

.gradient-cta-content {
  position: relative;
  z-index: 1;
  max-width: 650px;
  margin: 0 auto;
}

.gradient-cta h2 {
  color: var(--white);
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.gradient-cta p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  margin-bottom: 32px;
}

.gradient-cta .btn-primary {
  font-size: 1.05rem;
  padding: 16px 40px;
}

/* ═══════════════════════════════════
   FOOTER
   ═══════════════════════════════════ */

.site-footer {
  background: var(--text);
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .logo-text {
  font-size: 1.4rem;
  margin-bottom: 12px;
  display: block;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
}

.footer-col h4 {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1rem;
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer-col ul li a:hover {
  color: var(--white);
}

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

.footer-bottom p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
  margin: 0;
}

.footer-disclaimer {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
  font-style: italic;
}

/* ═══════════════════════════════════
   COOKIE CONSENT
   ═══════════════════════════════════ */

.cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(44, 62, 80, 0.97);
  backdrop-filter: blur(12px);
  color: var(--white);
  padding: 16px 24px;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  border-top: 2px solid;
  border-image: var(--aurora-1) 1;
}

.cookie-bar.visible {
  transform: translateY(0);
}

.cookie-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-inner p {
  font-size: 0.9rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
}

.cookie-inner a {
  color: #48D1CC;
  text-decoration: underline;
}

.cookie-accept {
  padding: 10px 28px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition);
  flex-shrink: 0;
}

.cookie-accept:hover {
  background: var(--primary-light);
}

/* ═══════════════════════════════════
   ABOUT PAGE
   ═══════════════════════════════════ */

.page-hero {
  padding: calc(var(--header-h) + var(--adbar-h) + 60px) 0 60px;
  background: var(--aurora-soft);
  text-align: center;
}

.page-hero h1 {
  margin-bottom: 12px;
}

.page-hero p {
  color: var(--text-light);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.about-content {
  padding: 80px 0;
}

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

.about-img-wrap {
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius-lg);
  line-height: 0;
  box-shadow: 0 8px 30px var(--shadow);
}

.about-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 4/3;
}

.about-text h2 {
  margin-bottom: 20px;
}

.about-text p {
  color: var(--text-light);
  margin-bottom: 16px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.value-card {
  background: var(--white);
  padding: 32px 24px;
  border-radius: var(--radius);
  box-shadow: 0 4px 20px var(--shadow);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px var(--shadow-strong);
}

.value-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--aurora-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.4rem;
}

.value-card h4 {
  margin-bottom: 8px;
}

.value-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 0;
}

/* ═══════════════════════════════════
   CONTACT PAGE
   ═══════════════════════════════════ */

.contact-section {
  padding: 80px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.contact-info h2 {
  margin-bottom: 20px;
}

.contact-info p {
  color: var(--text-light);
  margin-bottom: 24px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--aurora-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-detail h4 {
  margin-bottom: 4px;
}

.contact-detail p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 0;
}

.contact-form {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 40px var(--shadow);
}

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

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

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--bg);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(70, 130, 180, 0.15);
}

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

.form-submit {
  width: 100%;
  padding: 14px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition);
}

.form-submit:hover {
  background: var(--primary-dark);
}

/* ═══════════════════════════════════
   THANK YOU PAGE
   ═══════════════════════════════════ */

.thankyou-section {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--header-h) + var(--adbar-h) + 60px) 24px 80px;
  text-align: center;
}

.thankyou-card {
  background: var(--white);
  padding: 60px 48px;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 40px var(--shadow);
  max-width: 560px;
}

.thankyou-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--aurora-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 2rem;
}

.thankyou-card h1 {
  margin-bottom: 16px;
}

.thankyou-card p {
  color: var(--text-light);
  margin-bottom: 28px;
}

/* ═══════════════════════════════════
   LEGAL PAGES
   ═══════════════════════════════════ */

.legal-content {
  padding: 60px 0 80px;
}

.legal-content .container {
  max-width: 800px;
}

.legal-content h2 {
  font-size: 1.4rem;
  margin: 40px 0 16px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.legal-content h2:first-of-type {
  border-top: none;
  margin-top: 0;
}

.legal-content h3 {
  font-size: 1.15rem;
  margin: 24px 0 12px;
}

.legal-content p {
  color: var(--text-light);
  margin-bottom: 14px;
}

.legal-content ul,
.legal-content ol {
  color: var(--text-light);
  padding-left: 24px;
  margin-bottom: 16px;
}

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

.legal-content a {
  color: var(--primary);
  text-decoration: underline;
}

.legal-meta {
  background: var(--bg-alt);
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  margin-bottom: 32px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ═══════════════════════════════════
   INLINE ARTICLE STYLES (index.html)
   ═══════════════════════════════════ */

.article-intro {
  padding: 80px 0 0;
}

.article-intro .container {
  max-width: 800px;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.article-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.article-intro .lead {
  font-size: 1.15rem;
  color: var(--text);
  line-height: 1.8;
}

/* ═══════════════════════════════════
   EDITORIAL IMAGE SECTION
   ═══════════════════════════════════ */

.editorial-img-section {
  padding: 40px 0;
}

.editorial-img-section .container {
  max-width: 800px;
}

.editorial-img-wrap {
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius-lg);
  line-height: 0;
  box-shadow: 0 8px 30px var(--shadow);
}

.editorial-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 16/9;
}

.editorial-caption {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 12px;
  font-style: italic;
}

/* ═══════════════════════════════════
   CTA LINK STYLING
   ═══════════════════════════════════ */

.article-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: var(--aurora-soft);
  border: 1px solid var(--primary-light);
  border-radius: var(--radius);
  color: var(--primary-dark);
  font-weight: 600;
  font-size: 1rem;
  transition: all var(--transition);
  margin: 8px 0;
}

.article-cta-link:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

/* ═══════════════════════════════════
   FOOTER SOURCES (native inside footer)
   ═══════════════════════════════════ */

.footer-sources {
  padding-bottom: 32px;
  margin-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-sources-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 8px;
}

.footer-sources-intro {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.38);
  margin-bottom: 14px;
  line-height: 1.6;
}

.footer-sources-preview {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 4px;
}

.footer-sources-cat {
  display: block;
  width: 100%;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 10px;
  margin-bottom: 2px;
  letter-spacing: 0.3px;
}

.footer-sources-preview > .footer-sources-cat:first-child {
  margin-top: 0;
}

.footer-sources-preview a,
.footer-sources-full a {
  display: block;
  font-size: 0.78rem;
  color: rgba(72, 209, 204, 0.7);
  text-decoration: none;
  padding: 3px 0;
  transition: color var(--transition);
  line-height: 1.5;
}

.footer-sources-preview a:hover,
.footer-sources-full a:hover {
  color: #48D1CC;
}

.footer-sources-full {
  display: none;
  margin-top: 4px;
}

.footer-sources-full.open {
  display: block;
}

.footer-sources-note {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
  font-style: italic;
  margin-top: 14px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  line-height: 1.6;
}

.footer-sources-toggle {
  display: inline-block;
  margin-top: 10px;
  padding: 5px 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  font-family: var(--font-body);
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all var(--transition);
}

.footer-sources-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.75);
}

/* ═══════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════ */

@media (max-width: 1024px) {
  .boxed-card-inner {
    grid-template-columns: 1fr;
  }

  .zpattern-row {
    grid-template-columns: 1fr;
  }

  .zpattern-row.reverse .zpattern-img,
  .zpattern-row.reverse .zpattern-text {
    order: unset;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --header-h: 64px;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: calc(var(--header-h) + var(--adbar-h));
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(240, 248, 255, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    z-index: 999;
  }

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

  .nav-links a {
    font-size: 1.2rem;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    min-height: 70vh;
    padding-top: calc(var(--header-h) + var(--adbar-h) + 40px);
  }

  .section {
    padding: 56px 0;
  }

  .boxed-card {
    padding: 28px 20px;
  }

  .zpattern-row {
    gap: 24px;
    margin-bottom: 40px;
  }

  .zpattern-img-wrap img {
    aspect-ratio: 3/2;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .contact-form {
    padding: 28px 20px;
  }

  .gradient-cta {
    padding: 64px 0;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.5rem; }

  .hero {
    min-height: 60vh;
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .btn {
    padding: 12px 28px;
    font-size: 0.95rem;
  }

  .cookie-inner {
    flex-direction: column;
    text-align: center;
  }
}
