/* =============================================
   FIKRA MARKETING STUDIO — GLOBAL STYLES
   ============================================= */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --deep-navy: #1b3a5c;
  --warm-sand: #d4bfa0;
  --copper-orange: #c8894f;
  --warm-gold: #d4a05a;
  --muted-grey: #8a8a8a;
  --cream: #e8d9c5;
  --charcoal: #2c2c2c;
  --off-white: #f5f0ea;
  --white: #ffffff;

  --bg: var(--off-white);
  --bg-card: var(--white);
  --text-primary: var(--deep-navy);
  --text-secondary: #4a6a8a;
  --text-muted: var(--muted-grey);
  --accent: var(--copper-orange);

  --pastel-cream: #f5eedd;
  --pastel-rose: #f2c4d0;
  --pastel-gold: #f5e06b;
  --pastel-sky: #c6ddf0;
  --pastel-lavender: #d4c8f0;
  --pastel-lime: #d6f5a0;

  --font-display: "Inter", "Arial Black", sans-serif;
  --font-body: "Inter", "DM Sans", "Helvetica", sans-serif;
  --section-pad-y: clamp(80px, 10vw, 140px);
  --section-pad-x: clamp(20px, 5vw, 80px);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-pill: 999px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

.text--accent {
  color: var(--accent);
}
.text--outline {
  -webkit-text-stroke: 2px var(--deep-navy);
  color: transparent;
}
.text--navy {
  color: var(--deep-navy);
}
.section-tag {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--copper-orange);
  margin-bottom: 14px;
}
.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.05;
}
.section-heading--center {
  text-align: center;
}

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px var(--section-pad-x);
  background: rgba(245, 240, 234, 0.75);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(27, 58, 92, 0.06);
  transition: background 0.4s var(--ease-out);
}
.navbar__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.3rem;
  letter-spacing: 0.04em;
}
.logo-icon {
  color: var(--copper-orange);
  font-size: 1.5rem;
  animation: spinSlow 8s linear infinite;
}
@keyframes spinSlow {
  to {
    transform: rotate(360deg);
  }
}
.navbar__links {
  display: flex;
  gap: 32px;
}
.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  transition: color 0.3s var(--ease-out);
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--copper-orange);
  border-radius: 2px;
  transition: width 0.3s var(--ease-out);
}
.nav-link:hover,
.nav-link.active {
  color: var(--deep-navy);
}
.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}
.nav-link.active::before {
  content: "•";
  position: absolute;
  left: -12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--copper-orange);
  font-size: 0.7rem;
}
.navbar__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 24px;
  border: 1px solid var(--deep-navy);
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--deep-navy);
  transition: all 0.3s var(--ease-out);
}
.navbar__cta:hover {
  background: var(--deep-navy);
  color: var(--off-white);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(27, 58, 92, 0.2);
}
.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.navbar__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--deep-navy);
  border-radius: 2px;
  transition: all 0.3s var(--ease-out);
}

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px var(--section-pad-x) 60px;
  overflow: hidden;
  background: var(--warm-sand);
}
.hero__3d-container {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.hero__lottie {
  position: absolute;
  top: 43%;
  left: 50%;
  width: min(44vw, 540px);
  aspect-ratio: 1 / 1;
  max-height: 58vh;
  transform: translate(-50%, -50%);
  opacity: 0.5;
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 960px;
}
.hero__tagline {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--copper-orange);
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s var(--ease-out) forwards;
}
.hero__headline {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.9s 0.35s var(--ease-out) forwards;
}
.line {
  display: block;
}
.line--2,
.line--3 {
  margin-top: 0.05em;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-body);
  font-size: clamp(0.65rem, 1.4vw, 0.95rem);
  font-weight: 700;
  text-transform: capitalize;
  padding: 6px 16px;
  border-radius: var(--radius-md);
  position: relative;
  top: -0.15em;
  white-space: nowrap;
  transition: transform 0.4s var(--ease-out);
}
.badge:hover {
  transform: scale(1.08) !important;
}
.badge[data-rotate="-12"] {
  transform: rotate(-12deg);
}
.badge[data-rotate="8"] {
  transform: rotate(8deg);
}
.badge[data-rotate="-6"] {
  transform: rotate(-6deg);
}
.badge[data-rotate="14"] {
  transform: rotate(14deg);
}
.badge--gold {
  background: var(--warm-gold);
  color: #2c1f00;
}
.badge--green {
  background: #7db87d;
  color: #0b1f0b;
}
.badge--copper {
  background: var(--copper-orange);
  color: #1f0e00;
}
.badge--muted {
  background: var(--pastel-lavender);
  color: #1a0e30;
}
.badge__emoji {
  font-size: 1.3em;
}
.highlight-wrap {
  position: relative;
}
.hero__description {
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  color: var(--text-secondary);
  max-width: 580px;
  margin: 0 auto 40px;
  line-height: 1.7;
  opacity: 0;
  animation: fadeUp 0.9s 0.5s var(--ease-out) forwards;
}
.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border: 2px solid var(--deep-navy);
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--off-white);
  background: var(--deep-navy);
  transition: all 0.35s var(--ease-out);
  opacity: 0;
  animation: fadeUp 0.9s 0.65s var(--ease-out) forwards;
}
.hero__cta:hover {
  background: transparent;
  color: var(--deep-navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(27, 58, 92, 0.2);
}
.cta-arrow {
  font-size: 1.2em;
  transition: transform 0.3s var(--ease-out);
}
.hero__cta:hover .cta-arrow {
  transform: translateX(4px);
}
.hero::before {
  content: "";
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(
    circle,
    rgba(200, 137, 79, 0.1) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}

/* =============================================
   MARQUEE
   ============================================= */
.marquee-section {
  border-top: 1px solid rgba(27, 58, 92, 0.08);
  border-bottom: 1px solid rgba(27, 58, 92, 0.08);
  padding: 28px 0;
  overflow: hidden;
  background: var(--off-white);
}
.marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.marquee__track {
  display: flex;
  align-items: center;
  gap: 40px;
  white-space: nowrap;
  animation: marqueeScroll 28s linear infinite;
  width: max-content;
}
.marquee__item {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.3s;
}
.marquee__item:hover {
  color: var(--copper-orange);
}
.marquee__separator {
  color: var(--copper-orange);
  font-size: 0.9rem;
  opacity: 0.5;
}
@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* =============================================
   SERVICES
   ============================================= */
.services {
  padding: var(--section-pad-y) var(--section-pad-x);
  background: var(--off-white);
}
.services__container {
  max-width: 1200px;
  margin: 0 auto;
}
.services__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 56px;
}
.services__header-left {
  max-width: 600px;
}
.services__header-right {
  max-width: 340px;
}
.services__header-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--white);
  border: 1px solid rgba(27, 58, 92, 0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.45s var(--ease-out);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(27, 58, 92, 0.12);
}
.service-card__color-block {
  height: 160px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  transition: height 0.4s var(--ease-out);
}
.service-card:hover .service-card__color-block {
  height: 140px;
}
.service-card__color--cream {
  background: var(--pastel-cream);
}
.service-card__color--rose {
  background: var(--pastel-rose);
}
.service-card__color--gold {
  background: var(--pastel-gold);
}
.service-card__color--sky {
  background: var(--pastel-sky);
}
.service-card__color--lavender {
  background: var(--pastel-lavender);
}
.service-card__color--lime {
  background: var(--pastel-lime);
}
.service-card__body {
  padding: 28px 24px 32px;
}
.service-card__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.service-card__desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* =============================================
   TESTIMONIALS — Scrolling Columns
   ============================================= */
