/*
  BLINK.PRO — Shared Stylesheet
  Sections: Variables · Reset · Base · Layout · Components ·
            Header · Footer · Page Hero · Home · About · Events ·
            How It Works · Contact · Responsive
*/

/* ── 1. VARIABLES ── */
:root {
  --green:        #22C55E;
  --green-dark:   #16A34A;
  --green-dim:    rgba(34,197,94,0.12);
  --green-border: rgba(34,197,94,0.22);
  --orange:       #F97316;
  --orange-dark:  #EA580C;
  --bg:           #000000;
  --bg-2:         #0A0A0A;
  --bg-card:      #111111;
  --border:       rgba(255,255,255,0.07);
  --text:         rgba(255,255,255,0.82);
  --muted:        rgba(255,255,255,0.48);
  --radius:       12px;
  --radius-lg:    20px;
  --shadow:       0 4px 24px rgba(0,0,0,0.3);
  --shadow-lg:    0 24px 60px rgba(0,0,0,0.5);
  --transition:   0.2s ease;
}

/* ── 2. RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html   { scroll-behavior: smooth; font-size: 16px; }
body   { font-family: 'Inter', system-ui, -apple-system, sans-serif; background: var(--bg); color: var(--text); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img    { max-width: 100%; height: auto; display: block; }
a      { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; }
ul, ol { list-style: none; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* ── 3. TYPOGRAPHY ── */
h1, h2, h3 { color: var(--green); }
h4, h5, h6 { color: #fff; }

h1 { font-size: clamp(32px, 5vw, 56px); font-weight: 900; line-height: 1.08; letter-spacing: -1.5px; }
h2 { font-size: clamp(24px, 3vw, 42px); font-weight: 800; line-height: 1.15; letter-spacing: -0.8px; }
h3 { font-size: clamp(16px, 2vw, 20px); font-weight: 700; line-height: 1.3; }
p  { color: var(--muted); line-height: 1.75; }

/* ── 4. LAYOUT ── */
.container  { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container--sm { max-width: 800px; margin: 0 auto; padding: 0 24px; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

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

/* Section spacing */
.section      { padding: 100px 0; }
.section--alt { background: var(--bg-2); }

/* ── 5. COMPONENTS ── */

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 8px;
  font-weight: 700; font-size: 15px; border: none; cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}
.btn--primary { background: var(--orange); color: #fff; }
.btn--primary:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(249,115,22,.45); }

.btn--green { background: var(--green); color: #000; font-weight: 800; }
.btn--green:hover { background: var(--green-dark); transform: translateY(-2px); }

.btn--outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.3); }
.btn--outline:hover { border-color: var(--green); color: var(--green); }

.btn--outline-green { background: transparent; color: var(--green); border: 2px solid var(--green-border); }
.btn--outline-green:hover { background: var(--green-dim); }

.btn--lg { padding: 18px 40px; font-size: 17px; }
.btn--sm { padding: 10px 20px; font-size: 13px; }

/* Section label pill */
.label {
  display: inline-block;
  background: var(--green-dim); color: var(--green);
  border: 1px solid var(--green-border);
  font-size: 11px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 5px 14px; border-radius: 100px; margin-bottom: 16px;
}

/* Section header */
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { margin-bottom: 14px; }
.section-header p { max-width: 540px; margin: 0 auto; font-size: 17px; }

/* Logo pills (client logos) */
.logo-pill {
  background: #fff; border: 1px solid var(--border);
  border-radius: 8px; padding: 10px 16px;
  display: inline-flex; align-items: center; justify-content: center;
  transition: border-color var(--transition), background var(--transition);
}
.logo-pill:hover { border-color: var(--green-border); background: #f5f5f5; }
.logo-pill--more {
  font-size: 12px; font-weight: 700; color: var(--muted);
  white-space: nowrap; background: var(--bg-card); border-color: var(--border);
}
.logo-pill--more:hover { color: var(--green); }
@keyframes logo-reveal {
  0%   { filter: grayscale(100%) brightness(1.4); transform: scale(1); }
  3%   { filter: grayscale(0%)   brightness(1);   transform: scale(1.1); }
  6%   { filter: grayscale(0%)   brightness(1);   transform: scale(1.1); }
  9%   { filter: grayscale(100%) brightness(1.4); transform: scale(1); }
  100% { filter: grayscale(100%) brightness(1.4); transform: scale(1); }
}

.logo-pill img {
  height: 36px; width: auto; max-width: 120px;
  object-fit: contain;
  animation: logo-reveal 16.5s infinite;
}

/* Stagger: 11 logos × 1.5 s/slot = 16.5 s cycle */
.trust-bar__logos .logo-pill:nth-child(1)  img { animation-delay: 0s; }
.trust-bar__logos .logo-pill:nth-child(2)  img { animation-delay: -15s; }
.trust-bar__logos .logo-pill:nth-child(3)  img { animation-delay: -13.5s; }
.trust-bar__logos .logo-pill:nth-child(4)  img { animation-delay: -12s; }
.trust-bar__logos .logo-pill:nth-child(5)  img { animation-delay: -10.5s; }
.trust-bar__logos .logo-pill:nth-child(6)  img { animation-delay: -9s; }
.trust-bar__logos .logo-pill:nth-child(7)  img { animation-delay: -7.5s; }
.trust-bar__logos .logo-pill:nth-child(8)  img { animation-delay: -6s; }
.trust-bar__logos .logo-pill:nth-child(9)  img { animation-delay: -4.5s; }
.trust-bar__logos .logo-pill:nth-child(10) img { animation-delay: -3s; }
.trust-bar__logos .logo-pill:nth-child(11) img { animation-delay: -1.5s; }

/* Cards */
.card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px;
  transition: border-color var(--transition), transform var(--transition);
}
.card:hover { border-color: var(--green-border); }
.card--lift:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,0,0,.5); }

