/* ============================================================
   Pitlochry, Redefined — Global Stylesheet
   ============================================================ */

/* --- Google Fonts ----------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Alex+Brush&family=Inter:wght@400;500;600&family=Lora:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&display=swap');

/* --- CSS Variables ---------------------------------------- */
:root {
  --blue:        #025EB8;
  --blue-dark:   #014a91;
  --blue-light:  #0370d6;
  --white:       #ffffff;
  --off-white:   #e6e6e6;
  --text-dark:   #111111;
  --text-muted:  #555555;
  --overlay:     rgba(0,0,0,0.52);
  --overlay-blue:rgba(2, 94, 184, 0.08);

  --font-heading: 'Lora', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --font-script:  'Alex Brush', cursive;

  --max-w: 1200px;
  --radius: 10px;
  --gap: 30px;

  --ease-out: cubic-bezier(0.22, 0.61, 0.36, 1);
}

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

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

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }

/* --- Scroll Reveal ---------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(44px);
  transition: opacity 0.72s var(--ease-out), transform 0.72s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }
.reveal-delay-4 { transition-delay: 0.48s; }

/* --- Container -------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 30px;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 40px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.3s, box-shadow 0.3s;
}
.nav.scrolled {
  background: rgba(2, 94, 184, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
}
.nav-blue {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 40px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(2, 94, 184, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
}
.nav-logo {
  height: 36px;
  width: auto;
  object-fit: contain;
  object-position: left center;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 500;
  opacity: 0.88;
  transition: opacity 0.2s;
}
.nav-links a:hover { opacity: 1; }
.nav-links .nav-cta {
  background: var(--white);
  color: var(--blue);
  padding: 8px 20px;
  border-radius: var(--radius);
  font-weight: 600;
  opacity: 1;
  transition: background 0.2s, color 0.2s, transform 0.15s;
}
.nav-links .nav-cta:hover {
  background: var(--off-white);
  transform: translateY(-1px);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  position: fixed;
  top: 64px; left: 0; right: 0;
  background: var(--blue);
  padding: 20px 40px 30px;
  z-index: 99;
  flex-direction: column;
  gap: 20px;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s var(--ease-out), opacity 0.3s;
}
.nav-mobile.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.nav-mobile a {
  color: var(--white);
  font-size: 1rem;
  font-weight: 500;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.nav-mobile .nav-cta-mobile {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  color: var(--blue);
  padding: 12px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  margin-top: 4px;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--overlay);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 120px 40px 80px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  backdrop-filter: blur(4px);
}
.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  max-width: 820px;
}
.hero-desc {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(255,255,255,0.85);
  max-width: 520px;
  line-height: 1.7;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.18s, box-shadow 0.18s, background 0.18s;
  border: none;
  text-decoration: none;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
.btn-white {
  background: var(--white);
  color: var(--blue);
}
.btn-white:hover { background: #f0f4ff; }
.btn-blue {
  background: var(--blue);
  color: var(--white);
}
.btn-blue:hover { background: var(--blue-light); }
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.5);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
}

/* ============================================================
   QUOTE / INTRODUCTION SECTION
   ============================================================ */
.section-intro {
  padding: 100px 0;
  background: var(--white);
}
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.intro-quote {
  position: relative;
  padding: 0 0 0 32px;
}
.intro-quote::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--blue);
  border-radius: 2px;
}
.intro-quote blockquote {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  font-style: italic;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.65;
  margin-bottom: 20px;
}
.intro-quote cite {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.intro-right {}
.intro-right h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-dark);
}
.intro-right .section-sub {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 12px;
  font-style: italic;
}
.intro-right .section-desc {
  color: var(--text-dark);
  font-size: 0.975rem;
  line-height: 1.75;
  margin-bottom: 32px;
}
.features-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark);
}
.feature-icon {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
}

/* ============================================================
   INFO BANNER
   ============================================================ */