.testimonials {
  padding: var(--section-pad-y) var(--section-pad-x);
  background: var(--off-white);
  position: relative;
}
.testimonials__container {
  max-width: 1100px;
  margin: 0 auto;
}
.testimonials__badge {
  border: 1px solid rgba(27, 58, 92, 0.15);
  padding: 6px 20px;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-block;
  margin: 0 auto 20px;
  color: var(--text-secondary);
  text-align: center;
  width: auto;
}
.testimonials__container > .testimonials__badge {
  display: block;
  text-align: center;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.testimonials__sub {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 540px;
  margin: 20px auto 48px;
  line-height: 1.7;
  text-align: center;
}

.testimonials__columns {
  display: flex;
  justify-content: center;
  gap: 24px;
  max-height: 740px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent,
    black 25%,
    black 75%,
    transparent
  );
  mask-image: linear-gradient(
    to bottom,
    transparent,
    black 25%,
    black 75%,
    transparent
  );
}

.testimonials__col-wrap {
  width: 100%;
  max-width: 320px;
  overflow: hidden;
}
.testimonials__col-wrap--md {
  display: none;
}
.testimonials__col-wrap--lg {
  display: none;
}

.testimonials__col-track {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-bottom: 24px;
  animation: scrollUp var(--dur, 15s) linear infinite;
}

