:root {
  --bg: #090909;
  --text: #ffffff;
  --text-muted: #888888;
  --accent: #008DD2;
  --accent-dark: #0070A6;
  --card-bg: #131415;
  --border: #171717;
  --black: #000000;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Vazirmatn", sans-serif;
  font-size: 14px;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  text-wrap: pretty;
}

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

/* Previne selectarea textului pe butoane și elemente de navigare */
button,
.cta-link,
.cta-button,
.contact-button,
.site-nav a,
.footer-links-list a,
.footer-legal-list a,
.checkbox-label,
.brand {
  -webkit-user-select: none;
  user-select: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Kanit", sans-serif;
  margin: 0;
  line-height: 1.1;
  text-wrap: balance;
}

h1 { font-size: 78px; font-weight: 800; text-transform: uppercase; }
h2 { font-size: 50px; font-weight: 600; }
h3 { font-size: 32px; font-weight: 600; }
h4 { font-size: 24px; font-weight: 600; }
h5 { font-size: 18px; font-weight: 600; }
h6 { font-size: 16px; font-weight: 600; }

.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 2rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
  background: rgba(9, 9, 9, 0.82);
  border-bottom: 1px solid transparent;
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
}

.brand {
  margin: 0;
  font-size: 1.4rem;
  font-family: "Kanit", sans-serif;
  letter-spacing: -0.02em;
  color: #ffffff;
  display: flex;
  align-items: center;
}

.brand-link {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  user-select: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-left: auto;
}

.site-nav a {
  color: var(--text);
  text-decoration: none;
  font-family: "Vazirmatn", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.05em;
  transition: color 0.2s ease;
}

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

.brand-aurel {
  font-weight: 600;
}

.brand-athletics {
  font-weight: 300;
}

.cta-link,
.cta-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  text-decoration: none;
  background: var(--accent);
  color: var(--text);
  border-radius: var(--radius);
  font-weight: 500;
  transition: all 0.2s ease;
  padding: 12px 16px 10px;
  font-family: "Vazirmatn", sans-serif;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 1;
}

/* =========================================
   ANIMATION SYSTEM
   ========================================= */

/* 1. Card staggered fade-in from below */
@keyframes cardFadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.anim-card {
  opacity: 0;
}

