/* ─── CSS VARIABLES ─── */
:root {
  --red: #E50000;
  --red-dark: #cc0000;
  --black: #111111;
  --dark: #1a1a1a;
  --white: #ffffff;
  --gray-bg: #f0f0f0;
  --gray-light: #f7f7f7;
  --text: #1a1a1a;
  --text-muted: #555;
  --border: #e0e0e0;
  --font-display: 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius: 6px;
  --shadow: 0 2px 16px rgba(0,0,0,0.08);
}

/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}
img { 
  max-width: 100%; 
  height: auto;
  display: block; 
}
a { text-decoration: none; color: inherit; }

/* ─── CONTAINER UTILITY ─── */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding-left: 60px;
  padding-right: 60px;
  width: 100%;
  box-sizing: border-box;
}

/* ─── UTILITY BUTTONS ─── */
.btn-red {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 14px 32px;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: background 0.2s;
  text-transform: uppercase;
  align-self: flex-start;
}
.btn-red:hover { background: var(--red-dark); }

.btn-submit {
  width: 100%;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 18px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  text-transform: uppercase;
  border-radius: 0;
  margin-top: 4px;
}
.btn-submit:hover { background: var(--red-dark); }

/* ─── SECTION TITLES ─── */
.section-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 36px;
}
.section-title.left { text-align: left; }
.section-title.center { text-align: center; }

/* ═══════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
  height: 100px;
  display: flex;
  align-items: center;
  gap: 40px;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.logo-img { height: 44px; width: auto; }
/* Text fallback shown when logo image not loaded */
.logo-text-fallback {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
/* Hide text fallback when real image loads */
.logo-img:not([src=""]):not([src="assets/logo.png"]) + .logo-text-fallback,
.logo-img[src="assets/logo.png"] + .logo-text-fallback {
  display: flex; /* keep visible until image loads */
}
.logo-drive {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--black);
  letter-spacing: 2px;
  font-style: italic;
}
.logo-dynamix {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--red);
  letter-spacing: 1px;
  font-style: italic;
  line-height: 1;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  flex: 1;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  transition: none;
}
.nav-links a:hover { color: var(--text); }
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}
.btn-whatsapp {
  width: 48px;
  height: 48px;
  background: var(--red);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s;
}
.btn-whatsapp:hover { background: var(--red-dark); }
.btn-cta {
  background: var(--red);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 0;
  letter-spacing: 0.3px;
  transition: background 0.2s;
  white-space: nowrap;
  text-transform: uppercase;
}
.btn-cta:hover { background: var(--red-dark); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--black);
  transition: all 0.3s;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 16px 32px 20px;
  border-top: 1px solid var(--border);
  background: var(--white);
  gap: 12px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  padding: 6px 0;
  transition: none;
}
.mobile-menu a:hover { color: var(--text); }

/* ═══════════════════════════════════════════
   SECTION 1: HERO
═══════════════════════════════════════ */
.hero {
  display: grid;
  grid-template-columns: 1fr 420px;
  min-height: calc(100vh - 100px);
  overflow: hidden;
}
.hero-left {
  background: #0d0f2a;
  padding: 80px 60px 100px 60px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
  overflow: hidden;
}
.hero-img-wrap {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}
.hero-img-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(13, 15, 42, 0.5);
  z-index: 2;
}
.hero-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.hero-heading {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  max-width: 580px;
  margin-bottom: 40px;
  position: relative;
  z-index: 3;
}
.hero-left .btn-red {
  position: relative;
  z-index: 3;
}
/* Placeholder shown until real image is added */
.hero-img-placeholder {
  display: none;
}
.hero-right {
  background: var(--black);
  padding: 80px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.form-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 32px;
}
.lead-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-input, .form-select {
  width: 100%;
  background: var(--white);
  border: none;
  border-radius: 0;
  padding: 16px 20px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  outline: none;
  transition: box-shadow 0.2s;
}
.form-input:focus { box-shadow: 0 0 0 2px var(--red); }
.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 42px;
  cursor: pointer;
}
.form-select:focus { box-shadow: 0 0 0 2px var(--red); }