@keyframes scrollUp {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}

.t-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(27, 58, 92, 0.08);
  box-shadow: 0 4px 20px rgba(27, 58, 92, 0.06);
  background: var(--white);
  max-width: 320px;
  width: 100%;
}
.t-card__text {
  font-size: 0.9rem;
  color: var(--text-primary);
  line-height: 1.7;
  margin-bottom: 18px;
}
.t-card__footer {
  display: flex;
  align-items: center;
  gap: 12px;
}
.t-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.t-card__name {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.t-card__role {
  font-size: 0.78rem;
  color: var(--text-muted);
  opacity: 0.7;
}

@media (min-width: 768px) {
  .testimonials__col-wrap--md {
    display: block;
  }
}
@media (min-width: 1024px) {
  .testimonials__col-wrap--lg {
    display: block;
  }
}

/* =============================================
   FAQ
   ============================================= */
.faq {
  padding: var(--section-pad-y) var(--section-pad-x);
  background: var(--off-white);
}
.faq__container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
.faq__header {
  position: sticky;
  top: 120px;
}
.faq__list {
  display: flex;
  flex-direction: column;
}
.faq-item {
  border-bottom: 1px solid rgba(27, 58, 92, 0.08);
}
.faq-item:first-child {
  border-top: 1px solid rgba(27, 58, 92, 0.08);
}
.faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 24px 20px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--deep-navy);
  background: transparent;
  cursor: pointer;
  transition: color 0.3s;
}
.faq-item__question:hover {
  color: var(--copper-orange);
}
.faq-item__icon {
  font-size: 1.3rem;
  color: var(--deep-navy);
  transition: transform 0.3s var(--ease-out);
  flex-shrink: 0;
}
.faq-item.active .faq-item__icon {
  transform: rotate(45deg);
}
.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s var(--ease-out),
    padding 0.4s var(--ease-out);
  padding: 0 20px;
}
.faq-item.active .faq-item__answer {
  max-height: 200px;
  padding: 0 20px 24px;
}
.faq-item__answer p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ====================== QUOTE / STICKY SECTION ====================== */

.quote-section {
  position: relative;
  min-height: 115vh;
  overflow: hidden;
  margin-bottom: -130px;        /* pulls contact section closer */
}

.quote-sticky {
  position: sticky;
  top: 0;
  height: 828px;
  width: 100%;
  overflow: hidden;
  z-index: 5;
}

.quote-content-block {
  position: relative;
  width: 1320px;
  max-width: 100%;
  height: 828px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  box-sizing: border-box;
}

/* Clip container - hides parts of the card outside the mailbox */
.quote-clip {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 2;
}

