/* ==========================================
   TechBridge Services Ltd — public.css
   Restored clean state
   ========================================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ink:        #0A1628;
  --navy:       #0E2A47;
  --blue:       #1A3F6F;
  --teal:       #0EA5C9;
  --teal-dim:   #E0F2F8;
  --white:      #FFFFFF;
  --surface:    #F8FAFB;
  --panel:      #F2F5F8;
  --border:     #E4EAF0;
  --border-md:  #C8D5E3;
  --text:       #1A2332;
  --sub:        #4B5E75;
  --muted:      #7B90A8;
  --font-head:  'Plus Jakarta Sans', 'Nunito', sans-serif;
  --font-body:  'Inter', sans-serif;
  --radius-sm:  6px;
  --radius:     10px;
  --radius-lg:  16px;
  --shadow-sm:  0 2px 8px rgba(10,22,40,.07);
  --shadow-md:  0 4px 20px rgba(10,22,40,.09);
  --shadow-lg:  0 12px 40px rgba(10,22,40,.12);
  --trans:      all .2s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); color: var(--text); background: var(--white); line-height: 1.65; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container { max-width: 1160px; margin: 0 auto; padding: 0 28px; }

h1,h2,h3,h4,h5 { font-family: var(--font-head); color: var(--ink); line-height: 1.15; letter-spacing: -.02em; }
h1 { font-size: clamp(1.9rem, 4vw, 2.8rem); font-weight: 800; }
h2 { font-size: clamp(1.5rem, 2.8vw, 2.1rem); font-weight: 700; }
h3 { font-size: 1.1rem; font-weight: 700; }
h4 { font-size: .95rem; font-weight: 700; }
p  { color: var(--sub); line-height: 1.75; }

.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .68rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--teal); margin-bottom: 1rem;
}
.section-label::before { content: ''; display: block; width: 16px; height: 2px; background: var(--teal); flex-shrink: 0; }
.section-label--light { color: rgba(255,255,255,.65); }
.section-label--light::before { background: rgba(255,255,255,.5); }
.section-heading { color: var(--ink); margin-bottom: .75rem; }
.section-heading--light { color: var(--white); }
.section-sub { color: var(--sub); font-size: 1rem; max-width: 560px; margin: 0 auto; line-height: 1.75; }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-cta { text-align: center; margin-top: 2.5rem; }
.section { padding: 72px 0; }
.section--surface { background: var(--surface); }
.section--navy { background: var(--navy); }
.mt-2 { margin-top: 1.5rem; }

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: .45rem; font-family: var(--font-head); font-weight: 600; font-size: .875rem; letter-spacing: .01em; padding: .7rem 1.5rem; border-radius: var(--radius-sm); border: 1.5px solid transparent; cursor: pointer; transition: var(--trans); white-space: nowrap; line-height: 1; }
.btn--primary { background: var(--teal); color: var(--white); border-color: var(--teal); }
.btn--primary:hover { background: #0b8fad; border-color: #0b8fad; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(14,165,201,.28); }
.btn--outline { background: transparent; color: var(--blue); border-color: var(--border-md); }
.btn--outline:hover { border-color: var(--teal); color: var(--teal); background: var(--teal-dim); }
.btn--dark { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn--dark:hover { background: var(--blue); }
.btn--white { background: var(--white); color: var(--navy); border-color: var(--white); }
.btn--white:hover { background: var(--surface); transform: translateY(-1px); }
.btn--outline-white { background: transparent; color: rgba(255,255,255,.9); border-color: rgba(255,255,255,.35); }
.btn--outline-white:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.7); }
.btn--teal { background: var(--teal); color: white; border: 2px solid var(--teal); }
.btn--teal:hover { background: #0b8fad; border-color: #0b8fad; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(14,165,201,.3); }
.btn--ghost { background: rgba(255,255,255,.1); color: white; border: 2px solid rgba(255,255,255,.3); backdrop-filter: blur(8px); }
.btn--ghost:hover { background: rgba(255,255,255,.18); border-color: rgba(255,255,255,.6); }
.btn--ghost-white { background: transparent; color: white; border: 2px solid rgba(255,255,255,.4); }
.btn--ghost-white:hover { background: rgba(255,255,255,.1); border-color: white; }
.btn--outline-dark { background: transparent; color: var(--ink); border: 2px solid var(--border-md); }
.btn--outline-dark:hover { border-color: var(--teal); color: var(--teal); background: var(--teal-dim); }
.btn--sm  { padding: .5rem 1rem; font-size: .8rem; }
.btn--lg  { padding: .85rem 2rem; font-size: .95rem; }
.btn--block { width: 100%; justify-content: center; }

/* Navbar */
.navbar { position: sticky; top: 0; z-index: 900; background: rgba(10,22,60,.92); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border-bottom: 1px solid rgba(255,255,255,.07); transition: box-shadow .25s; }
.navbar.scrolled { box-shadow: 0 2px 24px rgba(10,22,40,.35); }
.navbar__inner { display: flex; align-items: center; justify-content: space-between; height: 64px; gap: 1rem; }
.navbar__brand { display: flex; align-items: center; gap: .65rem; flex-shrink: 0; text-decoration: none; padding: .2rem 0; }
.navbar__tb-icon { height: 38px; width: 38px; object-fit: contain; display: block; flex-shrink: 0; }
.nb-logo-text { display: flex; flex-direction: column; line-height: 1; gap: .18rem; }
.nb-name { display: flex; align-items: baseline; }
.nb-tech { font-family: var(--font-head); font-size: .95rem; font-weight: 800; color: rgba(255,255,255,.95); letter-spacing: -.02em; }
.nb-bridge { font-family: var(--font-head); font-size: .95rem; font-weight: 800; color: #0EA5C9; letter-spacing: -.02em; }
.nb-sub { font-family: var(--font-body); font-size: .52rem; font-weight: 500; color: rgba(255,255,255,.32); letter-spacing: .1em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: .1rem; margin: 0; }
.nav-link { font-family: var(--font-body); font-weight: 600; font-size: .72rem; color: rgba(255,255,255,.75); padding: .45rem .85rem; border-radius: var(--radius-sm); transition: var(--trans); letter-spacing: .08em; text-transform: uppercase; position: relative; }
.nav-link::after { content: ''; position: absolute; bottom: 0; left: .85rem; right: .85rem; height: 1.5px; background: var(--teal); transform: scaleX(0); transition: transform .22s ease; border-radius: 2px; }
.nav-link:hover { color: rgba(255,255,255,1); background: rgba(255,255,255,.07); }
.nav-link:hover::after { transform: scaleX(1); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: .4rem; }
.nav-toggle span { display: block; width: 22px; height: 1.5px; background: rgba(255,255,255,.85); border-radius: 2px; transition: var(--trans); }

/* Flash */
.flash-messages { padding: 0 1rem; max-width: 1160px; margin: 1rem auto 0; }
.flash { display: flex; align-items: center; gap: .65rem; background: #EDF7F2; border: 1px solid #34C97A; color: #1A7A4A; border-radius: var(--radius-sm); padding: .85rem 1.25rem; margin-bottom: .75rem; font-size: .875rem; }

/* Hero */
.hero { position: relative; background: linear-gradient(135deg, rgba(8,18,50,.96) 0%, rgba(12,35,72,.92) 55%, rgba(10,28,62,.95) 100%), url('/static/img/hero-bg.jpg') center center / cover no-repeat; overflow: hidden; min-height: calc(100vh - 64px); display: flex; align-items: center; padding: 60px 0; border-bottom: none; }
.hero::before { content: ''; position: absolute; top: -120px; right: -120px; width: 600px; height: 600px; border: 1px solid rgba(14,165,201,.12); border-radius: 50%; pointer-events: none; z-index: 0; }
.hero::after { content: ''; position: absolute; bottom: -80px; left: -80px; width: 400px; height: 400px; border: 1px solid rgba(14,165,201,.08); border-radius: 50%; pointer-events: none; z-index: 0; display: block; }
.hero__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.1fr 1fr; gap: 4rem; align-items: center; width: 100%; }
.hero__stats-strip { display: flex; align-items: center; gap: 1.5rem; margin-bottom: 2rem; }
.hero__stat { display: flex; flex-direction: column; gap: .1rem; }
.hero__stat-num { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 1.6rem; font-weight: 700; color: var(--white); line-height: 1; letter-spacing: -.01em; }
.hero__stat-label { font-family: var(--font-body); font-size: .68rem; font-weight: 500; color: rgba(255,255,255,.5); letter-spacing: .1em; text-transform: uppercase; }
.hero__stat-divider { width: 1px; height: 32px; background: rgba(255,255,255,.15); flex-shrink: 0; }
.hero__heading { font-family: 'Cormorant Garamond', Georgia, serif; color: var(--white); margin-bottom: 1.25rem; font-size: clamp(2rem, 3.2vw, 2.4rem); font-weight: 600; letter-spacing: .02em; line-height: 1.28; }
.hero__sub { color: rgba(255,255,255,.72); font-size: 1rem; line-height: 1.85; margin-bottom: 2.25rem; max-width: 480px; font-weight: 400; }
.hero__actions { display: flex; gap: .85rem; flex-wrap: wrap; }
.hero__visual { display: flex; justify-content: flex-end; align-items: center; }
.hero__panel { width: 100%; max-width: 440px; background: rgba(255,255,255,.97); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,.3); border-radius: var(--radius-lg); box-shadow: 0 24px 64px rgba(0,0,0,.25); overflow: hidden; }
.hero__panel-header { background: var(--ink); padding: .9rem 1.25rem; display: flex; align-items: center; gap: .75rem; }
.hero__panel-dots { display: flex; gap: .4rem; }
.hero__panel-dots span { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.15); }
.hero__panel-dots span:first-child { background: #FF5F57; }
.hero__panel-dots span:nth-child(2) { background: #FEBC2E; }
.hero__panel-dots span:nth-child(3) { background: #28C840; }
.hero__panel-title { font-family: var(--font-body); font-size: .75rem; color: rgba(255,255,255,.5); margin: 0 auto; }
.hero__panel-body { padding: 1.25rem; }
.service-pill-row { display: flex; flex-direction: column; gap: .6rem; }
.service-pill { display: flex; align-items: center; gap: .9rem; padding: .75rem 1rem; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm); transition: var(--trans); }
.service-pill:hover { border-color: var(--teal); background: var(--teal-dim); }
.service-pill__icon { width: 32px; height: 32px; background: var(--teal-dim); border-radius: 7px; display: flex; align-items: center; justify-content: center; color: var(--teal); font-size: .9rem; flex-shrink: 0; }
.service-pill__text { flex: 1; }
.service-pill__name { font-family: var(--font-head); font-size: .825rem; font-weight: 600; color: var(--ink); display: block; }
.service-pill__desc { font-size: .72rem; color: var(--muted); }
.service-pill__status { width: 7px; height: 7px; background: #34C97A; border-radius: 50%; flex-shrink: 0; }

/* Trust row */
.trust-row { background: var(--white); border-bottom: 1px solid var(--border); padding: 22px 0; }
.trust-row__inner { display: flex; align-items: center; justify-content: center; }
.trust-item { display: flex; align-items: center; gap: .85rem; padding: .5rem 2.5rem; flex: 1; max-width: 320px; }
.trust-item + .trust-item { border-left: 1px solid var(--border); }
.trust-item__icon { width: 34px; height: 34px; background: var(--teal-dim); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--teal); font-size: .9rem; flex-shrink: 0; }
.trust-item div { display: flex; flex-direction: column; }
.trust-item strong { font-family: var(--font-head); font-size: .875rem; font-weight: 600; color: var(--ink); line-height: 1.2; margin-bottom: .15rem; }
.trust-item span { font-size: .775rem; color: var(--muted); }

/* About preview */
.about-preview__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.about-preview__text p { color: var(--sub); margin-bottom: 1rem; font-size: .975rem; }
.about-preview__pillars { display: flex; flex-direction: column; gap: 0; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.pillar { display: flex; align-items: center; gap: 1rem; padding: 1.1rem 1.4rem; border-bottom: 1px solid var(--border); transition: var(--trans); }
.pillar:last-child { border-bottom: none; }
.pillar:hover { background: var(--surface); }
.pillar__icon { width: 34px; height: 34px; border-radius: 8px; background: var(--teal-dim); display: flex; align-items: center; justify-content: center; color: var(--teal); font-size: .9rem; flex-shrink: 0; }
.pillar__text { display: flex; flex-direction: column; gap: .1rem; }
.pillar__text strong { font-family: var(--font-head); font-size: .875rem; font-weight: 600; color: var(--ink); }
.pillar__text span { font-size: .78rem; color: var(--muted); }

/* Services grid */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.services-grid--full { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.25rem; background: transparent; border: none; border-radius: 0; }
.service-card { display: flex; flex-direction: column; padding: 2rem 1.75rem; background: var(--white); transition: var(--trans); cursor: pointer; }
.service-card:hover { background: var(--surface); }
.services-grid--full .service-card { border: 1px solid var(--border); border-radius: var(--radius-lg); }
.services-grid--full .service-card:hover { border-color: var(--teal); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.service-card__icon { width: 44px; height: 44px; background: var(--surface); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--teal); font-size: 1.2rem; margin-bottom: 1.1rem; border: 1px solid var(--border); transition: var(--trans); }
.service-card:hover .service-card__icon { background: var(--teal-dim); border-color: rgba(14,165,201,.25); }
.service-card__title { font-size: .95rem; font-weight: 700; color: var(--ink); margin-bottom: .5rem; font-family: var(--font-head); }
.service-card__desc { color: var(--sub); font-size: .835rem; line-height: 1.65; flex: 1; margin-bottom: 1.25rem; }
.service-card__link { display: inline-flex; align-items: center; gap: .35rem; font-family: var(--font-body); font-size: .78rem; font-weight: 600; color: var(--teal); opacity: 0; transition: var(--trans); }
.service-card:hover .service-card__link { opacity: 1; }

/* Industries */
.industries-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.industry-card { padding: 2rem 1.25rem; background: var(--white); transition: var(--trans); text-align: left; }
.industry-card:hover { background: var(--surface); }
.industry-card i { font-size: 1.5rem; color: var(--teal); margin-bottom: 1rem; display: block; }
.industry-card h4 { font-size: .875rem; color: var(--ink); margin-bottom: .5rem; font-family: var(--font-head); }
.industry-card p { color: var(--muted); font-size: .78rem; line-height: 1.6; }

/* Process */
.process-steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; position: relative; }
.process-steps::before { content: ''; position: absolute; top: 28px; left: 10%; right: 10%; height: 1px; background: rgba(255,255,255,.15); z-index: 0; }
.process-step { text-align: center; padding: 0 1.25rem; position: relative; z-index: 1; }
.process-step__num { display: inline-flex; align-items: center; justify-content: center; width: 56px; height: 56px; border-radius: 50%; border: 1px solid rgba(255,255,255,.15); font-family: var(--font-head); font-size: .72rem; font-weight: 700; letter-spacing: .08em; color: var(--teal); margin: 0 auto 1.25rem; background: rgba(14,165,201,.08); }
.process-step h4 { font-family: var(--font-head); font-size: .9rem; font-weight: 700; color: var(--white); margin-bottom: .6rem; }
.process-step p { color: rgba(255,255,255,.55); font-size: .78rem; line-height: 1.65; }

/* Portfolio */
.projects-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.projects-grid--full { grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }
.project-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: var(--trans); }
.project-card:hover { box-shadow: var(--shadow-md); border-color: var(--border-md); transform: translateY(-2px); }
.project-card__img { aspect-ratio: 16/9; overflow: hidden; background: var(--panel); }
.project-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s cubic-bezier(.4,0,.2,1); }
.project-card:hover .project-card__img img { transform: scale(1.03); }
.project-card__img--placeholder { display: flex; align-items: center; justify-content: center; color: var(--border-md); font-size: 2.5rem; }
.project-card__body { padding: 1.4rem 1.5rem; }
.project-card__cat { display: inline-block; font-family: var(--font-body); font-size: .68rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--teal); margin-bottom: .5rem; }
.project-card__title { color: var(--ink); margin-bottom: .5rem; font-size: .975rem; }
.project-card__summary { color: var(--sub); font-size: .84rem; }
.project-card__client { color: var(--muted); font-size: .78rem; margin-top: .65rem; display: flex; align-items: center; gap: .35rem; }