/* Stat card */
.stat-card { text-align: center; }
.stat-card strong { display: block; font-size: 38px; font-weight: 900; color: var(--green); line-height: 1; margin-bottom: 8px; }
.stat-card p    { font-size: 13px; }

/* Check list */
.check-list { margin: 24px 0; }
.check-list li { display: flex; align-items: flex-start; gap: 12px; padding: 10px 0; font-size: 15px; color: var(--text); border-bottom: 1px solid var(--border); }
.check-list li:last-child { border-bottom: none; }
.chk { width: 22px; height: 22px; min-width: 22px; background: var(--green-dim); border: 1px solid var(--green-border); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--green); font-size: 11px; font-weight: 800; margin-top: 1px; }

/* Badge (floating) */
.float-badge {
  position: absolute;
  background: #111; border: 1px solid var(--green-border);
  border-radius: 10px; padding: 10px 14px;
  box-shadow: 0 8px 24px rgba(0,0,0,.6);
  font-size: 12px; font-weight: 700; color: #fff;
  white-space: nowrap; z-index: 2;
}
.float-badge .fi { font-size: 18px; margin-bottom: 2px; }
.float-badge .accent { color: var(--green); font-size: 11px; font-weight: 500; }
.float-badge .dim    { color: var(--muted); font-size: 11px; font-weight: 500; }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
.float-badge--1 { animation: float 3s ease-in-out infinite; }
.float-badge--2 { animation: float 3s ease-in-out infinite 1.5s; }

