/* =========================================================
   Arbee Web — main stylesheet
   ========================================================= */

:root {
  /* Brand colours, pulled from the Arbee Web logo */
  --navy-950: #060e1f;
  --navy-900: #0a1830;
  --navy-800: #0d2145;
  --navy-700: #12295a;
  --blue-600: #1c7fd6;
  --blue-500: #2e8bf0;
  --blue-400: #4fa3f5;
  --blue-300: #8fcbfa;
  --white: #ffffff;
  --gray-50: #f5f8fc;
  --gray-100: #eaf1fa;
  --gray-300: #c7d3e2;
  --gray-600: #5b6b82;
  --gray-800: #1f2937;

  --font-heading: 'Poppins', 'Segoe UI', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;

  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 10px rgba(10, 24, 48, 0.06);
  --shadow-md: 0 12px 30px rgba(10, 24, 48, 0.12);
  --shadow-lg: 0 20px 50px rgba(6, 14, 31, 0.35);

  --header-h: 76px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy-900);
}

.accent { color: var(--blue-500); }

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--blue-600);
  color: #fff;
  padding: 12px 18px;
  z-index: 1000;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 22px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--blue-500), var(--blue-600));
  color: #fff;
  box-shadow: 0 8px 20px rgba(46, 139, 240, 0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(46, 139, 240, 0.45); }
.btn-ghost {
  background: transparent;
  border-color: var(--navy-800);
  color: var(--navy-900);
}
.btn-ghost:hover { background: var(--navy-900); color: #fff; }
.btn-lg { padding: 15px 30px; font-size: 1rem; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  display: flex;
  align-items: center;
  z-index: 900;
  background: rgba(6, 14, 31, 0.0);
  transition: background 0.25s ease, box-shadow 0.25s ease, backdrop-filter 0.25s ease;
}
.site-header.scrolled {
  background: rgba(8, 17, 36, 0.92);
  backdrop-filter: saturate(180%) blur(10px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.brand-mark { border-radius: 8px; }
.brand-word {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.3rem;
  color: #fff;
}

.main-nav ul {
  display: flex;
  gap: 6px;
}
.main-nav a {
  display: block;
  padding: 10px 14px;
  font-weight: 500;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.82);
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}
.main-nav a:hover,
.main-nav a.active {
  background: rgba(255,255,255,0.1);
  color: #fff;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: calc(var(--header-h) + 72px) 0 90px;
  background:
    radial-gradient(1100px 550px at 85% -10%, rgba(46, 139, 240, 0.35), transparent 60%),
    linear-gradient(160deg, var(--navy-950) 0%, var(--navy-900) 45%, var(--navy-800) 100%);
  color: #fff;
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 40px;
}
.eyebrow {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--blue-300);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(2.2rem, 4.4vw, 3.4rem);
  color: #fff;
  margin-bottom: 22px;
}
.hero-lead {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.78);
  max-width: 540px;
  margin-bottom: 32px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 52px;
}
.hero .btn-ghost {
  border-color: rgba(255,255,255,0.4);
  color: #fff;
}
.hero .btn-ghost:hover { background: #fff; color: var(--navy-900); }

.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
}
.stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  max-width: 140px;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 360px;
}
.hero-glow {
  position: absolute;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(46,139,240,0.55), transparent 70%);
  filter: blur(10px);
  border-radius: 50%;
}
.hero-icon {
  position: relative;
  width: 260px;
  height: 260px;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.45));
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-16px); }
}
.floating-badge {
  position: absolute;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 9px 16px;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}
.badge-1 { top: 4%; left: 0%; }
.badge-2 { top: 2%; right: 4%; }
.badge-3 { top: 48%; right: -10%; }
.badge-4 { bottom: 8%; right: 0%; }
.badge-5 { bottom: -4%; left: 10%; }
.badge-6 { top: 48%; left: -12%; }

/* ---------- Sections (shared) ---------- */
.section { padding: 96px 0; }
.section-alt { background: var(--gray-50); }
.section-dark {
  background: linear-gradient(160deg, var(--navy-950), var(--navy-800));
  color: rgba(255,255,255,0.85);
}
.section-dark h2 { color: #fff; }

.section-eyebrow {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--blue-600);
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-dark .section-eyebrow { color: var(--blue-300); }

.section-title {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  max-width: 720px;
  margin-bottom: 16px;
}
.section-lead {
  color: var(--gray-600);
  font-size: 1.05rem;
  max-width: 640px;
  margin-bottom: 48px;
}
.section-dark .section-lead { color: rgba(255,255,255,0.68); }

/* ---------- Grids & cards ---------- */
.grid { display: grid; gap: 28px; }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }

.card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