/* Blog */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; }
.blog-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: var(--trans); }
.blog-card:hover { box-shadow: var(--shadow-md); border-color: var(--border-md); transform: translateY(-2px); }
.blog-card__img { aspect-ratio: 16/9; overflow: hidden; background: var(--panel); }
.blog-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s cubic-bezier(.4,0,.2,1); }
.blog-card:hover .blog-card__img img { transform: scale(1.03); }
.blog-card__img--placeholder { display: flex; align-items: center; justify-content: center; color: var(--border-md); font-size: 2.5rem; }
.blog-card__body { padding: 1.4rem 1.5rem; }
.blog-card__cat { display: inline-block; font-family: var(--font-body); font-size: .68rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--teal); margin-bottom: .5rem; }
.blog-card__title { color: var(--ink); font-size: .975rem; margin-bottom: .5rem; }
.blog-card__excerpt { color: var(--sub); font-size: .835rem; margin-bottom: .85rem; }
.blog-card__meta { display: flex; gap: 1rem; font-size: .75rem; color: var(--muted); }

/* CTA */
.cta-banner { position: relative; overflow: hidden; padding: 80px 0; }
.cta-banner__bg { position: absolute; inset: 0; background: linear-gradient(135deg, #0A1628 0%, #0E2A47 50%, #0d3a5c 100%); }
.cta-banner__bg::after { content: ''; position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,.06) 1px, transparent 1px); background-size: 28px 28px; }
.cta-banner__inner { position: relative; z-index: 1; }
.cta-banner__content { max-width: 600px; margin: 0 auto; text-align: center; }
.cta-banner__content h2 { color: var(--white); margin-bottom: 1rem; }
.cta-banner__content p { color: rgba(255,255,255,.65); margin-bottom: 2.25rem; font-size: 1.05rem; }
.cta-banner__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* Inner banner */
.inner-banner { position: relative; overflow: hidden; padding: 56px 0 48px; background: linear-gradient(135deg, rgba(8,18,50,.9) 0%, rgba(12,35,72,.88) 60%, rgba(10,28,62,.92) 100%), url('/static/img/hero-bg.jpg') center center / cover no-repeat; }
.inner-banner__bg { position: absolute; inset: 0; background: radial-gradient(ellipse 60% 80% at 90% 50%, rgba(14,165,201,.08) 0%, transparent 60%); pointer-events: none; }
.inner-banner__inner { position: relative; z-index: 1; }
.inner-banner__breadcrumb { display: flex; align-items: center; gap: .4rem; font-size: .75rem; color: rgba(255,255,255,.45); margin-bottom: 1rem; flex-wrap: wrap; }
.inner-banner__breadcrumb a { color: rgba(255,255,255,.6); transition: color .2s; }
.inner-banner__breadcrumb a:hover { color: var(--teal); }
.inner-banner__breadcrumb i { font-size: .65rem; }
.inner-banner__title { font-family: var(--font-head); font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; color: white; letter-spacing: -.02em; line-height: 1.15; margin-bottom: .6rem; }
.inner-banner__sub { font-size: .95rem; color: rgba(255,255,255,.62); line-height: 1.7; max-width: 560px; }
.inner-banner__actions { display: flex; gap: .85rem; flex-wrap: wrap; margin-top: 1.5rem; }
.sd-banner-icon { width: 52px; height: 52px; background: rgba(14,165,201,.18); border: 1px solid rgba(14,165,201,.35); border-radius: 13px; display: flex; align-items: center; justify-content: center; color: var(--teal); font-size: 1.4rem; margin-bottom: 1rem; }
.page-hero { display: none; }

