:root {
  --indigo:   #272973;   /* E box — deep indigo/purple */
  --green:    #00bf5f;   /* D box — vivid green */
  --orange:   #ee610f;   /* M box — bright orange */
  --dark-text:#272770;   /* DIGITAL text */
  --paper:    #f7f8ff;   /* near-white with indigo tint */
  --white:    #ffffff;
  --muted:    #6b7190;
  --border:   rgba(39,41,115,0.1);
  --card-bg:  #ffffff;
}

/* ── Global max-width constraint (prevents stretch on ultra-wide screens) ── */
.hero, section, .services-section, .ind-section, .process-section,
.partners-strip, .cta-section, .page-hero, .marquee-wrap {
  max-width: 100%;
}
.hero, .services-section > *, .ind-section > *, .process-section > *,
.partners-strip > *, .cta-section > * {
  box-sizing: border-box;
}
section > *:not([class*="grid"]):not([class*="strip"]):not([class*="marquee"]):not(.hero-bg):not(.hero-grid),
.services-section > div,
.ind-section > div,
.process-section > div {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

/* Constrain hero properly */
.hero {
  max-width: 100% !important;
}
.hero-left, .hero-visual {
  max-width: 620px;
}

/* Force all padded sections to not exceed 1280px inner content */
body > section, body > .marquee-wrap, body > .partners-strip, body > .cta-section {
  padding-left: max(60px, calc((100vw - 1280px) / 2 + 60px));
  padding-right: max(60px, calc((100vw - 1280px) / 2 + 60px));
}
section[style*="padding"] {
  box-sizing: border-box;
}

/* Footer max-width */
.footer-top {
  max-width: 1280px;
  margin: 0 auto;
}
.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Nav max-width */
#main-nav {
  max-width: 100%;
  padding-left: max(60px, calc((100vw - 1280px) / 2 + 60px));
  padding-right: max(60px, calc((100vw - 1280px) / 2 + 60px));
}

/* Footer logo */
.footer-logo-link img, .footer-logo img { height: 44px; width: auto; filter: brightness(0) invert(1); }
 *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Instrument Sans', sans-serif; background: var(--paper); color: var(--dark-text); overflow-x: hidden; }
 /* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 60px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 20px rgba(39,41,115,0.06);
  transition: padding 0.3s;
}
.logo img { height: 46px; width: auto; display: block; }
.nav-links { display: flex; gap: 34px; list-style: none; }
.nav-links a {
  font-size: 13.5px; font-weight: 500; color: var(--dark-text);
  text-decoration: none; opacity: 0.65; transition: opacity 0.2s;
}
.nav-links a:hover { opacity: 1; }
.nav-cta {
  background: var(--indigo); color: white;
  padding: 11px 26px; border-radius: 100px;
  font-size: 13px; font-weight: 600; text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.nav-cta:hover { background: var(--orange); transform: translateY(-1px); }
 /* HERO */
.hero {
  min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
  padding: 130px 60px 80px; gap: 60px; align-items: center;
  position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 55% 60% at 75% 45%, rgba(0,191,95,0.07) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(238,97,15,0.06) 0%, transparent 60%);
}
.hero-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(var(--border) 1px, transparent 1px),
                    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 56px 56px; opacity: 0.4;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(39,41,115,0.08); color: var(--indigo);
  padding: 7px 18px; border-radius: 100px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 28px;
}
.hero-badge::before {
  content: ''; width: 7px; height: 7px; border-radius: 50%;
  background: var(--green); animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.5)} }
.hero h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(46px, 5.2vw, 76px);
  font-weight: 800; line-height: 1.05; letter-spacing: -2px;
  color: var(--indigo); margin-bottom: 26px;
}
.hero h1 .hl-green { color: var(--green); position: relative; }
.hero h1 .hl-orange { color: var(--orange); }
.hero h1 .hl-green::after {
  content: ''; position: absolute; left: 0; bottom: 0; right: 0; height: 3px;
  background: var(--green); border-radius: 2px;
  transform: scaleX(0); transform-origin: left;
  animation: ul 0.8s 0.7s ease forwards;
}
@keyframes ul { to { transform: scaleX(1); } }
.hero p { font-size: 17px; line-height: 1.72; color: var(--muted); max-width: 460px; margin-bottom: 42px; }
.hero-ctas { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.btn-primary {
  background: var(--indigo); color: white;
  padding: 15px 34px; border-radius: 100px;
  font-size: 15px; font-weight: 600; text-decoration: none;
  display: inline-flex; align-items: center; gap: 10px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(39,41,115,0.25);
}
.btn-primary:hover { background: var(--orange); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(238,97,15,0.35); }
.btn-secondary {
  color: var(--indigo); font-size: 15px; font-weight: 600;
  text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
  border: 2px solid var(--indigo); padding: 13px 28px; border-radius: 100px;
  transition: background 0.2s, color 0.2s;
}
.btn-secondary:hover { background: var(--indigo); color: white; }
 /* Hero visual cards */
.hero-visual {
  display: flex; flex-direction: column; gap: 14px;
  animation: fadeup 0.9s 0.3s ease both;
}
@keyframes fadeup { from{opacity:0;transform:translateY(28px)} to{opacity:1;transform:translateY(0)} }
.stat-row { display: flex; gap: 14px; }
.stat-card {
  background: white; border: 1px solid var(--border);
  border-radius: 20px; padding: 26px 30px;
  box-shadow: 0 2px 16px rgba(39,41,115,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}
.stat-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(39,41,115,0.12); }
.stat-card.green  { background: var(--green);  color: white; }
.stat-card.indigo { background: var(--indigo); color: white; }
.stat-card.orange { background: var(--orange); color: white; }
.stat-num {
  font-family: 'Syne', sans-serif; font-size: 46px;
  font-weight: 800; letter-spacing: -2px; line-height: 1;
}
.stat-label { font-size: 12.5px; margin-top: 5px; opacity: 0.75; font-weight: 500; }
.pills { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 16px; }
.pill {
  padding: 7px 16px; border-radius: 100px; font-size: 12.5px; font-weight: 600;
  border: 1.5px solid var(--indigo); color: var(--indigo);
  transition: background 0.2s, color 0.2s;
}
.pill:hover { background: var(--indigo); color: white; }
.pill.filled { background: var(--indigo); color: white; }
.pill.green-fill { background: var(--green); color: white; border-color: var(--green); }
.pill.orange-fill { background: var(--orange); color: white; border-color: var(--orange); }
 /* MARQUEE */
.marquee-wrap {
  overflow: hidden; padding: 0;
  background: var(--indigo);
  border-top: none; border-bottom: none;
}
.marquee-track {
  display: flex; animation: ticker 24s linear infinite; white-space: nowrap;
}
@keyframes ticker { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.m-item {
  display: inline-flex; align-items: center; gap: 18px;
  padding: 16px 36px;
  font-family: 'Syne', sans-serif;
  font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.m-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.m-dot.g { background: var(--green); }
.m-dot.o { background: var(--orange); }
.m-dot.w { background: rgba(255,255,255,0.4); }
 /* SECTION SHARED */
section { padding: 100px 60px; }
.s-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--green); margin-bottom: 14px;
}
.s-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(30px, 3.2vw, 50px);
  font-weight: 800; letter-spacing: -1.5px; line-height: 1.08;
  color: var(--indigo);
}
.s-sub { font-size: 16px; color: var(--muted); line-height: 1.7; max-width: 480px; margin-top: 14px; }
 /* SERVICES */
