/* ===================================================================
   GK-Tech — Modern IT / Cybersecurity  ·  abstract animated edition
   =================================================================== */

:root {
  --bg:        #f5f8f7;
  --bg-2:      #eef4f1;
  --surface:   #ffffff;
  --surface-2: #f0f5f3;
  --border:    rgba(15, 45, 36, 0.12);
  --border-2:  rgba(15, 45, 36, 0.20);

  --text:      #0f241d;
  --muted:     #45564f;
  --faint:     #5e6e68;

  --cyan:      #0a7f57;   /* emerald — primary accent (WCAG AA on light) */
  --teal:      #0a8f5f;   /* deeper emerald */
  --blue:      #0ea5a0;   /* teal */
  --violet:    #12b48f;   /* teal-green */
  --grad:      linear-gradient(120deg, #10b981, #2bd49c);
  --grad-3:    linear-gradient(120deg, #0d9c6c, #10b981 55%, #16c79a);

  --radius:    18px;
  --radius-sm: 11px;
  --maxw:      1160px;

  --shadow:    0 24px 60px -28px rgba(15, 45, 36, 0.28);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3 { font-family: 'Sora', 'Inter', sans-serif; font-weight: 700; letter-spacing: -0.02em; }
.brand__text { font-family: 'Sora', 'Inter', sans-serif; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }

/* ===================================================================
   Abstract animated background
   =================================================================== */
.bg-decor { position: fixed; inset: 0; z-index: -1; overflow: hidden; background: radial-gradient(ellipse 120% 85% at 50% -10%, #ffffff, #eaf3ef 70%); }

#net { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }

/* Readability veil over the flow-field (keeps centered text crisp) */
.veil {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 58% 48% at 50% 42%, rgba(245,248,247,0.62), transparent 72%),
    linear-gradient(to bottom, transparent 70%, var(--bg) 100%);
}

/* Subtle film grain */
.grain {
  position: absolute; inset: -50%; opacity: 0.02; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 8s steps(6) infinite;
}
@keyframes grain { 0%{transform:translate(0,0)} 20%{transform:translate(-4%,3%)} 40%{transform:translate(3%,-4%)} 60%{transform:translate(-3%,2%)} 80%{transform:translate(4%,-2%)} 100%{transform:translate(0,0)} }

/* ===================================================================
   Buttons
   =================================================================== */
.btn {
  --pad-y: 14px; --pad-x: 24px;
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: var(--pad-y) var(--pad-x);
  font: 600 0.97rem/1 'Inter', sans-serif;
  border-radius: 999px; border: 1px solid transparent;
  cursor: pointer; transition: transform .2s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease;
  white-space: nowrap;
}
.btn svg { transition: transform .25s ease; }
.btn--primary {
  background: var(--grad); color: #03121a;
  box-shadow: 0 12px 34px -10px rgba(52, 211, 153, 0.5);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 18px 42px -12px rgba(16, 185, 129, 0.55); }
.btn--primary:hover svg { transform: translateX(4px); }
.btn--ghost { background: rgba(15,45,36,0.03); border-color: var(--border-2); color: var(--text); }
.btn--ghost:hover { background: rgba(15,45,36,0.06); transform: translateY(-2px); }
.btn--sm { --pad-y: 9px; --pad-x: 17px; font-size: 0.88rem; }
.btn--block { width: 100%; }

/* ===================================================================
   Header
   =================================================================== */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  transition: background .3s ease, border-color .3s ease, backdrop-filter .3s ease;
  border-bottom: 1px solid transparent;
}
.header.scrolled {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(16px);
  border-bottom-color: var(--border);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 74px; }

.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand__logo { height: 38px; width: auto; display: block; background: var(--grad); border-radius: 10px; padding: 5px; }
.brand__text { font-weight: 700; font-size: 1.07rem; letter-spacing: .2px; }
.brand__text em { font-style: normal; font-weight: 500; color: var(--muted); font-size: .82em; }

.nav { display: flex; align-items: center; gap: 6px; }
.nav__link {
  position: relative; padding: 8px 14px; color: var(--muted);
  font-weight: 500; font-size: .95rem; border-radius: 8px; transition: color .2s;
}
.nav__link:hover { color: var(--text); }
.nav__link::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 4px; height: 2px;
  background: var(--grad); border-radius: 2px; transform: scaleX(0); transform-origin: left; transition: transform .25s ease;
}
.nav__link:hover::after { transform: scaleX(1); }
.nav__cta { margin-left: 8px; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px; width: 42px; height: 42px;
  align-items: center; justify-content: center; background: rgba(15,45,36,0.04);
  border: 1px solid var(--border); border-radius: 10px; cursor: pointer;
}
.nav-toggle span { width: 20px; height: 2px; background: var(--text); border-radius: 2px; transition: .3s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===================================================================
   Hero — immersive, centered
   =================================================================== */
.hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 120px 0 80px; text-align: center;
  /* frosted gray band across the full width of the homepage top */
  background: rgba(86, 102, 96, 0.10);
  border-bottom: 1px solid rgba(15, 45, 36, 0.08);
  -webkit-backdrop-filter: blur(7px);
  backdrop-filter: blur(7px);
}
.hero__inner { display: flex; flex-direction: column; align-items: center; }

.badge {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 7px 16px; border-radius: 999px; font-size: .82rem; font-weight: 500;
  color: var(--cyan); background: rgba(52, 211, 153, 0.07);
  border: 1px solid rgba(52, 211, 153, 0.22); margin-bottom: 28px;
  backdrop-filter: blur(6px);
}
.badge__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 0 0 rgba(52,211,153,.5); animation: pulse 2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(52,211,153,.5);} 70%{box-shadow:0 0 0 9px rgba(52,211,153,0);} 100%{box-shadow:0 0 0 0 rgba(52,211,153,0);} }