/* Filter bar */
.filter-bar { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2.5rem; padding: 1.25rem 1.5rem; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); }
.filter-bar__search { display: flex; align-items: center; gap: .75rem; background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius-sm); padding: .6rem 1rem; transition: border-color .2s; }
.filter-bar__search:focus-within { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(14,165,201,.08); }
.filter-bar__search i { color: var(--muted); font-size: .9rem; }
.filter-bar__search input { flex: 1; border: none; outline: none; font-family: var(--font-body); font-size: .875rem; color: var(--text); background: transparent; }
.filter-bar__cats { display: flex; gap: .5rem; flex-wrap: wrap; }
.filter-pill { display: inline-block; font-family: var(--font-body); font-size: .75rem; font-weight: 600; padding: .32rem .9rem; border-radius: 99px; border: 1.5px solid var(--border); color: var(--sub); background: var(--white); transition: var(--trans); cursor: pointer; }
.filter-pill:hover, .filter-pill.active { background: var(--teal); border-color: var(--teal); color: var(--white); }

/* Pagination */
.pagination { display: flex; justify-content: center; align-items: center; gap: .4rem; margin-top: 3rem; }
.page-btn { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: var(--radius-sm); border: 1.5px solid var(--border); font-family: var(--font-body); font-size: .82rem; font-weight: 600; color: var(--sub); background: var(--white); transition: var(--trans); }
.page-btn:hover { border-color: var(--teal); color: var(--teal); }
.page-btn--active { background: var(--teal); border-color: var(--teal); color: var(--white); }

/* Empty state */
.empty-state { text-align: center; padding: 5rem 2rem; color: var(--muted); }
.empty-state i { font-size: 2.5rem; color: var(--border-md); display: block; margin-bottom: 1rem; }
.empty-state h3 { color: var(--text); margin-bottom: .5rem; font-size: 1rem; }
.empty-state p { margin-bottom: 1.5rem; font-size: .875rem; }

