/* ============================================================
   archiosoftware — Main Stylesheet
   Palette: Navy #0A1E3F | Deep Blue #173977 | Bright Blue #1A73E8
            Teal #17CBDC | Teal Dark #0CB0C0 | Gray-Blue #64748B | Red #D94040
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;500;600;700&family=DM+Serif+Display:ital@0;1&display=swap');

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:        #0A1E3F;
  --deep-blue:   #173977;
  --bright-blue: #1A73E8;
  --teal:        #17CBDC;
  --teal-dark:   #0CB0C0;
  --gray-blue:   #64748B;
  --red:         #D94040;
  --white:       #ffffff;
  --off-white:   #F7F9FC;
  --border:      #E2E8F0;
  --text:        #0A1E3F;
  --text-muted:  #64748B;
  --radius:      10px;
  --radius-lg:   18px;
  --shadow:      0 4px 24px rgba(10,30,63,.08);
  --shadow-md:   0 8px 40px rgba(10,30,63,.12);
  --container:   1160px;
  --section-pad: 96px 0;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Container ───────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

/* ── Typography ──────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'DM Serif Display', serif;
  line-height: 1.2;
  color: var(--navy);
}
h1 { font-size: clamp(2.2rem, 4vw, 3.2rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
h3 { font-size: 1.25rem; font-family: 'DM Sans', sans-serif; font-weight: 700; }

.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal-dark);
  margin-bottom: 14px;
}
.section-title { margin-bottom: 16px; }
.section-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 600px;
}
.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-size: .92rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s ease;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--bright-blue);
  color: var(--white);
  border-color: var(--bright-blue);
}
.btn-primary:hover { background: var(--deep-blue); border-color: var(--deep-blue); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(26,115,232,.3); }

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--border);
}
.btn-outline:hover { border-color: var(--navy); background: var(--off-white); }

.btn-white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn-white:hover { background: var(--off-white); transform: translateY(-1px); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.4);
}
.btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,.1); }

/* ── Sections ────────────────────────────────────────────── */
.section { padding: var(--section-pad); }
.section--alt { background: var(--off-white); }
.section--dark {
  background: var(--navy);
  color: var(--white);
}
.section--dark h2,
.section--dark h3 { color: var(--white); }
.section--dark .section-subtitle { color: rgba(255,255,255,.7); }