.hero__title {
  font-size: clamp(2.3rem, 6.2vw, 4.7rem); line-height: 1.06; font-weight: 700; letter-spacing: -1.5px;
  max-width: 14ch;
}
.grad { background: var(--grad-3); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero__lead { margin-top: 24px; font-size: 1.14rem; color: var(--muted); max-width: 600px; }
.hero__lead strong { color: var(--text); font-weight: 600; }

.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; justify-content: center; }

.hero__stats { list-style: none; display: flex; gap: 48px; margin-top: 52px; flex-wrap: wrap; justify-content: center; }
.hero__stats li { display: flex; flex-direction: column; }
.hero__stats strong { font-family: 'Sora'; font-size: 1.7rem; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero__stats span { font-size: .85rem; color: var(--faint); }


/* ===================================================================
   Section base
   =================================================================== */
.section { position: relative; padding: 100px 0; }
.section__head { max-width: 660px; margin: 0 auto 56px; text-align: center; }
.eyebrow {
  display: inline-block; font-size: .8rem; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--cyan); margin-bottom: 14px;
}
.section__title { font-size: clamp(1.8rem, 3.8vw, 2.7rem); line-height: 1.14; letter-spacing: -.6px; }
.section__sub { margin-top: 16px; color: var(--muted); font-size: 1.06rem; }

/* ===================================================================
   Services — circuit timeline (all info visible, animated)
   =================================================================== */
.flow { position: relative; padding: 8px 0; }
/* the central circuit spine */
.flow::before {
  content: ""; position: absolute; top: 12px; bottom: 12px; left: 50%; margin-left: -1px; width: 2px;
  background: linear-gradient(180deg, transparent, var(--border) 4%, var(--border) 96%, transparent);
}
/* a light pulse that travels down the spine — the network "breathing" */
.flow::after {
  content: ""; position: absolute; left: 50%; margin-left: -2px; top: -90px; width: 4px; height: 90px;
  border-radius: 4px; pointer-events: none; z-index: 1;
  background: linear-gradient(180deg, transparent, rgba(16,185,129,.9) 50%, transparent);
  box-shadow: 0 0 14px 2px rgba(16,185,129,.35);
  animation: flowPulse 9s linear infinite;
}
@keyframes flowPulse {
  0%   { top: -90px; opacity: 0; }
  8%   { opacity: 1; }
  92%  { opacity: 1; }
  100% { top: calc(100% + 90px); opacity: 0; }
}

.flow__item { position: relative; display: grid; grid-template-columns: 1fr 1fr; align-items: center; padding: 14px 0; }

