/* =============================================================
   HollywoodRent.ee — vepster.css
   Hollywood-lik, tume + kuldne disain
   ============================================================= */

/* --- CSS Variables --- */
:root {
  --yellow:   #f5c518;
  --yellow2:  #e6b800;
  --dark:     #1a1a1a;
  --dark2:    #222222;
  --dark3:    #2e2e2e;
  --white:    #ffffff;
  --light:    #f9f7f0;
  --muted:    #666666;
  --border:   rgba(0,0,0,0.1);
  --header-h: 68px;
  --radius:   4px;
  --shadow:   0 2px 16px rgba(0,0,0,0.12);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* --- Main offset --- */
main {
  padding-top: var(--header-h);
}

/* =============================================================
   HEADER
   ============================================================= */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: var(--dark2);
  box-shadow: 0 2px 12px rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
}

.header-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 32px;
}

/* --- Logo --- */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo svg {
  width: 28px;
  height: 28px;
  color: var(--yellow);
}

.nav-logo-text {
  font-family: system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: 1.15rem;
  letter-spacing: -0.5px;
  color: var(--white);
  white-space: nowrap;
}

.logo-main {
  font-weight: 400;
}

.nav-logo-text strong {
  font-weight: 900;
}

.logo-dot {
  color: var(--yellow);
  font-size: 0.85em;
  font-weight: 700;
}

/* --- Nav links --- */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}

.nav-links a {
  display: inline-block;
  padding: 6px 10px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--yellow);
  border-bottom-color: var(--yellow);
}

/* --- Lang switcher --- */
.lang-switcher {
  position: relative;
  flex-shrink: 0;
}

#langBtn {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.8);
  padding: 5px 10px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: border-color 0.2s, color 0.2s;
}

#langBtn:hover {
  border-color: var(--yellow);
  color: var(--yellow);
}

#langBtn svg {
  width: 14px;
  height: 14px;
}

.lang-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  min-width: 100px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}

.lang-switcher.open .lang-dropdown {
  display: block;
}

.lang-dropdown a {
  display: block;
  padding: 8px 14px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.75);
  transition: background 0.15s, color 0.15s;
}

.lang-dropdown a:hover,
.lang-dropdown a.active {
  background: var(--yellow);
  color: var(--dark);
}

/* --- Header CTA --- */
.header-cta {
  flex-shrink: 0;
}

/* --- Burger button --- */
#burgerBtn {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
}

#burgerBtn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

#burgerBtn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
#burgerBtn.open span:nth-child(2) { opacity: 0; }
#burgerBtn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* --- Mobile overlay --- */
#mobile-overlay {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--dark2);
  z-index: 999;
  overflow-y: auto;
  padding: 24px;
  flex-direction: column;
  gap: 8px;
}

#mobile-overlay.open {
  display: flex;
}

.mobile-nav-link {
  display: block;
  padding: 14px 0;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: rgba(255,255,255,0.85);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color 0.2s;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--yellow);
}

.mobile-lang-row {
  display: flex;
  gap: 12px;
  padding-top: 20px;
  flex-wrap: wrap;
}

.mobile-lang-link {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.6);
  padding: 6px 12px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  transition: background 0.2s, color 0.2s;
}

.mobile-lang-link:hover,
.mobile-lang-link.active {
  background: var(--yellow);
  color: var(--dark);
  border-color: var(--yellow);
}

.mobile-cta-row {
  padding-top: 20px;
}

/* =============================================================
   BUTTONS — each class is fully self-contained
   ============================================================= */
.btn,
.btn-primary,
.btn-outline,
.btn-dark,
.btn-ghost,
.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  text-decoration: none;
  font-family: system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  min-height: 44px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.25s ease;
  line-height: 1.2;
}

.btn-primary {
  background: var(--yellow);
  color: var(--dark);
  border-color: var(--yellow);
}

.btn-primary:hover {
  background: var(--yellow2);
  border-color: var(--yellow2);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(245,197,24,0.4);
}

.btn-dark {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}

.btn-dark:hover {
  background: var(--dark3);
  border-color: var(--dark3);
  transform: translateY(-1px);
}

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

.btn-outline:hover {
  background: var(--yellow);
  color: var(--dark);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
  transform: translateY(-1px);
}

.btn-submit {
  background: var(--yellow);
  color: var(--dark);
  border-color: var(--yellow);
  width: 100%;
  font-size: 1rem;
  padding: 0.875rem 2rem;
  min-height: 52px;
}

