/* =============================================
   RESET & BASE
============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:        #0A0E14;
  --navy-mid:    #0E131B;
  --navy-card:   #131A24;
  --navy-border: #1C2430;
  --gold:        #C5B8A5;
  --gold-light:  #D8CFC2;
  --gold-dim:    #8A8278;
  --white:       #F0EDE8;
  --white-dim:   #B0AAA3;
  --white-faint: #6E6963;
  --font-serif:  'Instrument Serif', Georgia, serif;
  --font-sans:   'Figtree', system-ui, sans-serif;
  --max-w:       1200px;
  --section-pad: 100px 24px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* =============================================
   UTILITY
============================================= */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.gold-line {
  display: block;
  width: 56px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 20px;
}

.tag {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}

.section-heading {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--white);
}

.section-heading em {
  font-style: italic;
  color: var(--gold-light);
}

.btn {
  display: inline-block;
  padding: 14px 36px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.btn-gold {
  background: var(--gold);
  color: var(--navy);
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(197,184,165,0.25);
}

.btn-outline {
  border: 1px solid var(--gold);
  color: var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}

/* Fade-in animation */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.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; }

/* =============================================
   NAVIGATION
============================================= */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 24px 0;
  transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}

#navbar.scrolled,
#navbar.solid {
  background: rgba(10, 14, 20, 0.97);
  padding: 14px 0;
  box-shadow: 0 2px 40px rgba(0,0,0,0.5);
  backdrop-filter: blur(12px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.03em;
}

.nav-logo span {
  display: block;
  font-size: 10px;
  font-family: var(--font-sans);
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--white-dim);
  margin-top: -2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white-dim);
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }

.nav-cta {
  padding: 10px 24px !important;
  border: 1px solid var(--gold);
  color: var(--gold) !important;
  transition: all 0.3s ease !important;
}
.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--navy) !important;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: all 0.3s;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 0;
  background: var(--navy-mid);
  border-top: 1px solid var(--navy-border);
  list-style: none;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  display: block;
  padding: 16px 24px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white-dim);
  border-bottom: 1px solid var(--navy-border);
  transition: color 0.2s, background 0.2s;
}
.nav-mobile a:hover,
.nav-mobile a.active {
  color: var(--gold);
  background: rgba(197,184,165,0.05);
}

/* =============================================
   PAGE HERO (Inner pages)
============================================= */
.page-hero {
  padding: 160px 24px 100px;
  background:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(197,184,165,0.08) 0%, transparent 60%),
    linear-gradient(135deg, #070A0F 0%, #0E131B 50%, #070A0F 100%);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--navy-border);
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(197,184,165,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(197,184,165,0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to bottom, transparent, rgba(0,0,0,0.4) 40%, transparent);
}

.page-hero-content {
  position: relative;
  max-width: 700px;
}

.page-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.15;
  margin-top: 12px;
  margin-bottom: 20px;
}

.page-hero p {
  font-size: 16px;
  color: var(--white-dim);
  line-height: 1.8;
  max-width: 520px;
}

/* =============================================
   MARQUEE
============================================= */
.marquee-bar {
  background: var(--gold);
  padding: 14px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marqueeScroll 28s linear infinite;
}
.marquee-track span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy);
  padding: 0 28px;
}
.marquee-track span::before {
  content: '◆';
  margin-right: 28px;
  opacity: 0.5;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =============================================
   STATS BAR
============================================= */
#stats {
  background: var(--navy-mid);
  padding: 80px 24px;
  border-top: 1px solid var(--navy-border);
  border-bottom: 1px solid var(--navy-border);
}

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

.stat-item {
  text-align: center;
  padding: 40px 24px;
  position: relative;
}

.stat-item::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: var(--navy-border);
}
.stat-item:last-child::after { display: none; }

.stat-number {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white-dim);
}