/* Flash */
.flash-messages { padding: 0 1rem; max-width: 1160px; margin: 1rem auto 0; }

/* About page */
.about-page__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.about-page__text p { color: var(--sub); margin-bottom: 1rem; font-size: .975rem; }
.about-page__values { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.value-item { padding: 1.4rem; background: var(--surface); border-radius: var(--radius); border: 1px solid var(--border); }
.value-item__icon { width: 36px; height: 36px; background: var(--teal-dim); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--teal); font-size: 1rem; margin-bottom: .85rem; }
.value-item h4 { color: var(--ink); font-size: .875rem; margin-bottom: .4rem; }
.value-item p { color: var(--muted); font-size: .8rem; }
.why-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.why-item { padding: 1.75rem 1.5rem; background: var(--white); transition: var(--trans); }
.why-item:hover { background: var(--surface); }
.why-item__num { font-family: var(--font-head); font-size: 1.6rem; font-weight: 800; color: var(--teal-dim); margin-bottom: .75rem; line-height: 1; -webkit-text-stroke: 1px var(--teal); }
.why-item h4 { color: var(--ink); margin-bottom: .5rem; font-size: .875rem; }
.why-item p { color: var(--sub); font-size: .82rem; }

/* Contact */
.contact-page__inner { display: grid; grid-template-columns: 1fr 320px; gap: 2.5rem; align-items: start; }
.contact-form-card, .quote-form-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2.5rem; }
.contact-form-card h2, .quote-form-card h2 { color: var(--ink); margin-bottom: .35rem; }
.form-card__sub { color: var(--sub); margin-bottom: 2rem; font-size: .9rem; }
.contact-info-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2rem; }
.contact-info-card h3 { color: var(--ink); margin-bottom: 1.5rem; }
.contact-info-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.25rem; }
.contact-info-item__icon { width: 36px; height: 36px; background: var(--teal-dim); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--teal); font-size: .9rem; flex-shrink: 0; }
.contact-info-item > div { display: flex; flex-direction: column; }
.contact-info-item strong { font-size: .7rem; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; margin-bottom: .2rem; }
.contact-info-item a, .contact-info-item span { color: var(--ink); font-size: .875rem; font-weight: 500; }
.contact-info-item a:hover { color: var(--teal); }
.contact-info-divider { height: 1px; background: var(--border); margin: 1.5rem 0; }
.contact-info-cta p { color: var(--sub); font-size: .85rem; margin-bottom: .75rem; }
.whatsapp-link { display: flex; align-items: center; gap: .5rem; background: #22C55E; color: white; padding: .7rem 1.2rem; border-radius: var(--radius-sm); font-family: var(--font-head); font-weight: 600; font-size: .85rem; margin-bottom: .6rem; transition: var(--trans); }
.whatsapp-link:hover { background: #16A34A; }
.phone-link { display: flex; align-items: center; gap: .5rem; background: var(--panel); color: var(--ink); padding: .7rem 1.2rem; border-radius: var(--radius-sm); font-family: var(--font-head); font-weight: 600; font-size: .85rem; border: 1px solid var(--border); transition: var(--trans); }
.phone-link:hover { border-color: var(--teal); color: var(--teal); }

/* Quote */
.quote-page__inner { display: grid; grid-template-columns: 1fr 280px; gap: 2.5rem; align-items: start; }
.quote-sidebar { display: flex; flex-direction: column; gap: 1rem; }
.quote-sidebar__card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.75rem; }
.quote-sidebar__card h4 { color: var(--ink); display: flex; align-items: center; gap: .5rem; margin-bottom: 1rem; font-size: .9rem; }
.quote-sidebar__card h4 i { color: var(--teal); }
.quote-steps { list-style: none; display: flex; flex-direction: column; gap: .75rem; counter-reset: steps; }
.quote-steps li { display: flex; align-items: flex-start; gap: .75rem; font-size: .82rem; color: var(--sub); counter-increment: steps; }
.quote-steps li::before { content: counter(steps); display: flex; align-items: center; justify-content: center; width: 20px; height: 20px; background: var(--teal-dim); color: var(--teal); border-radius: 50%; font-size: .68rem; font-weight: 700; flex-shrink: 0; margin-top: .1rem; }

/* Forms */
.tb-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group label { font-family: var(--font-body); font-weight: 600; font-size: .8rem; color: var(--ink); letter-spacing: .02em; }
.optional { color: var(--muted); font-weight: 400; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: .72rem 1rem; border: 1.5px solid var(--border); border-radius: var(--radius-sm); font-family: var(--font-body); font-size: .875rem; color: var(--text); background: var(--white); outline: none; transition: border-color .2s, box-shadow .2s; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(14,165,201,.1); }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--muted); }
.form-group input[type="file"] { padding: .5rem; background: var(--surface); cursor: pointer; }
.form-error { color: #DC2626; font-size: .78rem; }
.form-hint { color: var(--muted); font-size: .75rem; margin-top: .3rem; }
.form-section-label { font-family: var(--font-body); font-size: .7rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); border-bottom: 1px solid var(--border); padding-bottom: .6rem; }

/* Footer */
.footer { background: var(--ink); color: rgba(255,255,255,.6); }
.footer__main { display: grid; grid-template-columns: 2fr 1fr 1.2fr 1.5fr; gap: 3rem; padding: 64px 28px 48px; max-width: 1160px; margin: 0 auto; }
.footer__brand { margin-bottom: 1.25rem; }
.footer__brand-link { display: inline-flex; align-items: center; gap: .85rem; text-decoration: none; }
.footer__brand-icon { display: flex; align-items: center; flex-shrink: 0; }
.footer__brand-name { display: flex; flex-direction: column; line-height: 1; gap: .2rem; }
.fb-name { display: flex; align-items: baseline; }
.fb-tech { font-family: var(--font-head); font-size: 1.3rem; font-weight: 800; color: rgba(255,255,255,.92); letter-spacing: -.02em; }
.fb-bridge { font-family: var(--font-head); font-size: 1.3rem; font-weight: 800; color: #0EA5C9; letter-spacing: -.02em; }
.fb-sub { font-family: var(--font-body); font-size: .6rem; font-weight: 500; color: rgba(255,255,255,.28); letter-spacing: .1em; text-transform: uppercase; }
.footer__tagline { font-family: var(--font-head); font-size: .78rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--teal); margin-bottom: .85rem; }
.footer__desc { font-size: .84rem; line-height: 1.75; margin-bottom: 1.25rem; color: rgba(255,255,255,.5); }
.footer__cta-btn { display: inline-flex; align-items: center; gap: .4rem; background: var(--teal); color: var(--white); font-family: var(--font-head); font-weight: 700; font-size: .8rem; padding: .6rem 1.25rem; border-radius: 6px; margin-bottom: 1.5rem; transition: all .2s ease; letter-spacing: .02em; }
.footer__cta-btn:hover { background: #0b8fad; transform: translateY(-1px); }
.footer__socials { display: flex; gap: .6rem; }
.footer__socials a { width: 34px; height: 34px; background: rgba(255,255,255,.06); border-radius: 7px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.5); font-size: .9rem; border: 1px solid rgba(255,255,255,.06); transition: var(--trans); }
.footer__socials a:hover { background: var(--teal); color: var(--white); border-color: var(--teal); }
.footer__heading { font-family: var(--font-body); font-size: .68rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: 1.25rem; }
.footer__links { display: flex; flex-direction: column; gap: .65rem; }
.footer__links a { color: rgba(255,255,255,.55); font-size: .845rem; transition: color .2s; }
.footer__links a:hover { color: rgba(255,255,255,.9); }
.footer__contact { display: flex; flex-direction: column; gap: 1rem; }
.footer__contact li { display: flex; align-items: flex-start; gap: .75rem; font-size: .835rem; }
.footer__contact i { color: var(--teal); margin-top: .2rem; flex-shrink: 0; font-size: .85rem; }
.footer__contact a { color: rgba(255,255,255,.55); transition: color .2s; }
.footer__contact a:hover { color: rgba(255,255,255,.9); }
.footer__contact span { color: rgba(255,255,255,.45); }
.footer__contact-label { display: block; font-size: .68rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: .15rem; }
.footer__bottom-bar { border-top: 1px solid rgba(255,255,255,.07); padding: 1.25rem 0; }
.footer__bottom-bar-inner { display: flex; justify-content: space-between; align-items: center; font-size: .775rem; color: rgba(255,255,255,.3); flex-wrap: wrap; gap: .5rem; max-width: 1160px; margin: 0 auto; padding: 0 28px; }
.footer__legal-links { display: flex; align-items: center; gap: .6rem; color: rgba(255,255,255,.3); font-size: .775rem; }
.footer__legal-links a { color: rgba(255,255,255,.4); transition: color .2s; }
.footer__legal-links a:hover { color: var(--teal); }