/* node on the spine */
.flow__node {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); z-index: 2;
  display: grid; place-items: center; width: 52px; height: 52px; border-radius: 50%;
  color: var(--cyan); background: var(--surface); border: 1px solid rgba(16,185,129,.35);
  box-shadow: 0 0 0 7px var(--bg), 0 6px 18px -8px rgba(15,45,36,.25);
  transition: transform .4s cubic-bezier(.2,.7,.2,1), color .4s, background .4s, box-shadow .4s, border-color .4s;
}
.flow__node svg { width: 24px; height: 24px; }

/* the service card */
.flow__card {
  grid-column: 1; justify-self: end; max-width: 430px; position: relative;
  padding: 22px 24px; border-radius: 16px;
  background: var(--surface);
  border: 1px solid var(--border); box-shadow: 0 10px 30px -22px rgba(15,45,36,.4);
  transition: transform .4s cubic-bezier(.2,.7,.2,1), border-color .4s ease, box-shadow .4s ease;
}
.flow__item:nth-child(odd)  .flow__card { margin-right: 52px; }
.flow__item:nth-child(even) .flow__card { grid-column: 2; justify-self: start; margin-left: 52px; }
.flow__card:hover { transform: translateY(-3px); border-color: rgba(16,185,129,.45); box-shadow: 0 24px 48px -26px rgba(15,45,36,.45); }
/* connector from card to the spine */
.flow__card::after {
  content: ""; position: absolute; top: 50%; width: 40px; height: 2px; transform: translateY(-50%);
}
.flow__item:nth-child(odd)  .flow__card::after { right: -44px; background: linear-gradient(90deg, var(--border), transparent); }
.flow__item:nth-child(even) .flow__card::after { left: -44px;  background: linear-gradient(270deg, var(--border), transparent); }
/* node + card light up together on hover */
.flow__item:hover .flow__node {
  color: #ffffff; background: var(--grad); border-color: transparent;
  box-shadow: 0 0 0 7px var(--bg), 0 10px 24px -8px rgba(16,185,129,.6); transform: translate(-50%,-50%) scale(1.06);
}

.flow__head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-bottom: 8px; }
.flow__head h3 { font-family: 'Sora', sans-serif; font-size: 1.16rem; font-weight: 600; letter-spacing: -.01em; }
.flow__no { font-family: 'Sora', sans-serif; font-weight: 700; font-size: .9rem; letter-spacing: 1px; color: var(--faint); opacity: .5; }
.flow__card p { color: var(--muted); font-size: .95rem; line-height: 1.6; }
.flow__card .card__tags { margin-top: 14px; }

/* directional reveal: cards slide in from their side */
.flow__item:nth-child(odd).reveal  { transform: translateX(-40px); }
.flow__item:nth-child(even).reveal { transform: translateX(40px); }
.flow__item:nth-child(odd).reveal.in,
.flow__item:nth-child(even).reveal.in { transform: none; }

.card__tags { list-style: none; display: flex; flex-wrap: wrap; gap: 7px; }
.card__tags li {
  font-size: .72rem; font-weight: 500; color: var(--cyan); letter-spacing: .2px;
  padding: 4px 10px; border-radius: 999px;
  background: rgba(52, 211, 153, 0.07); border: 1px solid rgba(52, 211, 153, 0.18);
}

/* ===================================================================
   About
   =================================================================== */
.about__inner { display: grid; grid-template-columns: .9fr 1.1fr; gap: 64px; align-items: center; }
.about__content p { color: var(--muted); margin-top: 16px; }
.checklist { list-style: none; margin-top: 28px; display: grid; gap: 13px; }
.checklist li { display: flex; align-items: center; gap: 12px; color: var(--text); font-weight: 500; }
.checklist li::before {
  content: ""; flex: none; width: 22px; height: 22px; border-radius: 50%;
  background: var(--grad);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M9 16.2l-3.5-3.5L4 14.2 9 19l11-11-1.4-1.4z'/%3E%3C/svg%3E") center/15px no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M9 16.2l-3.5-3.5L4 14.2 9 19l11-11-1.4-1.4z'/%3E%3C/svg%3E") center/15px no-repeat;
}

/* About hub visual — calm, in harmony with the network background */
.about__media { display: grid; place-items: center; }
.hub { position: relative; width: 320px; height: 320px; display: grid; place-items: center; }

/* concentric rings */
.hub__ring { position: absolute; border-radius: 50%; border: 1px solid var(--border-2); width: 210px; height: 210px; }
.hub__ring--2 { width: 300px; height: 300px; border-style: dashed; border-color: rgba(16,185,129,.38); animation: hub-spin 50s linear infinite; }

