/* ====== DevOps by Vruta - navy & cyan ====== */
:root {
  --ink: #0b1f3a;
  --ink-soft: #1b3a5f;
  --paper: #ffffff;
  --muted: #5b6b7d;
  --line: #e2e8f0;
  --line-strong: #0b1f3a;
  --soft: #f4f8fb;
  --accent: #00b4d8;
  --accent-dark: #0090ad;
  --radius: 6px;
  --max: 1100px;
  --mono: "SF Mono", "Cascadia Code", "JetBrains Mono", "Consolas", ui-monospace, monospace;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 84px; }
main > section[id] { scroll-margin-top: 84px; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip; /* guard against sideways scroll from decorative glows */
}
img, svg { max-width: 100%; }

.container { width: 90%; max-width: var(--max); margin: 0 auto; }

a { color: var(--ink); }

h1, h2, h3 { line-height: 1.15; letter-spacing: -0.025em; margin: 0 0 .5em; }
h1 { font-size: clamp(2.1rem, 5.2vw, 3.6rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); font-weight: 800; }
h3 { font-size: 1.15rem; font-weight: 700; }

/* Section label / kicker */
.kicker {
  text-transform: uppercase; letter-spacing: .16em; font-size: .75rem;
  font-weight: 700; color: var(--accent); margin: 0 0 .7rem;
}

/* ====== Header / Nav ====== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.brand { font-weight: 800; font-size: 1.15rem; text-decoration: none; letter-spacing: -0.03em; color: var(--ink); }
.brand-accent { font-weight: 400; color: var(--accent); margin: 0 1px; }
.nav-links { display: flex; align-items: center; gap: 1.7rem; }
.nav-links a:not(.nav-cta) {
  position: relative; text-decoration: none; font-size: .95rem; color: var(--muted);
  font-weight: 500; transition: color .15s;
}
.nav-links a:not(.nav-cta)::after {
  content: ""; position: absolute; left: 0; bottom: -5px; width: 0; height: 2px;
  background: var(--accent); border-radius: 2px; transition: width .2s ease;
}
.nav-links a:not(.nav-cta):hover,
.nav-links a:not(.nav-cta).active { color: var(--ink); }
.nav-links a:not(.nav-cta):hover::after,
.nav-links a:not(.nav-cta).active::after { width: 100%; }
.nav-cta {
  background: var(--ink); color: #fff !important; border: 0;
  padding: .55rem 1.25rem; border-radius: 100px; font-weight: 600; margin-left: .5rem;
  text-align: center;
  transition: background .15s ease, transform .15s ease, box-shadow .15s ease;
}
.nav-cta::after { display: none; }
.nav-cta:hover { background: var(--accent); transform: translateY(-1px); box-shadow: 0 8px 18px rgba(0,180,216,.3); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); display: block; transition: .2s; }

/* ====== Buttons ====== */
.btn {
  display: inline-block; text-decoration: none; font-weight: 600;
  padding: .8rem 1.5rem; border-radius: var(--radius);
  border: 1px solid var(--line-strong); transition: all .15s; cursor: pointer;
}
.btn-ico { width: 18px; height: 18px; vertical-align: -4px; margin-right: 8px; }
.btn-primary { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.btn-primary:hover { background: var(--accent); border-color: var(--accent); }
.btn-outline { background: var(--paper); color: var(--ink); border-color: var(--accent); }
.btn-outline:hover { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn-ghost { border-color: var(--line); color: var(--muted); }
.btn-ghost:hover { border-color: var(--ink); color: var(--ink); }
.btn-primary:hover, .btn-outline:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,180,216,.25); }

/* ====== Hero ====== */
.hero {
  position: relative; overflow: hidden;
  padding: clamp(3.5rem, 9vw, 7rem) 0 clamp(3rem, 6vw, 5rem);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(160deg, #eef6fb 0%, #ffffff 62%);
}
.hero::before {
  content: ""; position: absolute; top: -160px; right: -120px;
  width: 520px; height: 520px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,180,216,.18), rgba(0,180,216,0) 70%);
  pointer-events: none;
}
.hero .container { position: relative; }

/* Two-column hero */
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 3rem; align-items: center; }
.hero-copy { min-width: 0; }

