/* ============================================================
   FONTS
   ============================================================ */

@font-face {
  font-family: 'Garet';
  src: url('/assets/fonts/Garet/Garet-Book.woff2') format('woff2'),
       url('/assets/fonts/Garet/Garet-Book.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Garet';
  src: url('/assets/fonts/Garet/Garet-Heavy.woff2') format('woff2'),
       url('/assets/fonts/Garet/Garet-Heavy.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

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

:root {
  --bg-main:     #000e20;
  --bg-secondary:#001630;
  --blue:        #006aff;
  --blue-dark:   #0055cc;
  --blue-light:  #3388ff;
  --white:       #ffffff;
  --off-white:   #c8d4e8;
  --text-dark:   #ffffff;
  --text-muted:  #8ba0be;
  --overlay:     rgba(0,14,32,0.72);

  --font-heading: 'Garet', 'Lora', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --max-w: 1200px;
  --radius: 10px;
  --gap: 30px;
  --ease-out: cubic-bezier(0.22, 0.61, 0.36, 1);
}

*, *::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(--bg-main);
  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 {
  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(0,14,32,0.96);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.5);
  border-bottom: 1px solid rgba(0,106,255,0.18);
}
.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(--off-white);
  font-size: 0.875rem;
  font-weight: 500;
  opacity: 0.88;
  transition: opacity 0.2s, color 0.2s;
}
.nav-links a:hover { opacity: 1; color: var(--white); }
.nav-links .nav-cta {
  background: var(--blue);
  color: var(--white);
  padding: 8px 20px;
  border-radius: var(--radius);
  font-weight: 600;
  opacity: 1;
  transition: background 0.2s, transform 0.15s;
}
.nav-links .nav-cta:hover {
  background: var(--blue-light);
  transform: translateY(-1px);
}

/* Mobile nav */
.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: rgba(0,14,32,0.98);
  border-bottom: 1px solid rgba(0,106,255,0.2);
  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(--off-white);
  font-size: 1rem;
  font-weight: 500;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-mobile .nav-cta-mobile {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--blue);
  color: var(--white);
  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-color {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #000e20 0%, #001835 40%, #002050 70%, #000e20 100%);
  z-index: 0;
}
.hero-bg-color::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 70% 40%, rgba(0,106,255,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 30% 30% at 20% 80%, rgba(0,106,255,0.1) 0%, transparent 60%);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  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(0,106,255,0.18);
  border: 1px solid rgba(0,106,255,0.4);
  color: var(--blue-light);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  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.15rem);
  color: var(--off-white);
  max-width: 520px;
  line-height: 1.75;
}
.hero-desc em { color: var(--blue-light); font-style: italic; }

/* Buttons */
.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.35); }
.btn-blue-accent {
  background: var(--blue);
  color: var(--white);
}
.btn-blue-accent:hover { background: var(--blue-light); }
.btn-white {
  background: var(--white);
  color: var(--blue);
}
.btn-white:hover { background: #e8f0ff; }
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.08); }

/* ============================================================
   INTRODUCTION SECTION
   ============================================================ */
.section-intro {
  padding: 100px 0;
  background: var(--bg-secondary);
}
.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.05rem, 1.8vw, 1.3rem);
  font-style: italic;
  font-weight: 500;
  color: var(--off-white);
  line-height: 1.7;
  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 h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--white);
}
.intro-right .section-sub {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 12px;
  font-style: italic;
}
.intro-right .section-desc {
  color: var(--off-white);
  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(--off-white);
}
.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 h3 em { font-style: italic; }
.banner p {
  font-size: 1rem;
  opacity: 0.88;
  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 / ABOUT SECTION
   ============================================================ */
.section-faq {
  padding: 100px 0;
  background: var(--bg-main);
}
.section-faq .section-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-light);
  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(--white);
  max-width: 600px;
}
.accordion { display: flex; flex-direction: column; border-top: 1px solid rgba(255,255,255,0.1); }
.accordion-item { border-bottom: 1px solid rgba(255,255,255,0.1); }
.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(--white);
  text-align: left;
}
.accordion-btn:hover { color: var(--blue-light); }
.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; }
.accordion-item.open .accordion-icon { transform: rotate(45deg); }
.accordion-body { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease-out); }
.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; }
.accordion-body a { color: var(--blue-light); text-decoration: underline; }