/* ═══════════════════════════════════════════
   SECTION 2: CATEGORIES
═══════════════════════════════════════════ */
.categories {
  padding-top: 80px;
  padding-bottom: 80px;
  background: var(--white);
  width: 100%;
  overflow-x: hidden;
}
.categories-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  width: 100%;
  max-width: 100%;
}
.cat-card {
  border: 1.5px solid var(--border);
  border-radius: 0;
  padding: 36px 24px 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 52px;
  transition: border-color 0.2s, box-shadow 0.2s;
  cursor: pointer;
  min-height: 180px;
}
.cat-card:hover {
  border-color: var(--red);
  box-shadow: var(--shadow);
}
.cat-icon { 
  flex-shrink: 0; 
  display: flex;
  align-items: center;
  justify-content: center;
}
.cat-icon img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}
.cat-label {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--black);
}

/* ═══════════════════════════════════════════
   SECTION 3 & 6: FEATURE BLOCKS
═══════════════════════════════════════════ */
.feature-block {
  padding-top: 80px;
  padding-bottom: 80px;
  background: var(--white);
}
.feature-block:nth-of-type(even) { background: var(--white); }
.feature-block .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.feature-img-right .container .feature-media { order: 2; }
.feature-img-right .container .feature-content { order: 1; }
.feature-img-left .container .feature-media { order: -1; }
.feature-img-left .container .feature-content { order: 1; }
.feature-media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
}
.feature-img {
  max-height: 400px;
  width: 100%;
  object-fit: contain;
}
.feature-img-placeholder {
  display: none;
}
.feature-content p {
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.7;
}
.feature-content .btn-red { margin-top: 12px; }

/* ═══════════════════════════════════════════
   SECTION 4 & 7: PRODUCTS GRID
═══════════════════════════════════════════ */
.products-section {
  padding-top: 80px;
  padding-bottom: 120px;
  background: var(--white);
  width: 100%;
  overflow-x: hidden;
}
.products-section--alt { background: var(--white); }
.products-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  width: 100%;
  max-width: 100%;
}
.product-card {
  border: 1.5px solid var(--border);
  border-radius: 0;
  padding: 0;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
  cursor: pointer;
  background: var(--white);
}
.product-card:hover {
  border-color: var(--red);
  box-shadow: var(--shadow);
}
.product-card.active {
  border-color: var(--red);
  border-bottom: 3px solid var(--red);
}
.product-card.active:hover {
  border-color: var(--red);
  border-bottom: 3px solid var(--red);
  box-shadow: var(--shadow);
}
.product-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
}
.product-img-ph {
  display: none;
}
.product-name {
  padding: 16px 16px 18px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--black);
  line-height: 1.4;
}

/* ═══════════════════════════════════════════
   SECTION 5: BANNER CTA
═══════════════════════════════════════════ */
.banner-cta {
  padding-top: 100px;
  padding-bottom: 80px;
  width: 100%;
  overflow-x: hidden;
}
.banner-cta .container {
  position: relative;
}
.banner-media {
  position: relative;
  width: 100%;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  overflow: hidden;
}
.banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  min-height: 400px;
}
.banner-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 60px;
  z-index: 2;
}
.banner-content h2 {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}
.banner-content p {
  color: rgba(255,255,255,0.9);
  margin-bottom: 28px;
  max-width: 500px;
  line-height: 1.65;
  font-size: 1.05rem;
}
.banner-img-ph {
  display: none;
}

/* ═══════════════════════════════════════════
   SECTION 8: FAQ
═══════════════════════════════════════════ */
.faq-section {
  padding-top: 80px;
  padding-bottom: 80px;
  background: var(--white);
}
.faq-section .container {
  padding-left: 60px;
  padding-right: 60px;
}
.faq-list {
  max-width: 960px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 500;
  color: var(--text);
  text-align: left;
  gap: 20px;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--red); }