/* slow sonar pulses radiating outward */
.hub__pulse {
  position: absolute; width: 150px; height: 150px; border-radius: 50%;
  border: 1px solid rgba(52,211,153,.45); animation: hub-pulse 5s ease-out infinite;
}
.hub__pulse--2 { animation-delay: 2.5s; }

/* glowing nodes orbiting calmly */
.hub__node {
  position: absolute; top: 50%; left: 50%; width: 12px; height: 12px; margin: -6px 0 0 -6px;
  border-radius: 50%; background: var(--cyan); box-shadow: 0 0 12px var(--cyan);
  --r: 105px; animation: hub-orbit 36s linear infinite;
}
.hub__node.n2 { --r: 150px; background: var(--blue); box-shadow: 0 0 12px var(--blue); animation-duration: 48s; animation-direction: reverse; }
.hub__node.n3 { --r: 150px; background: var(--violet); box-shadow: 0 0 12px var(--violet); animation-duration: 42s; animation-delay: -20s; }

/* core with the logo, gently breathing */
.hub__core {
  position: relative; z-index: 2; width: 118px; height: 118px; border-radius: 30px;
  display: grid; place-items: center;
  background: linear-gradient(165deg, #12b886, #0a7d57);
  border: 1px solid rgba(16,185,129,.45);
  animation: hub-breathe 5s ease-in-out infinite;
}
.hub__core img { width: 68px; height: 68px; }

@keyframes hub-spin { to { transform: rotate(360deg); } }
@keyframes hub-orbit {
  from { transform: rotate(0deg) translateX(var(--r)) rotate(0deg); }
  to   { transform: rotate(360deg) translateX(var(--r)) rotate(-360deg); }
}
@keyframes hub-breathe {
  0%, 100% { box-shadow: 0 0 30px -8px rgba(52,211,153,.4); transform: translateY(0); }
  50%      { box-shadow: 0 0 52px -6px rgba(52,211,153,.65); transform: translateY(-5px); }
}
@keyframes hub-pulse {
  0%   { transform: scale(.5); opacity: .7; }
  80%  { opacity: 0; }
  100% { transform: scale(2); opacity: 0; }
}

/* ===================================================================
   Why
   =================================================================== */
.why__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.why__item {
  padding: 32px; border-radius: var(--radius); background: var(--surface);
  border: 1px solid var(--border); box-shadow: 0 10px 30px -24px rgba(15,45,36,.4);
  transition: border-color .3s, box-shadow .3s, transform .3s;
}
.why__item:hover { border-color: rgba(16,185,129,.3); box-shadow: 0 22px 44px -28px rgba(15,45,36,.45); transform: translateY(-4px); }
.why__num { font-family: 'Sora'; font-size: 1.5rem; font-weight: 700; background: var(--grad-3); -webkit-background-clip: text; background-clip: text; color: transparent; }
.why__item h3 { margin: 10px 0 8px; font-size: 1.24rem; }
.why__item p { color: var(--muted); }

/* ===================================================================
   Bitdefender
   =================================================================== */
.bd-pick { max-width: 900px; margin: 0 auto 46px; text-align: center; }
.bd-pick__q { font-family: 'Sora', sans-serif; font-weight: 600; font-size: 1.08rem; }
.bd-pick__q span { display: block; margin-top: 4px; font-family: 'Inter', sans-serif; font-weight: 400; font-size: .95rem; color: var(--muted); }
.bd-pick__options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 20px; }
.bd-pick__opt {
  display: block; width: 100%; padding: 18px; min-height: 44px; text-align: left; cursor: pointer;
  font: inherit; color: var(--text); background: var(--surface);
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  transition: transform .25s, border-color .25s, box-shadow .25s;
}
.bd-pick__opt svg { width: 26px; height: 26px; color: var(--cyan); margin-bottom: 10px; }
.bd-pick__opt strong { display: block; font-family: 'Sora', sans-serif; font-weight: 600; font-size: .98rem; letter-spacing: -.01em; }
.bd-pick__opt span { display: block; margin-top: 4px; color: var(--muted); font-size: .86rem; line-height: 1.5; }
.bd-pick__opt:hover { transform: translateY(-3px); border-color: rgba(16,185,129,.45); box-shadow: 0 18px 36px -26px rgba(15,45,36,.45); }
.bd-pick__opt.selected { border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(16,185,129,.16); }
.bd-pick__result {
  margin-top: 20px; min-height: 1.6em; color: var(--text);
  opacity: 0; transform: translateY(8px); transition: opacity .45s, transform .45s;
}
.bd-pick__result.show { opacity: 1; transform: none; }
.bd-pick__result a { color: var(--cyan); font-weight: 600; }

