/* =========================================================
   infLAN — style.css
   Paleta wyciągnięta z ulotki:
   - granat/czerń:  #0a1620
   - niebieski:      #0b6fcb
   - niebieski jasny #75a7d7
   - tło:            #f7f8f9
   ========================================================= */

:root {
  --navy: #0a1620;
  --navy-2: #0f202d;
  --blue: #0b6fcb;
  --blue-dark: #075aa6;
  --blue-light: #75a7d7;
  --bg: #f7f8f9;
  --white: #ffffff;
  --text: #14222c;
  --text-muted: #5b6b76;
  --border: #e3e7ea;
  --radius: 10px;
  --shadow: 0 10px 30px rgba(10, 22, 32, 0.08);
  --shadow-lg: 0 20px 50px rgba(10, 22, 32, 0.18);
  --container: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
  overflow-x: hidden;
  width: 100%;
}

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

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

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

h1, h2, h3, h4 {
  font-family: "Poppins", "Segoe UI", Arial, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 .5em;
  letter-spacing: -0.01em;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--blue);
  display: inline-block;
}

.section {
  padding: 88px 0;
}
.section-head {
  max-width: 680px;
  margin-bottom: 48px;
}
.section-head p {
  color: var(--text-muted);
  font-size: 17px;
}
.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 12px 24px rgba(11, 111, 203, .35);
}
.btn-primary:hover { background: #0a5fae; }
.btn-outline {
  border-color: rgba(255,255,255,.35);
  color: var(--white);
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,.08); }
.btn-dark {
  background: var(--navy);
  color: var(--white);
}
.btn-dark:hover { background: #142a3a; }
.btn-block { width: 100%; justify-content: center; }

/* ---------- Top utility bar ---------- */
.topbar {
  background: var(--navy);
  color: #cfe0ec;
  font-size: 13.5px;
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 8px;
  padding-bottom: 8px;
  flex-wrap: wrap;
  gap: 6px;
}
.topbar-item { display: inline-flex; align-items: center; gap: 6px; }
.topbar-item svg { width: 14px; height: 14px; fill: var(--blue-light); flex-shrink: 0; }
.topbar-right { display: flex; gap: 22px; }
.topbar a:hover { color: var(--white); }
.todo-inline { color: #ffcf7d; font-style: italic; }
@media (max-width: 760px) { .topbar-right { display: none; } }

/* ---------- Header ---------- */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}
.logo img { height: 46px; }
nav.main-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}
nav.main-nav a {
  font-weight: 600;
  font-size: 15px;
  color: var(--text);
  position: relative;
  padding: 4px 0;
}
nav.main-nav a:hover { color: var(--blue); }
.header-cta {
  display: flex;
  align-items: center;
  gap: 18px;
}
.header-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 16px;
  color: var(--navy);
}
.header-phone .icon-circle {
  width: 38px; height: 38px;
}
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.menu-toggle svg { width: 26px; height: 26px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--navy);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 20px;
  min-height: 560px;
}
.hero-copy { padding: 60px 0; position: relative; z-index: 2; }
.hero-copy .eyebrow { color: var(--blue-light); }
.hero-copy h1 {
  color: var(--white);
  font-size: 46px;
  margin-bottom: 20px;
}
.hero-copy h1 span { color: var(--blue-light); }
.hero-copy p {
  color: #c7d4dd;
  font-size: 18px;
  max-width: 480px;
  margin-bottom: 32px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-media {
  position: relative;
  height: 100%;
  min-height: 460px;
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0% 100%);
}
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(10,22,32,.55), rgba(10,22,32,0) 55%);
}
.hero-accent-bar {
  position: absolute;
  left: 0; bottom: 0;
  width: 8px; height: 90px;
  background: linear-gradient(180deg, var(--blue-light), var(--blue));
}

.hero-stats {
  position: relative;
  z-index: 2;
  background: var(--navy-2);
  border-top: 1px solid rgba(255,255,255,.08);
}
.hero-stats .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}
.hero-stat {
  padding: 22px 10px;
  border-right: 1px solid rgba(255,255,255,.08);
}
.hero-stat:last-child { border-right: none; }
.hero-stat strong {
  display: block;
  font-size: 28px;
  color: var(--white);
  font-family: "Poppins", sans-serif;
}
.hero-stat span {
  font-size: 13px;
  color: #9fb3bf;
  letter-spacing: .03em;
}