.banner {
  background: var(--blue);
  color: var(--white);
  padding: 80px 0;
  text-align: center;
}
.banner h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 16px;
}
.banner p {
  font-size: 1rem;
  opacity: 0.85;
  max-width: 520px;
  margin: 0 auto 10px;
  line-height: 1.7;
}
.banner .badge-note {
  display: inline-block;
  margin-top: 18px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 6px 18px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  opacity: 0.9;
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.section-faq {
  padding: 100px 0;
  background: #f7f9fc;
}
.section-faq .section-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
}
.section-faq h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 48px;
  color: var(--text-dark);
  max-width: 600px;
}
.accordion {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid #e0e5ee;
}
.accordion-item {
  border-bottom: 1px solid #e0e5ee;
}
.accordion-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  text-align: left;
}
.accordion-btn:hover { color: var(--blue); }
.accordion-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s var(--ease-out);
}
.accordion-icon svg {
  width: 14px;
  height: 14px;
  stroke: white;
  stroke-width: 2.5;
  fill: none;
  transition: transform 0.3s var(--ease-out);
}
.accordion-item.open .accordion-icon {
  transform: rotate(45deg);
}
.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out), padding 0.3s;
}
.accordion-item.open .accordion-body {
  max-height: 400px;
}
.accordion-body p {
  padding: 0 0 22px;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ============================================================
   GALLERY / SNEAK PEEKS
   ============================================================ */
.section-gallery {
  padding: 100px 0;
  background: var(--white);
}
.section-gallery .section-header {
  margin-bottom: 48px;
}
.section-gallery h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 10px;
}
.section-gallery .section-sub {
  color: var(--text-muted);
  font-size: 1rem;
  font-style: italic;
}
.gallery-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 16px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.gallery-scroll::-webkit-scrollbar { height: 4px; }
.gallery-scroll::-webkit-scrollbar-track { background: #f0f0f0; border-radius: 2px; }
.gallery-scroll::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 2px; }
.gallery-item {
  flex-shrink: 0;
  width: 480px;
  height: 280px;
  border-radius: 14px;
  overflow: hidden;
  scroll-snap-align: start;
  background: #dde3ee;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}
.gallery-item:hover img { transform: scale(1.04); }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--blue);
  padding: 90px 0;
  text-align: center;
}
.cta-banner h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 32px;
  line-height: 1.2;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--blue);
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 60px 0 40px;
  color: var(--white);
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 48px;
}
.footer-brand img {
  height: 32px;
  width: auto;
  margin-bottom: 14px;
}
.footer-brand p {
  font-size: 0.85rem;
  color: var(--off-white);
  line-height: 1.6;
  margin-bottom: 20px;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 6px;
  background: rgba(255,255,255,0.1);
  transition: background 0.2s;
}
.footer-social a:hover { background: rgba(255,255,255,0.22); }
.footer-social svg { width: 18px; height: 18px; fill: var(--white); }
.footer-col h5 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 18px;
}
.footer-col a {
  display: block;
  font-size: 0.875rem;
  color: var(--off-white);
  margin-bottom: 10px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 24px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  text-align: center;
}

/* ============================================================
   INTERIOR PAGE HERO (shared by non-home pages)
   ============================================================ */
.page-hero {
  position: relative;
  padding: 160px 40px 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  min-height: 380px;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1;
}
.page-hero-content {
  position: relative;
  z-index: 2;
}
.page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.section-contact-info {
  padding: 90px 0;
  background: var(--white);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.contact-info h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-dark);
}
.contact-info p {
  font-size: 0.975rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 10px;
}
.contact-card {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 32px;
  padding: 20px 24px;
  background: #f7f9fc;
  border-radius: 12px;
}
.contact-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-card-icon svg {
  width: 22px;
  height: 22px;
  stroke: white;
  stroke-width: 1.8;
  fill: none;
}
.contact-card-text h6 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.contact-card-text p {
  font-size: 0.825rem;
  color: var(--text-muted);
  margin: 0;
}
.contact-image {
  border-radius: 16px;
  overflow: hidden;
  height: 360px;
}
.contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
}

