/* ============================================
   Stadel Aircraft Inc. — Stylesheet
   Clean Minimalist | Teal + Slate Grey
   ============================================ */

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

:root {
  --teal-50: #f0fdfa;
  --teal-100: #ccfbf1;
  --teal-200: #99f6e4;
  --teal-400: #2dd4bf;
  --teal-500: #14b8a6;
  --teal-600: #0d9488;
  --teal-700: #0f766e;
  --teal-800: #115e59;
  --teal-900: #134e4a;

  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;

  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;

  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.7;
  color: var(--slate-800);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

a:hover {
  color: var(--teal-700);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--slate-200);
  transition: box-shadow var(--transition);
}

.nav.scrolled {
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.06);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-weight: 500;
  font-size: 1rem;
  color: var(--slate-900);
  letter-spacing: -0.01em;
}

.nav-logo-icon {
  color: var(--teal-600);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-2xl);
  list-style: none;
}

.nav-links a {
  color: var(--slate-600);
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--teal-600);
  transition: width var(--transition);
}

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

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

.nav-cta {
  color: var(--teal-600) !important;
  border: 1px solid var(--teal-600);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 0.8125rem !important;
  letter-spacing: 0.02em;
  transition: all var(--transition) !important;
}

.nav-cta::after {
  display: none;
}

.nav-cta:hover {
  background: var(--teal-600);
  color: #fff !important;
}

/* Mobile Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-sm);
}

.nav-toggle-line {
  width: 22px;
  height: 1.5px;
  background: var(--slate-700);
  transition: all var(--transition);
  transform-origin: center;
}

.nav-toggle.active .nav-toggle-line:nth-child(1) {
  transform: rotate(45deg) translate(4px, 5px);
}

.nav-toggle.active .nav-toggle-line:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active .nav-toggle-line:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -5px);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-xl);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-close {
  position: absolute;
  top: var(--space-xl);
  right: var(--space-xl);
  background: none;
  border: none;
  cursor: pointer;
  color: var(--slate-700);
  padding: var(--space-sm);
}

.mobile-menu-link {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--slate-800);
  letter-spacing: -0.01em;
}

.mobile-menu-link:hover {
  color: var(--teal-600);
}

.mobile-menu-cta {
  margin-top: var(--space-md);
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--teal-600);
  border: 1px solid var(--teal-600);
  padding: 0.75rem 2rem;
  border-radius: var(--radius-sm);
}

/* --- Hero --- */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-top: 72px;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  flex: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--space-4xl) var(--space-xl);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}

.hero-content {
  max-width: 520px;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-600);
  margin-bottom: var(--space-lg);
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--slate-900);
  letter-spacing: -0.02em;
  margin-bottom: var(--space-xl);
}

.hero-sub {
  font-size: 1.0625rem;
  color: var(--slate-500);
  line-height: 1.8;
  margin-bottom: var(--space-2xl);
  max-width: 440px;
}

.hero-actions {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-3xl);
  flex-wrap: wrap;
}

.hero-trust {
  display: flex;
  gap: var(--space-2xl);
  flex-wrap: wrap;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.8125rem;
  color: var(--slate-500);
  font-weight: 400;
}

.hero-trust-item svg {
  color: var(--teal-600);
  flex-shrink: 0;
}

/* Hero Image */
.hero-image {
  position: relative;
}

.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.hero-image-wrapper img {
  width: 100%;
  height: 860px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.hero-image-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 200px;
  height: 200px;
  border: 1px solid var(--teal-200);
  border-radius: var(--radius-lg);
  z-index: -1;
}

.hero-floating-card {
  position: absolute;
  bottom: var(--space-2xl);
  left: -40px;
  background: #fff;
  border-radius: var(--radius-md);
  padding: var(--space-lg) var(--space-xl);
  display: flex;
  align-items: center;
  gap: var(--space-md);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--slate-100);
}

.hero-floating-icon {
  width: 44px;
  height: 44px;
  background: var(--teal-50);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-600);
  flex-shrink: 0;
}

.hero-floating-label {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--slate-400);
  font-weight: 500;
}

.hero-floating-value {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--slate-800);
}