/* ---------- Icon circle ---------- */
.icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--blue), #094f92);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 18px rgba(11,111,203,.35);
}
.icon-circle svg { width: 28px; height: 28px; fill: #fff; }

/* ---------- Services ---------- */
.services-list { display: flex; flex-direction: column; gap: 0; }
.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
}
.service-row:last-child { border-bottom: none; }
.service-row:nth-child(even) .service-media { order: 2; }
.service-row:nth-child(even) .service-copy { order: 1; }

.service-copy .icon-circle { margin-bottom: 20px; }
.service-copy h3 { font-size: 24px; }
.service-copy .tag {
  color: var(--blue);
  font-weight: 700;
  display: block;
  font-size: 15px;
  letter-spacing: .02em;
  margin-bottom: 4px;
}
.service-copy p { color: var(--text-muted); font-size: 16px; margin-bottom: 18px; }
.service-copy ul {
  list-style: none;
  margin: 0 0 8px;
  padding: 0;
  display: grid;
  gap: 8px;
}
.service-copy ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--text);
}
.service-copy ul li svg {
  width: 16px; height: 16px;
  fill: var(--blue);
  margin-top: 3px;
  flex-shrink: 0;
}

.tech-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.tech-chips span {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(11, 111, 203, .08);
  border: 1px solid rgba(11, 111, 203, .25);
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .01em;
  transition: transform .25s ease, background .25s ease, color .25s ease;
}
.tech-chips span:hover {
  background: var(--blue);
  color: #fff;
  transform: translateY(-2px);
}

.service-media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16/9;
  background: var(--navy);
  align-self: center;
}
.service-media img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
}
.service-media.gradient-tile {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy) 0%, #123650 55%, var(--blue) 130%);
}
.service-media.gradient-tile svg { width: 34%; height: 34%; fill: rgba(255,255,255,.9); }
.service-media .badge {
  position: absolute;
  bottom: 14px; left: 14px;
  background: rgba(10,22,32,.75);
  color: #fff;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .04em;
  padding: 7px 14px;
  border-radius: 999px;
  text-transform: uppercase;
}

/* ---------- Brands strip ---------- */
.brands {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}
.brands .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 46px;
  flex-wrap: wrap;
}
.brands span {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 19px;
  color: #9aa7ae;
  letter-spacing: .02em;
}
.brands span b { color: var(--navy); font-weight: 800; }