.services-section { background: var(--indigo); }
.services-section .s-title { color: white; }
.services-section .s-sub { color: rgba(255,255,255,0.5); }
.services-section .s-label { color: var(--green); }
.svc-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 56px; flex-wrap: wrap; gap: 24px; }
.svc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; }
.svc-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 38px 34px; border-radius: 4px;
  transition: background 0.3s; cursor: default; position: relative; overflow: hidden;
}
.svc-card::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--orange); transform: scaleY(0); transform-origin: bottom;
  transition: transform 0.3s;
}
.svc-card:nth-child(3n+2)::before { background: var(--green); }
.svc-card:hover::before { transform: scaleY(1); }
.svc-card:hover { background: rgba(255,255,255,0.08); }
.svc-icon {
  width: 46px; height: 46px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 22px;
}
.svc-icon.g  { background: rgba(0,191,95,0.18); }
.svc-icon.o  { background: rgba(238,97,15,0.18); }
.svc-icon.i  { background: rgba(255,255,255,0.1); }
.svc-card h3 { font-family:'Syne',sans-serif; font-size:18px; font-weight:700; color:white; margin-bottom:10px; }
.svc-card p  { font-size:13.5px; line-height:1.7; color:rgba(255,255,255,0.45); }
.svc-link {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 18px; font-size: 13px; font-weight: 600;
  color: var(--green); text-decoration: none; transition: gap 0.2s, color 0.2s;
}
.svc-card:nth-child(odd) .svc-link { color: var(--orange); }
.svc-link:hover { gap: 14px; }
 /* ABOUT */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-img-wrap {
  position: relative; border-radius: 24px; overflow: visible;
  aspect-ratio: 4/3;
}
.about-img-wrap img { width:100%; height:100%; object-fit:cover; border-radius:24px; display:block; }
.about-badge {
  position: absolute; bottom: -24px; right: -24px;
  background: var(--orange); color: white;
  width: 128px; height: 128px; border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; box-shadow: 0 8px 36px rgba(238,97,15,0.45);
  z-index: 2;
}
.about-badge strong { font-family:'Syne',sans-serif; font-size:34px; font-weight:800; line-height:1; }
.about-badge span { font-size:11px; font-weight:600; opacity:0.88; }
.about-deco {
  position: absolute; top: -16px; left: -16px;
  width: 80px; height: 80px; border-radius: 20px;
  background: var(--green); opacity: 0.12; z-index: 0;
}
.about-content p { font-size:16px; line-height:1.75; color:var(--muted); margin-bottom:14px; }
.about-quote {
  border-left: 3px solid var(--green);
  padding: 16px 22px; margin: 28px 0;
  background: rgba(0,191,95,0.06); border-radius: 0 12px 12px 0;
  font-style: italic; font-size: 15.5px; color: var(--indigo); font-weight: 500;
}
.stat-strip { display:flex; gap:28px; margin-top:32px; flex-wrap:wrap; }
.stat-strip > div > .big {
  font-family:'Syne',sans-serif; font-size:34px; font-weight:800; line-height:1;
}
.stat-strip > div:nth-child(1) .big { color: var(--indigo); }
.stat-strip > div:nth-child(2) .big { color: var(--green); }
.stat-strip > div:nth-child(3) .big { color: var(--orange); }
.stat-strip .lbl { font-size:12.5px; color:var(--muted); margin-top:4px; }
 /* INDUSTRIES */
.ind-section { background: #eef0ff; }
.ind-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; margin-top:56px; }
.ind-card {
  background: white; border-radius:20px; padding:30px 26px;
  border: 1px solid var(--border);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.ind-card:hover { transform:translateY(-6px); box-shadow:0 20px 48px rgba(39,41,115,0.13); border-color: var(--indigo); }
.ind-emoji { font-size:34px; margin-bottom:18px; display:block; }
.ind-card h3 { font-family:'Syne',sans-serif; font-size:16px; font-weight:700; color:var(--indigo); margin-bottom:9px; }
.ind-card p  { font-size:13.5px; color:var(--muted); line-height:1.65; }
 /* PROCESS */
.process-section { background: var(--indigo); }
.process-section .s-label { color: var(--orange); }
.process-section .s-title { color: white; }
.process-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:30px; margin-top:64px; position:relative; }
.process-grid::before {
  content:''; position:absolute; top:28px; left:8%; right:8%; height:1px;
  background:linear-gradient(90deg,transparent,rgba(255,255,255,0.1) 20%,rgba(255,255,255,0.1) 80%,transparent);
}
.proc-step { text-align:center; }
.proc-num {
  width:58px; height:58px; border-radius:50%; margin:0 auto 22px;
  display:flex; align-items:center; justify-content:center;
  font-family:'Syne',sans-serif; font-size:19px; font-weight:800;
  position:relative; z-index:1;
}
.proc-num.g { background:rgba(0,191,95,0.15); color:var(--green); border:1.5px solid rgba(0,191,95,0.3); }
.proc-num.o { background:rgba(238,97,15,0.15); color:var(--orange); border:1.5px solid rgba(238,97,15,0.3); }
.proc-num.w { background:rgba(255,255,255,0.08); color:white; border:1.5px solid rgba(255,255,255,0.15); }
.proc-step h3 { font-family:'Syne',sans-serif; font-size:16px; font-weight:700; color:white; margin-bottom:10px; }
.proc-step p  { font-size:13px; color:rgba(255,255,255,0.42); line-height:1.65; }
 /* TESTIMONIALS */