.hero-line {
  height: 1px;
  background: linear-gradient(to right, var(--teal-200), transparent);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 0.8125rem 1.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: all var(--transition);
  border: 1.5px solid transparent;
  text-decoration: none;
  font-family: var(--font-sans);
}

.btn-primary {
  background: var(--teal-600);
  color: #fff;
  border-color: var(--teal-600);
}

.btn-primary:hover {
  background: var(--teal-700);
  border-color: var(--teal-700);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(13, 148, 136, 0.25);
}

.btn-outline {
  background: transparent;
  color: var(--slate-700);
  border-color: var(--slate-300);
}

.btn-outline:hover {
  border-color: var(--teal-600);
  color: var(--teal-600);
}

.btn-outline-dark {
  background: transparent;
  color: var(--slate-700);
  border-color: var(--slate-300);
}

.btn-outline-dark:hover {
  border-color: var(--teal-600);
  color: var(--teal-600);
}

.btn-white {
  background: #fff;
  color: var(--teal-700);
  border-color: #fff;
}

.btn-white:hover {
  background: var(--slate-50);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.btn-ghost {
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.8);
  color: #fff;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* --- Section Shared --- */
.section-header {
  max-width: 640px;
}

.section-header--centered {
  text-align: center;
  margin: 0 auto var(--space-3xl);
}

.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-600);
  margin-bottom: var(--space-md);
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 500;
  line-height: 1.2;
  color: var(--slate-900);
  letter-spacing: -0.02em;
  margin-bottom: var(--space-lg);
}

.section-sub {
  font-size: 1.0625rem;
  color: var(--slate-500);
  line-height: 1.8;
}

/* --- Services --- */
.services {
  padding: var(--space-4xl) 0;
  background: var(--slate-50);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-3xl);
}

.service-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: var(--space-2xl);
  border: 1px solid var(--slate-100);
  transition: all var(--transition);
}

.service-card:hover {
  border-color: var(--teal-200);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
}

.service-icon {
  width: 52px;
  height: 52px;
  background: var(--teal-50);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-600);
  margin-bottom: var(--space-lg);
  transition: all var(--transition);
}

.service-card:hover .service-icon {
  background: var(--teal-600);
  color: #fff;
}

.service-card h3 {
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--slate-800);
  margin-bottom: var(--space-sm);
  letter-spacing: -0.01em;
}

.service-card p {
  font-size: 0.9375rem;
  color: var(--slate-500);
  line-height: 1.7;
}

/* --- About --- */
.about {
  padding: var(--space-4xl) 0;
  background: #fff;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}

.about-image-stack {
  position: relative;
  height: 640px;
}

.about-image-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 75%;
  height: 80%;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about-image-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-image-secondary {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  height: 55%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 6px solid #fff;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.about-image-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-image-pattern {
  position: absolute;
  top: 15%;
  right: 5%;
  width: 120px;
  height: 120px;
  background-image: radial-gradient(circle, var(--teal-300) 1px, transparent 1px);
  background-size: 16px 16px;
  opacity: 0.5;
  z-index: -1;
}

.about-content-col {
  max-width: 480px;
}

.about-text {
  font-size: 1rem;
  color: var(--slate-500);
  line-height: 1.85;
  margin-bottom: var(--space-lg);
}

.about-stats {
  display: flex;
  gap: var(--space-2xl);
  margin: var(--space-2xl) 0;
  padding: var(--space-xl) 0;
  border-top: 1px solid var(--slate-200);
  border-bottom: 1px solid var(--slate-200);
}

.about-stat {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.about-stat-number {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-weight: 500;
  color: var(--teal-600);
  letter-spacing: -0.01em;
}

.about-stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--slate-400);
  font-weight: 500;
}

/* --- Why Us --- */
.why-us {
  padding: var(--space-4xl) 0;
  background: var(--slate-900);
  color: #fff;
}

.why-us .section-eyebrow {
  color: var(--teal-400);
}

.why-us .section-title {
  color: #fff;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-3xl);
}

.why-item {
  padding: var(--space-2xl);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  transition: all var(--transition);
}

.why-item:hover {
  border-color: rgba(13, 148, 136, 0.4);
  background: rgba(255, 255, 255, 0.02);
}

.why-number {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--teal-500);
  line-height: 1;
  margin-bottom: var(--space-md);
  opacity: 0.6;
}