/* ── Nav ─────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: #ffffff;
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}
.site-header.scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 2px 20px rgba(10,30,63,.06);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.nav-logo {
  display: flex;
  align-items: center;
}
.nav-logo-img {
  height: 56px;
  width: auto;
  display: block;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  padding: 7px 14px;
  border-radius: 7px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--gray-blue);
  transition: color .18s, background .18s, box-shadow .18s;
  position: relative;
}
.nav-links a:hover {
  color: var(--navy);
  background: var(--off-white);
}
/* Active page: solid navy pill with white text */
.nav-links a[aria-current="page"] {
  color: var(--white);
  background: var(--navy);
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(10,30,63,.18);
}
/* Contact Us is a .btn — keep its own styling even when active */
.nav-links a.btn[aria-current="page"] {
  background: var(--bright-blue);
  border-color: var(--bright-blue);
  box-shadow: 0 6px 20px rgba(26,115,232,.3);
  color: var(--white);
}
.nav-cta { margin-left: 10px; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all .25s;
}

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 40%, rgba(23,203,220,.07) 0%, transparent 60%),
              radial-gradient(ellipse 50% 40% at 20% 80%, rgba(26,115,232,.05) 0%, transparent 60%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--teal-dark);
  margin-bottom: 20px;
}
.hero-eyebrow::before {
  content: '';
  width: 20px; height: 2px;
  background: var(--teal);
  border-radius: 2px;
}
.hero h1 { margin-bottom: 20px; }
.hero h1 em { font-style: italic; color: var(--bright-blue); }
.hero-desc {
  color: var(--text-muted);
  font-size: 1.07rem;
  margin-bottom: 36px;
  max-width: 520px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats {
  display: flex;
  gap: 36px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.hero-stat-num {
  font-family: 'DM Serif Display', serif;
  font-size: 2rem;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat-num span { color: var(--bright-blue); }
.hero-stat-label { font-size: .8rem; color: var(--text-muted); font-weight: 500; }

/* Hero card */
.hero-visual { position: relative; }
.hero-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md), 0 0 0 1px var(--border);
  overflow: hidden;
}
.hero-card-header {
  background: var(--navy);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-card-dots { display: flex; gap: 6px; }
.hero-card-dots span {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.hero-card-dots span:nth-child(1) { background: #FF5F57; }
.hero-card-dots span:nth-child(2) { background: #FFBD2E; }
.hero-card-dots span:nth-child(3) { background: #28CA41; }
.hero-card-title { color: rgba(255,255,255,.6); font-size: .75rem; font-family: 'Courier New', monospace; }
.hero-card-body { padding: 22px; }
.arch-diagram { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.arch-node {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 7px;
  padding: 8px 10px;
  font-size: .75rem;
  font-weight: 600;
  color: var(--gray-blue);
  text-align: center;
}
.arch-node.active { background: rgba(26,115,232,.08); border-color: rgba(26,115,232,.25); color: var(--bright-blue); }
.arch-node.accent { background: rgba(23,203,220,.1); border-color: rgba(23,203,220,.3); color: var(--teal-dark); }
.arch-connector {
  text-align: center;
  font-size: .72rem;
  color: var(--text-muted);
  margin: 10px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.hero-card-footer {
  padding: 12px 22px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .78rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
}
.status-dot {
  display: inline-block;
  width: 7px; height: 7px;
  background: #28CA41;
  border-radius: 50%;
  margin-right: 5px;
}

/* ── Trust Bar ───────────────────────────────────────────── */
.trust-bar {
  background: var(--off-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.trust-bar-label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding-right: 28px;
  border-right: 1px solid var(--border);
}
.trust-industries { display: flex; gap: 6px; flex-wrap: wrap; }
.trust-industry {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .82rem;
  font-weight: 500;
  color: var(--gray-blue);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 5px 14px;
}
.trust-industry svg { color: var(--teal-dark); flex-shrink: 0; }

/* ── Service Cards ───────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 52px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: box-shadow .2s, transform .2s, border-color .2s;
}
.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: rgba(26,115,232,.2);
}
.service-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  color: white;
}
.service-icon svg { width: 22px; height: 22px; }
.service-name {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.3;
}
.service-desc {
  color: var(--text-muted);
  font-size: .93rem;
  line-height: 1.7;
  margin-bottom: 18px;
}
.service-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.service-tag {
  font-size: .75rem;
  font-weight: 600;
  color: var(--deep-blue);
  background: rgba(23,57,119,.07);
  border-radius: 999px;
  padding: 4px 11px;
}

/* ── Why Grid ────────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 52px;
}
.why-item { text-align: center; padding: 8px; }
.why-icon {
  width: 52px; height: 52px;
  background: rgba(23,203,220,.15);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  color: var(--teal);
}
.why-title {
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 10px;
}
.why-desc { font-size: .9rem; color: rgba(255,255,255,.65); line-height: 1.7; }

/* ── Portfolio Grid ──────────────────────────────────────── */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 52px;
}
.portfolio-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow .2s, transform .2s;
}
.portfolio-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.portfolio-thumb {
  height: 160px;
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.portfolio-thumb-bg { position: absolute; inset: 0; }
.portfolio-thumb-icon {
  position: relative; z-index: 1;
  color: rgba(255,255,255,.8);
}
.portfolio-body { padding: 22px; }
.portfolio-category {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--teal-dark);
  margin-bottom: 6px;
}
.portfolio-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.3;
}
.portfolio-desc { font-size: .88rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 14px; }
.portfolio-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  font-size: .78rem;
}
.portfolio-client { color: var(--text-muted); }
.portfolio-result { color: var(--teal-dark); font-weight: 700; }

/* Portfolio full page */
.portfolio-page-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 52px;
}
.portfolio-full-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow .2s, transform .2s;
}
.portfolio-full-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.portfolio-full-thumb {
  height: 200px;
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.portfolio-full-body { padding: 28px; }
.portfolio-full-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.portfolio-industry {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--teal-dark);
}
.portfolio-year {
  font-size: .78rem;
  color: var(--text-muted);
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 2px 10px;
}
.portfolio-full-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.3;
}
.portfolio-full-desc { font-size: .93rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 18px; }
.portfolio-highlights { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.portfolio-highlight {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--deep-blue);
  background: rgba(23,57,119,.07);
  border-radius: 999px;
  padding: 5px 12px;
}
.portfolio-highlight svg { color: var(--teal-dark); }

/* ── CTA Section ─────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--deep-blue) 100%);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(23,203,220,.12) 0%, transparent 60%);
  pointer-events: none;
}
.cta-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-text h2 { color: var(--white); margin-bottom: 10px; font-size: 1.9rem; }
.cta-text p { color: rgba(255,255,255,.7); font-size: 1rem; max-width: 500px; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── Page Hero ───────────────────────────────────────────── */
.page-hero {
  background: var(--navy);
  padding: 152px 0 72px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 80% 50%, rgba(23,203,220,.1) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
}
.page-hero h1 { color: var(--white); margin-bottom: 18px; }
.page-hero-desc {
  color: rgba(255,255,255,.7);
  font-size: 1.07rem;
  max-width: 580px;
  line-height: 1.7;
}

/* ── Services Detail ─────────────────────────────────────── */
.service-detail { padding: var(--section-pad); }
.service-detail-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.service-detail-inner.reverse > div:first-child { order: 2; }
.service-detail-inner.reverse > div:last-child  { order: 1; }
.service-detail-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(23,203,220,.1);
  border: 1px solid rgba(23,203,220,.25);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: .8rem;
  font-weight: 700;
  color: var(--teal-dark);
  margin-bottom: 20px;
}
.service-detail-badge svg { width: 15px; height: 15px; }
.service-detail h2 { margin-bottom: 18px; }
.service-detail p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: .97rem;
}
.service-detail ul {
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.service-detail ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .93rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.service-detail ul li::before {
  content: '';
  flex-shrink: 0;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
  margin-top: 3px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: 10px;
  background-repeat: no-repeat;
  background-position: center;
}
.service-visual-box {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.svc-metric { margin-bottom: 20px; }
.svc-metric:last-child { margin-bottom: 0; }
.svc-metric-label {
  font-size: .8rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 7px;
}
.svc-metric-bar {
  height: 5px;
  background: var(--border);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 6px;
}
.svc-metric-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--teal-dark), var(--bright-blue));
  border-radius: 999px;
}
.svc-metric-val { font-size: .78rem; color: var(--text-muted); }