/* ---------- Why us (dark strip, like flyer) ---------- */
.why {
  background: var(--navy);
  color: var(--white);
  position: relative;
}
.why .section-head p { color: #aebfc9; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.why-item { text-align: left; }
.why-item .icon-circle {
  background: transparent;
  border: 2px solid var(--blue-light);
  box-shadow: none;
  margin-bottom: 18px;
}
.why-item .icon-circle svg { fill: var(--blue-light); }
.why-item h4 { color: var(--white); font-size: 18px; margin-bottom: 8px; }
.why-item p { color: #a9bac4; font-size: 14.5px; margin: 0; }

/* ---------- About ---------- */
.about {
  background: var(--white);
}
.about-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 60px;
  align-items: center;
}
.about-media {
  position: relative;
}
.about-media .frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  clip-path: polygon(0 0, 100% 0, 100% 88%, 88% 100%, 0 100%);
}
.about-media img { width: 100%; }
.about-copy p { color: var(--text-muted); font-size: 16.5px; }
.about-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 28px;
  display: grid;
  gap: 14px;
}
.about-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 15.5px;
}
.about-list li .check {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(11,111,203,.12);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.about-list li .check svg { width: 14px; height: 14px; fill: var(--blue); }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: linear-gradient(120deg, var(--blue) 0%, #094f92 100%);
  color: var(--white);
}
.cta-banner .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 46px 24px;
  flex-wrap: wrap;
}
.cta-left { display: flex; align-items: center; gap: 18px; }
.cta-left .icon-circle { background: rgba(255,255,255,.18); box-shadow: none; }
.cta-left .icon-circle svg { fill: #fff; }
.cta-left h3 { color: #fff; margin: 0; font-size: 22px; }
.cta-left p { margin: 4px 0 0; color: #dceaf6; font-size: 15px; }
.cta-right { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.cta-phone { color: #fff; font-size: 26px; font-weight: 800; font-family: "Poppins", sans-serif; }
.cta-phone small { display: block; font-size: 12.5px; font-weight: 600; color: #dceaf6; letter-spacing: .05em; text-transform: uppercase; }

/* ---------- Contact ---------- */
.contact { background: var(--bg); }
.contact-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 48px;
}
.contact-info-card {
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius);
  padding: 40px 32px;
}
.contact-info-card h3 { color: #fff; }
.contact-info-card p { color: #aebfc9; margin-bottom: 26px; font-size: 15px;}
.contact-detail {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 22px;
}
.contact-detail .icon-circle { width: 44px; height: 44px; }
.contact-detail .icon-circle svg { width: 20px; height: 20px; }
.contact-detail strong { display: block; font-size: 15px; margin-bottom: 2px; }
.contact-detail span, .contact-detail a { color: #cfe0ec; font-size: 14.5px; }
.contact-detail .todo {
  color: #ffcf7d;
  font-style: italic;
}
.social-row { display: flex; gap: 10px; margin-top: 8px; }
.social-row a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,.18);
}
.social-row a svg { width: 17px; height: 17px; fill: #cfe0ec; }
.social-row a:hover { background: var(--blue); border-color: var(--blue); }

.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 32px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: 13.5px;
  font-weight: 700;
  margin-bottom: 7px;
  color: var(--navy);
}
.field input, .field textarea, .field select {
  width: 100%;
  padding: 13px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
  color: var(--text);
  background: #fbfcfd;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--blue);
  background: #fff;
}
.field textarea { resize: vertical; min-height: 110px; }
.form-note { font-size: 13px; color: var(--text-muted); margin-top: 14px; }
.form-success {
  display: none;
  background: #e7f6ec;
  color: #1f7a3f;
  padding: 14px 16px;
  border-radius: 8px;
  font-size: 14.5px;
  font-weight: 600;
  margin-bottom: 18px;
}
.form-error {
  background: #fdecec;
  color: #b02a2a;
  padding: 14px 16px;
  border-radius: 8px;
  font-size: 14.5px;
  font-weight: 600;
  margin-bottom: 18px;
}
.form-error a { color: #b02a2a; text-decoration: underline; }
.btn-block[disabled] { opacity: 0.7; cursor: not-allowed; }
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  overflow: hidden;
}

/* ---------- Coverage note ---------- */
.coverage-note {
  background: #fff8e8;
  border: 1px dashed #e8c675;
  color: #7a5b12;
  font-size: 13.5px;
  padding: 10px 14px;
  border-radius: 8px;
  margin-top: 10px;
}

/* ---------- Footer ---------- */
footer {
  background: var(--navy);
  color: #a9bac4;
  padding-top: 64px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand img { height: 42px; margin-bottom: 16px; }
.footer-brand p { font-size: 14.5px; line-height: 1.7; max-width: 280px; }
footer h5 {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  margin-bottom: 18px;
  letter-spacing: .02em;
}
footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 11px; }
footer ul a { font-size: 14.5px; color: #a9bac4; }
footer ul a:hover { color: var(--blue-light); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  font-size: 13px;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom a:hover { color: var(--blue-light); }

/* ---------- Floating call button (mobile) ---------- */
.float-call {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 200;
  background: var(--blue);
  color: #fff;
  width: 58px; height: 58px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 30px rgba(11,111,203,.45);
}
.float-call svg { width: 26px; height: 26px; fill: #fff; }

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .hero-grid { grid-template-columns: 1fr; min-height: unset; }
  .hero-media { clip-path: none; min-height: 320px; order: -1; }
  .hero-copy { padding: 40px 0; }
  .hero-copy h1 { font-size: 34px; }
  .hero-stats .container { grid-template-columns: repeat(2,1fr); }
  .hero-stat:nth-child(2) { border-right: none; }
  .why-grid { grid-template-columns: repeat(2,1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .about-media { order: -1; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  nav.main-nav { display: none; }
  .menu-toggle { display: inline-flex; }
  .header-phone span.label { display: none; }
  .service-row { grid-template-columns: 1fr; gap: 24px; padding: 32px 0; }
  .service-row:nth-child(even) .service-media,
  .service-row:nth-child(even) .service-copy { order: initial; }
  .service-media { order: -1 !important; }
  .why-grid { grid-template-columns: 1fr; }
  .cta-banner .container { flex-direction: column; text-align: center; }
  .cta-left { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .float-call { display: flex; }
  .section { padding: 60px 0; }
  .hero-copy h1 { font-size: 28px; }
}

nav.main-nav.open {
  display: flex;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  flex-direction: column;
  padding: 18px 24px 26px;
  gap: 16px;
  box-shadow: var(--shadow);
  border-bottom: 1px solid var(--border);
}

/* =========================================================
   ANIMACJE — scroll reveal, hover, licznik, marquee, itd.
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---- Scroll reveal ---- */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s cubic-bezier(.21,.6,.35,1), transform .7s cubic-bezier(.21,.6,.35,1);
  will-change: opacity, transform;
}
[data-reveal="left"]  { transform: translate(-40px, 0); }
[data-reveal="right"] { transform: translate(40px, 0); }
[data-reveal="scale"] { transform: scale(.92); }
[data-reveal="zoom"]  { transform: scale(1.08); }
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* Stagger helper: set inline style="--rd: 2" on children for a 90ms*n delay */
[data-reveal] { transition-delay: calc(var(--rd, 0) * 90ms); }

/* ---- Sticky header shrink on scroll ---- */
header.site-header {
  transition: box-shadow .3s ease, padding .3s ease;
}
header.site-header.is-scrolled {
  box-shadow: 0 8px 24px rgba(10,22,32,.08);
}
header.site-header.is-scrolled .nav-wrap { padding: 8px 0; }
header.site-header .nav-wrap,
header.site-header .logo img {
  transition: padding .25s ease, height .25s ease;
}
header.site-header.is-scrolled .logo img { height: 38px; }

/* Topbar collapse on scroll (feels like it tucks away) */
.topbar { transition: margin-top .3s ease, opacity .3s ease; overflow: hidden; }
.topbar.is-hidden { margin-top: -40px; opacity: 0; }

/* ---- Hero background motion ---- */
.hero { position: relative; }
.hero::before, .hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: .35;
  pointer-events: none;
  z-index: 0;
}
.hero::before {
  width: 380px; height: 380px;
  background: radial-gradient(circle, var(--blue) 0%, transparent 70%);
  top: -120px; left: 20%;
  animation: floatBlob 12s ease-in-out infinite;
}
.hero::after {
  width: 300px; height: 300px;
  background: radial-gradient(circle, var(--blue-light) 0%, transparent 70%);
  bottom: -80px; right: 8%;
  animation: floatBlob 15s ease-in-out infinite reverse;
}
@keyframes floatBlob {
  0%, 100% { transform: translate(0,0) scale(1); }
  33%      { transform: translate(30px,-20px) scale(1.08); }
  66%      { transform: translate(-20px,15px) scale(.95); }
}
.hero-grid, .hero-stats { position: relative; z-index: 1; }

.hero-copy h1 {
  animation: heroFadeUp .8s cubic-bezier(.21,.6,.35,1) both;
}
.hero-copy .eyebrow { animation: heroFadeUp .6s cubic-bezier(.21,.6,.35,1) both; }
.hero-copy p { animation: heroFadeUp .8s cubic-bezier(.21,.6,.35,1) .1s both; }
.hero-actions { animation: heroFadeUp .8s cubic-bezier(.21,.6,.35,1) .2s both; }
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-media {
  animation: heroFadeIn 1s ease .15s both;
  transition: transform .2s ease;
}
@keyframes heroFadeIn {
  from { opacity: 0; transform: scale(1.06); }
  to   { opacity: 1; transform: scale(1); }
}
.hero-media img { transition: transform .6s cubic-bezier(.21,.6,.35,1); }
.hero-media:hover img { transform: scale(1.05); }

.hero-accent-bar {
  animation: growBar 1s cubic-bezier(.21,.8,.3,1) .5s both;
  transform-origin: bottom;
}
@keyframes growBar {
  from { transform: scaleY(0); }
  to   { transform: scaleY(1); }
}

/* ---- Animated counters ---- */
.hero-stat strong { display: block; }
.hero-stat { transition: transform .3s ease; }
.hero-stat:hover { transform: translateY(-4px); }

/* ---- Nav underline sweep ---- */
nav.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%; height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
nav.main-nav a:hover::after,
nav.main-nav a.active::after { transform: scaleX(1); }
nav.main-nav a.active { color: var(--blue); }

/* ---- Buttons: shine sweep + press ---- */
.btn { position: relative; overflow: hidden; }
.btn::before {
  content: "";
  position: absolute;
  top: 0; left: -60%;
  width: 40%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.35), transparent);
  transform: skewX(-20deg);
  transition: left .5s ease;
}
.btn:hover::before { left: 130%; }
.btn:active { transform: scale(.97); }

.header-phone .icon-circle,
.cta-left .icon-circle,
.contact-detail .icon-circle {
  transition: transform .35s cubic-bezier(.34,1.56,.64,1);
}
.header-phone:hover .icon-circle,
.contact-detail:hover .icon-circle { transform: rotate(-12deg) scale(1.08); }

/* ---- Service rows hover ---- */
.service-media { transition: transform .4s ease, box-shadow .4s ease; }
.service-row:hover .service-media { transform: translateY(-6px); box-shadow: 0 26px 55px rgba(10,22,32,.22); }
.service-media img { transition: transform .6s cubic-bezier(.21,.6,.35,1); }
.service-row:hover .service-media img { transform: scale(1.08); }
.service-media.gradient-tile svg { transition: transform .6s ease; }
.service-row:hover .service-media.gradient-tile svg { transform: scale(1.1) rotate(4deg); }
.service-media .badge { transition: transform .3s ease, background .3s ease; }
.service-row:hover .badge { background: var(--blue); }

.service-copy .icon-circle { transition: transform .4s cubic-bezier(.34,1.56,.64,1), box-shadow .4s ease; }
.service-row:hover .service-copy .icon-circle { transform: rotate(-8deg) scale(1.1); box-shadow: 0 14px 26px rgba(11,111,203,.45); }

.service-copy ul li { transition: transform .25s ease; }
.service-copy ul li:hover { transform: translateX(4px); }
.service-copy ul li svg { transition: transform .3s ease; }
.service-copy ul li:hover svg { transform: scale(1.25); }

/* ---- Why grid hover ---- */
.why-item { transition: transform .35s ease; }
.why-item:hover { transform: translateY(-6px); }
.why-item .icon-circle { transition: transform .4s cubic-bezier(.34,1.56,.64,1), background .3s ease, border-color .3s ease; }
.why-item:hover .icon-circle { transform: scale(1.1) rotate(6deg); background: var(--blue-light); border-color: var(--blue-light); }
.why-item:hover .icon-circle svg { fill: var(--navy); }

/* ---- About list stagger reveal + check pop ---- */
.about-list li .check { transition: transform .3s cubic-bezier(.34,1.56,.64,1); }
.about-list li:hover .check { transform: scale(1.2) rotate(8deg); }
.about-media .frame { transition: transform .5s ease, box-shadow .5s ease; }
.about-media:hover .frame { transform: translateY(-6px); box-shadow: 0 30px 60px rgba(10,22,32,.24); }

/* ---- CTA banner pulse ---- */
.cta-left .icon-circle { position: relative; }
.cta-left .icon-circle::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.55);
  animation: pulseRing 2.2s ease-out infinite;
}
@keyframes pulseRing {
  0%   { transform: scale(.8); opacity: .8; }
  80%  { transform: scale(1.5); opacity: 0; }
  100% { transform: scale(1.5); opacity: 0; }
}
.cta-phone { transition: transform .3s ease; display: inline-block; }
.cta-phone:hover { transform: translateY(-2px) scale(1.03); }

/* ---- Brands marquee ---- */
.brands { overflow: hidden; }
.brands .marquee-track {
  display: flex;
  align-items: center;
  gap: 46px;
  width: max-content;
  animation: marquee 22s linear infinite;
}
.brands:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.brands span { transition: color .3s ease, transform .3s ease; }
.brands span:hover { color: var(--blue); transform: translateY(-2px); }

/* ---- Floating call button pulse ---- */
.float-call {
  animation: floatPulse 2.6s ease-in-out infinite;
}
.float-call::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--blue);
  animation: pulseRing 2.6s ease-out infinite;
  z-index: -1;
}
@keyframes floatPulse {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-4px); }
}

/* ---- Back to top button ---- */
.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 90px;
  z-index: 199;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--navy);
  border: 1px solid rgba(255,255,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity .3s ease, transform .3s ease, background .3s ease;
}
.back-to-top.is-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.back-to-top:hover { background: var(--blue); }
.back-to-top svg { width: 18px; height: 18px; fill: #fff; transition: transform .3s ease; }
.back-to-top:hover svg { transform: translateY(-2px); }

@media (max-width: 760px) {
  .back-to-top { right: 16px; bottom: 84px; width: 42px; height: 42px; }
  .hero::before, .hero::after { display: none; }
}