.faq-question[aria-expanded="true"] { color: var(--black); }
.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
  color: var(--red);
}
.faq-icon {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: transform 0.25s, color 0.2s;
  line-height: 1;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s;
}
.faq-answer.open {
  max-height: 300px;
  padding-bottom: 20px;
}
.faq-answer p {
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ═══════════════════════════════════════════
   SECTION 9: CONTACT
═══════════════════════════════════════════ */
.contact-section {
  padding-top: 80px;
  padding-bottom: 80px;
  display: grid;
  grid-template-columns: 1fr 480px;
  min-height: 520px;
  max-width: 1400px;
  margin: 0 auto;
  padding-left: 60px;
  padding-right: 60px;
  width: 100%;
}
.contact-map {
  background: var(--white);
  min-height: 520px;
}
.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 520px;
  display: block;
}
.contact-form-wrap {
  background: var(--black);
  padding: 60px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ═══════════════════════════════════════════
   SECTION 10: FOOTER
═══════════════════════════════════════════ */
.footer {
  background: var(--white);
  padding: 60px 60px 0;
}
.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1.8fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid #d8d8d8;
}
.footer-logo-img { height: 44px; width: auto; margin-bottom: 16px; }
.footer-logo-text-fallback {
  display: flex;
  flex-direction: column;
  line-height: 1;
  margin-bottom: 16px;
}
.footer-tagline {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-top: 8px;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-heading {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.footer-col a, .footer-col p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--red); }
.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.profitcast-link {
  color: var(--red);
  font-weight: 600;
}
.footer-legal {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.footer-legal a { transition: color 0.2s; }
.footer-legal a:hover { color: var(--red); }
.footer-legal span { color: #bbb; }

/* ═══════════════════════════════════════════
   FLOATING WHATSAPP
═══════════════════════════════════════════ */
.float-wa {
  position: fixed;
  bottom: 32px;
  width: 60px;
  height: 60px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(227,30,36,0.5);
  z-index: 999;
  transition: transform 0.2s, box-shadow 0.2s;
}
.float-wa:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(227,30,36,0.6);
}
.float-wa--left { left: 32px; }
.float-wa--right { right: 32px; }
.float-wa svg {
  width: 28px;
  height: 28px;
}

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 1200px) {
  .hero { grid-template-columns: 1fr 380px; min-height: calc(100vh - 100px); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}

/* Tablet styles */
@media (max-width: 1024px) {
  .container {
    padding-left: 40px;
    padding-right: 40px;
  }
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .categories-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .nav-inner { padding: 0 32px; height: 85px; }
  .hero { grid-template-columns: 1fr; min-height: calc(100vh - 85px); }
  .hero-left { padding: 48px 32px 60px; }
  .hero-heading { font-size: 2.2rem; }
  .hero-img-wrap { min-height: 280px; }
  .hero-right { padding: 48px 32px; }
  .categories { 
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .container {
    padding-left: 32px;
    padding-right: 32px;
  }
  .categories-grid { grid-template-columns: repeat(3, 1fr); }
  .feature-block { 
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .feature-block .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .feature-img-right .feature-media { order: -1; }
  .products-section { 
    padding-top: 60px;
    padding-bottom: 100px;
  }
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .banner-cta {
    padding-top: 80px;
    padding-bottom: 60px;
  }
  .banner-media { 
    min-height: 350px;
  }
  .banner-content { 
    padding: 40px 32px;
  }
  .banner-content h2 {
    font-size: 1.9rem;
  }
  .banner-content p {
    font-size: 0.95rem;
    max-width: 100%;
  }
  .banner-img {
    min-height: 350px;
  }
  .faq-section { 
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .contact-section { 
    grid-template-columns: 1fr;
    padding-top: 60px;
    padding-bottom: 60px;
    padding-left: 32px;
    padding-right: 32px;
  }
  .contact-map { min-height: 300px; }
  .contact-map iframe { min-height: 300px; }
  .contact-form-wrap { padding: 48px 32px; }
  .footer { padding: 48px 32px 0; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .nav-links, .nav-actions { display: none; }
  .hamburger { display: flex; }
}

/* Mobile styles - Header: Only centered logo */
@media (max-width: 768px) {
  .navbar {
    height: 80px;
  }
  .nav-inner {
    padding: 0 20px;
    height: 80px;
    justify-content: center;
  }
  .nav-logo {
    margin: 0 auto;
  }
  .nav-links,
  .nav-actions,
  .hamburger {
    display: none !important;
  }
  .mobile-menu {
    display: none;
  }
  .hero {
    min-height: calc(100vh - 80px);
  }
  .hero-left {
    padding: 40px 20px 50px;
  }
  .hero-heading {
    font-size: 2rem;
  }
  .hero-right {
    padding: 40px 20px;
  }
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
  .categories-grid {
    grid-template-columns: 1fr;
  }
  .products-grid {
    grid-template-columns: 1fr;
  }
  .feature-block .container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .banner-content {
    padding: 30px 20px;
  }
  .banner-content h2 {
    font-size: 1.6rem;
  }
  .contact-section {
    padding-left: 20px;
    padding-right: 20px;
  }
  .footer {
    padding: 40px 20px 0;
  }
  .footer-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .hero-heading { font-size: 1.8rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .categories,
  .feature-block,
  .products-section,
  .faq-section {
    padding-top: 48px;
    padding-bottom: 48px;
  }
  .faq-section .container {
    padding-left: 20px;
    padding-right: 20px;
  }
  .faq-question {
    padding: 18px 0;
    font-size: 0.9rem;
    gap: 12px;
  }
  .faq-icon {
    font-size: 1.2rem;
  }
  .faq-answer p {
    font-size: 0.9rem;
    line-height: 1.6;
  }
  .faq-list {
    max-width: 100%;
  }
  .banner-cta {
    padding-top: 50px;
    padding-bottom: 40px;
  }
  .banner-content h2 {
    font-size: 1.5rem;
  }
  .banner-content p {
    font-size: 0.9rem;
  }
}

/* ─── THANK YOU MODAL ─── */
.thank-you-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--white);
  z-index: 10000;
  display: none;
  overflow-y: auto;
}

.thank-you-modal.active {
  display: block;
}

.thank-you-content {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.thank-you-header {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  height: 100px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  position: sticky;
  top: 0;
  z-index: 10001;
  gap: 40px;
}

.thank-you-header .nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.thank-you-header .nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  flex: 1;
}

.thank-you-header .nav-links a {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  transition: none;
}

.thank-you-header .nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

.thank-you-body {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 60px;
}

.thank-you-text {
  max-width: 600px;
  text-align: left;
}

.thank-you-text h1 {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 24px;
  line-height: 1.2;
}

.thank-you-text p {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 32px;
}

.thank-you-text .btn-red {
  margin-top: 8px;
}

@media (max-width: 768px) {
  .thank-you-header {
    padding: 0 20px;
    height: auto;
    min-height: 80px;
    flex-direction: column;
    gap: 20px;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  
  .thank-you-header .nav-logo {
    margin: 0 auto;
  }
  
  .thank-you-header .nav-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    flex: none;
  }
  
  .thank-you-header .nav-actions {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-left: 0;
  }
  
  .thank-you-body {
    padding: 60px 20px;
  }
  
  .thank-you-text {
    text-align: center;
  }
  
  .thank-you-text h1 {
    font-size: 2rem;
  }
  
  .thank-you-text p {
    font-size: 1rem;
  }
}

@media (max-width: 600px) {
  .thank-you-header {
    padding: 16px;
  }
  
  .thank-you-header .nav-links {
    gap: 12px;
    font-size: 0.9rem;
  }
  
  .thank-you-text h1 {
    font-size: 1.75rem;
  }
  
  .thank-you-text p {
    font-size: 0.95rem;
  }
}