/* ── About ───────────────────────────────────────────────── */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.about-quote {
  background: var(--off-white);
  border-left: 3px solid var(--teal);
  padding: 20px 24px;
  margin: 24px 0;
  font-family: 'DM Serif Display', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--navy);
  line-height: 1.6;
  border-radius: 0 var(--radius) var(--radius) 0;
}
.about-story > div > p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: .97rem;
}
.timeline { display: flex; flex-direction: column; gap: 0; }
.timeline-item {
  position: relative;
  padding: 0 0 28px 44px;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: 12px; top: 8px; bottom: 0;
  width: 1px;
  background: var(--border);
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item:last-child::before { display: none; }
.timeline-item::after {
  content: '';
  position: absolute;
  left: 7px; top: 6px;
  width: 11px; height: 11px;
  border-radius: 50%;
  background: var(--teal-dark);
  border: 2px solid var(--white);
  box-shadow: 0 0 0 2px var(--teal-dark);
}
.timeline-year {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--teal-dark);
  margin-bottom: 4px;
}
.timeline-title { font-weight: 700; font-size: .95rem; color: var(--navy); margin-bottom: 6px; }
.timeline-desc { font-size: .87rem; color: var(--text-muted); line-height: 1.65; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 52px;
}
.value-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: box-shadow .2s, transform .2s;
}
.value-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.value-num {
  font-family: 'DM Serif Display', serif;
  font-size: 2.2rem;
  color: var(--border);
  line-height: 1;
  margin-bottom: 14px;
}
.value-title { font-weight: 700; font-size: 1rem; color: var(--navy); margin-bottom: 10px; }
.value-desc { font-size: .9rem; color: var(--text-muted); line-height: 1.7; }

/* ── Privacy ─────────────────────────────────────────────── */
.prose { max-width: 740px; }
.prose h2 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin: 36px 0 10px;
}
.prose p {
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 16px;
  font-size: .97rem;
}
.prose a { color: var(--bright-blue); }
.prose a:hover { text-decoration: underline; }

/* ── Footer ──────────────────────────────────────────────── */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,.7);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-logo {
  margin-bottom: 16px;
}
.footer-logo-img {
  height: 40px;
  width: auto;
  display: block;
  /* Logo has navy text — add brightness invert for dark footer bg */
  filter: brightness(0) invert(1);
}
.footer-tagline {
  font-size: .88rem;
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 300px;
}
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  margin-bottom: 8px;
}
.footer-contact-item svg { color: var(--teal); flex-shrink: 0; }
.footer-col-title {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: .88rem;
  color: rgba(255,255,255,.55);
  transition: color .15s;
}
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  font-size: .82rem;
  color: rgba(255,255,255,.35);
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,.35); }
.footer-bottom-links a:hover { color: rgba(255,255,255,.7); }

/* ── Animations ──────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { opacity: 0; }
.fade-up.visible { animation: fadeUp .55s ease forwards; }
.fade-up:nth-child(2).visible { animation-delay: .1s; }
.fade-up:nth-child(3).visible { animation-delay: .2s; }
.fade-up:nth-child(4).visible { animation-delay: .3s; }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .service-detail-inner { grid-template-columns: 1fr; gap: 36px; }
  .service-detail-inner.reverse > div:first-child { order: 1; }
  .service-detail-inner.reverse > div:last-child  { order: 2; }
  .portfolio-page-grid { grid-template-columns: 1fr; }
  .about-story { grid-template-columns: 1fr; gap: 48px; }
  .values-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --section-pad: 60px 0; }
  .container { padding: 0 20px; }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 76px; left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 12px 20px 20px;
    gap: 2px;
    box-shadow: var(--shadow);
  }
  .nav-links.open .nav-cta {
    display: inline-flex;
    margin-left: 0;
    margin-top: 8px;
  }
  .hero { padding: 120px 0 60px; }
  .hero h1 { font-size: 2rem; }
  .hero-stats { gap: 24px; }
  .why-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .values-grid { grid-template-columns: 1fr; }
  .trust-bar-label { border-right: none; padding-right: 0; }
}