.btn-submit:hover {
  background: var(--yellow2);
  border-color: var(--yellow2);
  box-shadow: 0 4px 16px rgba(245,197,24,0.4);
}

/* =============================================================
   HERO SECTION
   ============================================================= */
.hero {
  position: relative;
  background: var(--dark);
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -80px;
  width: 55%;
  height: 130%;
  background: var(--yellow);
  clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
  opacity: 0.06;
  pointer-events: none;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('/img/nac_3.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.25;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(245,197,24,0.15);
  border: 1px solid rgba(245,197,24,0.4);
  color: var(--yellow);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  padding: 5px 12px;
  border-radius: 2px;
  margin-bottom: 20px;
}

.hero-badge svg {
  width: 14px;
  height: 14px;
}

.hero-title {
  font-family: system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 20px;
}

.hero-title em {
  color: var(--yellow);
  font-style: normal;
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 12px;
  max-width: 520px;
  line-height: 1.7;
}

.hero-fomo {
  font-size: 0.82rem;
  color: var(--yellow);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-fomo svg {
  width: 14px;
  height: 14px;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* =============================================================
   MARQUEE STRIP
   ============================================================= */
.marquee-strip {
  background: var(--yellow);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  animation: marquee-scroll 28s linear infinite;
}

.marquee-track span {
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--dark);
  padding: 0 32px;
}

@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =============================================================
   TRUST / STATS STRIP
   ============================================================= */
.trust-strip {
  background: var(--dark3);
  padding: 28px 24px;
}

.trust-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.trust-item {
  text-align: center;
}

.trust-icon {
  color: var(--yellow);
  margin-bottom: 8px;
  display: flex;
  justify-content: center;
}

.trust-icon svg {
  width: 28px;
  height: 28px;
}

.trust-value {
  font-size: 1.3rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  color: var(--white);
  line-height: 1.2;
}

.trust-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 2px;
}

/* =============================================================
   SECTIONS GENERAL
   ============================================================= */
.section {
  padding: 80px 24px;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 52px;
}

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--yellow);
  margin-bottom: 10px;
}

.section-title {
  font-family: system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 14px;
}

.section-sub {
  color: var(--muted);
  font-size: 15px;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Section dark variant */
.section-dark {
  background: var(--dark2);
  padding: 80px 24px;
}

.section-dark .section-title {
  color: var(--white);
}

.section-dark .section-sub {
  color: rgba(255,255,255,0.6);
}

/* Section light variant */
.section-light {
  background: var(--light);
  padding: 80px 24px;
}

/* =============================================================
   ABOUT SECTION
   ============================================================= */
.about-section {
  padding: 80px 24px;
  background: var(--white);
}

.about-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-img-wrap {
  position: relative;
}

.about-img-wrap img {
  width: 100%;
  border-radius: var(--radius);
  aspect-ratio: 4/3;
  object-fit: cover;
}

.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 90px;
  height: 90px;
  background: var(--yellow);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  font-size: 0.72rem;
  line-height: 1.2;
  color: var(--dark);
  text-align: center;
  padding: 8px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

.about-badge strong {
  font-size: 1.5rem;
  display: block;
}

.about-content .section-label {
  display: block;
  text-align: left;
  margin-bottom: 10px;
}

.about-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  color: var(--dark);
  margin-bottom: 16px;
  line-height: 1.15;
}

.about-lead {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 28px;
}

.about-points {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}

.about-point {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.about-point-icon {
  width: 36px;
  height: 36px;
  background: rgba(245,197,24,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--yellow);
}

.about-point-icon svg {
  width: 18px;
  height: 18px;
}

.about-point-text strong {
  display: block;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 2px;
}

.about-point-text p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.6;
}

.about-stats {
  display: flex;
  gap: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.about-stat-num {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
}

.about-stat-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--muted);
  margin-top: 2px;
}

/* =============================================================
   SERVICES GRID
   ============================================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-bottom: 3px solid transparent;
  border-radius: var(--radius);
  padding: 32px 24px;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}

.service-card:hover {
  border-bottom-color: var(--yellow);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  transform: translateY(-4px);
}

.service-card-icon {
  width: 48px;
  height: 48px;
  background: rgba(245,197,24,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--yellow);
}

.service-card-icon svg {
  width: 24px;
  height: 24px;
}

.service-card h3 {
  font-size: 1.05rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.3px;
  color: var(--dark);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.65;
}

/* =============================================================
   PROCESS SECTION
   ============================================================= */
.process-section {
  background: var(--dark);
  padding: 80px 24px;
}