.anim-card.visible {
  animation: cardFadeUp 0.55s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.anim-card.visible:nth-child(1) { animation-delay: 0s; }
.anim-card.visible:nth-child(2) { animation-delay: 0.1s; }
.anim-card.visible:nth-child(3) { animation-delay: 0.2s; }

.site-header {
  transition: all 0.3s ease;
}

.site-header.scrolled {
  background-color: rgba(9, 9, 9, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
}

.hero-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
}

.hero-content {
  flex: 1.2;
  max-width: 750px;
}

.hero-image-wrapper {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  position: relative;
}

.hero-image {
  width: 100%;
  max-width: 600px;
  max-height: 80vh;
  aspect-ratio: 4/5;
  object-fit: cover;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  position: relative;
  z-index: 1;
  mask-image: linear-gradient(to bottom, black 85%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 85%, transparent 100%);
}

.hero {
  min-height: calc(100vh - 84px);
  display: flex;
  align-items: center;
  padding: 0;
  text-align: left;
}

.hero h1 {
  margin-bottom: 1.5rem;
  line-height: 1.05;
  letter-spacing: 0.02em;
}

.hero-subtitle {
  color: var(--text-muted);
  font-size: 24px;
  margin-bottom: 2.5rem;
  max-width: 650px;
  line-height: 1.6;
  font-weight: 300;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.hero-divider {
  width: 1px;
  height: 50px;
  background-color: var(--border);
}

.hero-trust-text {
  font-size: 14px;
  color: #ffffff;
  margin: 0;
  max-width: 25ch;
  font-weight: 300;
  line-height: 1.4;
}

.benefits {
  padding: 8rem 0;
  background-color: var(--bg);
}

.philosophy {
  background-color: var(--card-bg);
  padding: 8rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.philosophy-title {
  font-size: 64px;
  line-height: 1.25;
  margin-bottom: 1.5rem;
  letter-spacing: 0;
  font-weight: 700;
}

.philosophy-text {
  font-size: 20px;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 750px;
  font-weight: 300;
}

/* Sustainability Section */
.sustainability {
  padding: 8rem 0;
  background-color: var(--card-bg);
}

.sustainability-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.sustainability-title {
  font-size: 56px;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.sustainability-text {
  font-size: 20px;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 3rem;
  font-weight: 300;
}

.progress-container {
  max-width: 500px;
}

.progress-bar {
  width: 100%;
  height: 8px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.progress-fill {
  width: 0;
  height: 100%;
  background-color: var(--accent);
  border-radius: 4px;
  box-shadow: 0 0 15px rgba(0, 141, 210, 0.3);
  transition: width 1.5s cubic-bezier(0.65, 0, 0.35, 1);
}

.progress-container.animated .progress-fill {
  width: 85%;
}

.progress-labels {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.media-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background-color: #1a1a1a;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.media-placeholder::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 20px,
    rgba(255, 255, 255, 0.02) 20px,
    rgba(255, 255, 255, 0.02) 40px
  );
}

/* Quote Section (impact) */
.quote-section {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bg);
  text-align: center;
}

.quote-text {
  font-size: 80px;
  line-height: 1.1;
  font-weight: 800;
  max-width: 1100px;
  margin-inline: auto;
  letter-spacing: -0.025em;
  text-transform: none;
}

.accent-text {
  color: var(--accent);
}

/* Action Quote Section */
.action-quote {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bg);
  text-align: center;
  padding: 4rem 2rem;
}

.action-quote-text {
  font-size: 80px;
  line-height: 1.15;
  font-weight: 800;
  max-width: 1100px;
  margin-inline: auto;
  letter-spacing: -0.025em;
  text-transform: none;
}

/* About Section */
.about {
  padding: 8rem 0;
  background-color: var(--bg); /* Black background as in the image */
}

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

.about-image {
  width: 100%;
  border-radius: var(--radius);
  aspect-ratio: 4/5;
  object-fit: cover;
  border: 1px solid var(--border);
}

.about-subtitle {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
  font-weight: 500;
}

.about-title {
  font-size: 64px;
  line-height: 1.1;
  margin-bottom: 2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.about-text {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.about-social-links {
  display: flex;
  gap: 1.25rem;
  margin-top: 2rem;
}

.about-social-links a {
  color: var(--text-muted);
  transition: color 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-social-links a:hover {
  color: var(--accent);
}

/* Reasons Section */
.reasons {
  padding: 8rem 0;
  background-color: var(--card-bg);
  text-align: center;
}

.reasons-title {
  font-size: 56px;
  line-height: 1.2;
  margin-bottom: 5.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.reason-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.reason-icon {
  width: 56px;
  height: 56px;
  background-color: rgba(0, 141, 210, 0.18);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 2rem;
}

.reason-item-title {
  font-size: 32px;
  margin-bottom: 0.75rem;
  font-weight: 600;
  line-height: 1.2;
}

.reason-item-text {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.6;
  font-weight: 300;
  max-width: 320px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.benefit-card {
  background-color: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 3rem 2.5rem;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.benefit-icon {
  margin-bottom: 2rem;
  width: 56px;
  height: 56px;
  background-color: rgba(0, 141, 210, 0.18);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.benefit-title {
  font-size: 32px;
  margin-bottom: 0.75rem;
  color: var(--text);
  font-weight: 600;
}

.benefit-text {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
  font-weight: 300;
  min-height: 4.8rem; /* Asigură spațiu pentru 3 rânduri de text */
}

.contact {
  padding: 8rem 0;
  background-color: var(--bg);
}

.contact-content {
  max-width: 1200px;
  margin-inline: auto;
  text-align: center;
  background-color: var(--card-bg);
  border-radius: var(--radius);
  padding: 4rem 3rem;
}

.contact-title {
  font-size: 50px;
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

.contact-subtitle {
  font-size: 24px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 4rem;
  font-weight: 300;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

.contact form {
  max-width: 550px;
  margin-inline: auto;
}

.form-group {
  margin-bottom: 1.5rem;
  text-align: left;
}

.form-group label {
  display: block;
  margin-bottom: 0.7rem;
  font-weight: 500;
  color: var(--text);
  font-size: 14px;
}

.form-required {
  color: var(--accent);
}

.contact form input[type="text"],
.contact form input[type="email"],
.contact form textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.15rem 1.2rem 0.85rem;
  color: var(--text);
  font-family: "Vazirmatn", sans-serif;
  outline: none;
  font-size: 15px;
  line-height: 1;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact form textarea {
  padding: 1rem 1.2rem;
  line-height: 1.6;
  min-height: 120px;
  resize: vertical;
}

.contact form input::placeholder,
.contact form textarea::placeholder {
  color: var(--text-muted);
}

.contact form input[type="text"]:focus,
.contact form input[type="email"]:focus,
.contact form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(0, 141, 210, 0.18), 0 0 12px rgba(0, 141, 210, 0.08);
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  min-width: 20px;
  margin-top: 0.15rem;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--bg);
  cursor: pointer;
  accent-color: var(--accent);
  appearance: none;
  -webkit-appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.05);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.form-checkbox input[type="checkbox"]:checked {
  background: rgba(0, 141, 210, 0.1);
  border-color: var(--accent);
  box-shadow: inset 0 0 0 1px var(--accent);
}

.form-checkbox input[type="checkbox"]:checked::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 2px;
  background: var(--accent);
}

.checkbox-label {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  cursor: pointer;
  margin: 0;
  font-weight: 400;
}

.contact-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  background: var(--accent);
  color: var(--text);
  border: 0;
  border-radius: var(--radius);
  padding: 12px 16px 10px;
  font-weight: 500;
  font-family: "Vazirmatn", sans-serif;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.contact-button:hover {
  background: var(--accent-dark);
}

.cta-link:hover,
.cta-button:hover {
  background: var(--accent-dark);
}

#form-status {
  text-align: center;
  margin-top: 1rem;
  color: var(--accent);
  font-weight: 600;
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 3rem 0 2rem;
  color: var(--text-muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: 3fr 1.5fr 1.5fr 2fr;
  gap: 3rem;
  align-items: start;
}

.footer-brand,
.footer-links,
.footer-quick-links,
.footer-contact {
  align-self: start;
}

.footer-links-title {
  margin: 0;
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.footer-links-list,
.footer-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.6rem;
}

.footer-links-list li,
.footer-nav-list li {
  position: static;
  padding-left: 0;
}

.footer-links-list a,
.footer-nav-list a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  display: inline-block;
  padding: 0.25rem 0;
  transition: color 0.2s ease;
}

.footer-links-list a:hover,
.footer-nav-list a:hover {
  color: var(--text);
}

.footer-quick-links,
.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-copy {
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.8;
  max-width: 320px;
}



.footer-contact-text {
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.8;
}

.footer-contact-text a {
  color: var(--text);
  text-decoration: none;
}

.footer-contact-text a:hover {
  color: var(--accent);
}

.footer-social-links {
  display: flex;
  gap: 1.25rem;
  margin-top: 0;
}

.footer-social-links a {
  color: var(--text-muted);
  transition: color 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-social-links a:hover {
  color: var(--accent);
}

.footer-bottom {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.footer-copy {
  margin: 0;
  color: #777777;
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.02em;
}

.footer-legal-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 2.5rem;
}

.footer-legal-list li {
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.02em;
}

.footer-legal-list a {
  color: #777777;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-legal-list a:hover {
  color: var(--text);
}

/* =========================================
   RESPONSIVE — TABLET (max-width: 992px)
   ========================================= */
@media (max-width: 992px) {

  /* Header */
  .site-header .container {
    padding-top: 1rem;
    padding-bottom: 1rem;
    gap: 1rem;
  }
  .site-nav {
    gap: 1.2rem;
  }
  .cta-link.cta-header {
    display: none;
  }

  /* Hero */
  .hero-container {
    flex-direction: column;
    text-align: center;
    gap: 3rem;
  }
  .hero-content {
    max-width: 100%;
  }
  .hero h1 {
    font-size: 56px;
  }
  .hero-subtitle {
    font-size: 18px;
    margin-inline: auto;
    max-width: 580px;
  }
  .hero-cta-group {
    justify-content: center;
  }
  .hero-image-wrapper {
    justify-content: center;
    width: 100%;
    max-width: 500px;
    margin-inline: auto;
  }

  /* Philosophy */
  .philosophy {
    padding: 5rem 0;
  }
  .philosophy-title {
    font-size: 48px;
  }
  .philosophy-text {
    font-size: 16px;
  }

  /* Benefits */
  .benefits { padding: 5rem 0; }
  .benefits-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
  .benefit-card:last-child {
    grid-column: span 2;
    max-width: 50%;
    margin-inline: auto;
    width: 100%;
  }

  /* Sustainability */
  .sustainability { padding: 5rem 0; }
  .sustainability-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .sustainability-title {
    font-size: 42px;
  }
  .sustainability-media {
    display: none;
  }

  /* Quote Sections */
  .quote-section,
  .action-quote {
    height: auto;
    padding: 6rem 2rem;
  }
  .quote-text,
  .action-quote-text {
    font-size: 52px;
  }

  /* About */
  .about { padding: 5rem 0; }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about-image-wrapper {
    max-width: 400px;
    margin-inline: auto;
  }
  .about-title {
    font-size: 48px;
  }

  /* Reasons */
  .reasons { padding: 5rem 0; }
  .reasons-title {
    font-size: 40px;
    margin-bottom: 3.5rem;
  }
  .reasons-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
  .reason-item:last-child {
    grid-column: span 2;
  }

  /* Contact */
  .contact { padding: 5rem 0; }
  .contact-title {
    font-size: 38px;
  }
  .contact-subtitle {
    font-size: 18px;
    margin-bottom: 2.5rem;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
  .footer-brand {
    grid-column: span 2;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    margin-top: 2.5rem;
  }
  .footer-legal-list {
    gap: 1.5rem;
  }
}

/* =========================================
   RESPONSIVE — PHONE (max-width: 600px)
   ========================================= */
@media (max-width: 600px) {

  /* Header */
  .site-nav a {
    font-size: 12px;
    letter-spacing: 0.03em;
  }

  /* Hero */
  .hero {
    padding-top: 3rem;
  }
  .hero h1 {
    font-size: 38px;
    letter-spacing: 0.01em;
  }
  .hero-subtitle {
    font-size: 16px;
    margin-bottom: 2rem;
  }
  .hero-cta-group {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  .hero-trust-text br {
    display: none;
  }
  .hero-divider {
    display: none;
  }
  .cta-button {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  /* Philosophy */
  .philosophy {
    padding: 4rem 0;
  }
  .philosophy-title {
    font-size: 36px;
  }

  /* Benefits */
  .benefits { padding: 4rem 0; }
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  .benefit-card:last-child {
    grid-column: span 1;
    max-width: 100%;
  }
  .benefit-card {
    padding: 2rem 1.5rem;
  }
  .benefit-title {
    font-size: 26px;
  }

  /* Sustainability */
  .sustainability { padding: 4rem 0; }
  .sustainability-title {
    font-size: 32px;
  }
  .sustainability-text {
    font-size: 15px;
  }

  /* Quote Sections */
  .quote-section,
  .action-quote {
    padding: 4rem 1rem;
  }
  .quote-text,
  .action-quote-text {
    font-size: 34px;
    letter-spacing: -0.01em;
  }

  /* About */
  .about { padding: 4rem 0; }
  .about-title {
    font-size: 40px;
  }
  .about-text {
    font-size: 16px;
  }

  /* Reasons */
  .reasons { padding: 4rem 0; }
  .reasons-title {
    font-size: 30px;
    margin-bottom: 2.5rem;
  }
  .reasons-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .reason-item:last-child {
    grid-column: span 1;
  }
  .reason-item-title {
    font-size: 22px;
  }
  .reason-item-text {
    max-width: 100%;
  }

  /* Contact */
  .contact { padding: 4rem 0; }
  .contact-content {
    padding: 2.5rem 1.5rem;
    border-radius: 0;
  }
  .contact-title {
    font-size: 28px;
  }
  .contact-subtitle {
    font-size: 15px;
    margin-bottom: 2rem;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-brand {
    grid-column: span 1;
  }
  .footer-bottom {
    gap: 1.2rem;
  }
  .footer-legal-list {
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-start;
  }
}

/* =========================================
   NATIVE PAGE TRANSITIONS (Framer-Style)
   ========================================= */
@view-transition {
  navigation: auto;
}

::view-transition-old(root) {
  animation: 300ms cubic-bezier(0.4, 0, 0.2, 1) both fadeOut;
}

::view-transition-new(root) {
  animation: 300ms cubic-bezier(0.4, 0, 0.2, 1) both fadeIn;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeOut {
  from { opacity: 1; }
  to { opacity: 0; }
}

body.fade-out {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