/* Contact Form */
.section-contact-form {
  padding: 90px 0;
  background: #f7f9fc;
}
.form-header {
  text-align: center;
  margin-bottom: 52px;
}
.form-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 12px;
}
.form-header p {
  font-size: 0.975rem;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 6px;
  line-height: 1.7;
}
.contact-form-wrap {
  max-width: 720px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 20px;
  padding: 50px 50px;
  box-shadow: 0 4px 40px rgba(0,0,0,0.07);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.form-group label {
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--text-dark);
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid #d4daec;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: #fafbff;
  transition: border-color 0.2s, box-shadow 0.2s;
  resize: vertical;
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #a0a8bc; }
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(2,94,184,0.12);
  background: var(--white);
}
.form-group textarea { min-height: 140px; }
.form-submit-btn {
  width: 100%;
  padding: 15px;
  background: var(--blue);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.form-submit-btn:hover {
  background: var(--blue-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(2,94,184,0.3);
}

/* ============================================================
   BECOME A CIVILIAN PAGE
   ============================================================ */
.steps-section {
  padding: 100px 0;
  background: var(--white);
}
.steps-header {
  text-align: center;
  margin-bottom: 64px;
}
.steps-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 14px;
}
.steps-header p {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}
.step-card {
  background: #f7f9fc;
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(2,94,184,0.12);
}
.step-number {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 700;
  font-family: var(--font-heading);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.step-card h5 {
  font-size: 0.975rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.5;
}

.discord-cta {
  background: #f7f9fc;
  padding: 100px 0;
  text-align: center;
}
.discord-cta h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 32px;
}
.btn-discord {
  background: #5865F2;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 36px;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 600;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  text-decoration: none;
}
.btn-discord:hover {
  background: #4752c4;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(88,101,242,0.35);
}
.btn-discord svg { width: 24px; height: 24px; fill: white; }

/* ============================================================
   404 PAGE
   ============================================================ */
.error-section {
  min-height: calc(100vh - 300px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 40px;
  background: var(--white);
}
.error-content {}
.error-num {
  font-family: var(--font-heading);
  font-size: clamp(6rem, 16vw, 14rem);
  font-weight: 700;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 24px;
  opacity: 0.12;
}
.error-content h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 600;
  color: var(--text-dark);
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.6;
  position: relative;
  margin-top: -80px;
}
@media(max-width: 600px) {
  .error-content h3 { margin-top: -40px; }
}
.error-num-wrap {
  position: relative;
}
.error-num-wrap h1 {
  font-family: var(--font-heading);
  font-size: clamp(6rem, 16vw, 14rem);
  font-weight: 700;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 0;
  opacity: 0.12;
}
.error-num-wrap .error-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--blue);
}

/* ============================================================
   SUCCESS PAGE
   ============================================================ */
.success-section {
  min-height: calc(100vh - 300px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 40px;
}
.success-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
}
.success-icon svg {
  width: 40px;
  height: 40px;
  stroke: white;
  stroke-width: 2.5;
  fill: none;
}
.success-section h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
}
.success-section p {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 440px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

/* ============================================================
   PRIVACY PAGE
   ============================================================ */
.privacy-section {
  padding: 80px 0 100px;
  background: var(--white);
}
.privacy-inner {
  max-width: 780px;
  margin: 0 auto;
}
.privacy-inner .tldr-box {
  background: #f0f5ff;
  border-left: 4px solid var(--blue);
  border-radius: 0 12px 12px 0;
  padding: 28px 32px;
  margin-bottom: 48px;
}
.privacy-inner .tldr-box h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 12px;
}
.privacy-inner .tldr-box p { font-size: 0.9rem; color: var(--text-dark); margin-bottom: 8px; line-height: 1.7; }
.privacy-inner .tldr-box ul { margin: 8px 0 8px 20px; }
.privacy-inner .tldr-box li { font-size: 0.875rem; color: var(--text-dark); margin-bottom: 5px; line-height: 1.6; list-style: disc; }
.privacy-inner h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 40px 0 14px;
  color: var(--text-dark);
}
.privacy-inner h2:first-child { margin-top: 0; }
.privacy-inner p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 12px;
}
.privacy-inner ul {
  margin: 8px 0 16px 22px;
}
.privacy-inner li {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 7px;
  line-height: 1.7;
  list-style: disc;
}
.privacy-inner .effective-date {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid #e8edf5;
}
.privacy-inner a { color: var(--blue); text-decoration: underline; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .intro-grid { grid-template-columns: 1fr; gap: 52px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-inner > *:first-child { grid-column: 1 / -1; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-image { height: 260px; }
}

@media (max-width: 768px) {
  .nav { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-mobile { display: flex; padding: 20px; }

  .hero-content { padding: 100px 20px 60px; }
  .page-hero { padding: 130px 20px 70px; }

  .container { padding: 0 20px; }
  .section-intro, .section-faq, .section-gallery, .steps-section, .discord-cta,
  .section-contact-info, .section-contact-form, .banner, .cta-banner,
  .privacy-section { padding: 60px 0; }

  .steps-grid { grid-template-columns: 1fr; max-width: 380px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 30px 22px; }

  .gallery-item { width: 320px; height: 210px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-inner > *:first-child { grid-column: auto; }
}