/* Service pages */
.svc-trust-bar { background: white; border-bottom: 1px solid var(--border); padding: 20px 0; }
.svc-trust-bar__inner { display: flex; align-items: center; justify-content: center; gap: 2rem; flex-wrap: wrap; }
.svc-trust-item { display: flex; align-items: center; gap: .6rem; font-size: .82rem; font-weight: 500; color: #4B5E75; }
.svc-trust-item i { color: var(--teal); font-size: 1rem; }
.svc-grid-section { padding: 64px 0; background: #F8FAFB; }
.svc-cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.svc-card { display: flex; flex-direction: column; background: white; border: 1px solid var(--border); border-radius: 18px; padding: 2rem; text-decoration: none; transition: all .28s cubic-bezier(.4,0,.2,1); position: relative; overflow: hidden; }
.svc-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--teal), #0E2A47); transform: scaleX(0); transform-origin: left; transition: transform .3s ease; }
.svc-card:hover { border-color: transparent; box-shadow: 0 20px 60px rgba(10,22,40,.12); transform: translateY(-6px); }
.svc-card:hover::before { transform: scaleX(1); }
.svc-card__top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 1.25rem; }
.svc-card__icon-wrap { width: 52px; height: 52px; background: #EFF9FC; border-radius: 14px; display: flex; align-items: center; justify-content: center; color: var(--teal); font-size: 1.4rem; transition: all .25s ease; }
.svc-card:hover .svc-card__icon-wrap { background: var(--teal); color: white; }
.svc-card__num { font-family: var(--font-head); font-size: .72rem; font-weight: 700; color: #C8D5E3; letter-spacing: .1em; }
.svc-card__body { flex: 1; margin-bottom: 1.5rem; }
.svc-card__title { font-family: var(--font-head); font-size: 1.05rem; font-weight: 700; color: #0A1628; margin-bottom: .4rem; letter-spacing: -.01em; }
.svc-card__tagline { font-size: .78rem; font-weight: 600; color: var(--teal); margin-bottom: .6rem; text-transform: uppercase; letter-spacing: .06em; }
.svc-card__desc { font-size: .875rem; color: #4B5E75; line-height: 1.7; }
.svc-card__footer { display: flex; align-items: center; justify-content: space-between; padding-top: 1.25rem; border-top: 1px solid #F0F4F8; }
.svc-card__cta { display: flex; align-items: center; gap: .4rem; font-size: .82rem; font-weight: 700; color: var(--teal); font-family: var(--font-body); letter-spacing: .02em; }
.svc-card__cta i { transition: transform .2s ease; }
.svc-card:hover .svc-card__cta i { transform: translateX(4px); }
.svc-card__arrow-circle { width: 32px; height: 32px; border-radius: 50%; border: 1.5px solid #E4EAF0; display: flex; align-items: center; justify-content: center; font-size: .8rem; color: #7B90A8; transition: all .2s ease; }
.svc-card:hover .svc-card__arrow-circle { background: var(--teal); border-color: var(--teal); color: white; }
.svc-empty { text-align: center; padding: 6rem 2rem; }
.svc-empty__icon { font-size: 3rem; color: #C8D5E3; margin-bottom: 1.25rem; }
.svc-empty h3 { color: #0A1628; margin-bottom: .5rem; }
.svc-empty p { color: #7B90A8; margin-bottom: 1.5rem; }
.svc-why { padding: 72px 0; background: white; }
.svc-why__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.svc-why__label { font-size: .7rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--teal); margin-bottom: 1rem; display: flex; align-items: center; gap: .5rem; }
.svc-why__label::before { content: ''; display: block; width: 16px; height: 2px; background: var(--teal); }
.svc-why__heading { font-family: var(--font-head); font-size: clamp(1.5rem, 2.2vw, 1.9rem); font-weight: 800; color: #0A1628; line-height: 1.2; letter-spacing: -.02em; margin-bottom: 1rem; }
.svc-why__sub { color: #4B5E75; font-size: .95rem; line-height: 1.8; margin-bottom: 1.75rem; }
.svc-why-item { display: flex; align-items: flex-start; gap: 1rem; padding: 1.1rem 1.25rem; border-radius: 12px; border: 1px solid #E4EAF0; margin-bottom: .85rem; transition: all .2s ease; }
.svc-why-item:hover { border-color: var(--teal); background: #EFF9FC; }
.svc-why-item__icon { width: 38px; height: 38px; background: #EFF9FC; border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--teal); font-size: 1rem; flex-shrink: 0; }
.svc-why-item strong { font-family: var(--font-head); font-size: .9rem; font-weight: 700; color: #0A1628; display: block; margin-bottom: .3rem; }
.svc-why-item p { font-size: .825rem; color: #4B5E75; margin: 0; line-height: 1.6; }
.svc-bottom-cta { position: relative; padding: 72px 0; overflow: hidden; }
.svc-bottom-cta__bg { position: absolute; inset: 0; background: linear-gradient(135deg, #0A1628 0%, #0E2A47 50%, #0a2a40 100%); }
.svc-bottom-cta__bg::after { content: ''; position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,.04) 1px, transparent 1px); background-size: 28px 28px; }
.svc-bottom-cta__inner { position: relative; z-index: 1; text-align: center; max-width: 640px; margin: 0 auto; }
.svc-bottom-cta__inner h2 { font-family: var(--font-head); color: white; font-size: clamp(1.6rem, 2.5vw, 2rem); font-weight: 800; margin-bottom: 1rem; }
.svc-bottom-cta__inner p { color: rgba(255,255,255,.65); margin-bottom: 2rem; font-size: .97rem; line-height: 1.8; }
.svc-bottom-cta__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* Service detail */
.sd-ps { padding: 72px 0; background: white; }
.sd-ps__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; }
.sd-ps__col { padding: 2.25rem; border-radius: 16px; }
.sd-ps__col--problem { background: #FFF8F8; border: 1px solid #FDDEDE; }
.sd-ps__col--solution { background: #F0FDF8; border: 1px solid #C6F0E3; }
.sd-ps__label { display: inline-flex; align-items: center; gap: .5rem; font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 1rem; padding: .3rem .85rem; border-radius: 99px; }
.sd-ps__label--problem { color: #DC2626; background: #FEE2E2; }
.sd-ps__label--solution { color: #059669; background: #D1FAE5; }
.sd-ps__col h3 { font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; color: #0A1628; margin-bottom: .85rem; }
.sd-ps__col p { color: #4B5E75; font-size: .92rem; line-height: 1.8; }
.sd-section-header { text-align: center; margin-bottom: 2.5rem; }
.sd-section-label { display: inline-flex; align-items: center; gap: .5rem; font-size: .68rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--teal); margin-bottom: .85rem; }
.sd-section-label::before { content: ''; display: block; width: 14px; height: 2px; background: var(--teal); }
.sd-section-label--light { color: rgba(255,255,255,.6); }
.sd-section-label--light::before { background: rgba(255,255,255,.4); }
.sd-section-header h2 { font-family: var(--font-head); font-size: clamp(1.4rem, 2.2vw, 1.8rem); font-weight: 800; color: #0A1628; letter-spacing: -.02em; }
.sd-features { padding: 72px 0; background: #F8FAFB; }
.sd-features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.sd-feature-card { display: flex; align-items: flex-start; gap: 1rem; background: white; border: 1px solid #E4EAF0; border-radius: 12px; padding: 1.25rem 1.4rem; transition: all .2s ease; }
.sd-feature-card:hover { border-color: var(--teal); box-shadow: 0 4px 20px rgba(14,165,201,.1); transform: translateY(-2px); }
.sd-feature-card__check { width: 28px; height: 28px; background: var(--teal); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: white; font-size: .8rem; flex-shrink: 0; margin-top: .1rem; }
.sd-feature-card p { font-size: .875rem; color: #1A2332; line-height: 1.65; margin: 0; font-weight: 500; }
.sd-benefits { padding: 72px 0; background: white; }
.sd-benefits-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.sd-benefit-card { text-align: center; padding: 2rem 1.25rem; background: #F8FAFB; border: 1px solid #E4EAF0; border-radius: 16px; transition: all .25s ease; }
.sd-benefit-card:hover { background: white; border-color: var(--teal); box-shadow: 0 8px 32px rgba(14,165,201,.1); transform: translateY(-4px); }
.sd-benefit-card__icon { width: 56px; height: 56px; background: linear-gradient(135deg, var(--teal), #0E2A47); border-radius: 14px; display: flex; align-items: center; justify-content: center; color: white; font-size: 1.3rem; margin: 0 auto 1rem; }
.sd-benefit-card h4 { font-family: var(--font-head); font-size: .9rem; font-weight: 700; color: #0A1628; }
.sd-process { padding: 72px 0; background: var(--ink); }
.sd-process-track { position: relative; display: flex; flex-direction: column; gap: 0; }
.sd-process-line { position: absolute; left: 27px; top: 28px; bottom: 28px; width: 2px; background: linear-gradient(to bottom, var(--teal), rgba(14,165,201,.1)); }
.sd-process-step { display: flex; align-items: flex-start; gap: 1.5rem; padding: 1.5rem 1.5rem 1.5rem 0; position: relative; z-index: 1; }
.sd-process-step__dot { width: 56px; height: 56px; background: rgba(14,165,201,.15); border: 2px solid rgba(14,165,201,.4); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--teal); font-size: 1.1rem; flex-shrink: 0; transition: all .25s ease; }
.sd-process-step:hover .sd-process-step__dot { background: var(--teal); color: white; border-color: var(--teal); }
.sd-process-step__body { padding-top: .75rem; }
.sd-process-step__body strong { display: block; font-family: var(--font-head); font-size: .95rem; font-weight: 700; color: white; margin-bottom: .5rem; }
.sd-process-step__body p { font-size: .86rem; color: rgba(255,255,255,.55); line-height: 1.7; margin: 0; }
.sd-tech { padding: 56px 0; background: #F8FAFB; }
.sd-tech-badges { display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center; }
.sd-tech-badge { display: inline-flex; align-items: center; padding: .55rem 1.25rem; background: white; border: 1.5px solid #E4EAF0; border-radius: 8px; font-family: var(--font-body); font-size: .82rem; font-weight: 600; color: #1A2332; transition: all .2s ease; letter-spacing: .01em; }
.sd-tech-badge:hover { border-color: var(--teal); color: var(--teal); background: #EFF9FC; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(14,165,201,.15); }
.sd-faq { padding: 72px 0; background: white; }
.sd-faq__inner { max-width: 760px; margin: 0 auto; }
.sd-faq-list { display: flex; flex-direction: column; gap: 0; }
.sd-faq-item { border-bottom: 1px solid #E4EAF0; }
.sd-faq-item:first-child { border-top: 1px solid #E4EAF0; }
.sd-faq-q { display: flex; align-items: center; justify-content: space-between; width: 100%; padding: 1.25rem 0; background: none; border: none; cursor: pointer; text-align: left; gap: 1rem; }
.sd-faq-q span { font-family: var(--font-head); font-size: .95rem; font-weight: 600; color: #0A1628; flex: 1; }
.sd-faq-q i { color: var(--teal); font-size: 1rem; flex-shrink: 0; transition: transform .2s ease; }
.sd-faq-item.open .sd-faq-q i { transform: rotate(45deg); }
.sd-faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.sd-faq-a p { font-size: .9rem; color: #4B5E75; line-height: 1.8; padding-bottom: 1.25rem; margin: 0; }
.sd-related { padding: 64px 0; background: #F8FAFB; }
.sd-related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.sd-related-card { display: flex; align-items: center; gap: 1rem; padding: 1.4rem 1.5rem; background: white; border: 1px solid #E4EAF0; border-radius: 14px; text-decoration: none; transition: all .22s ease; }
.sd-related-card:hover { border-color: var(--teal); box-shadow: 0 8px 28px rgba(14,165,201,.1); transform: translateX(4px); }
.sd-related-card__icon { width: 44px; height: 44px; background: #EFF9FC; border-radius: 11px; display: flex; align-items: center; justify-content: center; color: var(--teal); font-size: 1.1rem; flex-shrink: 0; }
.sd-related-card__body { flex: 1; }
.sd-related-card__body h4 { font-family: var(--font-head); font-size: .88rem; font-weight: 700; color: #0A1628; margin-bottom: .25rem; }
.sd-related-card__body p { font-size: .78rem; color: #7B90A8; margin: 0; line-height: 1.5; }
.sd-related-card__arrow { color: #C8D5E3; font-size: 1rem; transition: all .2s ease; }
.sd-related-card:hover .sd-related-card__arrow { color: var(--teal); transform: translateX(3px); }
.sd-cta { position: relative; padding: 80px 0; overflow: hidden; }
.sd-cta__bg { position: absolute; inset: 0; background: linear-gradient(135deg, #061020 0%, #0E2A47 60%, #083048 100%); }
.sd-cta__bg::before { content: ''; position: absolute; top: -100px; right: -100px; width: 500px; height: 500px; border: 1px solid rgba(14,165,201,.1); border-radius: 50%; }
.sd-cta__bg::after { content: ''; position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,.03) 1px, transparent 1px); background-size: 24px 24px; }
.sd-cta__inner { position: relative; z-index: 1; text-align: center; max-width: 640px; margin: 0 auto; }
.sd-cta__badge { display: inline-flex; align-items: center; gap: .5rem; font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--teal); background: rgba(14,165,201,.12); border: 1px solid rgba(14,165,201,.25); padding: .4rem 1rem; border-radius: 99px; margin-bottom: 1.5rem; }
.sd-cta__inner h2 { font-family: var(--font-head); color: white; font-size: clamp(1.6rem, 2.5vw, 2rem); font-weight: 800; letter-spacing: -.02em; margin-bottom: 1rem; }
.sd-cta__inner p { color: rgba(255,255,255,.6); font-size: .97rem; line-height: 1.8; margin-bottom: 2rem; }
.sd-cta__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2rem; }
.sd-cta__trust { display: flex; gap: 1.75rem; justify-content: center; flex-wrap: wrap; }
.sd-cta__trust span { display: flex; align-items: center; gap: .4rem; font-size: .78rem; color: rgba(255,255,255,.45); font-weight: 500; }
.sd-cta__trust i { color: var(--teal); }

/* Team */
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1.5rem; }
.team-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: var(--trans); text-align: center; }
.team-card:hover { box-shadow: var(--shadow-md); border-color: var(--border-md); transform: translateY(-2px); }
.team-card__photo { aspect-ratio: 1/1; overflow: hidden; background: var(--panel); }
.team-card__photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s cubic-bezier(.4,0,.2,1); }
.team-card:hover .team-card__photo img { transform: scale(1.04); }
.team-card__photo-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 4rem; color: var(--border-md); }
.team-card__body { padding: 1.4rem 1.25rem; }
.team-card__name { color: var(--ink); margin-bottom: .25rem; font-size: 1rem; }
.team-card__role { color: var(--teal); font-family: var(--font-body); font-size: .72rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; margin-bottom: .75rem; }
.team-card__bio { color: var(--sub); font-size: .825rem; margin-bottom: 1rem; }
.team-card__links { display: flex; justify-content: center; gap: .5rem; }
.team-card__links a { width: 32px; height: 32px; background: var(--surface); border: 1px solid var(--border); border-radius: 7px; display: flex; align-items: center; justify-content: center; color: var(--sub); font-size: .85rem; transition: var(--trans); }
.team-card__links a:hover { background: var(--teal); border-color: var(--teal); color: var(--white); }

/* Legal */
.legal-page { max-width: 780px; margin: 0 auto; }
.legal-intro { background: var(--surface); border-left: 3px solid var(--teal); border-radius: 0 var(--radius) var(--radius) 0; padding: 1.5rem 1.75rem; margin-bottom: 2.5rem; }
.legal-intro p { color: var(--sub); font-size: 1rem; line-height: 1.8; margin: 0; }
.legal-section { margin-bottom: 2.25rem; padding-bottom: 2.25rem; border-bottom: 1px solid var(--border); }
.legal-section:last-child { border-bottom: none; }
.legal-section h2 { font-size: 1.15rem; color: var(--ink); margin-bottom: .85rem; font-family: var(--font-head); }
.legal-section p { color: var(--sub); font-size: .94rem; line-height: 1.8; margin-bottom: .75rem; }
.legal-section ul { list-style: none; padding: 0; margin: .75rem 0; display: flex; flex-direction: column; gap: .5rem; }
.legal-section ul li { color: var(--sub); font-size: .9rem; line-height: 1.7; padding-left: 1.25rem; position: relative; }
.legal-section ul li::before { content: ''; position: absolute; left: 0; top: .65em; width: 5px; height: 5px; background: var(--teal); border-radius: 50%; }
.legal-contact { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.25rem 1.5rem; margin-top: 1rem; }
.legal-contact p { margin-bottom: .4rem; font-size: .9rem; }
.legal-contact a { color: var(--teal); }

/* Responsive */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__sub { margin: 0 auto 2rem; }
  .hero__actions { justify-content: center; }
  .hero__visual { display: none; }
  .about-preview__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .industries-grid { grid-template-columns: repeat(3, 1fr); }
  .process-steps { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
  .process-steps::before { display: none; }
  .footer__main { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .svc-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-why__inner { grid-template-columns: 1fr; gap: 3rem; }
  .sd-ps__inner { grid-template-columns: 1fr; }
  .sd-features-grid { grid-template-columns: repeat(2, 1fr); }
  .sd-benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .sd-related-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links { display: none; position: fixed; top: 64px; left: 0; right: 0; background: rgba(10,22,60,.97); flex-direction: column; align-items: stretch; padding: 1rem 1.5rem 1.5rem; border-bottom: 1px solid rgba(255,255,255,.08); box-shadow: 0 12px 40px rgba(0,0,0,.3); gap: .2rem; z-index: 800; }
  .nav-links.open { display: flex; }
  .nav-link { padding: .75rem 1rem; }
  .trust-row__inner { flex-direction: column; gap: 0; }
  .trust-item { border-left: none; border-bottom: 1px solid var(--border); padding: 1rem 0; max-width: 100%; width: 100%; }
  .trust-item:last-child { border-bottom: none; }
  .services-grid { grid-template-columns: 1fr 1fr; background: transparent; border: none; gap: 1rem; }
  .service-card { border: 1px solid var(--border); border-radius: var(--radius-lg); }
  .industries-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .about-page__inner { grid-template-columns: 1fr; }
  .about-page__values { grid-template-columns: 1fr; }
  .contact-page__inner { grid-template-columns: 1fr; }
  .quote-page__inner { grid-template-columns: 1fr; }
  .footer__main { grid-template-columns: 1fr; gap: 2rem; padding: 48px 28px 40px; }
  .form-row { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr; }
  .section { padding: 56px 0; }
  .svc-cards-grid { grid-template-columns: 1fr; }
  .sd-features-grid { grid-template-columns: 1fr; }
  .sd-benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .sd-related-grid { grid-template-columns: 1fr; }
  .sd-process-line { display: none; }
  .inner-banner { padding: 44px 0 36px; }
  .hero { padding: 48px 0; }
}
@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: 1fr; background: transparent; border: none; gap: .75rem; }
  .industry-card { border: 1px solid var(--border); border-radius: var(--radius-lg); }
  .process-steps { grid-template-columns: 1fr; }
  .sd-benefits-grid { grid-template-columns: 1fr 1fr; }
  .hero__stats-strip { flex-wrap: wrap; gap: 1rem; }
}

/* Navbar brand fallback */
.navbar__brand-fallback { display: flex; align-items: center; gap: .6rem; font-family: var(--font-head); font-weight: 700; font-size: .95rem; color: var(--white); }
.navbar__brand-fallback .brand-icon { background: rgba(255,255,255,.12); color: var(--teal); }
.navbar__brand-fallback .brand-dot { color: var(--teal); }
.footer__brand-text { font-family: var(--font-head); font-weight: 700; font-size: 1rem; color: var(--white); display: flex; align-items: center; gap: .5rem; }
.footer__brand-text i { color: var(--teal); }
.hero__stats-strip { display: flex; align-items: center; gap: 1.5rem; margin-bottom: 2rem; }
.hero__stat { display: flex; flex-direction: column; gap: .1rem; }
.hero__stat-num { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 1.6rem; font-weight: 700; color: var(--white); line-height: 1; }
.hero__stat-label { font-family: var(--font-body); font-size: .68rem; font-weight: 500; color: rgba(255,255,255,.5); letter-spacing: .1em; text-transform: uppercase; }
.hero__stat-divider { width: 1px; height: 32px; background: rgba(255,255,255,.15); flex-shrink: 0; }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: .25; } }
.badge-dot { width: 5px; height: 5px; background: var(--teal); border-radius: 50%; animation: blink 2.4s ease-in-out infinite; display: inline-block; }


/* ── Remove dash line from section labels ────────────────── */
.section-label::before {
  display: none !important;
}
.svc-why__label::before {
  display: none !important;
}
.sd-section-label::before {
  display: none !important;
}


/* ── FIX: Home services header with View All button ─────── */
.home-svc-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

/* ── FIX: Projects 3-column grid ────────────────────────── */
.projects-grid--three {
  grid-template-columns: repeat(3, 1fr) !important;
}

/* ── FIX: Project card View Project link ─────────────────── */
.project-card__view {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .78rem;
  font-weight: 600;
  color: var(--teal, #0EA5C9);
  margin-top: .75rem;
  font-family: 'Inter', sans-serif;
  transition: gap .18s ease;
}
.project-card:hover .project-card__view {
  gap: .55rem;
}

/* ── FIX: Services grid on homepage 3-column ─────────────── */
.services-grid {
  grid-template-columns: repeat(3, 1fr) !important;
}

/* Responsive for 3-col grids */
@media (max-width: 1024px) {
  .projects-grid--three {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    background: transparent !important;
    border: none !important;
    gap: 1rem !important;
  }
  .services-grid .service-card {
    border: 1px solid var(--border, #E4EAF0) !important;
    border-radius: 16px !important;
  }
}
@media (max-width: 640px) {
  .projects-grid--three {
    grid-template-columns: 1fr !important;
  }
  .services-grid {
    grid-template-columns: 1fr !important;
  }
}


/* ── FIX 1: Footer full logo — smaller, no white box ────── */
.footer__full-logo {
  height: 56px !important;
  width: auto !important;
  max-width: 180px !important;
  object-fit: contain !important;
  display: block !important;
  margin-bottom: .75rem !important;
  mix-blend-mode: lighten !important;
}

/* ── FIX 2: Services header — move View All to bottom ────── */
.home-svc-header {
  display: block !important;
  margin-bottom: 2rem !important;
}
.home-svc-header > a {
  display: none !important;
}
.home-svc-footer-cta {
  text-align: center;
  margin-top: 2rem;
}

/* ── FIX 3: Remove all scroll animations ─────────────────── */
*,
.service-card,
.project-card,
.blog-card,
.industry-card,
.process-step,
.pillar,
.value-item,
.why-item,
.team-card,
.trust-item,
.svc-card,
.sd-feature-card,
.sd-benefit-card,
.sd-related-card,
.sd-tech-badge,
.svc-why-item {
  animation: none !important;
  transition-delay: 0s !important;
}

/* Keep only hover transitions - remove transform delays */
.service-card,
.project-card,
.blog-card,
.industry-card,
.pillar,
.value-item,
.why-item,
.team-card,
.svc-card,
.sd-feature-card,
.sd-benefit-card,
.sd-related-card {
  opacity: 1 !important;
  transform: none !important;
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease !important;
}

/* Badge dot pulse can stay - it is subtle */
.badge-dot {
  animation: blink 2.4s ease-in-out infinite !important;
}


/* ── Project Detail Page ─────────────────────────────────── */
.pd-banner-cat {
  display: inline-block;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal, #0EA5C9);
  background: rgba(14,165,201,.15);
  border: 1px solid rgba(14,165,201,.3);
  padding: .28rem .85rem;
  border-radius: 99px;
  margin-bottom: .85rem;
}

.pd-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3rem;
  align-items: start;
}

/* Main content */
.pd-image {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border, #E4EAF0);
  margin-bottom: 2rem;
  box-shadow: 0 4px 20px rgba(10,22,40,.08);
}
.pd-image img {
  width: 100%;
  height: auto;
  display: block;
}

.pd-body {
  font-size: .94rem;
  color: var(--sub, #4B5E75);
  line-height: 1.85;
  margin-bottom: 2rem;
}
.pd-body p { margin-bottom: .85rem; }

.pd-section-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .9rem;
  font-weight: 700;
  color: var(--ink, #0A1628);
  margin-bottom: 1rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid var(--border, #E4EAF0);
}

.pd-tech { margin-bottom: 2rem; }
.pd-tech-badges {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.pd-tech-badge {
  display: inline-flex;
  align-items: center;
  padding: .38rem .9rem;
  background: var(--surface, #F8FAFB);
  border: 1.5px solid var(--border, #E4EAF0);
  border-radius: 7px;
  font-size: .78rem;
  font-weight: 600;
  color: var(--ink, #0A1628);
  font-family: 'Inter', sans-serif;
}
.pd-tech-badge:hover {
  border-color: var(--teal, #0EA5C9);
  color: var(--teal, #0EA5C9);
  background: #EFF9FC;
}

/* Sidebar */
.pd-meta-card {
  background: var(--surface, #F8FAFB);
  border: 1px solid var(--border, #E4EAF0);
  border-radius: 14px;
  padding: 1.5rem;
  margin-bottom: 1.25rem;
}
.pd-meta-card__title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .82rem;
  font-weight: 700;
  color: var(--ink, #0A1628);
  margin-bottom: 1.1rem;
  padding-bottom: .6rem;
  border-bottom: 1px solid var(--border, #E4EAF0);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.pd-meta-item {
  display: flex;
  flex-direction: column;
  gap: .2rem;
  padding: .7rem 0;
  border-bottom: 1px solid var(--border, #E4EAF0);
}
.pd-meta-item:last-child { border-bottom: none; }
.pd-meta-label {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted, #7B90A8);
}
.pd-meta-value {
  font-size: .88rem;
  font-weight: 600;
  color: var(--ink, #0A1628);
}
.pd-meta-link {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .85rem;
  font-weight: 600;
  color: var(--teal, #0EA5C9);
  transition: opacity .15s;
}
.pd-meta-link:hover { opacity: .8; }

.pd-cta-card {
  background: var(--ink, #0A1628);
  border-radius: 14px;
  padding: 1.75rem 1.5rem;
  text-align: center;
}
.pd-cta-card__icon {
  width: 44px; height: 44px;
  background: rgba(14,165,201,.18);
  border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  color: var(--teal, #0EA5C9);
  font-size: 1.2rem;
  margin: 0 auto 1rem;
}
.pd-cta-card h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .95rem;
  font-weight: 700;
  color: white;
  margin-bottom: .5rem;
}
.pd-cta-card p {
  font-size: .82rem;
  color: rgba(255,255,255,.55);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

/* Responsive */
@media (max-width: 768px) {
  .pd-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .pd-sidebar { order: -1; }
}