.bd__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.bd__card {
  position: relative;
  padding: 32px; border-radius: var(--radius); background: var(--surface);
  border: 1px solid var(--border); box-shadow: 0 10px 30px -24px rgba(15,45,36,.4);
  transition: border-color .3s, box-shadow .3s, transform .3s, opacity .35s;
}
.bd__badge {
  position: absolute; top: -13px; right: 18px; padding: 4px 12px; border-radius: 999px;
  background: var(--grad-3); color: #fff;
  font-family: 'Sora', sans-serif; font-size: .74rem; font-weight: 600; letter-spacing: .3px;
  opacity: 0; transform: translateY(6px) scale(.9); transition: opacity .35s, transform .35s;
}
.bd__card--match { border-color: var(--cyan); animation: bdGlow 1.5s ease 2; }
.bd__card--match .bd__badge { opacity: 1; transform: none; }
.bd__grid .bd__card.bd__card--dim { opacity: .45; }
@keyframes bdGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(16,185,129,0); }
  50%      { box-shadow: 0 0 0 8px rgba(16,185,129,.18); }
}
.bd__card:hover { border-color: rgba(16,185,129,.3); box-shadow: 0 22px 44px -28px rgba(15,45,36,.45); transform: translateY(-4px); }
.bd__card h3 { font-family: 'Sora', sans-serif; font-size: 1.16rem; font-weight: 600; margin-bottom: 8px; }
.bd__card h3 span { color: var(--faint); font-weight: 600; font-size: .95rem; }
.bd__card p { color: var(--muted); font-size: .95rem; line-height: 1.6; }
.bd__card .card__tags { margin-top: 14px; }
.bd__note { margin-top: 36px; text-align: center; color: var(--muted); }

/* ===================================================================
   FAQ
   =================================================================== */
.faq { max-width: 760px; margin: 0 auto; display: grid; gap: 14px; }
.faq details {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm);
  transition: border-color .3s, box-shadow .3s;
}
.faq details[open] { border-color: rgba(16,185,129,.45); box-shadow: 0 18px 36px -26px rgba(15,45,36,.45); }
.faq summary {
  cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center;
  gap: 14px; padding: 18px 20px; min-height: 44px;
  font-family: 'Sora', sans-serif; font-weight: 600; letter-spacing: -.01em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; font-size: 1.35rem; line-height: 1; color: var(--cyan); flex-shrink: 0; transition: transform .3s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding: 0 20px 18px; color: var(--muted); }

/* ===================================================================
   Contact
   =================================================================== */
.contact__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.contact__lead { color: var(--muted); margin-top: 14px; max-width: 420px; }
.contact__list { list-style: none; margin-top: 32px; display: grid; gap: 18px; }
.contact__list li { display: flex; align-items: center; gap: 16px; }
.contact__ic {
  flex: none; display: grid; place-items: center; width: 48px; height: 48px; border-radius: 13px;
  color: var(--cyan); background: rgba(52,211,153,.08); border: 1px solid rgba(52,211,153,.2);
}
.contact__ic svg { width: 23px; height: 23px; }
.contact__list small { display: block; color: var(--faint); font-size: .8rem; }
.contact__list a { font-weight: 600; transition: color .2s; }
.contact__list a:hover { color: var(--cyan); }