/* Stars */
.stars { color: #F59E0B; font-size: 16px; margin-bottom: 14px; letter-spacing: 2px; }

/* ── 6. HEADER ── */
.announcement-bar {
  background: var(--green-dark); color: #fff;
  text-align: center; padding: 10px 24px; font-size: 14px; font-weight: 500;
}
.announcement-bar a { color: #fff; font-weight: 700; text-decoration: underline; }

.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(0,0,0,0.92); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex; align-items: center;
  justify-content: space-between; height: 124px;
}
.logo { display: flex; align-items: center; }
.logo img { height: 108px; width: auto; display: block; }
.logo__main { color: #fff; }
.logo__dot  { color: var(--green); }

.nav { display: flex; align-items: center; gap: 28px; }
.nav__link {
  font-size: 14px; font-weight: 500; color: var(--muted);
  transition: color var(--transition); padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: color var(--transition), border-color var(--transition);
}
.nav__link:hover,
.nav__link.active { color: #fff; }
.nav__link.active { border-bottom-color: var(--green); }

.header-right { display: flex; align-items: center; gap: 18px; }
.lang-switcher { display: flex; align-items: center; gap: 4px; font-size: 12px; }
.lang-btn { display: inline-flex; align-items: center; text-decoration: none; background: none; border: 1px solid transparent; border-radius: 4px; padding: 3px 6px; color: var(--muted); font-weight: 600; font-size: 12px; transition: all var(--transition); cursor: pointer; }
.lang-btn:hover { color: #fff; border-color: var(--border); }
.lang-btn.active { color: var(--green); border-color: var(--green-border); background: var(--green-dim); }

.header-phone { font-size: 14px; font-weight: 600; color: #fff; }
.header-phone small { color: var(--muted); font-weight: 400; display: block; font-size: 11px; }

.menu-toggle {
  display: none; background: none; border: 1px solid var(--border);
  border-radius: 6px; padding: 8px; flex-direction: column; gap: 4px;
}
.menu-toggle span { display: block; width: 20px; height: 2px; background: #fff; border-radius: 2px; }

/* Mobile Nav */
.mobile-nav {
  display: none; position: fixed; inset: 0; top: 72px;
  background: rgba(0,0,0,0.97); z-index: 99;
  flex-direction: column; align-items: center; justify-content: center; gap: 32px;
  padding: 40px;
}
.mobile-nav.open { display: flex; }
.mobile-nav .nav__link { font-size: 22px; font-weight: 700; }
.mobile-nav .lang-switcher { margin-top: 16px; gap: 8px; }
.mobile-nav .lang-btn { font-size: 15px; padding: 6px 12px; }

/* ── 7. FOOTER ── */
.footer { background: #000; border-top: 1px solid var(--border); color: var(--muted); padding: 64px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; margin-bottom: 48px; }
.footer__logo { font-size: 20px; font-weight: 900; margin-bottom: 14px; }
.footer__logo .w { color: #fff; } .footer__logo .g { color: var(--green); }
.footer__desc { font-size: 14px; line-height: 1.75; margin-bottom: 22px; }
.footer__socials { display: flex; gap: 10px; }
.social-btn { width: 40px; height: 40px; border-radius: 8px; display: flex; align-items: center; justify-content: center; transition: all var(--transition); border: none; }
.social-btn svg { width: 20px; height: 20px; display: block; }
.social-btn--facebook { background: #1877F2; color: #fff; }
.social-btn--facebook:hover { background: #0d65d9; }
.social-btn--linkedin { background: #0A66C2; color: #fff; }
.social-btn--linkedin:hover { background: #084e96; }
.social-btn--tiktok { background: #000; color: #fff; border: 1px solid #333; }
.social-btn--tiktok:hover { background: #111; border-color: #555; }
.social-btn--instagram { background: linear-gradient(45deg, #fcaf45 0%, #f77737 20%, #f56040 40%, #e1306c 60%, #c13584 80%, #833ab4 100%); color: #fff; }
.social-btn--instagram:hover { filter: brightness(1.1); }
.footer__heading { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: #fff; margin-bottom: 18px; }
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__links a { font-size: 14px; color: var(--muted); transition: color var(--transition); }
.footer__links a:hover { color: var(--green); }
.footer__contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 14px; font-size: 14px; }
.footer__contact-item .ico { flex-shrink: 0; margin-top: 2px; color: var(--green); display: flex; }
.footer__contact-item .ico svg { width: 16px; height: 16px; display: block; }
.footer__contact-item a { color: var(--muted); transition: color var(--transition); }
.footer__contact-item a:hover { color: var(--green); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 24px; display: flex; align-items: center; justify-content: space-between; font-size: 13px; }
.footer-bottom__links { display: flex; gap: 20px; }
.footer-bottom__links a { color: rgba(255,255,255,.25); transition: color var(--transition); }
.footer-bottom__links a:hover { color: var(--green); }

/* ── 8. HOME PAGE ── */

/* Hero */
.hero { background: var(--bg); padding: 90px 0 80px; position: relative; overflow: hidden; }
.hero::before {
  content: ''; position: absolute; top: -20%; left: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(34,197,94,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.hero__content { }
.hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green-dim); border: 1px solid var(--green-border);
  color: var(--green); font-size: 13px; font-weight: 600;
  padding: 6px 14px; border-radius: 100px; margin-bottom: 24px;
}
.hero h1 { margin-bottom: 20px; }
.hero h1 .white { color: #fff; }
.hero__sub { font-size: 18px; margin-bottom: 36px; max-width: 480px; }
.hero__ctas { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero__stats { display: flex; gap: 40px; padding-top: 24px; border-top: 1px solid var(--border); }
.hero__stat strong { display: block; font-size: 28px; font-weight: 900; color: var(--green); line-height: 1; margin-bottom: 4px; }
.hero__stat span { font-size: 13px; color: var(--muted); }

/* Hero visual */
.hero__visual { position: relative; display: flex; justify-content: center; align-items: center; }
.hero__img-frame {
  width: 100%; max-width: 520px; border-radius: var(--radius-lg);
  border: 2px solid var(--green-border);
  box-shadow: 0 0 60px rgba(34,197,94,0.15), var(--shadow-lg);
  overflow: hidden; position: relative;
}
.hero__img-frame img { width: 100%; height: 380px; object-fit: cover; filter: brightness(0.88) saturate(1.1); }
.hero__img-frame::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 50%;
  background: linear-gradient(to top, rgba(0,0,0,.55), transparent);
  pointer-events: none;
}

/* Trust bar */
.video-section { padding: 80px 0; background: var(--bg); }
.video-section__inner { max-width: 900px; margin: 0 auto; padding: 0 24px; }
.video-section__header { text-align: center; margin-bottom: 36px; }
.video-section__header h2 { margin-bottom: 12px; }
.video-section__header p { color: var(--muted); font-size: 17px; }
.video-section__player { position: relative; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow-lg); }
.video-section__player video { width: 100%; display: block; }

.trust-bar { background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 20px 0; }
.trust-bar__inner { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.trust-bar__label { font-size: 11px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 1.5px; white-space: nowrap; flex-shrink: 0; }
.trust-bar__logos { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }

/* What is section */
.whatis-img {
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--green-border);
  box-shadow: 0 0 40px rgba(34,197,94,0.08), var(--shadow-lg);
  position: relative;
}
.whatis-img img { width: 100%; height: 460px; object-fit: cover; filter: brightness(0.85) saturate(1.1); }
.whatis-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(0,0,0,.3), transparent 60%); pointer-events: none; }

/* Stats grid (2×2) */
.stats-2x2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 32px; }

/* Features grid */
.features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.feature-card { display: flex; gap: 20px; }
.feature-card__icon { width: 52px; height: 52px; min-width: 52px; background: var(--green-dim); border: 1px solid var(--green-border); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 22px; }
.feature-card__text h3 { margin-bottom: 8px; }
.feature-card__text p  { font-size: 14px; }

/* Testimonials */
.testimonial blockquote { font-size: 15px; color: var(--text); line-height: 1.72; margin-bottom: 20px; font-style: italic; }
.t-author { display: flex; align-items: center; gap: 12px; }
.t-avatar { width: 42px; height: 42px; min-width: 42px; border-radius: 50%; background: linear-gradient(135deg, var(--green), var(--green-dark)); display: flex; align-items: center; justify-content: center; color: #000; font-size: 14px; font-weight: 800; }
.t-author strong { display: block; font-size: 14px; font-weight: 700; color: #fff; }
.t-author span    { font-size: 13px; color: var(--muted); }

/* Logos flex */
.logos-flex { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; position: relative; }
.steps::before {
  content: ''; position: absolute; top: 32px;
  left: calc(16.67% + 32px); right: calc(16.67% + 32px);
  height: 1px; background: linear-gradient(90deg, var(--green), var(--green-dark)); opacity: 0.25;
}
.step { text-align: center; }
.step__num {
  width: 64px; height: 64px; background: var(--green); color: #000;
  border-radius: 50%; font-size: 24px; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px; position: relative; z-index: 1;
  box-shadow: 0 0 32px rgba(34,197,94,0.35);
}
.step h3 { margin-bottom: 12px; }
.step p   { font-size: 15px; }

/* FAQ */
.faq-inner { }
.faq-item  { border-bottom: 1px solid var(--border); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 0; cursor: pointer;
  font-size: 16px; font-weight: 600; color: var(--text);
  user-select: none; gap: 16px; transition: color var(--transition);
}
.faq-q:hover { color: var(--green); }
.faq-toggle {
  width: 28px; height: 28px; min-width: 28px; background: #111;
  border: 1px solid var(--border); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 300; transition: all .25s;
  color: var(--muted); line-height: 1;
}
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease, padding-bottom .3s; font-size: 15px; color: var(--muted); line-height: 1.78; }
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 20px; }
.faq-item.open .faq-toggle { background: var(--green-dim); border-color: var(--green-border); color: var(--green); transform: rotate(45deg); }

/* Final CTA section */
.cta-section {
  background: var(--bg); padding: 110px 0;
  text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; top: -30%; left: 50%; transform: translateX(-50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(34,197,94,0.1) 0%, transparent 65%);
  pointer-events: none;
}
.cta-section h2 { position: relative; margin-bottom: 18px; }
.cta-section p  { font-size: 18px; max-width: 520px; margin: 0 auto 36px; position: relative; }
.cta-section__btns { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; position: relative; }
.cta-section__note { margin-top: 24px; font-size: 13px; color: rgba(255,255,255,.35); position: relative; }
.cta-section__note strong { color: rgba(255,255,255,.6); }

/* ── 9. PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--bg); padding: 80px 0 70px;
  text-align: center; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; bottom: -40%; right: -5%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(34,197,94,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero h1 { margin-bottom: 16px; word-spacing: 0.15em; }
.page-hero p  { font-size: 18px; max-width: 600px; margin: 0 auto; }

/* ── 10. ABOUT PAGE ── */
.about-intro { }
.about-values .grid-4 .card { text-align: center; }
.value-icon { font-size: 36px; margin-bottom: 16px; }
.about-clients { }

/* ── 11. EVENTS PAGE ── */
.event-detail {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  align-items: start; padding: 80px 0;
  border-bottom: 1px solid var(--border);
}
.event-detail:last-child { border-bottom: none; }
.event-detail--reverse .event-detail__text { order: 2; }
.event-detail--reverse .event-detail__img  { order: 1; }

.event-detail__img {
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--green-border);
  box-shadow: 0 0 40px rgba(34,197,94,0.08), var(--shadow-lg);
}
.event-detail__img img { width: 100%; height: 320px; object-fit: cover; filter: brightness(0.85); display: block; }

.event-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700; color: var(--green);
  background: var(--green-dim); border: 1px solid var(--green-border);
  padding: 6px 14px; border-radius: 100px; margin-bottom: 20px;
}

/* ── 12. HOW IT WORKS PAGE ── */
.step-detail {
  display: grid; grid-template-columns: auto 1fr; gap: 40px;
  align-items: start; padding: 60px 0;
  border-bottom: 1px solid var(--border);
}
.step-detail:last-child { border-bottom: none; }
.step-detail__num {
  width: 80px; height: 80px; min-width: 80px;
  background: var(--green); color: #000;
  border-radius: 50%; font-size: 32px; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 32px rgba(34,197,94,0.35);
}
.step-detail__content h3 { font-size: 24px; margin-bottom: 12px; }
.step-detail__content p  { margin-bottom: 16px; }

.logistics-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 48px; }
.logistics-item { display: flex; gap: 16px; align-items: flex-start; }
.logistics-item__icon { font-size: 28px; flex-shrink: 0; margin-top: 2px; }
.logistics-item__text h4 { font-size: 15px; margin-bottom: 4px; }
.logistics-item__text p  { font-size: 14px; }

/* Included list (two-column) */
.included-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.included-grid .check-list { }

/* ── 13. CONTACT PAGE ── */
.contact-layout { display: grid; grid-template-columns: 1.2fr 1fr; gap: 64px; align-items: start; }

.contact-form { }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: #fff; margin-bottom: 8px; letter-spacing: 0.3px; }
.form-group label span { color: var(--green); }
.form-control {
  width: 100%; background: var(--bg-card);
  border: 1px solid var(--border); border-radius: 8px;
  padding: 13px 16px; font-size: 15px; color: var(--text);
  transition: border-color var(--transition);
  outline: none;
}
.form-control:focus { border-color: var(--green-border); box-shadow: 0 0 0 3px rgba(34,197,94,0.1); }
.form-control::placeholder { color: var(--muted); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
textarea.form-control { resize: vertical; min-height: 140px; }
select.form-control option { background: #111; }

.form-submit { margin-top: 8px; }
.form-note { margin-top: 12px; font-size: 13px; color: var(--muted); }
.form-success { display: none; padding: 16px; background: var(--green-dim); border: 1px solid var(--green-border); border-radius: 8px; color: var(--green); font-weight: 600; font-size: 15px; margin-top: 16px; }

.contact-info { }
.contact-info-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px; margin-bottom: 20px;
  transition: border-color var(--transition);
}
.contact-info-card:hover { border-color: var(--green-border); }
.contact-info-card h4 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--muted); margin-bottom: 16px; }
.contact-detail { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; font-size: 15px; }
.contact-detail:last-child { margin-bottom: 0; }
.contact-detail .ico { font-size: 20px; opacity: 0.7; flex-shrink: 0; margin-top: 1px; }
.contact-detail a { color: var(--text); transition: color var(--transition); }
.contact-detail a:hover { color: var(--green); }

.service-area {
  background: var(--green-dim); border: 1px solid var(--green-border);
  border-radius: var(--radius); padding: 20px 24px;
}
.service-area h4 { color: var(--green); font-size: 14px; margin-bottom: 8px; }
.service-area p  { font-size: 14px; color: var(--text); }

/* ── NL / FR heading word spacing ── */
[lang="nl"] .video-section__header h2,
[lang="fr"] .video-section__header h2 { word-spacing: 0.18em; }

/* ── 14. RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero .grid-2      { grid-template-columns: 1fr; gap: 48px; }
  .hero__visual      { order: -1; }
  .hero__img-frame   { max-width: 500px; margin: 0 auto; }
  .float-badge--1    { right: 0; }
  .float-badge--2    { left: 0; }

  .whatis .grid-2    { grid-template-columns: 1fr; gap: 48px; }
  .grid-4            { grid-template-columns: repeat(2, 1fr); }
  .footer-grid       { grid-template-columns: 1fr 1fr; }

  .event-detail          { grid-template-columns: 1fr; gap: 32px; }
  .event-detail--reverse .event-detail__text { order: 0; }
  .event-detail--reverse .event-detail__img  { order: 0; }

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

@media (max-width: 768px) {
  .header-phone { display: none; }
  .lang-switcher { display: none; }
  .nav    { display: none; }
  .menu-toggle { display: flex; }

  .header-inner { height: 80px; }
  .logo img     { height: 64px; }

  .section { padding: 70px 0; }
  .hero    { padding: 60px 0; }
  .hero__stats { gap: 24px; }
  .hero__stat strong { font-size: 22px; }

  .trust-bar__inner  { flex-direction: column; gap: 14px; }
  .trust-bar__logos  { justify-content: center; }
  .logo-pill img     { height: 28px; }

  .video-section     { padding: 56px 0; }
  .video-section__inner { padding: 0 16px; }
  .video-section__header h2 { font-size: clamp(20px, 5vw, 32px); }

  .grid-2, .grid-3   { grid-template-columns: 1fr; gap: 24px; }
  .grid-4            { grid-template-columns: 1fr 1fr; }
  .steps             { grid-template-columns: 1fr; gap: 32px; }
  .steps::before     { display: none; }
  .features-grid     { grid-template-columns: 1fr; }
  .stats-2x2         { grid-template-columns: 1fr 1fr; }

  .logistics-grid    { grid-template-columns: 1fr; }
  .included-grid     { grid-template-columns: 1fr; }
  .form-row          { grid-template-columns: 1fr; }
  .step-detail       { grid-template-columns: 1fr; gap: 24px; }
  .step-detail__num  { width: 56px; height: 56px; min-width: 56px; font-size: 22px; }

  .footer-grid       { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom     { flex-direction: column; gap: 14px; text-align: center; }

  .page-hero { padding: 60px 0 50px; }
  .page-hero h1 { font-size: clamp(28px, 7vw, 40px); }
}

@media (max-width: 480px) {
  .header-inner { height: 68px; }
  .logo img     { height: 48px; }

  .grid-4 { grid-template-columns: 1fr; }
  .hero__ctas { flex-direction: column; align-items: flex-start; }
  .cta-section__btns { flex-direction: column; }
  .btn--lg { width: 100%; justify-content: center; }

  .trust-bar__logos  { gap: 8px; }
  .logo-pill         { padding: 8px 12px; }
  .logo-pill img     { height: 24px; }

  .video-section     { padding: 40px 0; }
}