/* =============================================
   SERVICES CARDS
============================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.service-card {
  background: var(--navy-card);
  padding: 52px 40px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { transform: translateY(-4px); }

.service-number {
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 300;
  color: rgba(197,184,165,0.12);
  line-height: 1;
  margin-bottom: 20px;
  transition: color 0.3s;
}
.service-card:hover .service-number { color: rgba(197,184,165,0.22); }

.service-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  color: var(--gold);
}

.service-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 16px;
  color: var(--white);
}

.service-desc {
  font-size: 14px;
  color: var(--white-dim);
  line-height: 1.8;
  margin-bottom: 28px;
}

.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-list li {
  font-size: 13px;
  color: var(--white-faint);
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-list li::before {
  content: '';
  display: block;
  width: 16px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

/* =============================================
   PROCESS
============================================= */
.process-header {
  text-align: center;
  margin-bottom: 72px;
}
.process-header .section-heading { margin-top: 12px; }
.process-header p {
  color: var(--white-dim);
  font-size: 15px;
  max-width: 560px;
  margin: 16px auto 0;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  gap: 40px;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: linear-gradient(to right, var(--navy-border), var(--gold-dim), var(--navy-border));
}

.process-step {
  text-align: center;
  position: relative;
}

.step-circle {
  width: 72px;
  height: 72px;
  border: 1px solid var(--gold-dim);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  background: var(--navy-mid);
  transition: all 0.3s;
}
.process-step:hover .step-circle {
  background: var(--gold);
  border-color: var(--gold);
}

.step-num {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--gold);
  transition: color 0.3s;
}
.process-step:hover .step-num { color: var(--navy); }

.step-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 10px;
  color: var(--white);
}

.step-desc {
  font-size: 13px;
  color: var(--white-faint);
  line-height: 1.7;
}

/* =============================================
   FEATURED WORK (Previous projects)
============================================= */
.work-featured {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: stretch;
}

.work-feature-main,
.work-feature-side {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.work-item {
  position: relative;
  display: block;
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  overflow: hidden;
  transition: border-color 0.35s ease, transform 0.35s ease;
}

.work-item:hover {
  border-color: var(--gold-dim);
  transform: translateY(-4px);
}

.work-item-visual {
  position: relative;
  min-height: 220px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

.work-item-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 90% 10%, rgba(197,184,165,0.14) 0%, transparent 55%),
    linear-gradient(160deg, #0B1018 0%, #131A24 55%, #0E131B 100%);
  transition: transform 0.6s ease;
}

.work-item:hover .work-item-visual::before {
  transform: scale(1.04);
}

.work-item--app .work-item-visual::before {
  background:
    radial-gradient(ellipse 60% 70% at 20% 80%, rgba(197,184,165,0.16) 0%, transparent 50%),
    linear-gradient(145deg, #0E131B 0%, #161E2A 50%, #0B1018 100%);
}

.work-item--jacques .work-item-visual::before {
  background:
    radial-gradient(ellipse 55% 60% at 80% 70%, rgba(197,184,165,0.12) 0%, transparent 50%),
    linear-gradient(200deg, #0B1018 0%, #182230 45%, #0E131B 100%);
}

.work-item-mark {
  position: absolute;
  top: 28px;
  right: 28px;
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 8vw, 6rem);
  line-height: 1;
  color: rgba(197,184,165,0.12);
  pointer-events: none;
  transition: color 0.35s ease;
}

.work-item:hover .work-item-mark {
  color: rgba(197,184,165,0.22);
}

.work-item-body {
  position: relative;
  z-index: 1;
}

.work-item-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.work-item-type {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.work-item-link-label {
  font-size: 11px;
  color: var(--white-faint);
  letter-spacing: 0.04em;
}

.work-item-title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 12px;
}

.work-item-desc {
  font-size: 14px;
  color: var(--white-dim);
  line-height: 1.75;
  max-width: 420px;
}

.work-item-footer {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 36px 28px;
  border-top: 1px solid transparent;
}

.work-item-cta {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.work-item-cta svg {
  transition: transform 0.3s ease;
}

.work-item:hover .work-item-cta svg {
  transform: translateX(4px);
}

.work-item--tall .work-item-visual {
  min-height: 320px;
  flex: 1;
}

.work-header {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: end;
  margin-bottom: 56px;
}

.work-header p {
  color: var(--white-dim);
  font-size: 15px;
  line-height: 1.8;
  max-width: 420px;
}

@media (max-width: 900px) {
  .work-featured { grid-template-columns: 1fr; }
  .work-header { grid-template-columns: 1fr; gap: 20px; align-items: start; }
}

/* =============================================
   PORTFOLIO
============================================= */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.portfolio-card {
  position: relative;
  overflow: hidden;
  background: var(--navy-card);
}

.portfolio-img {
  aspect-ratio: 4/3;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy-card);
}

.portfolio-img svg {
  width: 64px;
  height: 64px;
  color: var(--navy-border);
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 60px;
  background: linear-gradient(to top, rgba(7,10,15,0.96) 0%, rgba(7,10,15,0.3) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.4s ease;
}

.portfolio-card:hover .portfolio-overlay {
  opacity: 1;
  transform: translateY(0);
}

.portfolio-overlay-label {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.portfolio-overlay-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--white);
}

.portfolio-info {
  padding: 24px 28px;
  background: var(--navy-card);
  border-top: 1px solid var(--navy-border);
}

.portfolio-info .tag { margin-bottom: 4px; font-size: 10px; }

.portfolio-info h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--white);
}