.contact__form {
  padding: 34px; border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border); box-shadow: var(--shadow);
}
.field { margin-bottom: 18px; }
.field label { display: block; font-size: .85rem; font-weight: 500; color: var(--muted); margin-bottom: 7px; }
.field input, .field textarea {
  width: 100%; padding: 13px 15px; font: 400 .96rem 'Inter', sans-serif;
  color: var(--text); background: #f7faf9; border: 1px solid var(--border);
  border-radius: var(--radius-sm); transition: border-color .2s, box-shadow .2s; resize: vertical;
}
.field input::placeholder, .field textarea::placeholder { color: var(--faint); }
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(52,211,153,.15);
}
.field input.invalid, .field textarea.invalid { border-color: #ff6161; box-shadow: 0 0 0 3px rgba(255,97,97,.12); }
.form-note { margin-top: 14px; font-size: .9rem; text-align: center; min-height: 1.2em; }
.form-note.ok { color: var(--cyan); }
.form-note.err { color: #ff6b6b; }

/* ===================================================================
   Footer
   =================================================================== */
.footer { border-top: 1px solid var(--border); padding: 48px 0; background: rgba(255,255,255,.5); }
.footer__inner { display: flex; flex-direction: column; align-items: center; gap: 12px; text-align: center; }
.footer__tag { color: var(--muted); font-size: .92rem; letter-spacing: .3px; }
.footer__legal { color: var(--faint); font-size: .85rem; line-height: 1.7; }
.footer__legal a { color: var(--muted); transition: color .2s; }
.footer__legal a:hover { color: var(--cyan); }
.footer__copy { color: var(--faint); font-size: .82rem; margin-top: 2px; }

/* ===================================================================
   Floating WhatsApp
   =================================================================== */
.wa-float {
  position: fixed; right: 24px; bottom: 24px; z-index: 60;
  width: 60px; height: 60px; border-radius: 50%; display: block;
  filter: drop-shadow(0 12px 24px rgba(37, 211, 102, 0.45));
  transition: transform .3s cubic-bezier(.2,.7,.2,1), filter .3s ease;
  animation: floaty-btn 3s ease-in-out infinite;
}
.wa-float img { width: 100%; height: 100%; border-radius: 50%; display: block; }
/* expanding sonar pulse */
.wa-float::before {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  background: #25d366; z-index: -1; animation: wa-pulse 2.4s ease-out infinite;
}
/* hover tooltip */
.wa-float::after {
  content: "Na shkruani"; position: absolute; right: 74px; top: 50%;
  transform: translateY(-50%) translateX(8px);
  background: var(--surface-2); color: var(--text);
  font-size: .82rem; font-weight: 500; white-space: nowrap;
  padding: 9px 14px; border-radius: 11px; border: 1px solid var(--border-2);
  box-shadow: var(--shadow); opacity: 0; pointer-events: none; transition: .28s ease;
}
.wa-float:hover {
  transform: scale(1.1); animation-play-state: paused;
  filter: drop-shadow(0 16px 30px rgba(37, 211, 102, 0.6));
}
.wa-float:hover::after { opacity: 1; transform: translateY(-50%) translateX(0); }
@keyframes floaty-btn { 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(-6px);} }
@keyframes wa-pulse { 0%{ transform: scale(1); opacity: .55;} 70%{ transform: scale(1.85); opacity: 0;} 100%{ opacity: 0;} }

/* ===================================================================
   Scroll progress bar
   =================================================================== */
.scroll-bar {
  position: fixed; top: 0; left: 0; height: 3px; width: 0; z-index: 100;
  background: var(--grad); box-shadow: 0 0 12px rgba(52, 211, 153, 0.6);
  border-radius: 0 3px 3px 0; transition: width .12s ease-out;
}

/* ===================================================================
   CAPTCHA + privacy consent
   =================================================================== */
.field--captcha label strong {
  color: var(--cyan); font-family: 'Sora', sans-serif; letter-spacing: .5px;
  padding: 1px 4px; border-radius: 5px; background: rgba(52,211,153,.08);
}
.consent {
  display: flex; align-items: flex-start; gap: 11px; margin: 4px 0 20px;
  font-size: .85rem; color: var(--muted); cursor: pointer; line-height: 1.5;
}
.consent input {
  flex: none; width: 18px; height: 18px; margin-top: 2px; accent-color: var(--teal); cursor: pointer;
}
.consent a { color: var(--cyan); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.consent a:hover { color: var(--mint, #5eead4); }

/* ===================================================================
   Footer links
   =================================================================== */
.footer__links { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 22px; margin: 4px 0; }
.footer__links a { color: var(--muted); font-size: .9rem; transition: color .2s; }
.footer__links a:hover { color: var(--cyan); }

/* ===================================================================
   Legal pages (privacy)
   =================================================================== */
.legal { max-width: 820px; margin: 0 auto; padding: 130px 24px 80px; }
.legal__back { display: inline-flex; align-items: center; gap: 7px; color: var(--cyan); font-weight: 500; font-size: .92rem; margin-bottom: 26px; }
.legal__back:hover { text-decoration: underline; }
.legal h1 { font-size: clamp(1.9rem, 4vw, 2.7rem); letter-spacing: -.5px; }
.legal .lead { color: var(--muted); margin-top: 12px; font-size: 1.05rem; }
.legal .updated { color: var(--faint); font-size: .85rem; margin-top: 8px; }
.legal h2 { font-size: 1.3rem; margin: 38px 0 12px; }
.legal p { color: var(--muted); margin-bottom: 12px; }
.legal ul { color: var(--muted); margin: 0 0 14px 20px; display: grid; gap: 8px; }
.legal a { color: var(--cyan); text-decoration: underline; text-underline-offset: 2px; }
.legal__box {
  margin-top: 18px; padding: 20px 24px; border-radius: 14px;
  background: var(--surface); border: 1px solid var(--border);
}
.legal__note { margin-top: 40px; font-size: .82rem; color: var(--faint); border-top: 1px solid var(--border); padding-top: 18px; }

/* ===================================================================
   Reveal animation
   =================================================================== */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.hero .reveal { transition-delay: .05s; }
.hero__title.reveal { transition-delay: .12s; }
.hero__lead.reveal { transition-delay: .2s; }
.hero__actions.reveal { transition-delay: .28s; }
.hero__stats.reveal { transition-delay: .36s; }

/* ===================================================================
   Responsive
   =================================================================== */
@media (max-width: 900px) {
  .about__inner { grid-template-columns: 1fr; gap: 44px; }
  .about__media { order: -1; }
  .why__grid, .bd__grid, .bd-pick__options, .contact__inner { grid-template-columns: 1fr; }
  .contact__inner { gap: 36px; }

  /* timeline goes single-side: spine on the left, all cards to the right */
  .flow::before, .flow::after { left: 27px; margin-left: 0; }
  .flow__item { grid-template-columns: 1fr; padding: 12px 0; }
  .flow__node { left: 27px; }
  .flow__card,
  .flow__item:nth-child(even) .flow__card {
    grid-column: 1; justify-self: stretch; max-width: none; margin: 0 0 0 66px;
  }
  .flow__card::after,
  .flow__item:nth-child(even) .flow__card::after { display: none; }
  /* all cards slide in from the same side on mobile */
  .flow__item:nth-child(odd).reveal,
  .flow__item:nth-child(even).reveal { transform: translateX(28px); }
  .flow__item:nth-child(odd).reveal.in,
  .flow__item:nth-child(even).reveal.in { transform: none; }
}

@media (max-width: 680px) {
  .nav {
    position: fixed; top: 74px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 4px; padding: 16px 24px 24px;
    background: rgba(255,255,255,.97); backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    transform: translateY(-130%); opacity: 0; pointer-events: none; transition: .35s ease;
  }
  .nav.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav__link { padding: 13px 14px; font-size: 1rem; }
  .nav__link::after { display: none; }
  .nav__cta { margin: 10px 0 0; }
  .nav-toggle { display: flex; }
  .section { padding: 76px 0; }
  .hero__stats { gap: 28px; }
  .contact__form { padding: 24px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ===================================================================
   Banderola e pëlqimit për cookie
   =================================================================== */
.cookie {
  position: fixed; left: 24px; bottom: 24px; z-index: 61; /* mbi butonin e WhatsApp derisa vizitori të zgjedhë */
  max-width: 380px; padding: 20px 22px; border-radius: var(--radius);
  background: var(--surface); border: 1px solid var(--border);
  box-shadow: 0 24px 48px -24px rgba(15,45,36,.45);
  animation: cookie-in .45s cubic-bezier(.2,.7,.2,1);
}
.cookie[hidden] { display: none; }
.cookie__text { font-size: .92rem; line-height: 1.55; color: var(--muted); margin-bottom: 14px; }
.cookie__text a { color: var(--cyan); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.cookie__actions { display: flex; gap: 10px; justify-content: flex-end; }
@keyframes cookie-in {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: none; }
}
@media (max-width: 680px) {
  .cookie { left: 0; right: 0; bottom: 0; max-width: none; border-radius: 18px 18px 0 0; padding: 18px 20px 20px; }
  .cookie__actions .btn { flex: 1; justify-content: center; }
}