/* ============================================================
   GALLERY / GAME PREVIEW
   ============================================================ */
.section-gallery {
  padding: 100px 0;
  background: var(--bg-secondary);
}
.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;
  color: var(--white);
}
.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: rgba(255,255,255,0.05); 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;
}
.gallery-placeholder { background: transparent; }
.gallery-color-block {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--ease-out);
}
.gallery-color-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 30%, rgba(255,255,255,0.12) 0%, transparent 60%);
}
.gallery-color-block:hover { transform: scale(1.02); }
.gallery-color-block span {
  position: relative;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.03em;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.gallery-color-block--2 { background: linear-gradient(135deg, #003888 0%, #006aff 100%); }
.gallery-color-block--3 { background: linear-gradient(135deg, #001630 0%, #004dd9 100%); }
.gallery-color-block--4 { background: linear-gradient(135deg, #002050 0%, #0055cc 100%); }
.gallery-color-block--5 { background: linear-gradient(135deg, #005ce8 0%, #003399 100%); }
.gallery-color-block--6 { background: linear-gradient(135deg, #000e20 0%, #006aff 100%); }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--bg-main);
  border-top: 1px solid rgba(0,106,255,0.2);
  border-bottom: 1px solid rgba(0,106,255,0.2);
  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: 16px;
  line-height: 1.2;
}
.cta-social-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #000812;
  border-top: 1px solid rgba(0,106,255,0.15);
  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 p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-top: 12px;
  margin-bottom: 20px;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 6px;
  background: rgba(0,106,255,0.15);
  color: var(--off-white);
  transition: background 0.2s, color 0.2s;
}
.footer-social a:hover { background: var(--blue); color: white; }
.footer-social svg { width: 18px; height: 18px; }
.footer-col h5 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 18px;
}
.footer-col a {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
  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.07);
  padding-top: 24px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  text-align: center;
}
.footer-bottom p { margin-bottom: 6px; }

/* ============================================================
   PAGE HERO (contact, etc.)
   ============================================================ */
.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-color {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #000e20 0%, #001835 50%, #002050 100%);
  z-index: 0;
}
.page-hero-bg-color::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(0,106,255,0.15) 0%, transparent 70%);
}
.page-hero-overlay { position: absolute; inset: 0; 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(--bg-secondary);
}
.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(--white);
}
.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: rgba(0,106,255,0.08);
  border: 1px solid rgba(0,106,255,0.2);
  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(--white); margin-bottom: 4px; }
.contact-card-text p { font-size: 0.825rem; color: var(--text-muted); margin: 0; }
.contact-image-color {
  border-radius: 16px;
  height: 360px;
  background: linear-gradient(135deg, #001630 0%, #003399 50%, #006aff 100%);
  position: relative;
  overflow: hidden;
}
.contact-image-color::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 30%, rgba(255,255,255,0.1) 0%, transparent 60%);
}

/* Contact Form */
.section-contact-form {
  padding: 90px 0;
  background: var(--bg-main);
}
.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;
  color: var(--white);
}
.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: rgba(0,22,48,0.8);
  border: 1px solid rgba(0,106,255,0.2);
  border-radius: 20px;
  padding: 50px;
  box-shadow: 0 4px 60px rgba(0,0,0,0.4);
}
.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(--off-white); }
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid rgba(0,106,255,0.25);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--white);
  background: rgba(0,14,32,0.6);
  transition: border-color 0.2s, box-shadow 0.2s;
  resize: vertical;
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(139,160,190,0.6); }
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0,106,255,0.15);
}
.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(0,106,255,0.4);
}

/* ============================================================
   404 PAGE
   ============================================================ */
.error-section {
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 40px;
  background: var(--bg-main);
}
.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;
  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-light);
}
.error-content h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 600;
  color: var(--off-white);
  max-width: 520px;
  margin: -60px auto 36px;
  line-height: 1.6;
}

/* ============================================================
   SUCCESS PAGE
   ============================================================ */
.success-section {
  min-height: calc(100vh - 200px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 40px;
  background: var(--bg-main);
}
.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(--white);
  margin-bottom: 16px;
}
.success-section p {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 440px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

/* ============================================================
   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-color { 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,
  .section-contact-info, .section-contact-form,
  .banner, .cta-banner { padding: 60px 0; }
  .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; }
  .cta-social-row { flex-direction: column; }
}
