:root {
  --navy: #1B3A6B;
  --navy-dark: #0F2347;
  --navy-mid: #1E4880;
  --blue: #1E5CB3;
  --blue-light: #00AEEF;
  --gold: #00AEEF;
  --gold-light: #29C6FF;
  --white: #FFFFFF;
  --off-white: #F4F7FB;
  --grey-light: #E2EAF4;
  --grey-mid: #8A96A8;
  --grey-dark: #3D4A5C;
  --text: #1A2336;
  --text-light: #4A5568;
  --font-head: 'Sora', sans-serif;
  --font-body: 'Inter', sans-serif;
  --max-w: 1200px;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(11,30,61,.10);
  --shadow-lg: 0 12px 48px rgba(11,30,61,.16);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text); background: var(--white); line-height: 1.65; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
a:visited { color: inherit; }
a:active { color: inherit; }
ul { list-style: none; }
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; }
.section { padding: 6rem 0; }
.section-header { text-align: center; max-width: 680px; margin: 0 auto 3.5rem; }
.section-tag { font-size: .8rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--blue); margin-bottom: .6rem; }
.section-header h2 { font-family: var(--font-head); font-size: clamp(1.8rem, 3.5vw, 2.6rem); color: var(--navy); line-height: 1.2; margin-bottom: 1rem; }
.section-sub { color: var(--text-light); font-size: 1.05rem; }
.accent { color: var(--gold); }
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .85rem 2rem; border-radius: 6px;
  font-family: var(--font-body); font-size: .95rem; font-weight: 600;
  transition: all .2s ease; cursor: pointer; border: 2px solid transparent;
}
.btn-primary, .btn-primary:link, .btn-primary:visited { background: var(--blue); color: var(--white); }
.btn-primary:hover { background: #0042AA; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,82,212,.35); }
.btn-ghost, .btn-ghost:link, .btn-ghost:visited { background: transparent; color: var(--white); border-color: rgba(255,255,255,.4); }
.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,.1); }
.btn-outline, .btn-outline:link, .btn-outline:visited { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-white, .btn-white:link, .btn-white:visited { background: var(--white); color: var(--navy); }
.btn-white:hover { background: var(--off-white); transform: translateY(-1px); }
.btn-block { width: 100%; justify-content: center; margin-top: 1rem; }
.btn-mt { margin-top: 1.5rem; }
.btn-full { width: 100%; justify-content: center; }
.nav-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(11,30,61,.95); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: all .3s ease;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.logo { font-family: var(--font-head); font-size: 1.4rem; font-weight: 800; color: var(--white); }
.logo span { color: var(--gold); }
.logo-img img { height: 52px; width: auto; display: block; background: var(--white); border-radius: 6px; padding: 6px 14px; }
.footer-logo img { height: 56px; background: var(--white); border-radius: 6px; padding: 6px 14px; margin-bottom: 1rem; }
.nav-links { display: flex; align-items: center; gap: .25rem; }
.nav-links > li { position: relative; }
.nav-links a, .nav-links a:visited { padding: .5rem .85rem; border-radius: 6px; color: rgba(255,255,255,.8); font-size: .9rem; font-weight: 500; transition: all .2s; }
.nav-links a:hover, .nav-links a.active { color: var(--white); background: rgba(255,255,255,.08); }
.nav-cta { background: var(--blue) !important; color: var(--white) !important; padding: .5rem 1.2rem !important; }
.nav-cta:hover { background: #0042AA !important; }
.dropdown-menu {
  display: none; position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-lg);
  min-width: 260px; padding: .5rem; border: 1px solid var(--grey-light);
}
.dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu li a, .dropdown-menu li a:visited { display: block; padding: .6rem 1rem; color: var(--text); font-size: .9rem; border-radius: 6px; }
.dropdown-menu li a:hover { background: var(--off-white); color: var(--navy); }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: .3s; }
.hero {
  position: relative; min-height: 100vh;
  background: linear-gradient(160deg, #162D55 0%, #1B3A6B 40%, #0F2347 100%);
  display: flex; align-items: center;
  padding-top: 70px; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; background: linear-gradient(160deg, #162D55 0%, #1B3A6B 40%, #0F2347 100%); }
.hero-bg::after { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 20% 50%, rgba(30,92,179,.2) 0%, transparent 60%); }
.hero-content { position: relative; z-index: 1; padding: 6rem 0; max-width: 760px; }
.hero-badge { display: flex; align-items: center; gap: 1rem; color: var(--blue-light); font-size: .78rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; margin-bottom: 1.75rem; }
.hero-badge::before, .hero-badge::after { content: ''; flex: 0 0 40px; height: 1px; background: linear-gradient(to right, transparent, var(--blue-light)); }
.hero-badge::after { background: linear-gradient(to left, transparent, var(--blue-light)); }
.hero-content h1 { font-family: var(--font-head); font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 800; color: var(--white); line-height: 1.15; margin-bottom: 1.5rem; }
.hero-sub { font-size: 1.15rem; color: rgba(255,255,255,.7); max-width: 580px; margin-bottom: 2.5rem; line-height: 1.7; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 4rem; }
.hero-stats { display: flex; gap: 1rem; flex-wrap: wrap; padding-top: 2.5rem; }
.stat { flex: 1; min-width: 150px; background: var(--white); border-radius: var(--radius); padding: 1.25rem 1.5rem; box-shadow: 0 4px 20px rgba(0,0,0,.15); transition: transform .2s; }
.stat:hover { transform: translateY(-2px); }
.stat-num { display: block; font-family: var(--font-head); font-size: 1.75rem; font-weight: 800; color: var(--navy); margin-bottom: .35rem; }
.stat-label { display: block; font-size: .78rem; color: var(--text-light); line-height: 1.4; }
.services-section { background: var(--off-white); }
.services-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1.5rem; }
.services-grid .service-card { grid-column: span 2; }
.services-grid .service-card:nth-child(4) { grid-column: 2 / span 2; }
.services-grid .service-card:nth-child(5) { grid-column: 4 / span 2; }
.service-card { background: var(--white); border-radius: var(--radius); padding: 2.5rem 2rem; border: 1px solid var(--grey-light); transition: all .25s ease; display: flex; flex-direction: column; position: relative; overflow: hidden; }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--blue-light); }
.service-card--featured { background: var(--white); }
.service-badge { position: absolute; top: 1.2rem; right: 1.2rem; background: var(--blue-light); color: var(--white); font-size: .7rem; font-weight: 700; padding: .2rem .6rem; border-radius: 100px; letter-spacing: .06em; text-transform: uppercase; }
.service-icon { color: var(--blue); margin-bottom: 1.5rem; }
.service-card h3 { font-family: var(--font-head); font-size: 1.15rem; color: var(--navy); margin-bottom: .75rem; line-height: 1.3; }
.service-card p { color: var(--text-light); font-size: .95rem; flex: 1; margin-bottom: 1.5rem; }
.card-link { font-size: .9rem; font-weight: 600; color: var(--blue); }
.card-link, .card-link:link, .card-link:visited { color: var(--blue-light); }
.why-section { background: var(--white); }
.why-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: start; }
.why-text .section-tag { text-align: left; }
.why-text h2 { font-family: var(--font-head); font-size: clamp(1.8rem, 3vw, 2.4rem); color: var(--navy); margin-bottom: 1.25rem; }
.why-text p { color: var(--text-light); margin-bottom: 1rem; }
.why-pillars { display: flex; flex-direction: column; gap: 1.75rem; }
.pillar { padding: 1.5rem; background: var(--off-white); border-radius: var(--radius); border-left: 3px solid var(--blue-light); overflow: hidden; }
.pillar-img { width: calc(100% + 3rem); margin: -1.5rem -1.5rem .75rem; height: 140px; object-fit: cover; object-position: center; display: block; }
.pillar-icon { font-size: 1rem; color: var(--blue-light); margin-bottom: .5rem; }
.pillar h4 { font-family: var(--font-head); font-size: 1rem; color: var(--navy); margin-bottom: .4rem; }
.pillar p { font-size: .9rem; color: var(--text-light); }
.team-section { background: var(--off-white); }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-bottom: 2.5rem; }
.team-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: transform .25s; }
.team-card:hover { transform: translateY(-4px); }
.team-photo { aspect-ratio: 1/1; overflow: hidden; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.team-info { padding: 1.75rem; }
.team-info h3 { font-family: var(--font-head); font-size: 1.15rem; color: var(--navy); margin-bottom: .25rem; }
.team-title { font-size: .85rem; font-weight: 600; color: var(--blue); text-transform: uppercase; letter-spacing: .06em; margin-bottom: .9rem; }
.team-bio { font-size: .9rem; color: var(--text-light); line-height: 1.6; margin-bottom: 1rem; }
.team-linkedin, .team-linkedin:link, .team-linkedin:visited, .team-linkedin:hover, .team-linkedin:active { font-size: .85rem; font-weight: 600; color: var(--blue-light); }
.team-cta { text-align: center; }
.cta-band { background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, var(--blue) 100%); padding: 5rem 0; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.cta-inner h2 { font-family: var(--font-head); font-size: clamp(1.5rem, 3vw, 2rem); color: var(--white); margin-bottom: .5rem; }
.cta-inner p { color: rgba(255,255,255,.7); }
.footer { background: var(--navy-dark); padding: 5rem 0 0; }
.footer-inner { display: grid; grid-template-columns: 1.5fr 2fr; gap: 4rem; padding-bottom: 4rem; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-brand .logo { margin-bottom: 1rem; font-size: 1.3rem; }
.footer-brand p { color: rgba(255,255,255,.5); font-size: .9rem; line-height: 1.6; margin-bottom: .5rem; }
.footer-address { margin-top: 1rem; font-size: .85rem; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.footer-col h4 { font-family: var(--font-head); font-size: .85rem; font-weight: 700; color: var(--white); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 1.2rem; }
.footer-col ul li { margin-bottom: .7rem; }
.footer-col ul li a, .footer-col ul li a:visited { color: rgba(255,255,255,.5); font-size: .9rem; transition: color .2s; }
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom { padding: 1.5rem 0; }
.footer-bottom p { color: rgba(255,255,255,.3); font-size: .8rem; text-align: center; }
.footer-social { display: flex; gap: .6rem; margin-top: 1.2rem; }
.footer-social a { display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: 6px; background: rgba(255,255,255,.08); color: rgba(255,255,255,.6); font-size: .85rem; font-weight: 700; transition: all .2s; }
.footer-social a:hover { background: var(--blue-light); color: var(--white); }
.page-hero { background: linear-gradient(160deg, #162D55 0%, #1B3A6B 40%, #0F2347 100%); padding: 8rem 0 4rem; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 30% 50%, rgba(0,82,212,.2) 0%, transparent 60%); }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { font-family: var(--font-head); font-size: clamp(2rem, 4vw, 3rem); color: var(--white); margin-bottom: .75rem; }
.page-hero-sub { font-size: .85rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--blue-light); margin-bottom: .75rem; }
.page-hero p { color: rgba(255,255,255,.7); font-size: 1.1rem; max-width: 600px; }
.breadcrumb { display: flex; align-items: center; gap: .5rem; margin-bottom: 1.25rem; }
.breadcrumb a, .breadcrumb span { font-size: .85rem; color: rgba(255,255,255,.5); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb .sep { color: rgba(255,255,255,.3); }
.insights-filter-bar { background: var(--white); border-bottom: 1px solid var(--grey-light); padding: 1rem 0; }
.filter-inner { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.filter-label { font-size: .85rem; font-weight: 600; color: var(--text-light); white-space: nowrap; }
.filter-tags { display: flex; gap: .5rem; flex-wrap: wrap; }
.filter-tag { padding: .4rem 1rem; border-radius: 100px; border: 1.5px solid var(--grey-light); background: var(--white); font-size: .82rem; font-weight: 600; color: var(--text-light); cursor: pointer; transition: all .2s; }
.filter-tag:hover, .filter-tag.active { background: var(--navy); border-color: var(--navy); color: var(--white); }
.insights-section { background: var(--off-white); }
.insights-featured { background: var(--white); border-radius: var(--radius); padding: 3rem; margin-bottom: 3rem; box-shadow: var(--shadow); border-left: 4px solid var(--blue-light); }
.featured-meta { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.25rem; }
.insights-featured h2 { font-family: var(--font-head); font-size: clamp(1.4rem, 2.5vw, 1.9rem); color: var(--navy); margin-bottom: 1rem; line-height: 1.3; }
.insights-featured p { color: var(--text-light); font-size: 1.05rem; line-height: 1.8; }
.featured-author { display: flex; align-items: center; gap: .75rem; margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid var(--grey-light); }
.featured-author img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; object-position: top; }
.featured-author strong { display: block; font-size: .9rem; color: var(--navy); }
.featured-author span { font-size: .8rem; color: var(--grey-mid); }
.insights-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-bottom: 3rem; }
.article-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--grey-light); display: flex; flex-direction: column; transition: transform .2s; }
.article-card:hover { transform: translateY(-3px); }
.article-card-poster { width: 100%; aspect-ratio: 16/9; overflow: hidden; flex-shrink: 0; }
.article-card-poster img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.article-card .article-card-top { padding: 1.25rem 1.75rem 0; }
.article-card h3 { padding: 0 1.75rem; font-family: var(--font-head); font-size: 1rem; color: var(--navy); line-height: 1.4; flex: 1; }
.article-card > p { padding: 0 1.75rem; font-size: .875rem; color: var(--text-light); line-height: 1.7; flex: 1; }
.article-card .article-footer { padding: 0 1.75rem 1.5rem; margin-top: auto; }
.article-card-top { display: flex; align-items: center; justify-content: space-between; }
.article-footer { display: flex; align-items: center; justify-content: space-between; padding-top: .75rem; border-top: 1px solid var(--grey-light); margin-top: auto; gap: .5rem; flex-wrap: wrap; }
.article-author { display: flex; align-items: center; gap: .6rem; }
.article-author img { width: 32px; height: 32px; border-radius: 50%; object-fit: cover; object-position: top; }
.article-author span { font-size: .8rem; font-weight: 600; color: var(--text-light); }
.article-linkedin, .article-linkedin:visited { font-size: .78rem; font-weight: 600; color: var(--blue-light); white-space: nowrap; }
.article-linkedin:hover { opacity: .75; }
.article-date { font-size: .75rem; color: var(--grey-mid); white-space: nowrap; }
.article-tag { display: inline-block; padding: .25rem .7rem; border-radius: 100px; font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }
.tag-inclusion { background: #E8F5E9; color: #2E7D32; }
.tag-ai { background: #E3F2FD; color: #1565C0; }
.tag-transformation { background: #F3E5F5; color: #6A1B9A; }
.tag-strategy { background: #FFF3E0; color: #E65100; }
.insights-newsletter { background: var(--navy); border-radius: var(--radius); padding: 3rem; }
.newsletter-inner { display: flex; align-items: center; justify-content: space-between; gap: 3rem; flex-wrap: wrap; }
.newsletter-inner h3 { font-family: var(--font-head); font-size: 1.4rem; color: var(--white); margin-bottom: .5rem; }
.newsletter-inner p { color: rgba(255,255,255,.65); font-size: .95rem; max-width: 420px; }
.newsletter-form { display: flex; gap: .75rem; flex-shrink: 0; }
.newsletter-form input { padding: .75rem 1.25rem; border-radius: 6px; border: none; font-size: .95rem; width: 260px; outline: none; }
.newsletter-form input:focus { box-shadow: 0 0 0 2px var(--blue-light); }
.service-layout { display: grid; grid-template-columns: 1fr 300px; gap: 4rem; align-items: start; }
.service-visual { border-radius: var(--radius); overflow: hidden; margin-bottom: 2rem; box-shadow: var(--shadow); }
.service-visual img { width: 100%; height: 260px; object-fit: cover; object-position: center top; display: block; }
.service-main h2 { font-family: var(--font-head); font-size: clamp(1.6rem, 2.5vw, 2rem); color: var(--navy); margin-bottom: 1.25rem; }
.service-main h3 { font-family: var(--font-head); font-size: 1.2rem; color: var(--navy); margin: 2.5rem 0 1rem; padding-bottom: .5rem; border-bottom: 2px solid var(--grey-light); }
.service-main p { color: var(--text-light); margin-bottom: 1.1rem; line-height: 1.8; }
.service-offerings { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin: 1.5rem 0; }
.offering { background: var(--off-white); border-radius: var(--radius); padding: 1.5rem; border-left: 3px solid var(--blue-light); }
.offering h4 { font-family: var(--font-head); font-size: .95rem; color: var(--navy); margin-bottom: .6rem; }
.offering p { font-size: .9rem; margin-bottom: 0; }
.faqs { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 1rem; }
.faq { background: var(--white); border: 1px solid var(--grey-light); border-radius: var(--radius); padding: 1.5rem; }
.faq h4 { font-family: var(--font-head); font-size: .95rem; color: var(--navy); margin-bottom: .6rem; }
.faq p { font-size: .9rem; margin-bottom: 0; }
.service-sidebar { position: sticky; top: 90px; display: flex; flex-direction: column; gap: 1.25rem; }
.sidebar-card { background: var(--white); border: 1px solid var(--grey-light); border-radius: var(--radius); padding: 1.5rem; box-shadow: var(--shadow); }
.sidebar-card h4 { font-family: var(--font-head); font-size: .95rem; color: var(--navy); margin-bottom: .6rem; }
.sidebar-card p { font-size: .875rem; color: var(--text-light); margin-bottom: 0; }
.sidebar-links { display: flex; flex-direction: column; gap: .6rem; margin-top: .5rem; }
.sidebar-links a, .sidebar-links a:link, .sidebar-links a:visited, .sidebar-links a:hover, .sidebar-links a:active { font-size: .875rem; color: var(--blue-light); font-weight: 500; text-decoration: none; }
.sidebar-links a:hover { opacity: .75; }
.sidebar-text-link, .sidebar-text-link:link, .sidebar-text-link:visited, .sidebar-text-link:hover, .sidebar-text-link:active { display: inline-block; margin-top: .75rem; font-size: .875rem; font-weight: 600; color: var(--blue-light); text-decoration: none; }
.sidebar-text-link:hover { opacity: .75; }
.about-story-section { background: var(--white); }
.about-story-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 5rem; align-items: start; }
.about-story-text .section-tag { text-align: left; }
.about-story-text h2 { font-family: var(--font-head); font-size: clamp(1.8rem, 3vw, 2.4rem); color: var(--navy); margin-bottom: 1.25rem; }
.about-story-text p { color: var(--text-light); margin-bottom: 1.1rem; line-height: 1.8; }
.about-story-stats { display: flex; flex-direction: column; gap: 1.5rem; }
.about-stat { padding: 1.5rem; background: var(--off-white); border-radius: var(--radius); border-left: 3px solid var(--blue-light); }
.about-stat-num { display: block; font-family: var(--font-head); font-size: 2.2rem; font-weight: 800; color: var(--navy); }
.about-stat-label { display: block; font-size: .85rem; color: var(--text-light); margin-top: .3rem; }
.about-team-section { background: var(--off-white); }
.bio-card { display: grid; grid-template-columns: 280px 1fr; gap: 3rem; background: var(--white); border-radius: var(--radius); padding: 2.5rem; margin-bottom: 2rem; box-shadow: var(--shadow); align-items: start; }
.bio-card--reverse { grid-template-columns: 1fr 280px; }
.bio-card--reverse .bio-photo { order: 2; }
.bio-card--reverse .bio-content { order: 1; }
.bio-photo img { width: 100%; aspect-ratio: 1/1; object-fit: cover; object-position: top; border-radius: var(--radius); }
.bio-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 1.25rem; }
.bio-content h3 { font-family: var(--font-head); font-size: 1.4rem; color: var(--navy); margin-bottom: .25rem; }
.bio-title { font-size: .85rem; font-weight: 600; color: var(--blue); text-transform: uppercase; letter-spacing: .07em; }
.bio-linkedin { display: inline-flex; align-items: center; gap: .4rem; padding: .4rem .9rem; background: var(--navy); color: var(--white); border-radius: 6px; font-size: .8rem; font-weight: 600; white-space: nowrap; transition: background .2s; }
.bio-linkedin:hover { background: var(--blue); }
.bio-content p { color: var(--text-light); margin-bottom: 1rem; line-height: 1.8; font-size: .95rem; }
.bio-content strong { color: var(--text); font-weight: 600; }
.bio-tags { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.25rem; }
.bio-tags span { padding: .3rem .8rem; background: var(--off-white); border-radius: 100px; font-size: .78rem; font-weight: 600; color: var(--text-light); border: 1px solid var(--grey-light); }
.values-section { background: var(--white); }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; max-width: 900px; margin: 0 auto; }
.value-card { padding: 2rem; background: var(--off-white); border-radius: var(--radius); }
.value-num { font-family: var(--font-head); font-size: 2rem; font-weight: 800; color: var(--blue-light); opacity: .5; margin-bottom: .75rem; }
.value-card h4 { font-family: var(--font-head); font-size: 1rem; color: var(--navy); margin-bottom: .6rem; }
.value-card p { font-size: .9rem; color: var(--text-light); line-height: 1.7; }
.contact-section { background: var(--off-white); }
.contact-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 4rem; align-items: start; }
.contact-form-wrap h2 { font-family: var(--font-head); font-size: 1.75rem; color: var(--navy); margin-bottom: .5rem; }
.contact-sub { color: var(--text-light); margin-bottom: 2rem; }
.contact-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-size: .875rem; font-weight: 600; color: var(--text); }
.form-group label span { color: var(--blue-light); }
.form-group input, .form-group select, .form-group textarea { padding: .75rem 1rem; border: 1.5px solid var(--grey-light); border-radius: 8px; font-family: var(--font-body); font-size: .95rem; color: var(--text); background: var(--white); transition: border-color .2s; outline: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--blue); }
.form-group textarea { resize: vertical; min-height: 140px; }
.btn-full { width: 100%; justify-content: center; }
.form-note { font-size: .8rem; color: var(--grey-mid); text-align: center; }
.form-note a { color: var(--blue); }
.contact-card { background: var(--white); border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow); margin-bottom: 1.5rem; }
.contact-card h3, .team-contacts h3 { font-family: var(--font-head); font-size: 1.15rem; color: var(--navy); margin-bottom: 1.5rem; }
.contact-item { display: flex; gap: 1rem; margin-bottom: 1.5rem; align-items: flex-start; }
.contact-item:last-child { margin-bottom: 0; }
.contact-icon { width: 36px; height: 36px; background: var(--off-white); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--blue); flex-shrink: 0; }
.contact-label { font-size: .75rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--grey-mid); margin-bottom: .25rem; }
.contact-item a, .contact-item p { display: block; font-size: .9rem; color: var(--text-light); }
.contact-item a { color: var(--blue); }
.contact-item a:hover { color: var(--navy); }
.team-contacts { background: var(--white); border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow); margin-bottom: 1.5rem; }
.team-contact-item { display: flex; gap: 1rem; align-items: center; margin-bottom: 1.25rem; }
.team-contact-item:last-child { margin-bottom: 0; }
.team-contact-item img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; object-position: top; flex-shrink: 0; }
.team-contact-item strong { display: block; font-size: .95rem; color: var(--navy); margin-bottom: .1rem; }
.team-contact-item p { font-size: .8rem; color: var(--grey-mid); margin-bottom: .25rem; }
.team-contact-item a { font-size: .85rem; font-weight: 600; color: var(--blue); }
.contact-visual-img { border-radius: var(--radius); overflow: hidden; margin-bottom: 1.25rem; box-shadow: var(--shadow); }
.contact-visual-img img { width: 100%; height: 180px; object-fit: cover; object-position: center; display: block; }
.contact-map { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.policy-wrap { max-width: 800px; margin: 0 auto; }
.policy-intro { font-size: 1.1rem; color: var(--text); margin-bottom: 1.5rem; }
.policy-wrap p { color: var(--text-light); margin-bottom: 1.2rem; line-height: 1.8; }
.policy-wrap h2 { font-family: var(--font-head); font-size: 1.5rem; color: var(--navy); margin: 2.5rem 0 1rem; padding-bottom: .5rem; border-bottom: 2px solid var(--grey-light); }
.policy-wrap h3 { font-family: var(--font-head); font-size: 1.15rem; color: var(--navy); margin: 2rem 0 .75rem; }
.policy-wrap h4 { font-size: 1rem; font-weight: 600; color: var(--text); margin: 1.5rem 0 .5rem; }
.policy-toc { background: var(--off-white); border-radius: var(--radius); padding: 1.5rem 2rem; margin: 2rem 0; border-left: 3px solid var(--blue-light); }
.policy-toc p { margin-bottom: .5rem; color: var(--text); }
.policy-toc ul { padding-left: 1.2rem; list-style: disc; }
.policy-toc ul li { margin-bottom: .4rem; }
.policy-toc ul li a { color: var(--blue); font-size: .95rem; }
.policy-toc ul li a:hover { color: var(--navy); text-decoration: underline; }
.policy-address { background: var(--off-white); border-radius: var(--radius); padding: 1.25rem 1.5rem; margin: 1rem 0 1.5rem; line-height: 1.9; color: var(--text-light); font-size: .95rem; }
.policy-address a { color: var(--blue); }
.policy-list { padding-left: 1.5rem; margin-bottom: 1.5rem; }
.policy-list li { color: var(--text-light); margin-bottom: .8rem; line-height: 1.7; list-style: disc; }
.policy-updated { margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid var(--grey-light); }
.policy-updated p { font-size: .85rem; color: var(--grey-mid); }
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(4, 1fr); }
  .services-grid .service-card { grid-column: span 2; }
  .services-grid .service-card:nth-child(4) { grid-column: 1 / span 2; }
  .services-grid .service-card:nth-child(5) { grid-column: 3 / span 2; }
  .why-inner { grid-template-columns: 1fr; gap: 3rem; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .about-story-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-story-stats { flex-direction: row; flex-wrap: wrap; }
  .about-stat { flex: 1; min-width: 140px; }
  .insights-grid { grid-template-columns: 1fr 1fr; }
  .service-layout { grid-template-columns: 1fr; }
  .service-sidebar { position: static; }
  .service-offerings { grid-template-columns: 1fr; }
  .bio-card, .bio-card--reverse { grid-template-columns: 1fr; }
  .bio-card--reverse .bio-photo, .bio-card--reverse .bio-content { order: unset; }
  .bio-photo img { max-width: 200px; }
}
@media (max-width: 768px) {
  .section { padding: 3rem 0; }
  .container { padding: 0 1.25rem; }
  .services-grid { grid-template-columns: 1fr; gap: 1rem; }
  .services-grid .service-card, .services-grid .service-card:nth-child(4), .services-grid .service-card:nth-child(5) { grid-column: span 1; }
  .hero-content { padding: 4rem 0 3rem; }
  .hero-content h1 { font-size: clamp(1.8rem, 6vw, 2.8rem); }
  .hero-sub { font-size: 1rem; }
  .hero-stats { flex-direction: column; gap: .75rem; }
  .stat { min-width: unset; }
  .stat-num { font-size: 1.5rem; }
  .team-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
  .about-story-stats { flex-direction: column; gap: 1rem; }
  .about-stat { min-width: unset; }
  .bio-photo img { max-width: 160px; border-radius: 50%; }
  .bio-header { flex-direction: column; gap: .75rem; }
  .page-hero { padding: 6rem 0 2.5rem; }
  .page-hero h1 { font-size: clamp(1.6rem, 5vw, 2.2rem); }
  .why-inner { grid-template-columns: 1fr; }
  .section-header { margin-bottom: 2rem; }
  .values-grid { grid-template-columns: repeat(1, 1fr); max-width: 100%; }
  .insights-grid { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; width: 100%; }
  .newsletter-form input { width: 100%; }
  .newsletter-inner { flex-direction: column; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .nav-links { display: none; position: fixed; inset: 70px 0 0 0; background: var(--navy-dark); flex-direction: column; align-items: stretch; padding: 2rem; gap: .5rem; overflow-y: auto; }
  .nav-links.open { display: flex; }
  .nav-links a { padding: .9rem 1rem; font-size: 1rem; }
  .nav-cta { text-align: center; justify-content: center; }
  .hamburger { display: flex; }
  .dropdown-menu { position: static; box-shadow: none; background: rgba(255,255,255,.05); margin-top: .25rem; display: none; }
  .dropdown-menu.open { display: block; }
  .dropdown-menu li a { color: rgba(255,255,255,.7); }
}
@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .footer-links { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; justify-content: center; width: 100%; }
  .logo-img img { height: 42px; }
  .hero-badge { font-size: .65rem; letter-spacing: .1em; }
  .hero-stats { gap: .6rem; }
  .stat { padding: 1rem; }
  .section { padding: 2.5rem 0; }
  .team-photo { aspect-ratio: 4/3; }
}