.service-card {
  padding: 32px 26px;
  border: 1px solid var(--gray-100);
}
.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue-500), var(--blue-600));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.service-icon svg { width: 26px; height: 26px; }
.service-card h3 { font-size: 1.12rem; margin-bottom: 10px; }
.service-card p { color: var(--gray-600); font-size: 0.95rem; }

/* ---------- Portfolio ---------- */
.portfolio-card {
  overflow: hidden;
  border: 1px solid var(--gray-100);
  display: flex;
  flex-direction: column;
}
.portfolio-logo {
  background: var(--navy-900);
  background: linear-gradient(160deg, var(--navy-950), var(--navy-800));
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 200px;
}
.portfolio-logo img {
  max-height: 140px;
  width: auto;
  border-radius: 10px;
  box-shadow: 0 10px 26px rgba(0,0,0,0.35);
}
.portfolio-body { padding: 26px; }
.badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.badge-live { background: #e3f6ea; color: #1c8a4c; }
.badge-soon { background: #fef3e0; color: #b06a06; }
.portfolio-body h3 { font-size: 1.1rem; margin-bottom: 8px; }
.portfolio-body p { color: var(--gray-600); font-size: 0.93rem; margin-bottom: 16px; }
.portfolio-link {
  font-weight: 600;
  color: var(--blue-600);
  font-size: 0.92rem;
}
.portfolio-link:hover { text-decoration: underline; }

/* ---------- Demo hub cards (demo/index.html only) ---------- */
.demo-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
@media (max-width: 900px) { .demo-grid { grid-template-columns: 1fr; } }

.demo-card {
  display: flex;
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.demo-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
@media (max-width: 700px) { .demo-card { flex-direction: column; } }

.demo-card-media {
  flex: 0 0 42%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 26px;
  min-height: 220px;
  overflow: hidden;
}
.demo-card-media::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 120% at 25% 15%, rgba(255,255,255,0.10), transparent 60%);
}
.demo-card-media img {
  position: relative;
  z-index: 1;
  max-width: 100%;
  max-height: 168px;
  width: auto;
  height: auto;
  filter: drop-shadow(0 12px 22px rgba(0,0,0,0.4));
}
@media (max-width: 700px) { .demo-card-media { flex-basis: auto; min-height: 190px; } }

.demo-card-tone-gym { background: linear-gradient(135deg, #1b1c24, #0a0a0e); }
.demo-card-tone-gym::after { content: ''; position: absolute; inset: 0; background: radial-gradient(60% 60% at 78% 12%, rgba(245,166,35,0.24), transparent 70%); }

.demo-card-tone-burger { background: linear-gradient(135deg, #3a2415, #1a0f08); }
.demo-card-tone-burger::after { content: ''; position: absolute; inset: 0; background: radial-gradient(60% 60% at 78% 12%, rgba(242,167,27,0.24), transparent 70%); }

.demo-card-tone-barber { background: linear-gradient(135deg, #1a2d4d, #0a1120); }
.demo-card-tone-barber::after { content: ''; position: absolute; inset: 0; background: radial-gradient(60% 60% at 78% 12%, rgba(200,32,46,0.24), transparent 70%); }

.demo-card-tone-auto { background: linear-gradient(135deg, #16304f, #050e1c); }
.demo-card-tone-auto::after { content: ''; position: absolute; inset: 0; background: radial-gradient(60% 60% at 78% 12%, rgba(194,59,34,0.24), transparent 70%); }

.demo-card-body { flex: 1; padding: 30px 32px; display: flex; flex-direction: column; }
.demo-card-kicker { font-size: 0.76rem; font-weight: 700; color: var(--blue-600); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 8px; }
.demo-card-body h3 { font-size: 1.28rem; margin-bottom: 10px; }
.demo-card-body p { color: var(--gray-600); font-size: 0.95rem; margin-bottom: 20px; flex: 1; }
.demo-card-footer { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-top: 16px; border-top: 1px solid var(--gray-100); }
.demo-card-link { font-weight: 700; color: var(--blue-600); font-size: 0.92rem; display: inline-flex; align-items: center; gap: 6px; transition: gap 0.15s ease; }
.demo-card-link:hover { gap: 10px; }

/* ---------- Process ---------- */
.process-step {
  padding: 6px 6px 0 0;
}
.process-num {
  display: block;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--blue-500);
  margin-bottom: 14px;
}
.process-step h3 { font-size: 1.05rem; margin-bottom: 8px; }
.process-step p { color: var(--gray-600); font-size: 0.93rem; }

/* ---------- FAQ ---------- */
.faq-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: start;
  gap: 16px;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: 8px 24px;
  box-shadow: var(--shadow-sm);
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 16px 32px 16px 0;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  color: var(--navy-900);
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 14px;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--blue-500);
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  color: var(--gray-600);
  font-size: 0.95rem;
  padding-bottom: 18px;
}

/* ---------- About ---------- */
.about-inner { max-width: 760px; }
.about-copy p { color: rgba(255,255,255,0.75); margin-bottom: 18px; font-size: 1.02rem; }
.about-list { margin-top: 20px; display: flex; flex-direction: column; gap: 12px; }
.about-list li {
  position: relative;
  padding-left: 28px;
  color: rgba(255,255,255,0.85);
  font-size: 0.98rem;
}
.about-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 6px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-500), var(--blue-600));
}

/* ---------- CTA banner ---------- */
.cta-banner {
  background: linear-gradient(120deg, var(--blue-600), var(--blue-500));
  padding: 70px 0;
  text-align: center;
  color: #fff;
}
.cta-inner h2 { color: #fff; font-size: clamp(1.6rem, 3vw, 2.1rem); margin-bottom: 12px; }
.cta-inner p { color: rgba(255,255,255,0.9); margin-bottom: 28px; font-size: 1.05rem; }
.cta-banner .btn-primary {
  background: #fff;
  color: var(--blue-600);
  box-shadow: 0 10px 26px rgba(0,0,0,0.2);
}
.cta-banner .btn-primary:hover { color: var(--blue-700, var(--blue-600)); }

/* ---------- Contact ---------- */
.contact-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.contact-highlights {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.contact-highlights li {
  position: relative;
  padding-left: 30px;
}
.contact-highlights li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-500), var(--blue-600));
}
.contact-highlights h3 {
  font-size: 1rem;
  margin-bottom: 4px;
}
.contact-highlights p {
  color: var(--gray-600);
  font-size: 0.92rem;
}
.contact-form {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form-row-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-row { display: flex; flex-direction: column; gap: 8px; }
.form-row label { font-weight: 600; font-size: 0.92rem; color: var(--navy-900); }
.optional { font-weight: 400; color: var(--gray-600); }
.form-row input,
.form-row textarea {
  font-family: var(--font-body);
  font-size: 0.98rem;
  padding: 12px 14px;
  border: 1.5px solid var(--gray-300);
  border-radius: 10px;
  background: #fff;
  resize: vertical;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--blue-500);
  box-shadow: 0 0 0 4px rgba(46, 139, 240, 0.15);
}
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.btn-submit { margin-top: 8px; width: 100%; }
.btn-submit:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }
.form-status {
  font-size: 0.92rem;
  font-weight: 600;
  min-height: 1.2em;
}
.form-status.success { color: #1c8a4c; }
.form-status.error { color: #c0392b; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-950);
  color: rgba(255,255,255,0.6);
  padding: 56px 0 32px;
  text-align: center;
}
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.footer-brand { margin-bottom: 4px; }
.footer-tagline { color: rgba(255,255,255,0.75); font-size: 0.95rem; }
.footer-location { font-size: 0.88rem; }
.footer-nav {
  display: flex;
  gap: 22px;
  margin: 20px 0 24px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-nav a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s ease;
}
.footer-nav a:hover { color: #fff; }
.footer-copy {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 22px;
  width: 100%;
}

/* ---------- Reveal-on-scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { order: -1; min-height: 260px; margin-bottom: 10px; }
  .contact-inner { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .main-nav {
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    background: rgba(8, 17, 36, 0.98);
    backdrop-filter: blur(10px);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .main-nav.open { max-height: 420px; }
  .main-nav ul { flex-direction: column; padding: 10px 24px 20px; gap: 2px; }
  .main-nav a { padding: 14px 10px; }
  .nav-toggle { display: flex; }
  .btn-nav-cta { display: none !important; }

  .grid-4, .grid-3 { grid-template-columns: 1fr; }
  .faq-list { grid-template-columns: 1fr; }
  .hero-stats { gap: 28px; }
  .section { padding: 72px 0; }
}

@media (max-width: 560px) {
  .form-row-pair { grid-template-columns: 1fr; }
}

/* =====================================================================
   HOMEPAGE V2 (indexNew.php only) — hero orbit badges, trust strip,
   client case-study cards, timeline process, about stats card,
   footer v2. All new class names; nothing above this line is touched
   so index.html keeps rendering exactly as before.
   ===================================================================== */

/* ---------- Hero v2: safer orbit badges (no negative-offset overflow) ---------- */
.hero-visual-v2 { max-width: 400px; margin: 0 auto; }
.orbit-1 { top: 2%; left: 2%; }
.orbit-2 { top: 24%; right: 0%; }
.orbit-3 { bottom: 20%; right: 2%; }
.orbit-4 { bottom: 0%; left: 6%; }
@media (max-width: 700px) {
  .orbit-3, .orbit-4 { display: none; }
}

/* ---------- Trust strip ---------- */
.trust-strip {
  background: var(--navy-950);
  padding: 28px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.trust-strip-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.trust-strip-label {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.45);
  flex-shrink: 0;
}
.trust-logos { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.trust-logo-tile {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  overflow: hidden;
  transition: transform 0.2s ease, background 0.2s ease;
}
.trust-logo-tile img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(100%) brightness(1.6);
  opacity: 0.75;
  transition: filter 0.2s ease, opacity 0.2s ease;
}
.trust-logo-tile:hover { background: rgba(255,255,255,0.1); transform: translateY(-2px); }
.trust-logo-tile:hover img { filter: none; opacity: 1; }

/* ---------- Client case-study cards (portfolio v2) ---------- */
.client-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
@media (max-width: 980px) { .client-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .client-grid { grid-template-columns: 1fr; } }

.client-card {
  background: #fff;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.client-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.client-card-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; margin-bottom: 18px; }
.client-logo-tile {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 9px;
  overflow: hidden;
  flex-shrink: 0;
}
.client-logo-tile img { max-width: 100%; max-height: 100%; object-fit: contain; }
.client-card-head .badge { margin: 2px 0 0; }
.client-card h3 { font-size: 1.12rem; margin-bottom: 8px; }
.client-card p { color: var(--gray-600); font-size: 0.93rem; margin-bottom: 18px; flex: 1; }

/* ---------- Timeline process ---------- */
.timeline-grid { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.timeline-grid::before {
  content: '';
  position: absolute;
  top: 27px;
  left: calc(100% / 8);
  right: calc(100% / 8);
  height: 2px;
  background: var(--gray-100);
  z-index: 0;
}
@media (max-width: 900px) {
  .timeline-grid { grid-template-columns: repeat(2, 1fr); row-gap: 40px; }
  .timeline-grid::before { display: none; }
}
@media (max-width: 560px) { .timeline-grid { grid-template-columns: 1fr; } }
.timeline-step { position: relative; z-index: 1; }
.timeline-num {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-500), var(--blue-600));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.15rem;
  margin-bottom: 18px;
  box-shadow: 0 8px 20px rgba(46,139,240,0.3), 0 0 0 6px var(--white);
}
.section-alt .timeline-num { box-shadow: 0 8px 20px rgba(46,139,240,0.3), 0 0 0 6px var(--gray-50); }
.timeline-step h3 { font-size: 1.05rem; margin-bottom: 8px; }
.timeline-step p { color: var(--gray-600); font-size: 0.93rem; }

/* ---------- About v2 ---------- */
.about-grid-v2 { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 50px; align-items: start; }
@media (max-width: 900px) { .about-grid-v2 { grid-template-columns: 1fr; } }
.about-stats-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 30px;
}
.about-stat-row { display: flex; align-items: baseline; gap: 14px; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
.about-stat-row:last-of-type { border-bottom: none; }
.about-stat-row .stat-num { font-size: 1.7rem; color: var(--blue-300); flex-shrink: 0; min-width: 56px; }
.about-stat-row span:last-child { color: rgba(255,255,255,0.75); font-size: 0.92rem; }
.skill-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.skill-pill {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.85);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 13px;
  border-radius: 999px;
}

/* ---------- CTA banner v2 (mesh overlay, additive to .cta-banner) ---------- */
.cta-banner-mesh { position: relative; overflow: hidden; }
.cta-banner-mesh::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(500px 260px at 10% 0%, rgba(255,255,255,0.18), transparent 60%),
    radial-gradient(500px 300px at 95% 100%, rgba(6,14,31,0.18), transparent 60%);
  pointer-events: none;
}
.cta-banner-mesh .cta-inner { position: relative; z-index: 1; }

/* ---------- Footer v2 ---------- */
.footer-v2 { background: var(--navy-950); color: rgba(255,255,255,0.65); padding: 64px 0 28px; }
.footer-v2-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 26px; }
@media (max-width: 900px) { .footer-v2-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .footer-v2-grid { grid-template-columns: 1fr; } }
.footer-v2-brand-blurb { color: rgba(255,255,255,0.55); font-size: 0.9rem; margin: 14px 0 0; max-width: 280px; }
.footer-v2-heading { font-family: var(--font-heading); font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: rgba(255,255,255,0.9); margin-bottom: 16px; }
.footer-v2-links { display: flex; flex-direction: column; gap: 11px; }
.footer-v2-links a { font-size: 0.92rem; color: rgba(255,255,255,0.6); transition: color 0.2s ease; }
.footer-v2-links a:hover { color: #fff; }
.footer-v2-contact { display: flex; flex-direction: column; gap: 12px; font-size: 0.92rem; }
.footer-v2-contact a { color: rgba(255,255,255,0.75); }
.footer-v2-contact a:hover { color: #fff; }
.footer-v2-bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 0.82rem; color: rgba(255,255,255,0.4); }
