/* Caravanova — static export stylesheet */

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  background: #FAF8F4;
  color: #12151C;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: #C9A961; text-decoration: none; }
a:hover { color: #E4D2A1; }
::selection { background: #C9A961; color: #060B14; }
input::placeholder, textarea::placeholder { color: #6B7280; }
input, textarea, select { font-family: 'Manrope', sans-serif; }
input:focus, textarea:focus, select:focus { outline: none; }

@keyframes heroFadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
@keyframes floatSlow { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

.section-eyebrow {
  font-size: 13px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: #A6813F;
}
.section-eyebrow--light { color: #E4D2A1; }
.section-headline {
  font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; letter-spacing: -0.02em; margin: 0; color: #12151C;
  font-size: clamp(32px, 3.6vw, 52px);
}
.section-inner { max-width: 1280px; margin: 0 auto; }
.dot-gold { width: 6px; height: 6px; border-radius: 50%; background: #C9A961; flex-shrink: 0; display: inline-block; }

.btn-gold {
  display: inline-block; background: linear-gradient(135deg, #E4D2A1, #C9A961 45%, #A6813F);
  color: #10131A; padding: 18px 34px; border-radius: 100px; font-size: 16px; font-weight: 700;
}
.btn-outline {
  display: inline-flex; align-items: center; gap: 10px; background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.18); color: #FAF8F4; padding: 18px 30px; border-radius: 100px; font-size: 16px; font-weight: 600;
}
.btn-dark {
  display: inline-flex; align-items: center; gap: 10px; background: #12151C; color: #FAF8F4;
  padding: 16px 30px; border-radius: 100px; font-size: 15px; font-weight: 600;
}

/* NAV */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px clamp(20px,4vw,64px);
  background: rgba(6,11,20,0.72); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: padding 0.3s ease;
}
.nav.is-scrolled { padding: 12px clamp(20px,4vw,64px); }
.nav__logo { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; font-size: 22px; letter-spacing: -0.02em; color: #FAF8F4; }
.nav__right { display: flex; align-items: center; gap: 14px; }
.nav__links { display: flex; align-items: center; gap: 20px; }
.nav__links a { color: #D6DAE2; font-size: 13px; font-weight: 500; white-space: nowrap; }
.nav__burger {
  display: none; align-items: center; justify-content: center; width: 38px; height: 38px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.14); border-radius: 100px; cursor: pointer;
}
.nav__cta {
  background: linear-gradient(135deg, #E4D2A1, #C9A961 45%, #A6813F); color: #10131A;
  padding: 11px 22px; border-radius: 100px; font-size: 14px; font-weight: 700; letter-spacing: 0.01em; white-space: nowrap;
}
.nav__lang-wrap { position: relative; }
.nav__lang-btn {
  display: flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.14);
  color: #FAF8F4; padding: 9px 14px; border-radius: 100px; font-size: 14px; font-weight: 600; cursor: pointer; letter-spacing: 0.02em;
}
.nav__lang-dot { width: 7px; height: 7px; border-radius: 50%; background: #C9A961; display: inline-block; }
.nav__lang-menu {
  display: none; position: absolute; top: 48px; right: 0; background: #0B1526; border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px; padding: 8px; min-width: 180px; box-shadow: 0 24px 48px rgba(0,0,0,0.4); z-index: 210;
}
.nav__lang-menu.is-open { display: block; }
.nav__lang-menu button {
  display: block; width: 100%; text-align: left; background: none; border: none; color: #D6DAE2;
  padding: 10px 12px; border-radius: 8px; font-size: 14px; font-weight: 500; cursor: pointer; font-family: inherit;
}
.nav__lang-menu button:hover { background: rgba(201,169,97,0.12); color: #C9A961; }
.nav-mobile {
  display: none; position: fixed; top: 64px; left: 0; right: 0; z-index: 199;
  background: #0B1526; border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 12px clamp(20px,4vw,64px) 20px; flex-direction: column; gap: 4px;
  box-shadow: 0 24px 48px rgba(0,0,0,0.35);
}
.nav-mobile.is-open { display: flex; }
.nav-mobile a { color: #D6DAE2; font-size: 15px; font-weight: 500; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.nav-mobile a:last-child { border-bottom: none; }

@media (max-width: 1220px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
}

/* HERO */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: flex-end; padding: 0;
  background: #060B14; overflow: hidden;
}
.hero__pattern {
  position: absolute; inset: 0;
  background-image: url('../assets/images/hero.webp');
  background-size: cover; background-position: center; background-repeat: no-repeat;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 90% 70% at 50% 100%,
    rgba(6,11,20,0.10) 0%,
    rgba(6,11,20,0.68) 92%
  );
}
.hero__image-label {
  position: absolute; top: 28px; right: clamp(20px,4vw,64px);
  font-family: 'Manrope', monospace; font-size: 11px; letter-spacing: 0.12em; color: rgba(250,248,244,0.45);
  text-transform: uppercase; border: 1px solid rgba(250,248,244,0.2); padding: 6px 12px; border-radius: 100px;
}
.hero__content {
  position: relative; z-index: 2; width: 100%; padding: 128px clamp(20px,4vw,64px) 88px;
  animation: heroFadeUp 1.1s cubic-bezier(.16,1,.3,1) both;
}
.eyebrow-pill {
  display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px; border-radius: 100px;
  background: rgba(201,169,97,0.1); border: 1px solid rgba(201,169,97,0.35); color: #E4D2A1;
  font-size: 13px; font-weight: 600; letter-spacing: 0.04em; margin-bottom: 28px;
}
.hero__headline {
  font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; font-size: clamp(44px, 7vw, 104px);
  line-height: 1.01; letter-spacing: -0.03em; color: #FAF8F4; max-width: 1180px; margin: 0 0 26px;
}
.hero__sub {
  font-size: clamp(17px, 1.6vw, 22px); line-height: 1.5; color: #A9B1C0; max-width: 640px; margin: 0 0 44px; font-weight: 400;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; }
.hero__badges { display: flex; flex-wrap: wrap; gap: 24px; margin-top: 40px; }
.hero__badge { display: flex; align-items: center; gap: 8px; font-size: 13px; color: #A9B1C0; font-weight: 500; }
.hero__badge span:first-child { color: #C9A961; font-weight: 700; }

/* MEMBERSHIP */
.membership { background: #FAF8F4; padding: 96px clamp(20px,4vw,64px) 0; }
.membership__card {
  max-width: 880px; margin: 0 auto; text-align: center;
  border: 1px solid rgba(201,169,97,0.35); border-radius: 28px; padding: 56px clamp(28px,4vw,64px);
  background: linear-gradient(180deg, rgba(201,169,97,0.05), rgba(201,169,97,0) 60%);
}
.membership__card .section-eyebrow { font-size: 12px; letter-spacing: 0.14em; margin-bottom: 18px; display: block; }
.membership__headline {
  font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; font-size: clamp(28px,3vw,40px);
  letter-spacing: -0.02em; margin: 0 0 20px; color: #12151C;
}
.membership__text1 { font-size: 17px; line-height: 1.6; color: #12151C; font-weight: 600; margin: 0 0 8px; }
.membership__text2 { font-size: 16px; line-height: 1.6; color: #5B6474; margin: 0 auto; max-width: 560px; }

/* reveal-on-scroll */
.reveal { opacity: 0; transform: translateY(36px) scale(0.99); transition: opacity 1s cubic-bezier(.16,1,.3,1), transform 1s cubic-bezier(.16,1,.3,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0) scale(1); }
.trust.reveal { transition-duration: 1.1s; }

/* STATS */
.stats { background: #FAF8F4; padding: 140px clamp(20px,4vw,64px) 64px; }
.stats__eyebrow-wrap { text-align: center; margin-bottom: 72px; }
.stats__grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 2px;
  max-width: 1280px; margin: 0 auto; background: rgba(18,21,28,0.08); border-radius: 28px; overflow: hidden;
}
.stat-card { background: #FAF8F4; padding: 56px 32px; text-align: center; }
.stat-card__icon { margin: 0 auto 20px; display: block; }
.stat-card__num {
  font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; font-size: clamp(34px,3.6vw,48px);
  letter-spacing: -0.02em; color: #12151C; margin-bottom: 10px;
}
.stat-card__num--gold {
  background: linear-gradient(135deg,#A6813F,#C9A961); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stat-card__title { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; font-size: 15px; color: #A6813F; margin-bottom: 10px; }
.stat-card__label { font-size: 14px; color: #5B6474; line-height: 1.5; max-width: 220px; margin: 0 auto; }
.stats__experience { text-align: center; max-width: 640px; margin: 56px auto 0; font-size: 15px; color: #8A8F99; line-height: 1.6; font-style: italic; }

/* WHY JOIN */
.why { background: #F1EEE7; padding: 140px clamp(20px,4vw,64px); }
.section-head { margin-bottom: 64px; max-width: 640px; }
.section-head .section-eyebrow { margin-bottom: 16px; display: block; }
.why__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.why-card { background: #FAF8F4; border-radius: 24px; padding: 40px 32px; border: 1px solid rgba(18,21,28,0.06); }
.why-card--accent { border: 1px solid rgba(201,169,97,0.3); }
.why-card svg { margin-bottom: 24px; }
.why-card__title { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; font-size: 20px; margin-bottom: 10px; color: #12151C; }
.why-card__desc { font-size: 15px; line-height: 1.55; color: #5B6474; }

/* TRUST */
.trust { background: #060B14; padding: 180px clamp(20px,4vw,64px); }
.trust__head { text-align: center; max-width: 720px; margin: 0 auto 96px; }
.trust__head .section-eyebrow { margin-bottom: 20px; display: block; }
.trust__headline {
  font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; font-size: clamp(36px,5vw,68px);
  letter-spacing: -0.03em; margin: 0 0 24px; color: #FAF8F4;
}
.trust__sub { font-size: clamp(16px,1.4vw,19px); line-height: 1.6; color: #A9B1C0; margin: 0 0 40px; }
.trust__quote { max-width: 640px; margin: 0 auto; border-left: 2px solid #C9A961; padding-left: 24px; text-align: left; }
.trust__quote p {
  font-family: 'Bricolage Grotesque', sans-serif; font-weight: 600; font-size: clamp(19px,1.8vw,24px);
  line-height: 1.45; color: #E4D2A1; margin: 0;
}
.trust__body { display: grid; grid-template-columns: 1.15fr 1fr; gap: 64px; align-items: center; margin-bottom: 96px; }
.trust__image {
  position: relative; aspect-ratio: 4/3; border-radius: 28px; overflow: hidden;
  background-image: url('../assets/images/trust-inspection.webp');
  background-size: cover; background-position: center; background-repeat: no-repeat;
  animation: floatSlow 7s ease-in-out infinite;
}
.trust__image-label {
  position: absolute; bottom: 20px; right: 20px; font-family: monospace; font-size: 10px; letter-spacing: 0.1em;
  color: rgba(250,248,244,0.5); text-transform: uppercase; border: 1px solid rgba(250,248,244,0.2);
  padding: 6px 10px; border-radius: 100px;
}
.trust__pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.trust-pillar__icon {
  width: 34px; height: 34px; border-radius: 10px; background: rgba(201,169,97,0.12);
  display: flex; align-items: center; justify-content: center; margin-bottom: 14px;
}
.trust-pillar__title { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; font-size: 17px; color: #FAF8F4; margin-bottom: 6px; }
.trust-pillar__desc { font-size: 14px; line-height: 1.55; color: #8A93A6; }

/* EUROPE REACH */
.map { background: #FAF8F4; padding: 140px clamp(20px,4vw,64px); }
.map__head { max-width: 720px; margin: 0 auto; text-align: center; }
.map__head .section-eyebrow { margin-bottom: 16px; display: block; }
.map__head .section-headline { margin: 0 0 20px; font-size: clamp(30px,3.4vw,46px); }
.map__sub { font-size: 17px; line-height: 1.6; color: #5B6474; margin: 0 0 8px; }
.map__sub2 { font-size: 15px; line-height: 1.6; color: #8A8F99; margin: 0; }
.map__badges {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 14px;
  max-width: 760px; margin: 56px auto 0;
}
.flag-badge {
  display: flex; align-items: center; gap: 12px; padding: 16px 22px;
  border: 1px solid rgba(18,21,28,0.1); border-radius: 100px; background: #FAF8F4;
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.flag-badge:hover { border-color: rgba(201,169,97,0.5); transform: translateY(-2px); }
.flag-badge span { font-size: 14px; font-weight: 600; color: #12151C; }
.map__more { text-align: center; margin: 32px auto 0; font-size: 14px; color: #8A8F99; font-style: italic; }

/* HOW IT WORKS */
.how { background: #FAF8F4; padding: 140px clamp(20px,4vw,64px); }
.how__inner { max-width: 880px; margin: 0 auto; }
.how__head { text-align: center; margin-bottom: 88px; }
.how__head .section-eyebrow { margin-bottom: 16px; display: block; }
.how__timeline { position: relative; }
.how__line { position: absolute; left: 27px; top: 28px; bottom: 28px; width: 1px; background: linear-gradient(#C9A961, rgba(201,169,97,0.15)); }
.how-step { display: flex; gap: 32px; margin-bottom: 64px; }
.how-step:last-child { margin-bottom: 0; }
.how-step__num {
  flex-shrink: 0; width: 56px; height: 56px; border-radius: 50%; background: #12151C; color: #E4D2A1;
  display: flex; align-items: center; justify-content: center; font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700; font-size: 20px; z-index: 1;
}
.how-step__num--gold { background: linear-gradient(135deg, #E4D2A1, #C9A961 45%, #A6813F); color: #10131A; }
.how-step > div:last-child { padding-top: 10px; }
.how-step__title { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; font-size: 22px; color: #12151C; margin-bottom: 8px; }
.how-step__desc { font-size: 16px; line-height: 1.55; color: #5B6474; max-width: 480px; }

/* WHATSAPP */
.wa { background: #F1EEE7; padding: 140px clamp(20px,4vw,64px); }
.wa__inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.wa__inner .section-eyebrow { margin-bottom: 16px; display: block; }
.wa__inner .section-headline { margin: 0 0 20px; font-size: clamp(32px,3.6vw,48px); }
.wa__sub { font-size: 17px; line-height: 1.6; color: #5B6474; margin: 0 0 40px; max-width: 440px; }
.wa__list { display: grid; gap: 16px; }
.wa__list-item { display: flex; align-items: center; gap: 12px; }
.wa__list-item span { font-size: 15px; color: #12151C; font-weight: 500; }
.wa-phone { display: flex; justify-content: center; }
.wa-phone__frame { width: 320px; background: #0B1526; border-radius: 32px; padding: 8px; box-shadow: 0 40px 80px rgba(11,21,38,0.35); }
.wa-phone__screen { background: #FAF8F4; border-radius: 26px; overflow: hidden; }
.wa-phone__header { background: #12151C; padding: 16px 18px; display: flex; align-items: center; gap: 10px; }
.wa-phone__avatar {
  width: 34px; height: 34px; border-radius: 50%; background: linear-gradient(135deg,#E4D2A1,#C9A961);
  display: flex; align-items: center; justify-content: center; font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700; font-size: 13px; color: #10131A;
}
.wa-phone__name { color: #FAF8F4; font-size: 14px; font-weight: 600; }
.wa-phone__status { color: #8A93A6; font-size: 11px; }
.wa-phone__body { padding: 20px 16px; display: flex; flex-direction: column; gap: 10px; min-height: 340px; background: #F1EEE7; }
.wa-bubble { align-self: flex-start; max-width: 240px; background: #FAF8F4; border-radius: 4px 16px 16px 16px; padding: 14px 20px 8px; box-shadow: 0 6px 6px 0 rgba(0,0,0,0.04); }
.wa-bubble--sm { max-width: 220px; padding: 10px 16px; }
.wa-bubble__photo {
  width: 100%; aspect-ratio: 16/10; border-radius: 10px;
  background-image: url('../assets/images/hobby-prestige-560-2021.webp');
  background-size: cover; background-position: center; background-repeat: no-repeat;
  margin-bottom: 8px;
}
.wa-bubble__title { font-size: 13px; font-weight: 700; color: #12151C; margin-bottom: 4px; }
.wa-bubble__text { font-size: 12px; color: #5B6474; line-height: 1.4; }
.wa-bubble--sm .wa-bubble__text { color: #12151C; }
.wa-bubble__time { font-size: 10px; color: #9AA0AC; text-align: right; margin-top: 6px; }

/* INVENTORY */
.inventory { background: #FAF8F4; padding: 140px clamp(20px,4vw,64px); }
.inventory__head { text-align: center; max-width: 640px; margin: 0 auto 72px; }
.inventory__head .section-eyebrow { margin-bottom: 16px; display: block; }
.inventory__head .section-headline { margin: 0 0 20px; }
.inventory__sub { font-size: 17px; line-height: 1.6; color: #5B6474; margin: 0; }
.inventory__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; }
.inv-group { background: #FAF8F4; border: 1px solid rgba(18,21,28,0.08); border-radius: 24px; padding: 40px 36px; }
.inv-group__title {
  font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; font-size: 13px; letter-spacing: 0.12em;
  text-transform: uppercase; color: #A6813F; margin: 22px 0 20px;
}
.inv-group__list { display: flex; flex-direction: column; gap: 12px; }
.inv-group__item { display: flex; align-items: center; gap: 10px; font-size: 15px; color: #12151C; font-weight: 500; }
.inv-group__item::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: #C9A961; flex-shrink: 0; }

/* EXPORT & LOGISTICS */
.logistics { background: #F1EEE7; padding: 140px clamp(20px,4vw,64px); }
.journey { max-width: 1120px; margin: 0 auto 96px; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 6px; }
.journey-step { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.journey-step__num {
  width: 44px; height: 44px; border-radius: 50%; background: #12151C; color: #E4D2A1;
  display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700;
}
.journey-step__num--gold { background: linear-gradient(135deg,#E4D2A1,#C9A961); color: #10131A; }
.journey-step__label { font-size: 12px; font-weight: 600; color: #12151C; max-width: 90px; text-align: center; }
.journey-arrow { margin: 0 2px 24px; }
.logistics__body { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.logistics__image {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 28px;
  overflow: hidden;

  background-image: url("../assets/images/export-logistics.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.logistics__image-label {
  position: absolute; bottom: 20px; right: 20px; font-family: monospace; font-size: 10px; letter-spacing: 0.1em;
  color: #6B7280; text-transform: uppercase; border: 1px solid rgba(18,21,28,0.2); padding: 6px 10px; border-radius: 100px;
}
.logistics__body .section-eyebrow { margin-bottom: 16px; display: block; }
.logistics__body .section-headline { margin: 0 0 20px; font-size: clamp(32px,3.6vw,48px); }
.logistics__sub { font-size: 17px; line-height: 1.6; color: #5B6474; margin: 0 0 36px; max-width: 460px; }
.logistics__list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 24px; }
.logistics__list-item { display: flex; align-items: center; gap: 10px; font-size: 15px; color: #12151C; font-weight: 500; }

/* FAQ */
.faq { background: #FAF8F4; padding: 140px clamp(20px,4vw,64px); }
.faq__inner { max-width: 760px; margin: 0 auto; }
.faq__head { text-align: center; margin-bottom: 64px; }
.faq__head .section-eyebrow { margin-bottom: 16px; display: block; }
.faq__headline { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; font-size: clamp(30px,3.2vw,44px); letter-spacing: -0.02em; margin: 0; color: #12151C; }
.faq-item { border-bottom: 1px solid rgba(18,21,28,0.1); padding: 24px 0; }
.faq-item__btn {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  background: none; border: none; text-align: left; cursor: pointer; font-family: inherit; padding: 0;
}
.faq-item__q { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 600; font-size: 18px; color: #12151C; margin: 0; }
.faq-item__sign {
  flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%; border: 1px solid rgba(201,169,97,0.5);
  display: flex; align-items: center; justify-content: center; color: #A6813F; font-size: 18px; font-weight: 400;
}
.faq-item__body { max-height: 0; opacity: 0; overflow: hidden; transition: max-height 0.3s ease, opacity 0.3s ease; }
.faq-item__body p { font-size: 15px; line-height: 1.6; color: #5B6474; margin: 16px 0 0; }
.faq-item.is-open .faq-item__body { max-height: 240px; opacity: 1; }

/* FINAL CTA */
.cta2 { background: #12151C; padding: 120px clamp(20px,4vw,64px); }
.cta2__inner { max-width: 1080px; margin: 0 auto; text-align: center; }
.cta2__headline { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; font-size: clamp(32px,4vw,52px); letter-spacing: -0.02em; margin: 0 0 56px; color: #FAF8F4; }
.cta2__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 16px; margin-bottom: 48px; }
.cta2-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: 18px; padding: 28px 20px; }
.cta2-card svg { margin: 0 auto 14px; display: block; }
.cta2-card__label { font-size: 14px; font-weight: 600; color: #FAF8F4; }
.cta2__note { font-size: 15px; color: #6B7480; margin: 0 0 36px; }

/* APPLICATION */
.apply { background: #060B14; padding: 160px clamp(20px,4vw,64px); position: relative; overflow: hidden; }
.apply__glow {
  position: absolute; top: -20%; left: 50%; transform: translateX(-50%); width: 900px; height: 900px;
  background: radial-gradient(circle, rgba(201,169,97,0.08) 0%, transparent 70%); pointer-events: none;
}
.apply__inner { max-width: 760px; margin: 0 auto; position: relative; }
.apply__head { text-align: center; margin-bottom: 56px; }
.apply__head .section-eyebrow { margin-bottom: 16px; display: block; }
.apply__headline { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; font-size: clamp(32px,4vw,52px); letter-spacing: -0.02em; margin: 0 0 16px; color: #FAF8F4; }
.apply__sub { font-size: 16px; color: #A9B1C0; margin: 0; }
.apply-thanks { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: 24px; padding: 64px 40px; text-align: center; }
.apply-thanks__icon {
  width: 64px; height: 64px; border-radius: 50%; background: linear-gradient(135deg,#E4D2A1,#C9A961);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 28px;
}
.apply-thanks__title { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; font-size: 26px; color: #FAF8F4; margin-bottom: 12px; }
.apply-thanks__sub { font-size: 16px; color: #A9B1C0; }
.apply-form { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: 24px; padding: 48px 40px; backdrop-filter: blur(20px); }
.apply-form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field--full { grid-column: span 2; }
.field label, .field-checkbox label { display: block; font-size: 13px; font-weight: 600; color: #A9B1C0; margin-bottom: 8px; }
.field input, .field select, .field textarea {
  width: 100%; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.14);
  border-radius: 12px; padding: 14px 16px; color: #FAF8F4; font-size: 15px;
}
.field select option { color: #12151C; }
.field textarea { resize: vertical; font-family: inherit; }
.chip-group { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  display: flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.14); border-radius: 100px; padding: 10px 16px;
  font-size: 13px; color: #D6DAE2; cursor: pointer;
}
.chip input { accent-color: #C9A961; }
.field-checkbox { grid-column: span 2; display: flex; align-items: flex-start; gap: 12px; margin-top: 8px; }
.field-checkbox input { margin-top: 3px; width: 18px; height: 18px; accent-color: #C9A961; flex-shrink: 0; }
.field-checkbox label { font-size: 14px; color: #D6DAE2; line-height: 1.5; font-weight: 400; margin-bottom: 0; }
.apply-form__submit { grid-column: span 2; margin-top: 8px; }
.apply-form__submit button {
  width: 100%; background: linear-gradient(135deg, #E4D2A1, #C9A961 45%, #A6813F); color: #10131A;
  border: none; padding: 18px; border-radius: 12px; font-size: 16px; font-weight: 700; cursor: pointer; font-family: inherit;
}
.apply-form__submit button:disabled { opacity: 0.6; cursor: not-allowed; }
.apply-form__error {
  grid-column: span 2; background: rgba(220,60,60,0.1); border: 1px solid rgba(220,60,60,0.35);
  border-radius: 12px; padding: 14px 16px; font-size: 14px; color: #F0A8A8; text-align: center;
}

/* FINAL CONTACT */
.contact-final { background: #F1EEE7; padding: 96px clamp(20px,4vw,64px); text-align: center; }
.contact-final__inner { max-width: 560px; margin: 0 auto; }
.contact-final__headline { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; font-size: clamp(26px,2.8vw,36px); letter-spacing: -0.02em; margin: 0 0 16px; color: #12151C; }
.contact-final__text1 { font-size: 16px; line-height: 1.6; color: #5B6474; margin: 0 0 4px; }
.contact-final__text2 { font-size: 14px; color: #8A8F99; margin: 0 0 32px; }

/* FOOTER */
.footer {
  background: #060B14; padding: 40px clamp(20px,4vw,64px); border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px;
}
.footer__logo { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; font-size: 17px; color: #FAF8F4; }
.footer__links { display: flex; flex-wrap: wrap; gap: 28px; }
.footer__links a { font-size: 13px; color: #A9B1C0; font-weight: 500; }

@media (max-width: 760px) {
  .apply-form__grid { grid-template-columns: 1fr; }
  .field--full, .field-checkbox, .apply-form__submit { grid-column: span 1; }
  .trust__body, .wa__inner, .logistics__body { grid-template-columns: 1fr; }
  .logistics__list { grid-template-columns: 1fr; }
}
.contact-final .btn-outline {
    background: #10131A;
    color: #FAF8F4;
    border: 1px solid #10131A;
}

.contact-final .btn-outline:hover {
    background: #232937;
    border-color: #232937;
}
@media (max-width: 768px) {
  .nav__cta {
    display: none;
  }
}
/* ==========================================================================
   AUTHORITY SECTION (TRIN 1)
   ========================================================================== */
.authority {
  padding: 80px 0;
  text-align: center;
}

.authority__content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.authority__text {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(16px, 1.2vw, 19px);
  color: #5B6474; /* En flot mørkegrå farve, der matcher de andre tekster */
  line-height: 1.7;
  margin-top: 24px;
  font-weight: 400;
}
/* ==========================================================================
   CARAVAN CAROUSEL SECTION
   ========================================================================== */
.gallery-section {
  padding: 80px 0;
  background: #FAF8F4;
}

.carousel-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 50px;
}

.carousel-track-container {
  overflow: hidden;
  width: 100%;
}

.carousel-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s ease-in-out;
  will-change: transform;
}

.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  aspect-ratio: 4 / 3;
  background: #ECEAE4;
  flex: 0 0 calc((100% - 48px) / 3);
}

@media (max-width: 900px) {
  .gallery-item { flex: 0 0 calc((100% - 24px) / 2); }
}
@media (max-width: 600px) {
  .gallery-item { flex: 0 0 100%; }
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item__price {
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(135deg, #A6813F, #C9A961);
  color: #12151C;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 13px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  z-index: 5;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.gallery-item__info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(18, 21, 28, 0.95) 0%, rgba(18, 21, 28, 0.7) 100%);
  color: #FAF8F4;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 5;
}

.gallery-item__flag {
  font-size: 20px;
  line-height: 1;
  display: inline-block;
}

.gallery-item__details {
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #FAF8F4;
}

/* Navigationsknapper (Pile) */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #12151C;
  color: #C9A961;
  border: 1px solid #C9A961;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all 0.2s ease;
}

.carousel-btn:hover {
  background: #C9A961;
  color: #12151C;
}

.prev-btn { left: 0; }
.next-btn { right: 0; }

/* 12. CTA Kort Styling */
.gallery-item--cta {
  background: #12151C !important;
  border: 2px solid #C9A961;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  text-align: center;
}

.gallery-cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.gallery-cta-icon { font-size: 32px; }
.gallery-cta-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 20px;
  color: #FAF8F4;
  font-weight: 700;
  margin: 0;
}
.gallery-cta-text {
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  color: #949EAE;
  line-height: 1.5;
  margin: 0 0 8px 0;
}
.gallery-cta-btn {
  display: inline-block;
  background: linear-gradient(135deg, #A6813F, #C9A961);
  color: #12151C;
  padding: 10px 18px;
  border-radius: 6px;
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.gallery-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(201, 169, 97, 0.3);
}