/* The sliding card block */
.quote-card-block {
  position: absolute;
  top: 226.727px;
  left: -43.195px;
  width: 1020px;
  height: 317.273px;
  z-index: 1;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.quote-card-wrapper {
  display: flex;
  width: 100%;
  height: 100%;
  gap: 0;
}

.quote-card {
  flex: 1;
  background: #c7caff;
  padding: 32px 25px;
  color: rgba(7, 5, 21, 0.85);
  display: flex;
  flex-direction: column;
}

.quote-card:first-child {
  border-top-left-radius: 28px;
  border-bottom-left-radius: 28px;
}

.quote-card:last-child {
  border-top-right-radius: 28px;
  border-bottom-right-radius: 28px;
}

.quote-card.light-blue { background: #c6ddf0; }
.quote-card.pink       { background: #f2c4d0; }

.quote-card-head {
  margin-bottom: 16px;
}

.quote-card h2.heading-04 {
  font-family: 'Arial Black', 'Arial Bold', Gadget, sans-serif;
  font-size: 2rem;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.quote-card p.heading-05 {
  font-family: 'Arial Black', 'Arial Bold', Gadget, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  opacity: 0.8;
}

/* Mailbox image */
.quote-image-wrap {
  position: absolute;
  right: -30px;
  bottom: 0;
  width: 629px;
  z-index: 3;
}

.quote-image {
  width: 100%;
  height: 745.586px;
  display: block;
  object-fit: contain;
}

/* Overlay */
.quote-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(255,255,255,0.08), transparent);
  pointer-events: none;
  z-index: 1;
}

/* ====================== RESPONSIVE ====================== */
@media (max-width: 1200px) {
  .quote-card-block {
    left: 20px;
    width: calc(100% - 40px);
  }
}

@media (max-width: 991px) {
  .quote-sticky {
    height: auto;
    position: relative;
  }
  
  .quote-content-block {
    height: auto;
    flex-direction: column;
    padding-bottom: 60px;
  }
  
  .quote-card-block {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    margin: 0 auto 40px;
    border-radius: 20px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
  }
  
  .quote-clip {
    position: relative;
    overflow: visible;
  }

  .quote-card-wrapper {
    flex-direction: column;
  }
  
  .quote-card {
    padding: 28px 22px;
    border-right: none;
    border-bottom: 1px solid rgba(7, 5, 21, 0.1);
  }

  .quote-card:first-child {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    border-bottom-left-radius: 0;
  }
  
  .quote-card:last-child {
    border-top-right-radius: 0;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    border-bottom: none;
  }
  
  .quote-image-wrap {
    display: none;
  }
}
/* =============================================
   CONTACT CTA
   ============================================= */
.contact-cta {
  padding: var(--section-pad-y) var(--section-pad-x);
  background: var(--off-white);
}
.contact-cta__inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 80px 48px;
  border: 1px solid rgba(27, 58, 92, 0.08);
  border-radius: var(--radius-lg);
  background: var(--warm-sand);
}
.contact-cta__heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.contact-cta__sub {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 36px;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  border-top: 1px solid rgba(27, 58, 92, 0.08);
  padding: 40px var(--section-pad-x);
  background: var(--charcoal);
  color: var(--off-white);
}
.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.1rem;
}
.footer__copy {
  color: var(--muted-grey);
  font-size: 0.85rem;
}
.footer__links {
  display: flex;
  gap: 24px;
}
.footer__links a {
  font-size: 0.85rem;
  color: var(--muted-grey);
  transition: color 0.3s;
}
.footer__links a:hover {
  color: var(--copper-orange);
}

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s var(--ease-out),
    transform 0.8s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered delays for sequential reveal */
.reveal-delay-1 {
  transition-delay: 0.1s;
}
.reveal-delay-2 {
  transition-delay: 0.2s;
}
.reveal-delay-3 {
  transition-delay: 0.3s;
}
.reveal-delay-4 {
  transition-delay: 0.4s;
}
.reveal-delay-5 {
  transition-delay: 0.5s;
}
.reveal-delay-6 {
  transition-delay: 0.6s;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 960px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .faq__container {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .faq__header {
    position: static;
  }
  .services__header {
    flex-direction: column;
    align-items: flex-start;
  }
  .mailbox-wrapper {
    width: 480px;
  }
  .mailbox-clip {
    right: 32%;
  }
}

@media (max-width: 768px) {
  .navbar__links {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 40px 0;
    background: rgba(245, 240, 234, 0.96);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(27, 58, 92, 0.06);
  }
  .navbar__links.open {
    display: flex;
  }
  .navbar__cta {
    display: none;
  }
  .navbar__hamburger {
    display: flex;
  }
  .navbar__hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .navbar__hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .navbar__hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .hero__headline {
    font-size: clamp(2.2rem, 10vw, 3.5rem);
  }
  .services__grid {
    grid-template-columns: 1fr;
  }
  .badge {
    font-size: 0.6rem;
    padding: 4px 10px;
  }
  .contact-cta__inner {
    padding: 48px 24px;
  }
  .footer__inner {
    flex-direction: column;
    text-align: center;
  }

  /* Mailbox: hide SVG completely, disable parallax, stack cards nicely */
  .mailbox-section {
    min-height: auto;
    padding: 60px var(--section-pad-x);
  }
  .mailbox-sticky {
    position: relative;
    height: auto;
  }
  .mailbox-scene {
    height: auto;
  }
  .mailbox-clip {
    position: relative;
    right: auto;
    overflow: visible;
  }
  .why-us__strip {
    position: relative;
    bottom: auto;
    flex-direction: column;
    transform: none !important;
    gap: 0;
  }
  .why-card:first-child {
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  }
  .why-card:last-child {
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  }
  .why-card {
    min-height: auto;
  }
  .mailbox-wrapper {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero__headline {
    font-size: clamp(1.8rem, 10vw, 2.6rem);
  }
  .badge {
    display: none;
  }
}