.why-item h3 {
  font-size: 1.125rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: var(--space-sm);
  letter-spacing: -0.01em;
}

.why-item p {
  font-size: 0.9375rem;
  color: var(--slate-400);
  line-height: 1.75;
}

/* --- CTA Banner --- */
.cta-banner {
  padding: var(--space-4xl) 0;
  background: var(--teal-700);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2xl);
  flex-wrap: wrap;
}

.cta-title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 500;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-sm);
}

.cta-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  gap: var(--space-md);
  flex-shrink: 0;
}

/* --- Contact --- */
.contact {
  padding: var(--space-4xl) 0;
  background: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
}

.contact-sub {
  font-size: 1rem;
  color: var(--slate-500);
  line-height: 1.8;
  margin-bottom: var(--space-2xl);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.contact-detail {
  display: flex;
  gap: var(--space-md);
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: var(--teal-50);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-600);
  flex-shrink: 0;
}

.contact-detail-label {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--slate-400);
  font-weight: 500;
  margin-bottom: 2px;
}

.contact-detail-value {
  font-size: 0.9375rem;
  color: var(--slate-700);
  line-height: 1.6;
}

.contact-detail-value a {
  color: var(--slate-700);
}

.contact-detail-value a:hover {
  color: var(--teal-600);
}

/* Form */
.contact-form-col {
  position: relative;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.form-label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--slate-700);
  letter-spacing: 0.01em;
}

.form-input {
  padding: 0.75rem 1rem;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--slate-800);
  background: #fff;
  transition: all var(--transition);
  outline: none;
  width: 100%;
}

.form-input:focus {
  border-color: var(--teal-500);
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1);
}

.form-input::placeholder {
  color: var(--slate-300);
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

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

.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-4xl) var(--space-2xl);
  gap: var(--space-md);
}

.form-success.show {
  display: flex;
}

.form-success svg {
  color: var(--teal-600);
}

.form-success h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--slate-900);
}

.form-success p {
  font-size: 0.9375rem;
  color: var(--slate-500);
  line-height: 1.7;
}

/* --- Map --- */
.map-section {
  border-top: 1px solid var(--slate-200);
}

.map-container iframe {
  width: 100%;
  height: 380px;
  filter: grayscale(0.4) contrast(1.05);
}

/* --- Footer --- */
.footer {
  background: var(--slate-900);
  color: var(--slate-400);
  padding: var(--space-4xl) 0 var(--space-xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-3xl);
  margin-bottom: var(--space-3xl);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-weight: 500;
  font-size: 1rem;
  color: #fff;
  margin-bottom: var(--space-md);
}

.footer-logo svg {
  color: var(--teal-400);
}

.footer-tagline {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--slate-500);
  max-width: 280px;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--slate-300);
  margin-bottom: var(--space-lg);
}

.footer-links ul,
.footer-contact ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-links li a,
.footer-contact li {
  font-size: 0.875rem;
  color: var(--slate-500);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  transition: color var(--transition);
}

.footer-links li a:hover {
  color: var(--teal-400);
}

.footer-contact li svg {
  flex-shrink: 0;
  opacity: 0.6;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: var(--space-xl);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer-bottom p {
  font-size: 0.8125rem;
  color: var(--slate-600);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .hero-inner {
    gap: var(--space-2xl);
  }

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    padding-top: var(--space-3xl);
    padding-bottom: var(--space-3xl);
  }

  .hero-content {
    max-width: 100%;
    order: 1;
  }

  .hero-image {
    order: 2;
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
  }

  .hero-image-wrapper img {
    height: 500px;
  }

  .hero-floating-card {
    left: var(--space-md);
    bottom: var(--space-lg);
  }

  .hero-line {
    display: none;
  }

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

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

  .about-image-stack {
    height: 400px;
    max-width: 400px;
    margin: 0 auto;
  }

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

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

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

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

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    justify-content: center;
  }

  .hero-trust {
    flex-direction: column;
    gap: var(--space-md);
  }

  .about-stats {
    flex-direction: column;
    gap: var(--space-lg);
  }

  .cta-actions {
    flex-direction: column;
    width: 100%;
  }

  .cta-actions .btn {
    justify-content: center;
  }
}

/* --- Animations --- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }
