/* ═══════════════════════════════════════════════
   E-BOT TECHNOLOGY v4.1
   Fixes: hero height, section gaps, nav styling,
          scroll hint, image quality, overall flow
   ═══════════════════════════════════════════════ */

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

:root {
  --blue:        #2B7CC1;
  --blue-dark:   #1d5c96;
  --blue-light:  #e8f3fc;
  --blue-mid:    #d0e8f8;
  --gold:        #F5A623;
  --gold-dark:   #d4891a;
  --gold-light:  #fef3de;
  --green:       #28a745;
  --green-light: #edf8f0;
  --text:        #1a2332;
  --text-mid:    #4a5a6e;
  --text-soft:   #8a9aac;
  --bg:          #f7f9fc;
  --white:       #ffffff;
  --border:      #e2eaf2;
  --shadow-sm:   0 2px 12px rgba(43,124,193,.08);
  --shadow-md:   0 8px 40px rgba(43,124,193,.13);
  --shadow-lg:   0 20px 60px rgba(43,124,193,.20);
  --radius:      16px;
  --radius-sm:   10px;
  --max-w:       1320px;
  --f-display:   'Bricolage Grotesque', sans-serif;
  --f-accent:    'Lora', serif;
  --nav-h:       72px;
  --ease:        cubic-bezier(.16,1,.3,1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  /* Prevent horizontal overflow on both html AND body — both needed for mobile */
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: var(--f-display);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  max-width: 100%;
  line-height: 1.6;
}

::selection { background: var(--gold); color: #fff; }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--blue-mid); border-radius: 3px; }

/* ══════════════════════════════════════════════
   NAV — glass effect on scroll, solid brand bg
   at top so it reads as a distinct element
   ══════════════════════════════════════════════ */
#nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h); z-index: 200;
  /* Start with a white band so it visually separates from hero */
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 16px rgba(43,124,193,.07);
  transition: background .3s, box-shadow .3s;
}
#nav.scrolled {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(43,124,193,.10);
}
.nav-inner {
  max-width: var(--max-w); margin: 0 auto; height: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 44px;
}
.nav-logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none; flex-shrink: 0;
}
.nav-logo img {
  height: 54px; width: auto;
  /* multiply removes black bg cleanly on white */
  mix-blend-mode: multiply;
}
.nav-logo-text {
  font-size: 1.1rem; font-weight: 800;
  color: var(--text); line-height: 1.2;
  letter-spacing: -0.02em; white-space: nowrap;
}
.nav-links {
  display: flex; align-items: center; gap: 36px; list-style: none;
}
.nav-links a {
  text-decoration: none; font-size: .88rem; font-weight: 500;
  color: var(--text-mid); transition: color .2s;
}
.nav-links a:hover { color: var(--blue); }
.nav-cta {
  background: var(--blue); color: #fff !important;
  padding: 9px 24px; border-radius: 50px;
  font-weight: 700 !important; font-size: .85rem !important;
  box-shadow: 0 4px 14px rgba(43,124,193,.3);
  transition: background .2s, box-shadow .2s, transform .15s !important;
}
.nav-cta:hover {
  background: var(--blue-dark) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(43,124,193,.4) !important;
}
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px; background: none; border: none;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--text); border-radius: 2px; transition: .3s;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ══════════════════════════════════════════════
   HERO — full bleed background image, compact,
   with a strong scroll-down hint at the bottom
   ══════════════════════════════════════════════ */
#hero {
  position: relative;
  width: 100%;
  /* Not 100vh — use padding to control height naturally */
  padding-top: calc(var(--nav-h) + 52px);
  padding-bottom: 64px;
  overflow: hidden;
  background: #0f2744; /* deep fallback */
}

/* Background image fills the hero */
.hero-bg-img {
  position: absolute; inset: 0;
  background: url('img-hero.jpg') center/cover no-repeat;
  z-index: 0;
}
/* Dark overlay so text reads clearly */
.hero-bg-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 28, 60, 0.82) 0%,
    rgba(15, 40, 80, 0.68) 50%,
    rgba(20, 50, 90, 0.55) 100%
  );
}

/* Animated blob accents on top of overlay */
.hero-blob {
  position: absolute; border-radius: 50%; z-index: 1; pointer-events: none;
  animation: morphBlob 12s ease-in-out infinite alternate;
}
.hero-blob-1 {
  width: 520px; height: 420px;
  top: -80px; right: -80px;
  background: radial-gradient(ellipse, rgba(43,124,193,.22) 0%, transparent 70%);
  animation-duration: 10s;
}
.hero-blob-2 {
  width: 340px; height: 280px;
  bottom: -40px; left: 5%;
  background: radial-gradient(ellipse, rgba(245,166,35,.15) 0%, transparent 70%);
  animation-duration: 14s; animation-direction: alternate-reverse;
}
@keyframes morphBlob {
  0%   { border-radius:60% 40% 55% 45%; transform:scale(1) rotate(0deg); }
  50%  { border-radius:45% 55% 40% 60%; transform:scale(1.06) rotate(4deg); }
  100% { border-radius:55% 45% 65% 35%; transform:scale(.96) rotate(-3deg); }
}

.hero-inner {
  position: relative; z-index: 2;
  max-width: var(--max-w); margin: 0 auto;
  padding: 0 44px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 56px; align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.25);
  color: rgba(255,255,255,.9);
  font-size: .72rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 50px; margin-bottom: 20px;
  backdrop-filter: blur(8px);
}
.hero-eyebrow::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold); animation: blink 2s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }

.hero-h1 {
  font-size: clamp(2.4rem, 4.2vw, 4rem);
  font-weight: 800; line-height: 1.07;
  letter-spacing: -0.03em; color: #fff; margin-bottom: 20px;
}
.hero-h1 em { font-style: italic; font-family: var(--f-accent); color: var(--gold); font-weight: 400; }
.hero-h1 .white { color: #fff; font-style: normal; }

.hero-sub {
  font-size: 1.05rem; color: rgba(255,255,255,.78);
  line-height: 1.75; margin-bottom: 36px; max-width: 480px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold); color: #1a2332;
  font-family: var(--f-display); font-weight: 800; font-size: .92rem;
  padding: 13px 30px; border-radius: 50px;
  text-decoration: none; border: none; cursor: pointer;
  box-shadow: 0 6px 24px rgba(245,166,35,.45);
  transition: background .2s, transform .15s, box-shadow .2s;
}
.btn-primary:hover { background: #ffb733; transform: translateY(-2px); box-shadow: 0 10px 32px rgba(245,166,35,.55); }
.btn-ghost-white {
  display: inline-flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,.85); font-family: var(--f-display); font-weight: 600; font-size: .92rem;
  padding: 13px 26px; border-radius: 50px; text-decoration: none;
  border: 1.5px solid rgba(255,255,255,.3);
  transition: border-color .2s, color .2s, background .2s;
}
.btn-ghost-white:hover { border-color: rgba(255,255,255,.7); color: #fff; background: rgba(255,255,255,.08); }

.hero-trust {
  display: flex; align-items: center; gap: 18px;
  margin-top: 36px; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 7px;
  font-size: .78rem; color: rgba(255,255,255,.65);
}
.trust-icon { color: var(--gold); }
.trust-divider { width: 1px; height: 14px; background: rgba(255,255,255,.2); }

/* Hero right panel */
.hero-right {
  display: flex; flex-direction: column; gap: 16px;
  align-items: flex-start;
}
.hero-card {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius);
  overflow: hidden;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  width: 100%; max-width: 480px;
  box-shadow: 0 16px 48px rgba(0,0,0,.25);
}
.hero-card-img {
  width: 100%; height: 220px;
  object-fit: cover; display: block;
  opacity: .92;
}
.hero-card-body {
  padding: 18px 20px;
}
.hero-card-tag {
  display: inline-block; font-size: .65rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 6px;
}
.hero-card-h { font-size: .95rem; font-weight: 700; color: #fff; margin-bottom: 4px; }
.hero-card-p { font-size: .78rem; color: rgba(255,255,255,.65); }

/* Floating stat badges */
.hero-badges { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-badge {
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 10px; padding: 10px 16px;
  display: flex; align-items: center; gap: 10px;
  backdrop-filter: blur(8px);
}
.badge-icon { font-size: 1.3rem; }
.badge-text { display: flex; flex-direction: column; }
.badge-val { font-size: .9rem; font-weight: 800; color: #fff; line-height: 1.1; }
.badge-label { font-size: .65rem; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: .08em; }

/* ── Scroll-down hint — fixed to viewport bottom, hides at page end ── */
.scroll-hint {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  z-index: 150; cursor: pointer;
  /* Reset button styles */
  background: none; border: none; padding: 0; font-family: inherit;
  text-decoration: none;
  animation: hintBounce 2.5s ease-in-out infinite;
  transition: opacity .4s, visibility .4s;
}
.scroll-hint.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
@keyframes hintBounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(7px); }
}
.scroll-hint span {
  font-size: .58rem; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase;
  /* Works over any background: dark text with light shadow */
  color: var(--blue-dark);
  background: rgba(255,255,255,.8);
  padding: 2px 8px; border-radius: 20px;
  backdrop-filter: blur(4px);
}
.scroll-hint-arrow {
  width: 30px; height: 30px; border-radius: 50%;
  border: 2px solid var(--blue);
  background: rgba(255,255,255,.88);
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(6px);
  box-shadow: 0 2px 12px rgba(43,124,193,.25);
}
.scroll-hint-arrow svg { color: var(--blue); }

/* ══════════════════════════════════════════════
   SECTION COMMON — tighter padding
   ══════════════════════════════════════════════ */
section { padding: 72px 0; }
.section-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 44px; }

.section-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .7rem; font-weight: 700; letter-spacing: .15em;
  text-transform: uppercase; color: var(--blue); margin-bottom: 14px;
}
.section-label::before { content: ''; display: block; width: 22px; height: 2px; background: var(--gold); }

.section-h2 {
  font-size: clamp(1.85rem, 3.2vw, 2.9rem);
  font-weight: 800; letter-spacing: -0.03em; line-height: 1.1;
  color: var(--text); margin-bottom: 16px;
}
.section-h2 em { font-style: italic; font-family: var(--f-accent); color: var(--blue); font-weight: 400; }
.section-lead { font-size: 1rem; color: var(--text-mid); line-height: 1.75; max-width: 580px; }

/* ══ SERVICES ══════════════════════════════════ */
#services { background: var(--white); }
.services-header { text-align: center; margin-bottom: 48px; }
.services-header .section-label { justify-content: center; }
.services-header .section-lead { margin: 0 auto; }

.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }

.service-card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  position: relative;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--blue-mid); }
.service-bar {
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--gold));
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s var(--ease);
}
.service-card:hover .service-bar { transform: scaleX(1); }
.service-img {
  width: 100%; height: 188px; object-fit: cover; display: block;
  transition: transform .5s var(--ease);
}
.service-card:hover .service-img { transform: scale(1.04); }
.service-card-body { padding: 24px; }
.service-tag {
  display: inline-block; font-size: .66rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  padding: 4px 11px; border-radius: 50px; margin-bottom: 12px;
}
.card-websites .service-tag { background: var(--blue-light); color: var(--blue); }
.card-shops    .service-tag { background: var(--gold-light);  color: var(--gold-dark); }
.card-apps     .service-tag { background: var(--green-light); color: var(--green); }
.service-h3 {
  font-size: 1.1rem; font-weight: 700; letter-spacing: -0.02em;
  color: var(--text); margin-bottom: 9px;
}
.service-body { font-size: .87rem; color: var(--text-mid); line-height: 1.72; margin-bottom: 18px; }
.service-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.service-list li {
  display: flex; align-items: flex-start; gap: 9px;
  font-size: .82rem; color: var(--text-mid);
}
.service-list li::before {
  content: ''; flex-shrink: 0; width: 16px; height: 16px; margin-top: 1px;
  border-radius: 50%; background-color: var(--blue-light);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 8l3 3 5-5' stroke='%232B7CC1' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.card-shops .service-list li::before {
  background-color: var(--gold-light);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 8l3 3 5-5' stroke='%23F5A623' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.card-apps .service-list li::before {
  background-color: var(--green-light);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 8l3 3 5-5' stroke='%2328a745' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

/* ══ WHY US ════════════════════════════════════ */
#why {
  background: linear-gradient(155deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: #fff; position: relative; overflow: hidden;
}
#why::before {
  content: ''; position: absolute;
  top: -80px; right: -80px; width: 420px; height: 420px;
  background: radial-gradient(ellipse, rgba(245,166,35,.16) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.why-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 44px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center;
}
.why-left .section-label { color: rgba(255,255,255,.65); }
.why-left .section-label::before { background: var(--gold); }
.why-h2 {
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  font-weight: 800; letter-spacing: -0.03em; line-height: 1.15;
  color: #fff; margin-bottom: 14px;
}
.why-h2 em { font-style: italic; font-family: var(--f-accent); color: var(--gold); font-weight: 400; }
.why-sub { font-size: .97rem; color: rgba(255,255,255,.70); line-height: 1.75; }
.why-pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.pillar {
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-sm); padding: 22px 20px;
  transition: background .3s, transform .25s;
}
.pillar:hover { background: rgba(255,255,255,.17); transform: translateY(-3px); }
.pillar-icon { font-size: 1.55rem; margin-bottom: 10px; }
.pillar-h { font-size: .9rem; font-weight: 700; color: #fff; margin-bottom: 5px; }
.pillar-p { font-size: .8rem; color: rgba(255,255,255,.63); line-height: 1.62; }

/* ══ PROCESS ═══════════════════════════════════ */
#process { background: var(--bg); }
.process-header { text-align: center; margin-bottom: 52px; }
.process-header .section-label { justify-content: center; }
.process-steps {
  display: grid; grid-template-columns: repeat(4,1fr);
  position: relative;
}
.process-steps::before {
  content: ''; position: absolute;
  top: 31px; left: 10%; right: 10%; height: 2px;
  background: linear-gradient(90deg, var(--blue-mid), var(--gold-light));
  z-index: 0;
}
.step { text-align: center; padding: 0 20px; position: relative; z-index: 1; }
.step-num {
  width: 62px; height: 62px; border-radius: 50%;
  background: var(--white); border: 2px solid var(--blue-mid);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem; font-weight: 800; color: var(--blue);
  margin: 0 auto 18px; box-shadow: var(--shadow-sm);
  transition: background .3s, border-color .3s, color .3s;
}
.step:hover .step-num { background: var(--blue); border-color: var(--blue); color: #fff; }
.step-h { font-size: .92rem; font-weight: 700; color: var(--text); margin-bottom: 7px; }
.step-p { font-size: .8rem; color: var(--text-mid); line-height: 1.65; }

/* ══ CONTACT ═══════════════════════════════════ */
#contact { background: var(--white); }
.contact-wrap { display: grid; grid-template-columns: 1fr 1.3fr; gap: 72px; align-items: start; }
.contact-info-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 22px; }
.contact-info-icon {
  width: 42px; height: 42px; border-radius: 10px;
  background: var(--blue-light); color: var(--blue);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-info-icon svg { width: 20px; height: 20px; }
.contact-info-h { font-size: .75rem; font-weight: 700; color: var(--text-soft); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 3px; }
.contact-info-v { font-size: .92rem; color: var(--text); font-weight: 500; }
.contact-info-v a { color: var(--blue); text-decoration: none; }
.contact-info-v a:hover { text-decoration: underline; }

.form-card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 36px 32px; box-shadow: var(--shadow-sm);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
label {
  font-size: .72rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; color: var(--text-mid);
}
input, select, textarea {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); padding: 11px 14px;
  font-family: var(--f-display); font-size: .9rem; font-weight: 400; color: var(--text);
  transition: border-color .2s, box-shadow .2s;
  outline: none; -webkit-appearance: none; appearance: none;
}
input::placeholder, textarea::placeholder { color: var(--text-soft); }
input:focus, select:focus, textarea:focus {
  border-color: var(--blue); box-shadow: 0 0 0 3px rgba(43,124,193,.1);
}
textarea { resize: vertical; min-height: 110px; }
.select-wrap { position: relative; }
.select-wrap select { width: 100%; cursor: pointer; padding-right: 38px; }
.select-arrow {
  position: absolute; right: 11px; top: 50%; transform: translateY(-50%);
  width: 17px; height: 17px; color: var(--text-soft); pointer-events: none;
}
.recaptcha-note {
  font-size: .7rem;
  color: var(--text-soft);
  margin-top: 6px;
}
.btn-submit {
  width: 100%; padding: 14px 28px;
  background: var(--blue); color: #fff;
  font-family: var(--f-display); font-weight: 700; font-size: .96rem;
  border: none; border-radius: 50px; cursor: pointer;
  box-shadow: 0 6px 22px rgba(43,124,193,.33);
  transition: background .2s, transform .15s, box-shadow .2s;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  margin-top: 18px;
}
.btn-submit:hover { background: var(--blue-dark); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(43,124,193,.43); }
.btn-submit:disabled { opacity: .65; cursor: not-allowed; transform: none; }
.form-msg {
  display: none; margin-top: 12px;
  padding: 11px 14px; border-radius: var(--radius-sm);
  font-size: .86rem; font-weight: 600;
}
.form-msg.success { display: block; background: #edfaf1; border: 1px solid #a8e6c1; color: #1a7a3f; }
.form-msg.error   { display: block; background: #fff0f0; border: 1px solid #ffb3b3; color: #c0392b; }
.hp { display: none !important; }

/* ══ FOOTER ════════════════════════════════════ */
footer { background: var(--text); color: rgba(255,255,255,.45); padding: 30px 44px; }
.footer-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 14px;
}
.footer-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.footer-logo img {
  height: 38px; width: auto;
  filter: brightness(0) invert(1); opacity: .7;
}
.footer-logo-text { font-size: .85rem; font-weight: 700; color: rgba(255,255,255,.7); }
.footer-copy { font-size: .78rem; }
.footer-links { display: flex; gap: 18px; }
.footer-links a {
  color: rgba(255,255,255,.38); font-size: .78rem;
  text-decoration: none; cursor: pointer; transition: color .2s;
}
.footer-links a:hover { color: rgba(255,255,255,.82); }

/* ══ MODALS ════════════════════════════════════ */
.modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 500;
  background: rgba(26,35,50,.65);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  align-items: center; justify-content: center; padding: 24px;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: var(--white); border-radius: var(--radius);
  max-width: 780px; width: 100%; max-height: 82vh;
  overflow-y: auto; box-shadow: 0 32px 80px rgba(0,0,0,.28);
}
.modal-box::-webkit-scrollbar { width: 4px; }
.modal-box::-webkit-scrollbar-thumb { background: var(--blue-mid); border-radius: 2px; }
.modal-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 26px 32px 18px;
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; background: var(--white); z-index: 2;
}
.modal-title { font-size: 1.2rem; font-weight: 800; letter-spacing: -0.02em; color: var(--text); }
.modal-close {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--bg); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 1rem; color: var(--text-mid);
  transition: background .2s, color .2s;
}
.modal-close:hover { background: var(--blue-light); color: var(--blue); }
.modal-body { padding: 24px 32px 32px; font-size: .91rem; color: var(--text-mid); line-height: 1.8; }
.modal-body h3 { font-size: .97rem; font-weight: 700; color: var(--text); margin: 22px 0 8px; }
.modal-body h3:first-child { margin-top: 0; }
.modal-body p { margin-bottom: 10px; }
.modal-body ul { padding-left: 18px; margin-bottom: 10px; }
.modal-body ul li { margin-bottom: 5px; }
.modal-date {
  display: inline-block; background: var(--blue-light); color: var(--blue);
  font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: 4px 11px; border-radius: 50px; margin-bottom: 20px;
}

/* ══ REVEAL ANIMATIONS ═════════════════════════ */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.from-left  { transform: translateX(-36px); }
.reveal.from-right { transform: translateX(36px); }
.reveal.visible    { opacity: 1; transform: none; }
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }
.delay-4 { transition-delay: .4s; }

/* ══ RESPONSIVE ════════════════════════════════ */
@media (max-width: 1100px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-right { flex-direction: row; flex-wrap: wrap; max-width: 600px; }
  .hero-card { max-width: 100%; }
  .services-grid { grid-template-columns: 1fr; max-width: 540px; margin: 0 auto; }
  .why-inner { grid-template-columns: 1fr; gap: 44px; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 36px; }
  .process-steps::before { display: none; }
  .contact-wrap { grid-template-columns: 1fr; gap: 44px; }
}
@media (max-width: 768px) {
  .nav-links {
    display: none; position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: var(--white); padding: 20px 24px;
    flex-direction: column; gap: 18px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md); z-index: 199;
  }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .nav-inner { padding: 0 20px; }
  section { padding: 56px 0; }
  .section-inner { padding: 0 20px; }
  .hero-inner { padding: 0 20px; }
  .why-inner { padding: 0 20px; }
  .form-row { grid-template-columns: 1fr; }
  .why-pillars { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .form-card { padding: 24px 18px; }
  footer { padding: 24px 20px; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 10px; }
  .modal-header, .modal-body { padding-left: 20px; padding-right: 20px; }
  .hero-badges { gap: 8px; }
}

/* ══ GDPR COOKIE CONSENT BANNER ═══════════════════════════════════════ */
.gdpr-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--white);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 32px rgba(26,35,50,.12);
  transform: translateY(0);
  transition: transform .4s var(--ease), opacity .4s;
}
.gdpr-banner.gdpr-hidden {
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
}
.gdpr-inner {
  max-width: var(--max-w); margin: 0 auto;
  padding: 18px 44px;
  display: flex; align-items: center;
  gap: 32px; flex-wrap: wrap;
}
.gdpr-text {
  flex: 1; min-width: 240px;
}
.gdpr-text strong {
  display: block; font-size: .9rem;
  font-weight: 700; color: var(--text);
  margin-bottom: 4px;
}
.gdpr-text p {
  font-size: .78rem; color: var(--text-mid);
  line-height: 1.55; margin: 0;
}
.gdpr-text a {
  color: var(--blue); text-decoration: underline;
}
.gdpr-actions {
  display: flex; gap: 10px; flex-shrink: 0; flex-wrap: wrap;
}
.gdpr-btn {
  padding: 9px 20px; border-radius: 50px;
  font-family: var(--f-display); font-size: .82rem; font-weight: 700;
  cursor: pointer; border: none; white-space: nowrap;
  transition: background .2s, box-shadow .2s, transform .15s;
}
.gdpr-reject {
  background: var(--bg); color: var(--text-mid);
  border: 1.5px solid var(--border);
}
.gdpr-reject:hover { background: var(--border); }
.gdpr-accept {
  background: var(--blue); color: #fff;
  box-shadow: 0 4px 14px rgba(43,124,193,.3);
}
.gdpr-accept:hover { background: var(--blue-dark); transform: translateY(-1px); }

@media (max-width: 768px) {
  .gdpr-inner { padding: 16px 20px; gap: 14px; }
  .gdpr-actions { width: 100%; }
  .gdpr-btn { flex: 1; text-align: center; }
}