/* Terminal mockup */
.hero-visual { position: relative; }
.terminal {
  background: #0a1626; border: 1px solid rgba(255,255,255,.09);
  border-radius: 12px; overflow: hidden;
  box-shadow: 0 30px 70px rgba(11,31,58,.40);
}
.term-bar {
  display: flex; align-items: center; gap: 7px;
  padding: .7rem 1rem; background: #0e1f37; border-bottom: 1px solid rgba(255,255,255,.06);
}
.term-bar > span { width: 11px; height: 11px; border-radius: 50%; background: #3a4a5e; }
.term-bar > span:nth-child(1) { background: #ff5f56; }
.term-bar > span:nth-child(2) { background: #ffbd2e; }
.term-bar > span:nth-child(3) { background: #27c93f; }
.term-bar em { margin-left: auto; color: #6b7e95; font-style: normal; font-size: .78rem; font-family: var(--mono); }
.term-body {
  margin: 0; padding: 1.3rem 1.4rem; color: #cdd9e5;
  font-family: var(--mono); font-size: .9rem; line-height: 1.85;
  overflow-x: auto;
}
.term-body .tl {
  display: block; white-space: pre;
  opacity: 0; transform: translateY(4px);
  animation: termln .35s ease forwards;
}
.tl-gap { margin-top: 1.1rem; }
.term-body .tl:nth-child(1) { animation-delay: .35s; }
.term-body .tl:nth-child(2) { animation-delay: .85s; }
.term-body .tl:nth-child(3) { animation-delay: 1.30s; }
.term-body .tl:nth-child(4) { animation-delay: 1.75s; }
.term-body .tl:nth-child(5) { animation-delay: 2.20s; }
.term-body .tl:nth-child(6) { animation-delay: 2.65s; }
.term-body .tl:nth-child(7) { animation-delay: 3.20s; }
@keyframes termln { to { opacity: 1; transform: none; } }
.c-prompt { color: var(--accent); font-weight: 700; }
.c-cmd { color: #fff; }
.c-dim { color: #5b6b7d; }
.c-ok { color: #27c93f; font-weight: 700; }
.cursor { color: var(--accent); animation: blink 1.1s steps(1) infinite; }
@keyframes blink { 50% { opacity: 0; } }

/* Floating stat chip on the terminal */
.float-stat {
  position: absolute; bottom: -22px; left: -18px;
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
  padding: .7rem 1rem; box-shadow: 0 16px 40px rgba(11,31,58,.16);
  display: flex; flex-direction: column; line-height: 1.15;
}
.float-stat strong { font-size: 1.35rem; color: var(--accent-dark); }
.float-stat span { font-size: .78rem; color: var(--muted); }

.eyebrow { text-transform: uppercase; letter-spacing: .15em; font-size: .8rem; color: var(--accent); font-weight: 700; margin: 0 0 1rem; }
.lede { font-size: clamp(1.05rem, 2vw, 1.3rem); color: var(--muted); max-width: 720px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: .55rem;
  background: #fff; border: 1px solid var(--line); border-radius: 100px;
  padding: .4rem .9rem; font-size: .85rem; font-weight: 600; margin-bottom: 1.3rem;
  box-shadow: 0 4px 14px rgba(11,31,58,.06);
}
.hero-badge .b-stars { color: #f5a623; letter-spacing: 1px; }
.hero-badge span:last-child { color: var(--muted); font-weight: 500; }
.hero-badge strong { color: var(--ink); font-weight: 700; }
.hl {
  position: relative; white-space: nowrap;
  background: linear-gradient(transparent 62%, rgba(0,180,216,.30) 0);
}
.hero-actions { display: flex; align-items: center; gap: 1.6rem; flex-wrap: wrap; margin: 2.2rem 0 1.2rem; }
.btn-hero {
  display: inline-flex; align-items: center; gap: .55rem;
  background: var(--ink); color: #fff; text-decoration: none; font-weight: 600; font-size: 1rem;
  padding: .95rem 1.8rem; border-radius: 100px;
  box-shadow: 0 12px 26px rgba(11,31,58,.22);
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn-hero svg { width: 18px; height: 18px; }
.btn-hero .ar { transition: transform .15s ease; }
.btn-hero:hover { background: var(--accent); transform: translateY(-2px); box-shadow: 0 16px 32px rgba(0,180,216,.32); }
.btn-hero:hover .ar { transform: translateX(4px); }
.hero-link {
  display: inline-flex; align-items: center; gap: .45rem;
  color: var(--ink); font-weight: 600; font-size: 1rem; text-decoration: none;
  transition: color .15s ease;
}
.hero-link .ar { color: var(--accent); transition: transform .15s ease; }
.hero-link:hover { color: var(--accent-dark); }
.hero-link:hover .ar { transform: translateX(4px); }
.hero-trust { font-size: .9rem; color: var(--muted); margin: 0 0 2rem; }
.hero-tags { list-style: none; display: flex; flex-wrap: wrap; gap: .6rem; padding: 0; margin: 0; }
.hero-tags li {
  font-size: .78rem; border: 1px solid var(--line); padding: .3rem .8rem;
  border-radius: 100px; color: var(--ink); background: #fff; font-weight: 500;
  font-family: var(--mono);
}

/* ====== Stats band ====== */
.stats-band { background: var(--ink); color: #fff; padding: 2.4rem 0; }
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; text-align: center; }
.stat { display: flex; flex-direction: column; align-items: center; position: relative; }
.stat + .stat::before {
  content: ""; position: absolute; left: 0; top: 12%; height: 76%;
  border-left: 1px solid rgba(255,255,255,.10);
}
.stat-ic { color: var(--accent); margin-bottom: .5rem; display: inline-flex; }
.stat-ic svg { width: 26px; height: 26px; }
.stat strong { font-size: clamp(1.8rem, 4vw, 2.3rem); font-weight: 800; line-height: 1; }
.stat-lbl { color: #9fb2c6; font-size: .85rem; margin-top: .35rem; }

/* ====== Tech logos (static grid) ====== */
.logos-band { padding: 2.8rem 0; text-align: center; border-bottom: 1px solid var(--line); }
.logos-title {
  text-transform: uppercase; letter-spacing: .14em; font-size: .76rem;
  font-weight: 700; color: var(--muted); margin: 0 0 2rem;
}
.logos-rotator { overflow: hidden; max-width: 640px; margin: 0 auto; }
.logos-track { display: flex; transition: transform .45s ease; }
.logos-slide {
  flex: 0 0 100%;
  display: grid; grid-template-columns: repeat(4, 1fr); align-items: center; justify-items: center; gap: 1.5rem;
}
.logos-slide img, .logos-slide .logo-aws {
  height: 42px; width: auto; transition: transform .2s ease;
}
.logos-slide .logo-aws svg { height: 42px; width: auto; display: block; }
.logos-slide img:hover, .logos-slide .logo-aws:hover { transform: translateY(-3px) scale(1.05); }
/* Logo name tooltip (on hover) */
.logo-tip {
  position: fixed; z-index: 80; transform: translate(-50%, -100%);
  background: var(--ink); color: #fff; font-size: .78rem; font-weight: 600;
  padding: .35rem .7rem; border-radius: 6px; white-space: nowrap;
  pointer-events: none; opacity: 0; transition: opacity .15s ease;
  box-shadow: 0 6px 18px rgba(11,31,58,.25);
}
.logo-tip::after {
  content: ""; position: absolute; left: 50%; top: 100%; transform: translateX(-50%);
  border: 5px solid transparent; border-top-color: var(--ink);
}
.logo-tip.show { opacity: 1; }
@media (max-width: 500px) {
  .logos-slide { gap: .8rem; }
  .logos-slide img, .logos-slide .logo-aws, .logos-slide .logo-aws svg { height: 32px; }
}
@media (prefers-reduced-motion: reduce) {
  .logos-track { flex-wrap: wrap; transform: none !important; gap: 1.6rem 0; }
  .logos-slide { flex: 0 0 100%; }
}

/* ====== Sections ====== */
.section { padding: clamp(3rem, 7vw, 5.5rem) 0; }
.section-alt { background: var(--soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-head { max-width: 640px; margin-bottom: 2.5rem; }
.section-head p { color: var(--muted); margin: 0; }

/* ====== Grid + cards ====== */
.grid { display: grid; gap: 1.25rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.card {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.6rem;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.card p { color: var(--muted); margin: 0; }
.card h3 { margin-bottom: .5rem; }
.card:not(.price-card):hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 34px rgba(11,31,58,.10);
  border-color: rgba(0,180,216,.4);
}

/* ====== Services - clean icon grid ====== */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.8rem 2.6rem; }
.svc-card { }
.svc-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 14px;
  background: linear-gradient(150deg, #0b1f3a 0%, #1d3f66 100%); color: var(--accent);
  box-shadow: 0 10px 22px rgba(11,31,58,.18);
  margin-bottom: 1.1rem; transition: transform .2s ease, box-shadow .2s ease;
}
.svc-icon svg { width: 25px; height: 25px; }
.svc-card:hover .svc-icon { transform: translateY(-3px); box-shadow: 0 14px 28px rgba(0,180,216,.30); }
.svc-card h3 { font-size: 1.12rem; margin: 0 0 .45rem; }
.svc-card p { color: var(--muted); margin: 0; font-size: .96rem; line-height: 1.55; }

/* Price cards */
.price-card { display: flex; flex-direction: column; position: relative; }
.pkg-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 12px;
  background: rgba(0,180,216,.10); color: var(--accent-dark); margin-bottom: 1rem;
}
.pkg-icon svg { width: 24px; height: 24px; }
.price-card .price { font-weight: 700; color: var(--ink); margin: 0 0 .5rem; font-size: 1.05rem; }
.pkg-for { color: var(--muted); font-size: .9rem; margin: 0 0 1.2rem; min-height: 2.4em; }
.price-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 34px rgba(11,31,58,.10);
  border-color: rgba(0,180,216,.4);
}
.price-card.featured {
  border-color: var(--accent); border-width: 2px;
  box-shadow: 0 14px 40px rgba(0,180,216,.18);
  background: linear-gradient(180deg, #f6fcfe 0%, #ffffff 40%);
}
.price-card.featured:hover { transform: translateY(-6px); box-shadow: 0 22px 50px rgba(0,180,216,.24); }
.price-card.featured .pkg-icon { background: var(--ink); color: var(--accent); }
.badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #fff;
  font-size: .72rem; font-weight: 700; padding: .3rem .9rem; border-radius: 100px;
  text-transform: uppercase; letter-spacing: .08em; white-space: nowrap;
  box-shadow: 0 6px 16px rgba(0,180,216,.35);
}
/* Compact the 4-up package cards */
.pkg-grid .price-card { padding: 1.4rem 1.3rem; }
.pkg-grid .pkg-icon { width: 42px; height: 42px; margin-bottom: .7rem; }
.pkg-grid .pkg-icon svg { width: 22px; height: 22px; }
.pkg-grid .price-card h3 { margin-bottom: .15rem; }
.pkg-grid .price { font-size: 1rem; margin-bottom: .35rem; }
.pkg-grid .pkg-for { min-height: 0; margin-bottom: .9rem; font-size: .86rem; }
.pkg-grid .features { margin-bottom: 1.1rem; }
.pkg-grid .features li { padding: .32rem 0 .32rem 1.3rem; font-size: .9rem; }
.pkg-grid .btn { padding: .65rem 1.2rem; font-size: .92rem; }
.price-card .btn { text-align: center; }

/* Custom (dark) package card */
.pkg-custom {
  background: linear-gradient(160deg, #0b1f3a 0%, #14345c 100%);
  border-color: rgba(255,255,255,.08); color: #fff;
}
.pkg-custom h3, .pkg-custom .price { color: #fff; }
.pkg-custom .pkg-for { color: #c3d0de; }
.pkg-custom .pkg-icon { background: rgba(0,180,216,.18); color: var(--accent); }
.pkg-custom .features li { color: #c3d0de; border-bottom-color: rgba(255,255,255,.10); }
.pkg-custom .features li::before { color: var(--accent); }
.pkg-custom .btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.pkg-custom .btn-outline:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.pkg-custom:hover { border-color: rgba(0,180,216,.5); }

.features { list-style: none; padding: 0; margin: 0 0 1.6rem; flex: 1; }
.features li { padding: .45rem 0 .45rem 1.4rem; position: relative; color: var(--muted); border-bottom: 1px solid var(--line); }
.features li:last-child { border-bottom: 0; }
.features li::before { content: "→"; position: absolute; left: 0; color: var(--accent); font-weight: 700; }
.note { text-align: center; color: var(--muted); margin-top: 2rem; font-size: .95rem; }
.note a { color: var(--accent-dark); }

/* Case studies / tags */
.case .tags { margin-top: 1rem; font-size: .78rem; color: var(--accent-dark); font-weight: 600; font-family: var(--mono); }

/* ====== Portfolio explorer (master-detail) ====== */
.pf-explorer {
  display: grid; grid-template-columns: minmax(230px, 320px) 1fr;
  background: #fff; border: 1px solid var(--line); border-radius: 18px;
  overflow: hidden; box-shadow: 0 24px 60px rgba(11,31,58,.12);
}
.pf-list {
  display: flex; flex-direction: column; gap: .25rem; padding: .7rem;
  background: var(--soft); border-right: 1px solid var(--line);
}
.pf-detail { display: flex; }
.pf-list-foot {
  margin-top: auto; padding: 1rem .85rem .5rem;
  font-size: .8rem; color: var(--muted); display: flex; align-items: center; gap: .55rem;
}
.avail-dot {
  width: 8px; height: 8px; border-radius: 50%; background: #27c93f;
  box-shadow: 0 0 0 3px rgba(39,201,51,.18);
}
/* On desktop, let the list set the box height and the panel scroll inside it
   so the navy box always ends level with the last project tile. */
@media (min-width: 821px) {
  .pf-detail { position: relative; }
  .pf-panel { position: absolute; inset: 0; overflow-y: auto; min-height: 0; }
}
.pf-tile {
  display: flex; align-items: center; gap: .7rem; text-align: left; width: 100%;
  background: transparent; border: 1px solid transparent; border-radius: 10px;
  padding: .7rem .85rem; cursor: pointer; font: inherit; color: var(--muted);
  transition: background .15s, color .15s, box-shadow .15s, border-color .15s;
}
.pf-tile:hover { background: #fff; color: var(--ink); }
.pf-tile.is-active { background: #fff; border-color: rgba(0,180,216,.5); color: var(--ink); box-shadow: 0 4px 14px rgba(0,180,216,.12); }
.pf-num { font-family: var(--mono); font-size: .74rem; color: var(--accent-dark); font-weight: 700; }
.pf-name { flex: 1; font-weight: 600; font-size: .92rem; line-height: 1.3; }
.pf-arr { color: var(--accent); opacity: 0; transform: translateX(-4px); transition: .15s; }
.pf-tile:hover .pf-arr, .pf-tile.is-active .pf-arr { opacity: 1; transform: none; }

.pf-panel {
  position: relative; overflow: hidden; flex: 1; width: 100%; min-height: 360px;
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(2rem, 4vw, 3.4rem);
  background:
    radial-gradient(circle at 90% 12%, rgba(0,180,216,.22), transparent 45%),
    linear-gradient(160deg, #0b1f3a 0%, #122c4d 100%);
  color: #fff;
}
.pf-panel::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background-image: radial-gradient(rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 22px 22px; pointer-events: none;
}
.pf-panel::after {
  content: attr(data-num); position: absolute; right: 1.4rem; bottom: 1rem; z-index: 0;
  font-family: var(--mono); font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight: 800; line-height: 1;
  color: rgba(255,255,255,.07); pointer-events: none;
}
.pf-panel > * { position: relative; z-index: 1; }
.pf-panel[hidden] { display: none; }
.pf-panel.is-active { animation: pfin .4s ease; }
@keyframes pfin { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
.pf-cat {
  align-self: flex-start; font-family: var(--mono); font-size: .7rem; text-transform: uppercase;
  letter-spacing: .12em; color: var(--accent); background: rgba(0,180,216,.14);
  padding: .35rem .8rem; border-radius: 100px; margin-bottom: 1.1rem;
}
.pf-panel h3 { color: #fff; font-size: clamp(1.5rem, 2.6vw, 1.9rem); margin-bottom: .8rem; }
.pf-panel > p { color: #d3deea; font-size: 1.1rem; margin: 0; max-width: 46ch; }
.pf-panel .tags { color: var(--accent); font-family: var(--mono); font-size: .82rem; font-weight: 600; margin: 1.4rem 0 0; }
.pf-link {
  align-self: flex-start; margin-top: 1.8rem; color: #fff; font-weight: 600; text-decoration: none;
  border-bottom: 2px solid var(--accent); padding-bottom: 3px; transition: color .15s;
}
.pf-link:hover { color: var(--accent); }
/* Highlighted keywords inside a panel */
.pf-panel .k { color: #fff; font-weight: 600; }
/* Custom-work CTA button */
.pf-cta {
  align-self: flex-start; margin-top: 1.9rem; display: inline-block;
  background: var(--accent); color: #fff; text-decoration: none; font-weight: 600;
  padding: .8rem 1.6rem; border-radius: 8px;
  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
}
.pf-cta:hover { filter: brightness(1.07); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(0,180,216,.35); }

/* Custom-project form (drag & drop) */
.pf-form { display: flex; flex-direction: column; gap: .8rem; margin-top: 1.3rem; max-width: 460px; }
.pf-panel-custom { justify-content: flex-start; padding: 1.8rem 2rem; }
.pf-panel-custom h3 { font-size: 1.4rem; margin-bottom: .45rem; }
.pf-panel-custom > p { font-size: .95rem; margin-bottom: .2rem; }
.pf-panel-custom .builder { margin-top: 0; max-width: none; }
.pf-panel-custom .pf-cat { margin-bottom: .8rem; }
.custom-cols { display: grid; grid-template-columns: 1fr 190px; gap: 2.2rem; align-items: start; margin-top: .9rem; }
.custom-aside { border-left: 1px solid rgba(255,255,255,.10); padding-left: 1.6rem; }
.aside-title { font-family: var(--mono); font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; color: var(--accent); margin: 0 0 .9rem; }
.aside-list { list-style: none; padding: 0; margin: 0; }
.aside-list li { position: relative; padding: .4rem 0 .4rem 1.4rem; color: #cdd9e5; font-size: .9rem; }
.aside-list li::before { content: "✓"; position: absolute; left: 0; color: var(--accent); font-weight: 700; }
.aside-foot { margin: 1.5rem 0 0; display: flex; align-items: center; gap: .5rem; color: #9fb2c6; font-size: .85rem; }
.pf-form textarea, .pf-form input[type="email"] {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); border-radius: 8px;
  color: #fff; padding: .55rem .8rem; font: inherit; font-size: .9rem; resize: vertical;
}
.pf-form textarea::placeholder, .pf-form input::placeholder { color: #7e93a8; }
.pf-form textarea:focus, .pf-form input:focus { outline: none; border-color: var(--accent); }
.builder { max-width: 430px; margin-top: 1rem; }
.pf-form { max-width: none; gap: .6rem; margin-top: 0; }
.builder-label { font-family: var(--mono); font-size: .7rem; text-transform: uppercase; letter-spacing: .1em; color: #9fb2c6; margin: 0 0 .5rem; }
.bucket-count { color: var(--accent); }
.tool-palette { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: 1rem; }
.tool {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); color: #cdd9e5;
  border-radius: 100px; padding: .32rem .72rem; font: inherit; font-size: .8rem; cursor: grab;
  user-select: none; transition: background .15s, border-color .15s, color .15s, transform .12s;
}
.tool:hover { border-color: var(--accent); color: #fff; transform: translateY(-1px); }
.tool:active { cursor: grabbing; }
.tool.selected { background: var(--accent); border-color: var(--accent); color: #fff; }
.bucket {
  min-height: 48px; border: 1.5px dashed rgba(255,255,255,.25); border-radius: 10px;
  padding: .6rem; display: flex; flex-wrap: wrap; gap: .4rem; align-items: center; margin-bottom: .9rem;
  transition: border-color .15s ease, background .15s ease;
}
.bucket.drag { border-color: var(--accent); background: rgba(0,180,216,.08); }
.bucket-empty { color: #7e93a8; font-size: .82rem; margin: auto; }
.bucket-tag {
  display: inline-flex; align-items: center; gap: .35rem;
  background: rgba(0,180,216,.18); border: 1px solid rgba(0,180,216,.4); color: #fff;
  border-radius: 100px; padding: .28rem .3rem .28rem .65rem; font-size: .78rem;
}
.bucket-tag button { background: none; border: 0; color: #cdd9e5; cursor: pointer; font-size: 1rem; line-height: 1; padding: 0 .2rem; }
.bucket-tag button:hover { color: #fff; }
.builder-note {
  width: 100%; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14);
  border-radius: 8px; color: #fff; padding: .55rem .8rem; font: inherit; font-size: .9rem;
  resize: vertical; margin-bottom: .9rem;
}
.builder-note::placeholder { color: #7e93a8; }
.builder-note:focus { outline: none; border-color: var(--accent); }
.pf-send { border: 0; cursor: pointer; }
.builder-alt { margin: .9rem 0 0; font-size: .85rem; color: #9fb2c6; }
.builder-alt a { color: var(--accent); text-decoration: none; }
.builder-alt a:hover { text-decoration: underline; }
.pf-send { border: 0; cursor: pointer; align-self: flex-start; margin-top: .3rem; }
.pf-form-status { margin: .3rem 0 0; font-size: .85rem; color: #9fb2c6; min-height: 1.2em; }
.pf-form-status.ok { color: #39d353; }
.pf-form-status.err { color: #ff8a8a; }

/* ====== About - bold ====== */
.about-x { position: relative; overflow: hidden; }
.about-bgword {
  position: absolute; top: -2.5rem; right: -1rem; z-index: 0;
  font-weight: 900; font-size: clamp(6rem, 20vw, 16rem); line-height: 1; letter-spacing: -0.04em;
  color: rgba(11,31,58,.035); pointer-events: none; user-select: none;
}
.about-wrap { position: relative; z-index: 1; display: grid; grid-template-columns: 1.5fr .9fr; gap: 3rem; align-items: center; }
.about-main h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); letter-spacing: -0.03em; }
.about-lead { color: var(--muted); font-size: 1.1rem; max-width: 620px; margin: 1.2rem 0 0; }
.about-facts { display: flex; gap: 2.4rem; margin-top: 2rem; }
.about-facts strong { display: block; font-size: 1.5rem; color: var(--ink); line-height: 1; }
.about-facts span { font-size: .85rem; color: var(--muted); }

.about-id {
  position: relative; text-align: center;
  background: linear-gradient(160deg, #0b1f3a 0%, #14345c 100%); color: #fff;
  border-radius: 20px; padding: 2.4rem 2rem; box-shadow: 0 24px 60px rgba(11,31,58,.22);
  display: flex; flex-direction: column; align-items: center;
}
.about-mono {
  width: 92px; height: 92px; border-radius: 50%;
  background: rgba(0,180,216,.16); color: var(--accent);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 2.4rem; font-weight: 800; letter-spacing: -0.02em;
  border: 2px solid rgba(0,180,216,.4); margin-bottom: 1.1rem;
  box-shadow: 0 0 0 8px rgba(0,180,216,.06);
}
.about-name { font-size: 1.25rem; }
.about-role { color: #9fb2c6; font-size: .92rem; margin-top: .15rem; }
.about-status { display: inline-flex; align-items: center; gap: .5rem; margin-top: 1.1rem; font-size: .85rem; color: #c3d0de; }
.adot { width: 8px; height: 8px; border-radius: 50%; background: #27c93f; box-shadow: 0 0 0 3px rgba(39,201,51,.2); }


/* ====== Testimonials - slider ====== */
.reviews-layout { display: grid; grid-template-columns: 300px 1fr; gap: 3rem; align-items: center; }
.reviews-aside .reviews-sub { color: var(--muted); margin: .2rem 0 1.5rem; }
.rv-summary {
  display: inline-flex; align-items: center; gap: .8rem;
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
  padding: .8rem 1.1rem; box-shadow: 0 8px 24px rgba(11,31,58,.06);
}
.rv-summary img { height: 22px; width: auto; }
.rv-sum-text { display: flex; flex-direction: column; line-height: 1.15; }
.rv-sum-text strong { font-size: 1.3rem; color: var(--ink); }
.rv-sum-text span { font-size: .8rem; color: var(--muted); }
.rv-controls { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-top: 1.4rem; }
.rv-nav { display: flex; gap: .5rem; }
.rv-btn {
  width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line);
  background: #fff; color: var(--ink); cursor: pointer; font-size: 1rem; transition: all .15s;
}
.rv-btn:hover { background: var(--ink); color: #fff; border-color: var(--ink); transform: translateY(-2px); }

.reviews-stage { position: relative; }
.rv-cards { position: relative; }
.rv-card {
  display: none; position: relative;
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  padding: 1.8rem 2rem; box-shadow: 0 16px 40px rgba(11,31,58,.08); overflow: hidden;
}
.rv-card.is-active { display: block; animation: rvin .45s ease; }
@keyframes rvin { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.rv-qmark {
  position: absolute; top: .3rem; right: 1.2rem; z-index: 0;
  font-family: Georgia, "Times New Roman", serif; font-size: 3.6rem; line-height: 1;
  color: rgba(0,180,216,.16); pointer-events: none;
}
.rv-card > * { position: relative; z-index: 1; }
.rv-stars { color: #f5a623; letter-spacing: 2px; margin: 0 0 .8rem; font-size: 1.05rem; }
.rv-stars .half { opacity: .45; }
.rv-stars .rnum { color: var(--muted); font-size: .85rem; font-weight: 600; letter-spacing: 0; margin-left: 4px; }
.rv-quote { font-size: clamp(1rem, 1.4vw, 1.12rem); line-height: 1.55; color: var(--muted); font-style: italic; margin: 0 0 1.3rem; }
.rv-quote strong { color: var(--ink); font-weight: 700; font-style: normal; }
.rv-who { display: flex; align-items: center; gap: .8rem; padding-top: 1rem; border-top: 1px solid var(--line); }
.rv-avatar {
  flex: 0 0 auto; width: 46px; height: 46px; border-radius: 50%;
  background: #14a800; color: #fff; display: inline-flex; align-items: center; justify-content: center;
}
.rv-avatar svg { width: 22px; height: 22px; }
.rv-meta { display: flex; flex-direction: column; }
.rv-meta strong { color: var(--ink); }
.rv-meta span { color: var(--muted); font-size: .85rem; }
.rv-dots { display: flex; gap: .5rem; margin: 0; }
.rv-dot { width: 9px; height: 9px; border-radius: 50%; border: 0; background: var(--line); cursor: pointer; padding: 0; transition: all .2s; }
.rv-dot.on { background: var(--accent); width: 26px; border-radius: 100px; }

/* ====== Testimonials (legacy cards) ====== */
.reviews-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; align-items: start; }
.reviews-grid .testimonial { max-width: none; }
.testimonial { display: flex; flex-direction: column; }
.testimonial .quote strong { color: var(--ink); font-weight: 700; font-style: normal; }
.upwork-badge {
  display: inline-flex; align-items: center; gap: .6rem; margin-top: 1.1rem;
  background: rgba(20,168,0,.08); border: 1px solid rgba(20,168,0,.3); border-radius: 100px;
  padding: .45rem 1rem;
}
.upwork-badge img { height: 17px; width: auto; }
.upwork-badge span { font-size: .9rem; color: var(--ink); }
.upwork-badge strong { color: #14a800; }
/* Featured (first) review spans full width and reads larger */
.testimonial.featured { grid-column: 1 / -1; border-color: rgba(0,180,216,.45); border-left: 4px solid var(--accent); background: linear-gradient(180deg, #f6fcfe 0%, #ffffff 45%); }
.testimonial.featured .stars { font-size: 1.25rem; }
.testimonial.featured .quote { font-size: 1.2rem; line-height: 1.55; }
.testimonial .stars { color: #f5a623; letter-spacing: 2px; margin: 0 0 .8rem; font-size: 1.05rem; }
.testimonial .stars .half { opacity: .45; }
.testimonial .stars .rating-num { color: var(--muted); font-size: .85rem; letter-spacing: 0; font-weight: 600; margin-left: 4px; }
.testimonial .quote { color: var(--ink); font-style: italic; margin: 0 0 1.2rem; flex: 1; }
.testimonial .who { margin: 0; padding-top: 1rem; border-top: 1px solid var(--line); }
.testimonial .who strong { display: block; }
.testimonial .who > span { color: var(--muted); font-size: .85rem; }
.testimonial .who .verified {
  display: inline-flex; align-items: center; gap: .3rem; margin-top: .45rem;
  color: #14a800; font-weight: 700; font-size: .76rem;
}

/* ====== Why / the difference ====== */
.why-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 3.5rem; align-items: center; }
.why-intro h2 { margin-bottom: .6rem; }
.why-intro > p { color: var(--muted); margin: 0; }
.why-highlight {
  display: flex; align-items: center; gap: 1rem; margin-top: 1.8rem;
  background: linear-gradient(150deg, #0b1f3a 0%, #14345c 100%); color: #fff;
  border-radius: 16px; padding: 1.3rem 1.5rem;
  box-shadow: 0 16px 40px rgba(11,31,58,.18);
}
.wh-icon {
  flex: 0 0 auto; display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(0,180,216,.16); color: var(--accent);
}
.wh-icon svg { width: 26px; height: 26px; }
.wh-text strong { display: block; font-size: 1.02rem; line-height: 1.3; }
.wh-text span { color: #9fb2c6; font-size: .85rem; }

.why-list { list-style: none; padding: 0; margin: 0; }
.why-item {
  display: flex; gap: 1.1rem; align-items: flex-start;
  padding: 1.3rem 1.1rem; border-radius: 12px; border-bottom: 1px solid var(--line);
  transition: background .18s ease, transform .18s ease, box-shadow .18s ease;
}
.why-item:last-child { border-bottom: 0; }
.why-item:hover { background: #fff; transform: translateX(5px); box-shadow: 0 10px 26px rgba(11,31,58,.08); }
.why-ic {
  flex: 0 0 auto; display: inline-flex; align-items: center; justify-content: center;
  width: 50px; height: 50px; border-radius: 13px;
  background: linear-gradient(150deg, #0b1f3a 0%, #1d3f66 100%); color: var(--accent);
  box-shadow: 0 8px 18px rgba(11,31,58,.18); transition: transform .18s ease;
}
.why-ic svg { width: 24px; height: 24px; }
.why-item:hover .why-ic { transform: scale(1.08); }
.why-text h3 { margin: 0 0 .25rem; font-size: 1.12rem; }
.why-text p { margin: 0; color: var(--muted); }

/* ====== Scroll reveal ====== */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .55s ease, transform .55s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .term-body .tl { opacity: 1; transform: none; animation: none; }
  .pf-panel.is-active { animation: none; }
  .cursor { animation: none; }
}

/* ====== Process - connected timeline ====== */
.flow { list-style: none; padding: 0; margin: 0; position: relative;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.flow::before {
  content: ""; position: absolute; top: 27px; left: 0; right: 0; height: 2px; z-index: 0;
  background: repeating-linear-gradient(90deg, var(--accent) 0 7px, transparent 7px 15px);
  opacity: .55;
}
.flow-step { position: relative; z-index: 1; text-align: center; padding: 0 .4rem; }
.flow-node {
  display: inline-flex; align-items: center; justify-content: center;
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--ink); color: #fff; font-weight: 800; font-size: 1.2rem;
  margin: 0 auto 1.2rem; border: 5px solid var(--soft);
  box-shadow: 0 8px 20px rgba(11,31,58,.18);
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.flow-step:hover .flow-node { background: var(--accent); transform: translateY(-3px); box-shadow: 0 12px 26px rgba(0,180,216,.32); }
.flow-step h3 { font-size: 1.1rem; margin-bottom: .4rem; }
.flow-step p { color: var(--muted); margin: 0; font-size: .95rem; }

/* ====== Booking + contact ====== */
.book-card {
  max-width: 520px; margin: 0 auto; text-align: center;
  background: #fff; border: 1px solid var(--line); border-top: 3px solid var(--accent);
  border-radius: var(--radius); padding: 2.5rem 2rem;
  box-shadow: 0 10px 34px rgba(11,31,58,.07);
}
.book-icon { display: inline-flex; margin-bottom: .8rem; color: var(--accent); }
.book-icon svg { width: 38px; height: 38px; }
.book-card h3 { font-size: 1.3rem; margin-bottom: .6rem; }
.book-card > p { color: var(--muted); margin: 0 auto 1.3rem; max-width: 380px; }
.book-points { list-style: none; padding: 0; margin: 0 auto 1.6rem; display: inline-block; text-align: left; }
.book-points li { position: relative; padding: .3rem 0 .3rem 1.6rem; color: var(--ink); }
.book-points li::before { content: "✓"; position: absolute; left: 0; color: var(--accent); font-weight: 700; }
.book-btn { font-size: 1.05rem; padding: .9rem 2rem; }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; max-width: 940px; margin: 0 auto; align-items: stretch; }
.contact-grid .book-card { max-width: none; margin: 0; }
.contact-side {
  display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center;
  background: linear-gradient(160deg, #0b1f3a 0%, #122c4d 100%); color: #fff;
  border-radius: var(--radius); padding: 2.5rem 2rem;
  box-shadow: 0 10px 34px rgba(11,31,58,.16);
}
.cs-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 12px;
  background: rgba(0,180,216,.16); color: var(--accent); margin-bottom: 1rem;
}
.cs-icon svg { width: 24px; height: 24px; }
.contact-side h3 { color: #fff; }
.contact-side > p { color: #c3d0de; max-width: 300px; margin: 0 auto 1.6rem; }
.cs-actions { display: flex; gap: .8rem; flex-wrap: wrap; justify-content: center; }
.btn-white { background: #fff; color: var(--ink); border-color: #fff; }
.btn-white:hover { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn-wa { background: #25d366; color: #fff; border-color: #25d366; }
.btn-wa:hover { filter: brightness(1.07); }
.cs-direct { margin: 1.4rem 0 .4rem; color: #9fb2c6; font-size: .9rem; font-family: var(--mono); }
.cs-socials { display: flex; gap: 1.2rem; justify-content: center; margin: .4rem 0 0; }
.cs-socials a { color: var(--accent); font-weight: 600; text-decoration: none; }
.cs-socials a:hover { text-decoration: underline; }

/* ====== Let's talk — bold centered CTA ====== */
.talk { position: relative; overflow: hidden; text-align: center; }
.talk::before {
  content: ""; position: absolute; top: -34%; left: 50%; transform: translateX(-50%);
  width: 720px; height: 720px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,180,216,.16), rgba(0,180,216,0) 60%);
  pointer-events: none;
}
.talk-inner { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.talk-head { font-size: clamp(2rem, 5vw, 3.2rem); letter-spacing: -0.03em; margin-bottom: .8rem; }
.talk-sub { color: var(--muted); font-size: 1.1rem; max-width: 540px; margin: 0 auto 2.2rem; }
.talk-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.talk-primary { font-size: 1.05rem; }
.talk-wa {
  display: inline-flex; align-items: center; gap: .55rem;
  background: #25d366; color: #fff; text-decoration: none; font-weight: 600; font-size: 1rem;
  padding: .95rem 1.7rem; border-radius: 100px; box-shadow: 0 12px 26px rgba(37,211,102,.28);
  transition: transform .15s ease, filter .15s ease;
}
.talk-wa:hover { filter: brightness(1.06); transform: translateY(-2px); }
.talk-wa svg { width: 20px; height: 20px; }
.talk-email { margin: 1.6rem 0 0; color: var(--muted); font-size: 1rem; }
.talk-email a { color: var(--accent-dark); font-weight: 700; text-decoration: none; }
.talk-email a:hover { text-decoration: underline; }
.talk-links { display: flex; gap: 1.4rem; justify-content: center; align-items: center; flex-wrap: wrap; margin-top: 2rem; }
.talk-links a { display: inline-flex; align-items: center; gap: .45rem; color: var(--muted); font-weight: 600; text-decoration: none; transition: color .15s ease; }
.talk-links a svg { width: 18px; height: 18px; }
.talk-links a:hover { color: var(--ink); }
.dot-sep { color: var(--faint, #a1a1aa); }
.talk-avail { display: inline-flex; align-items: center; gap: .5rem; margin-top: 1.6rem; color: var(--muted); font-size: .9rem; }

/* ====== Global / world clock band ====== */
.globe-band {
  position: relative; overflow: hidden; text-align: center;
  background: linear-gradient(160deg, #0b1f3a 0%, #14345c 100%);
  color: #fff; padding: clamp(3rem, 6vw, 4.5rem) 0;
}
.globe-band::before {
  content: ""; position: absolute; top: 50%; left: 50%;
  width: 760px; height: 760px; transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(0,180,216,.16), rgba(0,180,216,0) 60%);
  pointer-events: none;
}
.globe-band > .container { position: relative; }
.globe-band .kicker { color: var(--accent); }
.globe-band h2 { color: #fff; }
.globe-band > .container > p { color: #c3d0de; max-width: 600px; margin: 0 auto 2rem; }
.clocks { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }
.clock {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.10);
  border-radius: 12px; padding: 1rem 1.3rem; min-width: 130px;
}
.clk-city { display: block; color: #9fb2c6; font-size: .78rem; margin-bottom: .35rem; }
.clock strong { font-family: var(--mono); font-size: 1.5rem; color: #fff; letter-spacing: 1px; }
.clk-dn { display: block; font-size: 1rem; margin-top: .3rem; }
.globe-note { margin: 1.8rem 0 0; color: var(--accent); font-weight: 600; }
.live-dot {
  display: inline-block; width: 8px; height: 8px; border-radius: 50%;
  background: #27c93f; margin-right: .55rem; vertical-align: middle;
  box-shadow: 0 0 0 0 rgba(39,201,51,.5); animation: livepulse 1.8s ease-out infinite;
}
@keyframes livepulse {
  0% { box-shadow: 0 0 0 0 rgba(39,201,51,.55); }
  70% { box-shadow: 0 0 0 9px rgba(39,201,51,0); }
  100% { box-shadow: 0 0 0 0 rgba(39,201,51,0); }
}
/* dotted-map texture */
.globe-band::after {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 24px 24px;
}
@media (prefers-reduced-motion: reduce) { .live-dot { animation: none; } }

/* ====== Floating WhatsApp ====== */
.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 60;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25d366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(0,0,0,.25); transition: transform .15s;
}
.wa-float:hover { transform: scale(1.08); }

/* ====== Footer ====== */
.site-footer { background: var(--ink); color: #fff; padding: 3.5rem 0 1.6rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 2.5rem; }
.footer-brand .brand { color: #fff; font-size: 1.25rem; }
.footer-brand > p { color: #9fb2c6; max-width: 360px; margin: .9rem 0 0; font-size: .92rem; line-height: 1.55; }
.footer-status { display: inline-flex; align-items: center; gap: .5rem; margin-top: 1rem; color: #c3d0de; font-size: .85rem; }
.footer-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.footer-col h4 { color: #fff; font-size: .76rem; text-transform: uppercase; letter-spacing: .12em; margin: 0 0 .9rem; }
.footer-col a { display: block; color: #9fb2c6; text-decoration: none; font-size: .92rem; padding: .28rem 0; transition: color .15s ease; }
.footer-col a:hover { color: var(--accent); }
/* Connect icon buttons */
.footer-socials { display: flex; gap: .6rem; margin-top: .2rem; }
.footer-socials a {
  width: 40px; height: 40px; border-radius: 50%; padding: 0;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); color: #c3d0de;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .15s ease, color .15s ease, border-color .15s ease, transform .15s ease;
}
.footer-socials a:hover { background: var(--accent); border-color: var(--accent); color: #fff; transform: translateY(-2px); }
.footer-socials svg { width: 18px; height: 18px; }
/* Verifiable credential badges */
.footer-verify-wrap { margin-top: 2.4rem; padding-top: 1.6rem; border-top: 1px solid rgba(255,255,255,.1); }
.footer-verify { display: flex; flex-wrap: wrap; gap: .8rem; justify-content: center; }
.verify-badge {
  display: inline-flex; align-items: center; gap: .65rem; text-decoration: none;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); border-radius: 12px;
  padding: .55rem .85rem; transition: background .15s ease, border-color .15s ease, transform .15s ease;
}
.verify-badge:hover { background: rgba(0,180,216,.10); border-color: rgba(0,180,216,.5); transform: translateY(-2px); }
.vb-ic { flex: 0 0 auto; width: 26px; height: 26px; display: inline-flex; align-items: center; justify-content: center; }
.vb-ic svg { width: 26px; height: 26px; }
.vb-aws { color: #ff9900; }
.vb-txt { display: flex; flex-direction: column; line-height: 1.2; }
.vb-txt strong { color: #fff; font-size: .85rem; }
.vb-txt em { color: #9fb2c6; font-size: .72rem; font-style: normal; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .8rem;
  margin-top: 2.6rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.1);
}
.footer-bottom p { margin: 0; color: #7e93a8; font-size: .85rem; }
.footer-top { color: var(--accent); text-decoration: none; font-size: .85rem; font-weight: 600; }
.footer-top:hover { text-decoration: underline; }

/* ====== Responsive ====== */
@media (max-width: 980px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2.4rem; }
  .hero-visual { order: 2; max-width: 520px; }
  .float-stat { left: auto; right: 10px; }
}

@media (max-width: 820px) {
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .flow { grid-template-columns: 1fr; gap: 0; }
  .flow::before { top: 0; bottom: 0; left: 26px; right: auto; width: 2px; height: auto;
    background: repeating-linear-gradient(180deg, var(--accent) 0 7px, transparent 7px 15px); }
  .flow-step { display: grid; grid-template-columns: 54px 1fr; gap: 1rem; text-align: left; padding: 0 0 1.8rem; }
  .flow-node { margin: 0; }
  .about-wrap { grid-template-columns: 1fr; gap: 2rem; }
  .about-facts { gap: 1.6rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .why-grid { grid-template-columns: 1fr; gap: 2rem; }
  .svc-grid { grid-template-columns: 1fr; gap: 1.8rem; }
  .pf-explorer { grid-template-columns: 1fr; }
  .pf-list { border-right: 0; border-bottom: 1px solid var(--line); max-height: 280px; overflow-y: auto; }
  .contact-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .reviews-layout { grid-template-columns: 1fr; gap: 1.6rem; }
  .rv-card { padding: 1.8rem; }
  .custom-cols { grid-template-columns: 1fr; gap: 1.4rem; }
  .custom-aside { border-left: 0; padding-left: 0; border-top: 1px solid rgba(255,255,255,.10); padding-top: 1.2rem; }
  .wa-float { width: 52px; height: 52px; right: 16px; bottom: 16px; }
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute; top: 64px; left: 0; right: 0;
    flex-direction: column; align-items: flex-start; gap: 0;
    background: var(--paper); border-bottom: 1px solid var(--line);
    padding: .5rem 5%; display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: .8rem 0; width: 100%; }
  .certs { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .stats-row { grid-template-columns: repeat(2, 1fr); gap: 1.8rem 1rem; }
  .stat:nth-child(odd)::before { border-left: 0; }
}

@media (max-width: 500px) {
  .container { width: 92%; }
  .footer-cols { grid-template-columns: 1fr 1fr; gap: 1.2rem; }
  .talk-actions .btn-hero, .talk-actions .talk-wa { width: 100%; justify-content: center; }
  .rv-card { padding: 1.5rem; }
  .rv-quote { font-size: 1rem; }
  .clock { min-width: 108px; padding: .8rem 1rem; }
  .clock strong { font-size: 1.3rem; }
  .term-body { font-size: .82rem; }
  .float-stat { padding: .55rem .8rem; }
  .float-stat strong { font-size: 1.15rem; }
  .pkg-grid .price-card { padding: 1.5rem 1.3rem; }
}