/* =============================================
   TESTIMONIALS
============================================= */
.testimonials-header {
  text-align: center;
  margin-bottom: 64px;
}

.testimonials-slider {
  position: relative;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-slide {
  min-width: 100%;
  padding: 0 60px;
}

.testimonial-card {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.testimonial-quote-mark {
  font-family: var(--font-serif);
  font-size: 5rem;
  line-height: 0.5;
  color: var(--gold);
  opacity: 0.4;
  margin-bottom: 28px;
  display: block;
}

.testimonial-text {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-style: italic;
  font-weight: 300;
  color: var(--white);
  line-height: 1.7;
  margin-bottom: 36px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.testimonial-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--navy-card);
  border: 1px solid var(--gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--gold);
  flex-shrink: 0;
}

.testimonial-info strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
}

.testimonial-info span {
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 0.08em;
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 48px;
}

.slider-btn {
  width: 44px;
  height: 44px;
  border: 1px solid var(--gold-dim);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: all 0.3s;
}
.slider-btn:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

.slider-dots {
  display: flex;
  gap: 8px;
}

.slider-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--navy-border);
  transition: all 0.3s;
  cursor: pointer;
}
.slider-dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 3px;
}

/* =============================================
   CONTACT FORM
============================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.contact-left p {
  color: var(--white-dim);
  font-size: 15px;
  line-height: 1.8;
  margin-top: 20px;
  margin-bottom: 36px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 14px;
}

.contact-detail-icon {
  width: 36px;
  height: 36px;
  border: 1px solid var(--gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.contact-detail-icon svg { width: 16px; height: 16px; }

.contact-detail span {
  font-size: 14px;
  color: var(--white-dim);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white-faint);
}

.form-field input,
.form-field select,
.form-field textarea {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  color: var(--white);
  padding: 14px 18px;
  font-family: var(--font-sans);
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
  resize: none;
  appearance: none;
  -webkit-appearance: none;
}

.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--white-faint); }

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--gold); }

.form-field select option { background: var(--navy-card); }

.form-submit { margin-top: 8px; }
.form-submit .btn { width: 100%; text-align: center; }

/* =============================================
   FOOTER
============================================= */
footer {
  background: var(--navy-mid);
  border-top: 1px solid var(--navy-border);
  padding: 60px 24px 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-brand .nav-logo {
  display: inline-block;
  margin-bottom: 18px;
}

.footer-brand p {
  font-size: 13px;
  color: var(--white-faint);
  line-height: 1.8;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul a {
  font-size: 13px;
  color: var(--white-faint);
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid var(--navy-border);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 12px;
  color: var(--white-faint);
}

.footer-bottom a {
  color: var(--white-faint);
  transition: color 0.2s;
}
.footer-bottom a:hover { color: var(--gold); }

/* =============================================
   DIVIDER / SECTION SEPARATORS
============================================= */
.section-divider {
  border: none;
  border-top: 1px solid var(--navy-border);
}

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --section-pad: 72px 24px; }

  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .services-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item::after { display: none; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .form-row { grid-template-columns: 1fr; }
  .testimonial-slide { padding: 0 16px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .process-steps { grid-template-columns: 1fr; }
}

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