.process-section .section-title {
  color: var(--white);
}

.process-section .section-sub {
  color: rgba(255,255,255,0.6);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.process-step {
  text-align: center;
  padding: 24px 16px;
}

.ps-circle {
  width: 64px;
  height: 64px;
  border: 2px solid var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--yellow);
  position: relative;
}

.ps-circle svg {
  width: 24px;
  height: 24px;
  stroke: var(--yellow);
}

.process-step h3 {
  font-size: 0.95rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.3px;
  color: var(--white);
  margin-bottom: 8px;
}

.process-step p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

/* =============================================================
   VIDEO SECTION
   ============================================================= */
.video-section {
  padding: 80px 24px;
  background: var(--dark3);
}

.video-section .section-title {
  color: var(--white);
}

.video-section .section-sub {
  color: rgba(255,255,255,0.6);
}

.video-wrap {
  max-width: 800px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
  aspect-ratio: 16/9;
}

.video-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* =============================================================
   GEAR SHOWCASE
   ============================================================= */
.gear-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.gear-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s;
}

.gear-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  transform: translateY(-4px);
}

.gear-card-img {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.gear-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gear-card:hover .gear-card-img img {
  transform: scale(1.05);
}

.gear-card-body {
  padding: 22px 20px;
}

.gear-card-body h3 {
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.3px;
  color: var(--dark);
  margin-bottom: 8px;
}

.gear-card-body p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 18px;
}

.gear-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--yellow);
  background: rgba(245,197,24,0.1);
  border: 1px solid rgba(245,197,24,0.3);
  padding: 3px 8px;
  border-radius: 2px;
  margin-bottom: 14px;
}

/* =============================================================
   CTA BANNER
   ============================================================= */
.cta-banner {
  background: var(--yellow);
  padding: 64px 24px;
  text-align: center;
}

.cta-banner h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  color: var(--dark);
  margin-bottom: 12px;
}

.cta-banner p {
  font-size: 1.05rem;
  color: rgba(26,26,26,0.75);
  margin-bottom: 32px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* =============================================================
   CONTACT SECTION
   ============================================================= */
.contact-section {
  padding: 80px 24px;
  background: var(--light);
}

.contact-section-compact {
  padding-top: 48px;
}

.contact-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: flex-start;
}

.contact-info h3 {
  font-size: 1.35rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.3px;
  color: var(--dark);
  margin-bottom: 6px;
}

.contact-info p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 28px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.contact-detail svg {
  width: 18px;
  height: 18px;
  color: var(--yellow);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-detail p {
  font-size: 0.9rem;
  color: var(--dark);
  margin-bottom: 0;
  line-height: 1.5;
}

.contact-detail a {
  color: var(--dark);
  transition: color 0.2s;
}

.contact-detail a:hover {
  color: var(--yellow2);
}

.contact-social {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--dark);
  color: var(--white);
  border-radius: 50%;
  transition: background 0.2s, transform 0.2s;
}

.social-link svg {
  width: 18px;
  height: 18px;
}

.social-link:hover {
  background: var(--yellow);
  color: var(--dark);
  transform: translateY(-2px);
}

/* Form */
.form-wrap {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

.form-wrap h3 {
  font-size: 1.15rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.3px;
  color: var(--dark);
  margin-bottom: 24px;
}

.form-row {
  margin-bottom: 18px;
}

.form-row label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--dark);
  margin-bottom: 6px;
}

.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid #d8d8d8;
  border-radius: var(--radius);
  font-family: system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: 0.95rem;
  color: var(--dark);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(245,197,24,0.15);
}

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

.form-honey {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  tab-index: -1;
}

.msg-ok {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
  border-radius: var(--radius);
  padding: 14px 18px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.msg-err {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
  border-radius: var(--radius);
  padding: 14px 18px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 24px;
}

/* =============================================================
   FOOTER
   ============================================================= */
#site-footer {
  background: var(--dark2);
  color: rgba(255,255,255,0.7);
}

.footer-main {
  padding: 60px 24px 40px;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-brand .nav-logo {
  margin-bottom: 4px;
}

.footer-brand .nav-logo svg {
  width: 24px;
  height: 24px;
}

.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  margin-top: 12px;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--yellow);
  display: inline-block;
}

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

.footer-col ul li a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: var(--yellow);
}

.footer-bottom {
  background: rgba(0,0,0,0.3);
  padding: 20px 24px;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
}