.testi-header { display:flex; justify-content:space-between; align-items:flex-end; margin-bottom:48px; flex-wrap:wrap; gap:20px; }
.testi-rating { text-align:right; }
.testi-rating .big { font-family:'Syne',sans-serif; font-size:40px; font-weight:800; color:var(--orange); line-height:1; }
.testi-rating small { font-size:12.5px; color:var(--muted); }
.testi-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.testi-card {
  background:white; border:1px solid var(--border); border-radius:20px; padding:30px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.testi-card:hover { transform:translateY(-4px); box-shadow:0 16px 40px rgba(39,41,115,0.1); }
.testi-card.featured { background:var(--indigo); border-color:var(--indigo); }
.testi-card.featured p, .testi-card.featured .a-name { color:white; }
.testi-card.featured .a-role { color:rgba(255,255,255,0.6); }
.stars { font-size:13px; letter-spacing:2px; margin-bottom:14px; color:#f4a623; }
.testi-card.featured .stars { color:rgba(255,255,255,0.85); }
.testi-card p { font-size:14.5px; line-height:1.7; color:var(--dark-text); font-style:italic; margin-bottom:22px; }
.t-author { display:flex; align-items:center; gap:12px; }
.t-avatar {
  width:38px; height:38px; border-radius:50%; flex-shrink:0;
  display:flex; align-items:center; justify-content:center;
  font-family:'Syne',sans-serif; font-size:13px; font-weight:700; color:white;
}
.t-avatar.ind { background:var(--indigo); }
.t-avatar.grn { background:var(--green); }
.t-avatar.org { background:var(--orange); }
.testi-card.featured .t-avatar { background:rgba(255,255,255,0.2); }
.a-name { font-size:13.5px; font-weight:600; color:var(--dark-text); }
.a-role { font-size:12px; color:var(--muted); }
 /* PARTNERS */
.partners-strip {
  border-top:1px solid var(--border); border-bottom:1px solid var(--border);
  padding:52px 60px; text-align:center;
  background: white;
}
.p-label { font-size:11.5px; font-weight:700; letter-spacing:0.12em; text-transform:uppercase; color:var(--muted); margin-bottom:36px; }
.p-logos { display:flex; align-items:center; justify-content:center; gap:56px; flex-wrap:wrap; }
.p-logo {
  font-family:'Syne',sans-serif; font-size:17px; font-weight:800;
  letter-spacing:-0.3px; color:var(--muted); opacity:0.4;
  transition:opacity 0.2s, color 0.2s;
}
.p-logo:hover { opacity:1; color:var(--indigo); }
 /* BLOG */
.blog-grid { display:grid; grid-template-columns:2fr 1fr 1fr; gap:22px; margin-top:56px; }
.blog-card {
  border-radius:20px; overflow:hidden; border:1px solid var(--border);
  background:white; transition:transform 0.3s, box-shadow 0.3s;
}
.blog-card:hover { transform:translateY(-4px); box-shadow:0 16px 40px rgba(39,41,115,0.1); }
.blog-img { width:100%; display:block; object-fit:cover; background:#e0e4f5; }
.blog-body { padding:22px 24px; }
.blog-tag {
  display:inline-block;
  padding:4px 12px; border-radius:100px; margin-bottom:10px;
  font-size:11px; font-weight:700; letter-spacing:0.06em; text-transform:uppercase;
}
.blog-tag.g  { background:rgba(0,191,95,0.1);  color:var(--green); }
.blog-tag.o  { background:rgba(238,97,15,0.1);  color:var(--orange); }
.blog-tag.i  { background:rgba(39,41,115,0.08); color:var(--indigo); }
.blog-card h3 { font-family:'Syne',sans-serif; font-size:17px; font-weight:700; line-height:1.3; margin-bottom:10px; color:var(--indigo); }
.blog-card:first-child h3 { font-size:22px; }
.blog-card p  { font-size:13.5px; color:var(--muted); line-height:1.65; }
.blog-date { font-size:11.5px; color:var(--muted); margin-top:14px; opacity:0.7; }
 /* CTA */
.cta-section {
  background: linear-gradient(135deg, var(--indigo) 0%, #1a1e6b 60%, #0e1050 100%);
  padding:100px 60px; text-align:center; position:relative; overflow:hidden;
}
.cta-section::before {
  content:'GROW';
  position:absolute; font-family:'Syne',sans-serif;
  font-size:240px; font-weight:800; color:rgba(255,255,255,0.03);
  top:50%; left:50%; transform:translate(-50%,-50%);
  white-space:nowrap; pointer-events:none; letter-spacing:-8px;
}
.cta-section .s-label { color:var(--green); }
.cta-section h2 {
  font-family:'Syne',sans-serif;
  font-size:clamp(34px,5vw,64px); font-weight:800;
  letter-spacing:-2px; color:white; margin-bottom:18px; line-height:1.07;
}
.cta-section h2 span { color:var(--orange); }
.cta-section > p { font-size:17px; color:rgba(255,255,255,0.65); margin-bottom:42px; }
.cta-form { display:flex; gap:12px; justify-content:center; max-width:480px; margin:0 auto; flex-wrap:wrap; }
.cta-input {
  flex:1; min-width:210px; padding:15px 22px; border-radius:100px;
  border:none; background:rgba(255,255,255,0.12); color:white;
  font-size:15px; font-family:inherit; outline:none;
  border:1.5px solid rgba(255,255,255,0.15);
}
.cta-input::placeholder { color:rgba(255,255,255,0.45); }
.cta-btn {
  background:var(--orange); color:white;
  padding:15px 30px; border-radius:100px;
  font-size:15px; font-weight:700; border:none; cursor:pointer;
  font-family:inherit; transition:transform 0.2s, box-shadow 0.2s;
  box-shadow:0 4px 20px rgba(238,97,15,0.4);
}
.cta-btn:hover { transform:translateY(-2px); box-shadow:0 8px 28px rgba(238,97,15,0.55); }
.cta-note { font-size:12.5px; color:rgba(255,255,255,0.38); margin-top:14px; }
 /* COLOR ACCENT STRIP */
.color-strip { display:flex; height:5px; }
.color-strip .cs-i { flex:1; background:var(--indigo); }
.color-strip .cs-g { flex:1; background:var(--green); }
.color-strip .cs-o { flex:1; background:var(--orange); }
 /* FOOTER */
footer { background:#07081f; padding:72px 60px 36px; color:white; }
.footer-top {
  display:grid; grid-template-columns:2fr 1fr 1fr 1.2fr;
  gap:52px; padding-bottom:52px;
  border-bottom:1px solid rgba(255,255,255,0.07);
}
.footer-logo { margin-bottom:18px; }
.footer-logo img { height:44px; width:auto; filter:brightness(0) invert(1); }
.footer-brand p { font-size:13.5px; color:rgba(255,255,255,0.38); line-height:1.7; margin:0 0 26px; max-width:270px; }
.f-socials { display:flex; gap:10px; }
.f-social {
  width:36px; height:36px; border-radius:50%;
  border:1px solid rgba(255,255,255,0.12);
  display:flex; align-items:center; justify-content:center;
  font-size:13px; color:white; text-decoration:none;
  transition:border-color 0.2s, background 0.2s;
}
.f-social:hover { border-color:var(--green); background:rgba(0,191,95,0.18); }
.footer-col h4 {
  font-family:'Syne',sans-serif; font-size:13px; font-weight:700;
  letter-spacing:0.04em; margin-bottom:18px; color:white;
}
.footer-col ul { list-style:none; }
.footer-col li { margin-bottom:9px; }
.footer-col a { font-size:13px; color:rgba(255,255,255,0.38); text-decoration:none; transition:color 0.2s; }
.footer-col a:hover { color:white; }
.footer-contact-item { margin-bottom:14px; }
.footer-contact-item .fc-label { font-size:10.5px; font-weight:700; letter-spacing:0.1em; text-transform:uppercase; color:var(--green); margin-bottom:3px; }
.footer-contact-item a { font-size:13px; color:rgba(255,255,255,0.5); text-decoration:none; }
.footer-bottom {
  padding-top:32px; display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:14px;
}
.footer-bottom p { font-size:12.5px; color:rgba(255,255,255,0.25); }
.footer-bottom .edm-tag {
  display:inline-flex; align-items:center; gap:8px;
  font-size:12px; color:rgba(255,255,255,0.25);
}
.edm-mini { display:inline-flex; gap:3px; }
.edm-mini span { width:10px; height:10px; border-radius:2px; display:inline-block; }
 /* REVEAL */
.reveal { opacity:0; transform:translateY(24px); transition:opacity 0.7s, transform 0.7s; }
.reveal.visible { opacity:1; transform:translateY(0); }
 /* RESPONSIVE */
@media(max-width:1100px){
  nav{ padding:14px 32px; }
  .hero,.about-grid{ grid-template-columns:1fr; padding:120px 32px 70px; }
  .about-grid{ padding:0; gap:50px; }
  .hero-visual,.about-badge{ display:none; }
  section{ padding:72px 32px; }
  .svc-grid{ grid-template-columns:repeat(2,1fr); }
  .ind-grid{ grid-template-columns:repeat(2,1fr); }
  .process-grid{ grid-template-columns:repeat(2,1fr); }
  .process-grid::before{ display:none; }
  .blog-grid{ grid-template-columns:1fr 1fr; }
  .blog-grid .blog-card:last-child{ grid-column:span 2; }
  .footer-top{ grid-template-columns:1fr 1fr; }
  .testi-grid{ grid-template-columns:1fr 1fr; }
}
@media(max-width:700px){
  nav{ padding:12px 18px; }
  .nav-links{ display:none; }
  section{ padding:56px 18px; }
  .svc-grid,.ind-grid,.testi-grid,.blog-grid,.process-grid{ grid-template-columns:1fr; }
  .blog-grid .blog-card:last-child{ grid-column:span 1; }
  .footer-top{ grid-template-columns:1fr; gap:32px; }
  .cta-section{ padding:70px 18px; }
  .partners-strip{ padding:44px 18px; }
  .p-logos{ gap:28px; }
  .footer-bottom{ flex-direction:column; text-align:center; }
}

/* PAGE HERO */
.page-hero {
padding: 140px 60px 80px;
background: linear-gradient(135deg, var(--indigo) 0%, #1a1e6b 60%, #0e1050 100%);
position: relative; overflow: hidden;
text-align: center;
}
.page-hero::before {
content: '';
position: absolute; inset: 0;
background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
                  linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
background-size: 56px 56px;
}
.page-hero-label {
display: inline-flex; align-items: center; gap: 8px;
background: rgba(0,191,95,0.15); color: var(--green);
padding: 6px 18px; border-radius: 100px;
font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
margin-bottom: 22px;
}
.page-hero h1 {
font-family: 'Syne', sans-serif;
font-size: clamp(38px, 5vw, 70px);
font-weight: 800; letter-spacing: -2px; line-height: 1.06;
color: white; margin-bottom: 20px; position: relative; z-index: 1;
}
.page-hero h1 .hl { color: var(--orange); }
.page-hero p {
font-size: 17px; color: rgba(255,255,255,0.6);
max-width: 560px; margin: 0 auto 36px; line-height: 1.7;
position: relative; z-index: 1;
}
.page-hero-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }
/* BREADCRUMB */
.breadcrumb {
display: flex; align-items: center; gap: 8px;
padding: 14px 60px;
background: var(--paper); border-bottom: 1px solid var(--border);
font-size: 13px; color: var(--muted);
}
.breadcrumb a { color: var(--indigo); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb .sep { opacity: 0.4; }
/* EXTRA */

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.about-stats-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 20px; }
.about-stat { text-align: center; }
.about-stat-num { font-family:'Syne',sans-serif; font-size: 52px; font-weight: 800; letter-spacing: -2px; line-height: 1; }
.about-stat-label { font-size: 13px; color: rgba(255,255,255,0.5); margin-top: 8px; font-weight: 500; }
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.value-card { background: white; border: 1px solid var(--border); border-radius: 20px; padding: 34px 28px; transition: transform 0.3s, box-shadow 0.3s; }
.value-card:hover { transform: translateY(-5px); box-shadow: 0 18px 44px rgba(39,41,115,0.1); }
.val-icon { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 18px; }
.value-card h3 { font-family:'Syne',sans-serif; font-size: 17px; font-weight: 700; color: var(--indigo); margin-bottom: 10px; }
.value-card p { font-size: 14px; color: var(--muted); line-height: 1.7; }
.team-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.team-card { text-align: center; background: var(--paper); border-radius: 20px; padding: 36px 24px; border: 1px solid var(--border); transition: transform 0.3s; }
.team-card:hover { transform: translateY(-5px); }
.team-avatar { width: 80px; height: 80px; border-radius: 50%; margin: 0 auto 18px; display: flex; align-items: center; justify-content: center; font-family:'Syne',sans-serif; font-size: 28px; font-weight: 800; color: white; }
.team-card h3 { font-family:'Syne',sans-serif; font-size: 17px; font-weight: 700; color: var(--indigo); margin-bottom: 4px; }
.team-role { font-size: 12.5px; color: var(--green); font-weight: 600; margin-bottom: 10px; }
.team-bio { font-size: 13.5px; color: var(--muted); line-height: 1.6; }
@media(max-width:1000px){ .about-stats-grid{grid-template-columns:repeat(3,1fr)} .team-grid{grid-template-columns:repeat(2,1fr)} .values-grid{grid-template-columns:repeat(2,1fr)} .two-col{grid-template-columns:1fr} }
@media(max-width:600px){ .about-stats-grid{grid-template-columns:repeat(2,1fr)} .team-grid{grid-template-columns:1fr} .values-grid{grid-template-columns:1fr} }
.f-social.f-linkedin:hover  { border-color:#0077b5; background:rgba(0,119,181,0.2); color:#0077b5; }
.f-social.f-facebook:hover  { border-color:#1877f2; background:rgba(24,119,242,0.2); color:#1877f2; }
.f-social.f-instagram:hover { border-color:#e1306c; background:rgba(225,48,108,0.2); color:#e1306c; }
.f-social.f-youtube:hover   { border-color:#ff0000; background:rgba(255,0,0,0.2);    color:#ff0000; }

/* ══ Package page styles ══ */

.pkg-hero-icon { font-size:64px;display:block;margin:0 auto 20px;position:relative;z-index:1; }
.pkg-category-label { font-family:'Syne',sans-serif;font-size:20px;font-weight:800;color:var(--indigo);margin-bottom:28px;display:flex;align-items:center;gap:10px; }
.pkg-grid { display:grid;grid-template-columns:repeat(3,1fr);gap:22px;margin-bottom:70px; }
.pkg-card { background:var(--paper);border:1.5px solid var(--border);border-radius:22px;padding:32px 28px;position:relative;transition:transform 0.3s,box-shadow 0.3s; }
.pkg-card:hover { transform:translateY(-5px);box-shadow:0 20px 50px rgba(39,41,115,0.12); }
.pkg-badge { position:absolute;top:-13px;left:50%;transform:translateX(-50%);color:white;padding:5px 20px;border-radius:100px;font-size:12px;font-weight:700;white-space:nowrap; }
.pkg-header { margin-bottom:24px;padding-bottom:22px;border-bottom:1px solid var(--border); }
.pkg-name { font-family:'Syne',sans-serif;font-size:18px;font-weight:800;color:var(--indigo);margin-bottom:10px; }
.pkg-price { font-family:'Syne',sans-serif;font-size:36px;font-weight:800;color:var(--dark-text);letter-spacing:-1px;line-height:1; }
.pkg-price span { font-size:15px;font-weight:500;color:var(--muted); }
.pkg-sub { font-size:12.5px;color:var(--muted);margin-top:6px; }
.pkg-features { list-style:none;padding:0;margin:0 0 26px; }
.pkg-features li { font-size:13.5px;color:var(--dark-text);padding:7px 0;border-bottom:1px solid rgba(39,41,115,0.06);display:flex;align-items:flex-start;gap:8px; }
.pkg-features li::before { content:'✓';color:var(--green);font-weight:800;font-size:13px;flex-shrink:0;margin-top:2px; }
.pkg-btn { display:block;text-align:center;padding:14px;border-radius:100px;font-size:15px;font-weight:700;text-decoration:none;transition:.2s; }
.pkg-btn.outline { border:2px solid var(--indigo);color:var(--indigo); }
.pkg-btn.outline:hover { background:var(--indigo);color:white; }
.pkg-btn.filled { background:var(--indigo);color:white; }
.pkg-btn.filled:hover { background:var(--orange); }
.why-grid { display:grid;grid-template-columns:repeat(3,1fr);gap:20px;margin-top:48px; }
.why-card { background:white;border:1px solid var(--border);border-radius:18px;padding:28px;text-align:center; }
.why-icon { font-size:32px;display:block;margin:0 auto 14px; }
.why-card h4 { font-family:'Syne',sans-serif;font-size:16px;font-weight:800;color:var(--indigo);margin-bottom:8px; }
.why-card p { font-size:13.5px;color:var(--muted);line-height:1.65; }
.compare-table { width:100%;border-collapse:collapse;margin-top:40px; }
.compare-table th { background:var(--indigo);color:white;padding:14px 18px;font-family:'Syne',sans-serif;font-size:14px;font-weight:700;text-align:left; }
.compare-table td { padding:13px 18px;font-size:14px;border-bottom:1px solid var(--border);color:var(--dark-text); }
.compare-table tr:nth-child(even) td { background:var(--paper); }
.compare-table .check { color:var(--green);font-weight:800;font-size:16px; }
.compare-table .dash  { color:var(--muted); }
.faq-list { max-width:760px;margin:0 auto; }
.faq-item { border-bottom:1px solid var(--border);padding:20px 0; }
.faq-q { font-family:'Syne',sans-serif;font-size:17px;font-weight:700;color:var(--indigo);margin-bottom:10px; }
.faq-a { font-size:15px;color:var(--muted);line-height:1.72; }
@media(max-width:900px){ .pkg-grid{grid-template-columns:1fr} .why-grid{grid-template-columns:1fr 1fr} }
@media(max-width:560px){ .why-grid{grid-template-columns:1fr} }

/* ── Nav active state ── */
.nav-links a.nav-active {
color: var(--orange);
font-weight: 700;
}

/* ── Social icon brand hover colours ── */
.f-social.f-linkedin:hover  { border-color:#0077b5; background:rgba(0,119,181,0.18); color:#0077b5; }
.f-social.f-facebook:hover  { border-color:#1877f2; background:rgba(24,119,242,0.18); color:#1877f2; }
.f-social.f-instagram:hover { border-color:#e1306c; background:rgba(225,48,108,0.18); color:#e1306c; }
.f-social.f-youtube:hover   { border-color:#ff0000; background:rgba(255,0,0,0.18);    color:#ff0000; }

/* ══════════════════════════════════════════════════════════════════
 WORDPRESS CORE COMPATIBILITY
══════════════════════════════════════════════════════════════════ */
.wp-caption { max-width:100%; }
.wp-caption-text { font-size:13px; color:var(--muted); text-align:center; margin-top:6px; }
.alignleft  { float:left;  margin:0 20px 16px 0; }
.alignright { float:right; margin:0 0 16px 20px; }
.aligncenter { display:block; margin:0 auto 16px; }

/* ══════════════════════════════════════════════════════════════════
 NAV — MOBILE BURGER
══════════════════════════════════════════════════════════════════ */
.burger { display:none; flex-direction:column; gap:5px; background:none; border:none; cursor:pointer; padding:8px; z-index:200; }
.burger span { display:block; width:24px; height:2px; background:var(--indigo); border-radius:2px; transition:.3s; }
.burger.open span:nth-child(1) { transform:translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity:0; }
.burger.open span:nth-child(3) { transform:translateY(-7px) rotate(-45deg); }

/* ══════════════════════════════════════════════════════════════════
 ARTICLE / BLOG SINGLE
══════════════════════════════════════════════════════════════════ */
.article-body { font-size:17px; line-height:1.85; color:var(--muted); }
.article-body h2 { font-family:'Syne',sans-serif; font-size:26px; font-weight:800; color:var(--indigo); margin:48px 0 16px; }
.article-body h3 { font-family:'Syne',sans-serif; font-size:20px; font-weight:700; color:var(--indigo); margin:36px 0 12px; }
.article-body p  { margin-bottom:20px; }
.article-body ul,.article-body ol { padding-left:24px; margin-bottom:20px; }
.article-body li { margin-bottom:8px; }
.article-body blockquote { border-left:4px solid var(--green); margin:32px 0; padding:20px 28px; background:var(--paper); border-radius:0 12px 12px 0; font-size:18px; font-style:italic; color:var(--indigo); }
.article-body a  { color:var(--indigo); font-weight:600; }
.article-body img { max-width:100%; border-radius:16px; margin:20px 0; }
.article-body code { background:var(--paper); padding:2px 7px; border-radius:5px; font-size:14.5px; color:var(--orange); }
.article-body pre { background:#1a1b3a; color:#e0e0ff; padding:24px; border-radius:14px; overflow-x:auto; margin:28px 0; font-size:14px; }
.article-body table { width:100%; border-collapse:collapse; margin-bottom:24px; }
.article-body th { background:var(--indigo); color:white; padding:12px 16px; text-align:left; }
.article-body td { padding:11px 16px; border-bottom:1px solid var(--border); }

.share-bar { display:flex; align-items:center; gap:12px; padding:24px 0; border-top:1px solid var(--border); border-bottom:1px solid var(--border); margin:40px 0; flex-wrap:wrap; }
.share-label { font-size:14px; font-weight:700; color:var(--dark-text); }
.share-btn { padding:8px 18px; border-radius:8px; font-size:13px; font-weight:600; text-decoration:none; background:var(--paper); color:var(--dark-text); border:1.5px solid var(--border); transition:.2s; }
.share-btn:hover { background:var(--indigo); color:white; border-color:var(--indigo); }

.author-card { display:flex; gap:20px; align-items:flex-start; background:var(--paper); border-radius:20px; padding:28px; margin:40px 0; }
.author-card-av,.author-card-av img { width:64px; height:64px; border-radius:50%; object-fit:cover; background:var(--indigo); color:white; display:flex; align-items:center; justify-content:center; font-family:'Syne',sans-serif; font-weight:800; font-size:20px; flex-shrink:0; overflow:hidden; }
.author-card h4 { font-family:'Syne',sans-serif; font-weight:800; font-size:17px; color:var(--indigo); margin-bottom:2px; }
.author-card .role { font-size:13px; color:var(--orange); font-weight:600; margin-bottom:8px; }
.author-card p { font-size:14px; line-height:1.65; color:var(--muted); margin:0; }

.article-layout { display:grid; grid-template-columns:1fr 320px; gap:56px; max-width:1200px; margin:0 auto; }
.article-sidebar { display:flex; flex-direction:column; gap:24px; position:sticky; top:90px; }
.sidebar-card { background:var(--indigo); color:white; border-radius:20px; padding:28px; }
.sidebar-card h3 { font-family:'Syne',sans-serif; font-weight:800; font-size:19px; color:white; margin-bottom:12px; }
.sidebar-card p { font-size:14.5px; color:rgba(255,255,255,.75); margin-bottom:20px; line-height:1.6; }
.sidebar-card-white { background:var(--paper); border-radius:20px; padding:28px; }
.sidebar-card-white h3 { font-family:'Syne',sans-serif; font-weight:800; font-size:19px; color:var(--indigo); margin-bottom:20px; }

.related-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.related-card img { width:100%; height:140px; object-fit:cover; border-radius:12px; }
.related-card h4 a { font-size:14px; font-weight:600; color:var(--indigo); text-decoration:none; line-height:1.4; }
.related-card p { font-size:12px; color:var(--muted); margin-top:4px; }

/* ══════════════════════════════════════════════════════════════════
 SERVICES DETAIL PAGE
══════════════════════════════════════════════════════════════════ */
.svc-detail-row { display:flex; gap:72px; align-items:center; margin-bottom:100px; }
.svc-detail-row.flip { flex-direction:row-reverse; }
.svc-detail-row:last-child { margin-bottom:0; }
.svc-detail-img { flex:0 0 420px; }
.svc-img-placeholder { height:340px; background:var(--paper); border-radius:24px; display:flex; align-items:center; justify-content:center; font-size:80px; border:1.5px solid var(--border); }
.svc-img-tag { width:100%; height:340px; object-fit:cover; border-radius:24px; display:block; }
.svc-detail-icon { font-size:40px; margin-bottom:16px; }
.svc-detail-content h2 { font-family:'Syne',sans-serif; font-size:32px; font-weight:800; color:var(--indigo); margin-bottom:8px; }
.svc-detail-tag { font-size:15px; font-weight:600; color:var(--orange); margin-bottom:14px; }
.svc-features-list { padding:0; list-style:none; display:grid; grid-template-columns:1fr 1fr; gap:10px 24px; margin:16px 0; }
.svc-features-list li { font-size:14.5px; color:var(--dark-text); display:flex; align-items:center; gap:8px; font-weight:500; }
.svc-features-list li::before { content:'✓'; color:var(--green); font-weight:800; font-size:13px; flex-shrink:0; }

/* ══════════════════════════════════════════════════════════════════
 ABOUT PAGE
══════════════════════════════════════════════════════════════════ */
.about-badge { display:inline-block; padding:6px 16px; border-radius:100px; background:rgba(39,41,115,.1); color:var(--indigo); font-size:12.5px; font-weight:700; letter-spacing:.06em; text-transform:uppercase; margin-bottom:16px; }
.values-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:28px; max-width:1100px; margin:0 auto; }
.val-card { background:white; border-radius:20px; padding:36px; border:1.5px solid var(--border); }
.val-icon { font-size:36px; margin-bottom:16px; }
.val-card h3 { font-family:'Syne',sans-serif; font-size:20px; font-weight:800; color:var(--indigo); margin-bottom:10px; }
.val-card p { font-size:15.5px; color:var(--muted); line-height:1.65; }
.team-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:24px; max-width:1200px; margin:0 auto; }
.team-card { background:white; border-radius:20px; padding:28px 24px; text-align:center; border:1.5px solid var(--border); transition:.25s; }
.team-card:hover { transform:translateY(-4px); box-shadow:0 16px 40px rgba(0,0,0,.08); }
.team-avatar { width:76px; height:76px; border-radius:50%; background:var(--indigo); color:white; display:flex; align-items:center; justify-content:center; font-family:'Syne',sans-serif; font-weight:800; font-size:22px; margin:0 auto 16px; overflow:hidden; }
.team-avatar img { width:100%; height:100%; object-fit:cover; }
.team-card h3 { font-family:'Syne',sans-serif; font-size:16px; font-weight:800; color:var(--indigo); margin-bottom:4px; }
.team-role { font-size:13px; color:var(--orange); font-weight:600; margin-bottom:10px; }
.team-card p { font-size:13.5px; color:var(--muted); line-height:1.6; margin-bottom:14px; }

/* ══════════════════════════════════════════════════════════════════
 CONTACT PAGE
══════════════════════════════════════════════════════════════════ */
.contact-form .two-col { display:grid; grid-template-columns:1fr 1fr; gap:20px; margin-bottom:20px; }
.contact-form .form-group { display:flex; flex-direction:column; gap:7px; margin-bottom:20px; }
.contact-form label { font-size:14px; font-weight:600; color:var(--dark-text); }
.contact-form .req { color:var(--orange); }
.contact-form input,.contact-form select,.contact-form textarea { border:1.5px solid var(--border); border-radius:10px; padding:13px 16px; font-size:15px; font-family:'Instrument Sans',sans-serif; outline:none; transition:.2s; background:white; width:100%; box-sizing:border-box; }
.contact-form input:focus,.contact-form select:focus,.contact-form textarea:focus { border-color:var(--indigo); box-shadow:0 0 0 3px rgba(39,41,115,.1); }
.contact-form textarea { resize:vertical; min-height:130px; }
.service-chips { display:flex; flex-wrap:wrap; gap:10px; margin-top:6px; }
.chip { display:flex; align-items:center; gap:6px; padding:8px 16px; border:1.5px solid var(--border); border-radius:100px; font-size:13.5px; font-weight:500; cursor:pointer; transition:.2s; user-select:none; }
.chip:hover { border-color:var(--indigo); background:rgba(39,41,115,.05); }
.chip input { display:none; }
.chip.checked { background:var(--indigo); color:white; border-color:var(--indigo); }
.contact-card { background:var(--indigo); border-radius:20px; padding:32px; margin-bottom:20px; color:white; }
.contact-card h3 { font-family:'Syne',sans-serif; font-weight:800; font-size:20px; color:white; margin-bottom:24px; }
.c-info-item { display:flex; gap:14px; align-items:flex-start; margin-bottom:20px; }
.c-info-icon { font-size:20px; flex-shrink:0; }
.c-info-label { font-size:11.5px; text-transform:uppercase; letter-spacing:.06em; color:rgba(255,255,255,.5); font-weight:700; margin-bottom:3px; }
.c-info-item a,.c-info-item div:last-child div:last-child { font-size:15px; color:rgba(255,255,255,.85); text-decoration:none; }
.whatsapp-cta { display:flex; align-items:center; justify-content:center; gap:8px; background:#25D366; color:white; border-radius:12px; padding:14px; font-size:15px; font-weight:600; text-decoration:none; margin-top:20px; transition:.2s; }
.whatsapp-cta:hover { background:#1eb858; }
.contact-card-alt { background:var(--paper); border-radius:20px; padding:32px; border:1.5px solid var(--border); }
.contact-card-alt h3 { font-family:'Syne',sans-serif; font-weight:800; font-size:20px; color:var(--indigo); margin-bottom:12px; }

/* ══════════════════════════════════════════════════════════════════
 REVIEWS PAGE
══════════════════════════════════════════════════════════════════ */
.ratings-summary { display:flex; gap:48px; align-items:center; background:var(--paper); border-radius:24px; padding:40px; }
.rating-overall { text-align:center; flex-shrink:0; }
.r-score { font-family:'Syne',sans-serif; font-size:72px; font-weight:800; color:var(--indigo); line-height:1; }
.r-stars { font-size:28px; color:#f59e0b; }
.r-total { font-size:13px; color:var(--muted); margin-top:6px; }
.rating-platforms { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; flex:1; }
.plat-card { background:white; border-radius:16px; padding:20px; text-align:center; border:1.5px solid var(--border); }
.plat-name { font-size:13px; font-weight:700; color:var(--dark-text); margin-bottom:8px; }
.plat-stars { font-size:16px; color:#f59e0b; }
.plat-score { font-family:'Syne',sans-serif; font-size:28px; font-weight:800; color:var(--indigo); }
.plat-total { font-size:12px; color:var(--muted); }

/* ══════════════════════════════════════════════════════════════════
 INDUSTRIES PAGE
══════════════════════════════════════════════════════════════════ */
.ind-detail-row { display:flex; gap:72px; align-items:center; padding:60px 0; border-bottom:1.5px solid var(--border); }
.ind-detail-row.flip { flex-direction:row-reverse; }
.ind-detail-row:last-child { border-bottom:none; }
.ind-detail-icon-wrap { flex:0 0 340px; text-align:center; }
.ind-big-icon { font-size:100px; margin-bottom:28px; }
.ind-results { display:flex; flex-direction:column; gap:12px; }
.ind-result-item { background:var(--paper); border-radius:12px; padding:14px 20px; font-size:14px; font-weight:600; color:var(--indigo); border-left:4px solid var(--green); text-align:left; }
.ind-detail-content h2 { font-family:'Syne',sans-serif; font-size:32px; font-weight:800; color:var(--indigo); margin-bottom:16px; line-height:1.15; }
.ind-detail-content p { font-size:16.5px; color:var(--muted); line-height:1.75; margin-bottom:24px; }

/* ══════════════════════════════════════════════════════════════════
 PACKAGES / PRICING
══════════════════════════════════════════════════════════════════ */
.compare-table { width:100%; border-collapse:collapse; border-radius:16px; overflow:hidden; font-size:14.5px; }
.compare-table thead tr { background:var(--indigo); color:white; }
.compare-table th { padding:16px 20px; font-family:'Syne',sans-serif; font-weight:700; font-size:14px; text-align:left; }
.compare-table th:not(:first-child) { text-align:center; }
.compare-table td { padding:14px 20px; border-bottom:1px solid var(--border); background:white; }
.compare-table tr:last-child td { border-bottom:none; }
.compare-table td:first-child { font-weight:600; background:var(--paper); }
.faq-item { background:white; border-radius:16px; padding:24px 28px; margin-bottom:14px; border:1.5px solid var(--border); }
.faq-q { font-size:16px; font-weight:700; color:var(--indigo); margin-bottom:10px; }
.faq-a { font-size:15px; color:var(--muted); line-height:1.65; }

/* ══════════════════════════════════════════════════════════════════
 BLOG PAGE & FILTER
══════════════════════════════════════════════════════════════════ */
.blog-featured { display:grid; grid-template-columns:1fr 1fr; gap:0; background:var(--paper); border-radius:24px; overflow:hidden; margin-bottom:20px; }
.blog-feat-img img { width:100%; height:380px; object-fit:cover; display:block; }
.blog-feat-body { padding:40px; }
.blog-feat-body h2 { font-family:'Syne',sans-serif; font-size:26px; font-weight:800; color:var(--indigo); line-height:1.2; margin:14px 0; }
.blog-feat-body h2 a { text-decoration:none; color:inherit; }
.blog-feat-body h2 a:hover { color:var(--orange); }
.blog-feat-body p { font-size:15.5px; color:var(--muted); line-height:1.7; }
.blog-featured-badge { display:inline-block; padding:4px 12px; border-radius:100px; background:rgba(238,97,15,.12); color:var(--orange); font-size:11px; font-weight:700; letter-spacing:.06em; text-transform:uppercase; margin-left:8px; }
.blog-meta { font-size:13px; color:var(--muted); margin-top:14px; }
.filter-pill { padding:9px 20px; border-radius:100px; font-size:13.5px; font-weight:600; text-decoration:none; background:var(--paper); color:var(--dark-text); border:1.5px solid var(--border); transition:.18s; display:inline-flex; align-items:center; gap:6px; }
.filter-pill:hover { border-color:var(--indigo); color:var(--indigo); }
.filter-pill.active { background:var(--indigo); color:white; border-color:var(--indigo); }
.pill-count { background:rgba(0,0,0,.07); border-radius:100px; padding:1px 7px; font-size:11px; }
.filter-pill.active .pill-count { background:rgba(255,255,255,.25); }

/* ══════════════════════════════════════════════════════════════════
 404 PAGE
══════════════════════════════════════════════════════════════════ */
.error-404 { text-align:center; padding:140px 60px; }
.error-code { font-family:'Syne',sans-serif; font-size:140px; font-weight:800; color:var(--indigo); line-height:1; opacity:.1; }
.error-404 h1 { font-family:'Syne',sans-serif; font-size:36px; font-weight:800; color:var(--indigo); margin:-40px 0 16px; }
.error-404 p { font-size:17px; color:var(--muted); margin-bottom:36px; }

/* ══════════════════════════════════════════════════════════════════
 PAGINATION
══════════════════════════════════════════════════════════════════ */
.page-numbers { display:inline-flex; align-items:center; justify-content:center; min-width:40px; height:40px; padding:0 14px; border-radius:8px; font-size:14px; font-weight:600; text-decoration:none; border:1.5px solid var(--border); color:var(--dark-text); transition:.18s; margin:0 3px; }
.page-numbers:hover { border-color:var(--indigo); color:var(--indigo); }
.page-numbers.current { background:var(--indigo); color:white; border-color:var(--indigo); }

/* ══════════════════════════════════════════════════════════════════
 BACK TO TOP & MOBILE
══════════════════════════════════════════════════════════════════ */
#back-to-top { position:fixed; bottom:28px; right:28px; width:46px; height:46px; border-radius:50%; background:var(--indigo); color:white; border:none; font-size:20px; cursor:pointer; opacity:0; transition:.3s; z-index:9999; display:flex; align-items:center; justify-content:center; box-shadow:0 4px 20px rgba(0,0,0,.2); pointer-events:none; }
#back-to-top.visible { opacity:1; pointer-events:auto; }

@media (max-width:1024px) {
.svc-detail-row,.svc-detail-row.flip,.ind-detail-row,.ind-detail-row.flip { flex-direction:column !important; gap:40px; }
.svc-detail-img,.ind-detail-icon-wrap { flex:none; width:100%; }
.team-grid { grid-template-columns:repeat(2,1fr); }
.values-grid { grid-template-columns:1fr; }
.ratings-summary { flex-direction:column; }
.rating-platforms { grid-template-columns:repeat(2,1fr); }
.article-layout { grid-template-columns:1fr !important; }
.article-sidebar { position:static !important; }
.related-grid { grid-template-columns:1fr 1fr; }
}
@media (max-width:768px) {
.burger { display:flex; }
.nav-links { display:none; position:fixed; top:0; left:0; right:0; bottom:0; background:white; flex-direction:column; align-items:center; justify-content:center; gap:28px; z-index:150; }
.nav-links.open { display:flex; }
.nav-links li { list-style:none; }
.nav-links a { font-size:22px; font-weight:700; color:var(--indigo); text-decoration:none; }
.blog-featured { grid-template-columns:1fr; }
.contact-form .two-col { grid-template-columns:1fr; }
.team-grid { grid-template-columns:1fr 1fr; }
.svc-features-list { grid-template-columns:1fr; }
.rating-platforms { grid-template-columns:1fr 1fr; }
.related-grid { grid-template-columns:1fr; }
}