.footer-legal-note {
  margin-top: 8px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.footer-legal-link {
  color: rgba(255,255,255,0.5);
  text-decoration: underline;
  transition: color 0.2s;
}

.footer-legal-link:hover {
  color: var(--yellow);
}

/* =============================================================
   ARTICLE / INNER PAGES
   ============================================================= */
.page-hero {
  background: var(--dark);
  padding: 72px 24px 60px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -20px;
  right: -60px;
  width: 45%;
  height: 120%;
  background: var(--yellow);
  clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
  opacity: 0.05;
  pointer-events: none;
}

.page-hero-inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.page-hero .section-label {
  display: block;
  margin-bottom: 10px;
}

.page-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  line-height: 1.7;
}

.article-wrap {
  max-width: 900px;
  margin: 0 auto;
  padding: 64px 24px 80px;
}

.article-wrap h2 {
  font-size: 1.55rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.3px;
  color: var(--dark);
  margin-top: 48px;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--yellow);
  display: inline-block;
}

.article-wrap h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin-top: 28px;
  margin-bottom: 12px;
}

.article-wrap p {
  font-size: 1rem;
  color: #333;
  line-height: 1.75;
  margin-bottom: 18px;
}

.article-wrap ul {
  list-style: none;
  margin-bottom: 18px;
}

.article-wrap ul li {
  font-size: 1rem;
  color: #333;
  line-height: 1.7;
  padding-left: 24px;
  margin-bottom: 8px;
  position: relative;
}

.article-wrap ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 10px;
  height: 2px;
  background: var(--yellow);
}

.article-wrap ol {
  margin-left: 20px;
  margin-bottom: 18px;
}

.article-wrap ol li {
  font-size: 1rem;
  color: #333;
  line-height: 1.7;
  margin-bottom: 8px;
}

.article-img {
  width: 100%;
  border-radius: var(--radius);
  margin: 32px 0;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.article-highlight {
  background: rgba(245,197,24,0.08);
  border-left: 4px solid var(--yellow);
  padding: 20px 24px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 32px 0;
}

.article-highlight p {
  color: var(--dark);
  font-weight: 600;
  margin-bottom: 0;
}

.article-cta-box {
  background: var(--dark);
  color: var(--white);
  padding: 40px 36px;
  border-radius: var(--radius);
  margin: 40px 0;
  text-align: center;
}

.article-cta-box h3 {
  font-size: 1.3rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.3px;
  color: var(--white);
  margin-bottom: 10px;
}

.article-cta-box p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 24px;
}

.article-btn-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* FAQ */
.faq-section {
  background: var(--light);
  padding: 64px 24px;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-q {
  width: 100%;
  background: transparent;
  border: none;
  padding: 20px 0;
  font-family: system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: color 0.2s;
}

.faq-q:hover {
  color: var(--yellow2);
}

.faq-q svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--yellow);
  transition: transform 0.3s ease;
}

.faq-item.open .faq-q svg {
  transform: rotate(45deg);
}

.faq-a {
  display: none;
  padding: 0 0 20px;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.75;
}

.faq-a.open,
.faq-item.open .faq-a {
  display: block;
}

/* =============================================================
   UTILITY
   ============================================================= */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.inline-link {
  color: var(--yellow2);
  text-decoration: underline;
  font-weight: 600;
  transition: color 0.2s;
}

.inline-link:hover {
  color: var(--dark);
}

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

.location-site-link {
  color: var(--yellow);
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.2s;
}

.location-site-link:hover {
  opacity: 0.8;
}

.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }

/* Hidden form field utility (for bot-check and honeypot) */
.field-hidden {
  display: none;
  visibility: hidden;
  position: absolute;
  left: -9999px;
}

/* =============================================================
   RESPONSIVE
   ============================================================= */
@media (max-width: 960px) {
  .nav-links,
  .header-cta,
  .lang-switcher {
    display: none;
  }

  #burgerBtn {
    display: flex;
  }

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

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

  .about-badge {
    bottom: -10px;
    right: 10px;
  }

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

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

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

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 600px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-btns {
    flex-direction: column;
    align-items: flex-start;
  }

  .trust-inner {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

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

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

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

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

  .about-stats {
    flex-wrap: wrap;
    gap: 20px;
  }

  .form-wrap {
    padding: 24px 18px;
  }

  .article-cta-box {
    padding: 28px 20px;
  }

  .section {
    padding: 52px 16px;
  }

  .about-section,
  .contact-section,
  .process-section,
  .video-section,
  .section-dark,
  .section-light {
    padding: 52px 16px;
  }

  .cta-banner {
    padding: 48px 16px;
  }
}
