:root {
  --navy: #061a35;
  --navy-2: #0b2749;
  --navy-3: #12345d;
  --orange: #f47a20;
  --orange-dark: #dc6411;
  --gold: #d8a446;
  --ink: #10233e;
  --text: #4f5f72;
  --muted: #788697;
  --line: #e4e9ef;
  --soft: #f6f8fa;
  --white: #fff;
  --shadow: 0 16px 40px rgba(9, 31, 57, .11);
  --radius: 6px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
  border-radius: 0 !important;
}
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--white); font-family: "Manrope", Arial, sans-serif; line-height: 1.65; -webkit-font-smoothing: antialiased; }
body.nav-locked { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
img { display: block; max-width: 100%; }
h1, h2, h3, h4, p { margin-top: 0; }
.container { width: min(var(--container), calc(100% - 40px)); margin-inline: auto; }
.section { padding: 92px 0; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 1000; background: rgba(5, 24, 49, .98); border-bottom: 1px solid rgba(255,255,255,.09); box-shadow: 0 5px 20px rgba(0,0,0,.12); }
.header-inner { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.brand { flex: 0 0 150px; width: 150px; height: 52px; display: inline-flex; align-items: center; overflow: hidden; color: #fff; background: #fff; }
.brand-logo { width: 100%; height: 100%; max-width: none; object-fit: contain; background: #fff; }
.brand-mark { width: 34px; height: 34px; display: flex; align-items: flex-end; gap: 3px; transform: skewY(-4deg); }
.brand-mark i { width: 7px; display: block; background: var(--orange); border-radius: 1px; }
.brand-mark i:nth-child(1) { height: 13px; }
.brand-mark i:nth-child(2) { height: 22px; }
.brand-mark i:nth-child(3) { height: 31px; }
.brand-copy { display: grid; line-height: 1; }
.brand-copy strong { font-size: 1.08rem; letter-spacing: .055em; }
.brand-copy small { margin-top: 6px; color: var(--orange); font-size: .62rem; font-weight: 800; letter-spacing: .35em; }
.site-nav { display: flex; align-items: center; gap: 24px; margin-left: auto; }
.site-nav > a, .dropdown-toggle { position: relative; padding: 28px 0 24px; border: 0; background: transparent; color: rgba(255,255,255,.86); font-size: .82rem; font-weight: 600; cursor: pointer; white-space: nowrap; }
.site-nav > a::after, .dropdown-toggle::after { content: ""; position: absolute; left: 0; right: 0; bottom: 17px; height: 2px; transform: scaleX(0); background: var(--orange); transition: transform .2s ease; }
.site-nav > a:hover, .site-nav > a.active, .dropdown-toggle:hover, .dropdown-toggle.active { color: var(--orange); }
.site-nav > a:hover::after, .site-nav > a.active::after, .dropdown-toggle:hover::after, .dropdown-toggle.active::after { transform: scaleX(1); }
.site-nav .header-cta { display: inline-flex; align-items: center; gap: 8px; padding: 12px 17px; color: #fff; background: var(--orange); border: 1px solid var(--orange); border-radius: 4px; box-shadow: 0 8px 20px rgba(244,122,32,.22); }
.site-nav .header-cta i, .button-primary i { width: 23px; height: 23px; display: inline-grid; place-items: center; color: var(--orange); background: #fff; }
.site-nav .header-cta::after { display: none; }
.site-nav .header-cta:hover, .site-nav .header-cta.active { color: #fff; background: var(--orange-dark); }
.nav-dropdown { position: relative; display: flex; }
.dropdown-menu { position: absolute; top: calc(100% - 4px); left: -18px; width: 240px; padding: 8px; display: grid; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); opacity: 0; visibility: hidden; transform: translateY(8px); transition: .2s ease; }
.nav-dropdown:hover .dropdown-menu, .nav-dropdown:focus-within .dropdown-menu, .nav-dropdown.open .dropdown-menu { opacity: 1; visibility: visible; transform: none; }
.dropdown-menu a { padding: 10px 12px; color: var(--ink); font-size: .82rem; border-radius: 4px; }
.dropdown-menu a:hover { color: var(--orange); background: #fff5ec; }
.nav-toggle { display: none; width: 42px; height: 42px; padding: 9px; border: 1px solid rgba(255,255,255,.22); border-radius: 4px; background: transparent; cursor: pointer; }
.nav-toggle span { display: block; height: 2px; margin: 5px 0; background: #fff; transition: .2s ease; }

/* Shared typography and buttons */
.eyebrow, .section-label { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 15px; color: var(--orange); font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.eyebrow::after, .section-label::after { content: ""; width: 28px; height: 2px; background: currentColor; }
.eyebrow-light { color: var(--orange); }
.button, .cta-button { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; padding: 12px 20px; border: 1px solid transparent; border-radius: 4px; font-size: .84rem; font-weight: 700; cursor: pointer; transition: transform .2s ease, background .2s ease, border-color .2s ease; }
.button:hover, .cta-button:hover { transform: translateY(-2px); }
.button-primary, .cta-button { color: #fff; background: var(--orange); border-color: var(--orange); }
.button-primary:hover, .cta-button:hover { background: var(--orange-dark); border-color: var(--orange-dark); }
.button-outline { color: #fff; border-color: rgba(255,255,255,.62); background: transparent; }
.button-outline:hover { background: rgba(255,255,255,.1); border-color: #fff; }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--navy); font-size: .85rem; font-weight: 800; }
.text-link span { color: var(--orange); transition: transform .2s ease; }
.text-link:hover { color: var(--orange); }
.text-link:hover span { transform: translateX(4px); }
.section-heading { margin-bottom: 42px; }
.section-heading h2, .split-copy h2 { margin-bottom: 18px; font-size: clamp(2rem, 3vw, 3rem); line-height: 1.17; letter-spacing: -.035em; }
.section-heading h2 span, .split-copy h2 span { color: var(--orange); }
.heading-row { display: flex; justify-content: space-between; align-items: end; gap: 30px; }
.heading-row > div { max-width: 690px; }

/* Home */
.home-hero { position: relative; min-height: 610px; display: flex; align-items: center; overflow: hidden; background: var(--navy); }
.home-hero-image { position: absolute; inset: 0; background-image: url('../images/about2.jpg'); background-size: cover; background-position: center 35%; transform: scale(1.01); }
.home-hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(3,20,42,.98) 0%, rgba(3,20,42,.9) 42%, rgba(3,20,42,.48) 68%, rgba(3,20,42,.12) 100%); }
.home-hero-inner { position: relative; z-index: 1; padding-block: 92px; }
.home-hero-copy { max-width: 650px; color: #fff; }
.home-hero h1 { margin-bottom: 23px; font-size: clamp(2.7rem, 5vw, 4.85rem); line-height: 1.03; letter-spacing: -.052em; }
.home-hero h1 strong { color: var(--orange); font-weight: 800; }
.home-hero-copy > p:not(.eyebrow) { max-width: 590px; margin-bottom: 31px; color: rgba(255,255,255,.78); font-size: 1rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; }
.value-strip { position: relative; z-index: 2; background: #fff; border-bottom: 1px solid var(--line); box-shadow: 0 8px 24px rgba(8,32,57,.07); }
.value-strip-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.value-strip article { min-height: 155px; display: flex; align-items: center; gap: 16px; padding: 30px 26px; border-right: 1px solid var(--line); }
.value-strip article:first-child { border-left: 1px solid var(--line); }
.line-icon, .service-symbol { flex: 0 0 auto; width: 44px; height: 44px; display: grid; place-items: center; color: var(--orange); background: #fff6ee; border: 1px solid #f6dfcb; border-radius: 50%; font-size: 1.15rem; }
.value-strip h2 { margin: 0 0 6px; font-size: .95rem; }
.value-strip p { margin: 0; color: var(--text); font-size: .76rem; line-height: 1.55; }
.split-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(50px, 8vw, 105px); align-items: center; }
.split-copy > p:not(.eyebrow) { color: var(--text); font-size: .93rem; }
.split-copy .text-link { margin-top: 12px; }
.feature-image-wrap { position: relative; min-height: 420px; }
.feature-image-wrap img { width: 100%; height: 430px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.experience-card { position: absolute; right: -24px; bottom: -28px; width: 180px; padding: 22px; display: grid; color: #fff; background: var(--navy); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); box-shadow: var(--shadow); }
.experience-card strong { color: var(--orange); font-size: 2.45rem; line-height: 1; }
.experience-card span { margin-top: 7px; font-size: .72rem; line-height: 1.45; }
.services-preview { background: var(--soft); border-block: 1px solid var(--line); }
.home-service-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.home-service-card { min-height: 235px; padding: 25px 21px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); transition: transform .2s ease, box-shadow .2s ease, border .2s ease; }
.home-service-card:hover { transform: translateY(-5px); border-color: #f2cbaa; box-shadow: var(--shadow); }
.home-service-card h3 { margin: 18px 0 10px; font-size: .98rem; line-height: 1.35; }
.home-service-card p { margin-bottom: 18px; color: var(--text); font-size: .76rem; }
.home-service-card b { color: var(--orange); font-size: .72rem; }
.results-band { padding: 78px 0; color: #fff; background: linear-gradient(120deg, #061a35, #0a294f); }
.results-inner { display: grid; grid-template-columns: .85fr 1.55fr; gap: 75px; align-items: center; }
.results-copy h2 { margin-bottom: 16px; font-size: clamp(2.1rem, 3.4vw, 3.5rem); line-height: 1.12; letter-spacing: -.04em; }
.results-copy > p:last-child { margin-bottom: 0; color: rgba(255,255,255,.68); font-size: .84rem; }
.results-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.results-grid article { min-height: 145px; display: grid; place-content: center; padding: 20px 28px; border-left: 1px solid rgba(255,255,255,.13); }
.results-grid strong { color: var(--orange); font-size: 2.3rem; line-height: 1; }
.results-grid span { margin-top: 12px; color: rgba(255,255,255,.72); font-size: .72rem; line-height: 1.5; }
.cta-wrap { padding-top: 72px; }
.main-cta { min-height: 175px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 26px; padding: 38px 45px; color: #fff; background: var(--navy); border-radius: var(--radius); }
.cta-icon { width: 60px; height: 60px; display: grid; place-items: center; color: var(--orange); border: 1px solid rgba(244,122,32,.5); border-radius: 50%; font-size: 1.6rem; }
.main-cta h2 { margin: 0 0 5px; font-size: 1.65rem; }
.main-cta p { margin: 0; color: rgba(255,255,255,.65); font-size: .85rem; }
.cta-actions { display: flex; gap: 12px; }

/* Insights */
.insights-hero { position: relative; min-height: 420px; overflow: hidden; color: #fff; background: radial-gradient(circle at 80% 50%, #164670 0, #082747 35%, #041931 70%); }
.insights-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(4,25,49,.98) 0%, rgba(4,25,49,.86) 43%, rgba(4,25,49,.12) 78%); }
.insights-hero-inner { position: relative; z-index: 2; min-height: 420px; display: grid; grid-template-columns: 1fr 1fr; align-items: center; }
.insights-hero-copy { max-width: 600px; padding: 65px 0; }
.insights-hero h1 { margin-bottom: 20px; font-size: clamp(2.5rem, 4vw, 4.25rem); line-height: 1.08; letter-spacing: -.045em; }
.insights-hero h1 strong { color: var(--orange); }
.insights-hero-copy > p:last-child { max-width: 510px; margin: 0; color: rgba(255,255,255,.75); font-size: .93rem; }
.insights-hero-art { position: absolute; z-index: 0; top: 0; right: -4%; width: 58%; height: 100%; overflow: hidden; }
.insights-hero-art img { width: 100%; height: 100%; object-fit: cover; object-position: center; filter: saturate(.85) contrast(1.05); }
.insights-content { padding: 48px 0 80px; background: #fff; }
.filter-row { display: flex; align-items: center; justify-content: space-between; gap: 15px; margin-bottom: 42px; }
.filter-pill-list { display: flex; flex-wrap: wrap; gap: 8px; }
.filter-pill { padding: 10px 13px; color: var(--ink); background: #fff; border: 1px solid var(--line); border-radius: 24px; font-size: .68rem; font-weight: 700; cursor: pointer; }
.filter-pill i, .read-time i { margin-right: 4px; color: var(--orange); }
.filter-pill:hover, .filter-pill.active { color: #fff; background: var(--navy); border-color: var(--navy); }
.filter-search { flex: 0 0 210px; height: 42px; display: flex; align-items: center; padding: 0 12px; border: 1px solid var(--line); border-radius: 4px; }
.filter-search input { width: 100%; border: 0; outline: 0; color: var(--ink); background: transparent; font-size: .72rem; }
.filter-search > span:last-child { color: var(--muted); }
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px 20px; }
.card { overflow: hidden; display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 4px 14px rgba(11,35,60,.035); transition: transform .2s ease, box-shadow .2s ease; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card[hidden] { display: none; }
.card-media { height: 205px; overflow: hidden; background: var(--navy); }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.card:hover .card-media img { transform: scale(1.035); }
.card-body { flex: 1; display: flex; flex-direction: column; padding: 22px 22px 20px; }
.card-category { margin-bottom: 12px; color: var(--orange); font-size: .64rem; font-weight: 800; letter-spacing: .035em; text-transform: uppercase; }
.card-title { margin-bottom: 11px; font-size: 1.03rem; line-height: 1.32; letter-spacing: -.02em; }
.card-title a:hover { color: var(--orange); }
.card-copy { margin-bottom: 18px; color: var(--text); font-size: .75rem; }
.card-meta { margin-top: auto; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 10px; color: var(--text); font-size: .65rem; }
.author-avatar { width: 34px; height: 34px; display: grid; place-items: center; color: #fff; background: var(--navy); border-radius: 50%; font-size: .58rem; font-weight: 800; }
.card-meta b, .card-meta small { display: block; }
.card-meta b { color: var(--ink); font-size: .67rem; }
.card-meta small { margin-top: 2px; }
.read-time { white-space: nowrap; }
.card-link { margin-top: 18px; color: var(--orange); font-size: .72rem; font-weight: 800; }
.empty-results { padding: 50px 0; color: var(--muted); text-align: center; }
.pagination { display: flex; justify-content: center; align-items: center; gap: 7px; margin: 45px 0 40px; }
.pagination button, .pagination span { width: 38px; height: 38px; display: grid; place-items: center; color: var(--ink); background: #fff; border: 1px solid var(--line); border-radius: 4px; font-size: .75rem; }
.pagination button { cursor: pointer; }
.pagination button:hover, .pagination button.active { color: #fff; background: var(--navy); border-color: var(--navy); }
.newsletter { min-height: 165px; display: grid; grid-template-columns: auto 1fr minmax(330px, 440px); align-items: center; gap: 28px; padding: 34px 42px; color: #fff; background: linear-gradient(110deg, #08223f, #041831); border-radius: var(--radius); }
.newsletter-icon { width: 68px; height: 68px; display: grid; place-items: center; color: var(--orange); border: 1px solid rgba(244,122,32,.45); border-radius: 50%; font-size: 1.5rem; }
.newsletter h2 { margin: 0 0 8px; font-size: 1.3rem; }
.newsletter p { margin: 0; color: rgba(255,255,255,.7); font-size: .74rem; }
.newsletter-form { display: grid; grid-template-columns: 1fr auto; }
.newsletter-form input { min-width: 0; height: 46px; padding: 0 15px; color: #fff; background: transparent; border: 1px solid rgba(255,255,255,.4); border-radius: 4px 0 0 4px; outline: 0; }
.newsletter-form input::placeholder { color: rgba(255,255,255,.6); }
.newsletter-form button { padding: 0 24px; color: #fff; background: var(--orange); border: 0; border-radius: 0 4px 4px 0; font-size: .75rem; font-weight: 800; cursor: pointer; }
.newsletter-form small { grid-column: 1 / -1; margin-top: 9px; color: rgba(255,255,255,.55); font-size: .6rem; }

/* Shared inner-page hero */
.hero { padding: 70px 0; color: #fff; background: linear-gradient(120deg, var(--navy), var(--navy-2)); }
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 55px; align-items: center; }
.hero-copy { max-width: 630px; }
.hero-title { margin: 0 0 21px; font-size: clamp(2.35rem, 4vw, 4.25rem); line-height: 1.08; letter-spacing: -.045em; }
.hero-title strong { color: var(--orange); }
.hero-text { max-width: 600px; color: rgba(255,255,255,.72); font-size: .94rem; }
.hero-media { height: 400px; overflow: hidden; border-radius: var(--radius); box-shadow: 0 20px 50px rgba(0,0,0,.25); }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero .info-grid { grid-column: 1 / -1; }
.info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 32px; }
.info-card { padding: 22px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); }
.info-icon { color: var(--orange); }
.info-card h4 { margin: 8px 0 6px; }
.info-card p { margin: 0; color: rgba(255,255,255,.65); font-size: .78rem; }

/* About, services and process */
.values-section, #service-list, .process-section, .contact-grid, .post-content { padding-top: 85px; padding-bottom: 85px; }
.values-intro, .section-heading { max-width: 720px; }
.values-intro h2, .contact-details h2 { margin-bottom: 12px; font-size: clamp(1.9rem, 3vw, 2.7rem); }
.values-intro p, .section-heading > p, .contact-details > p { color: var(--text); }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 38px; }
.value-card, .service-card, .process-step { padding: 28px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 6px 20px rgba(9,31,57,.04); }
.value-card:last-child:nth-child(3n + 2) { grid-column: 2; }
.value-icon, .step-number { width: 46px; height: 46px; display: grid; place-items: center; color: var(--orange); background: #fff5ec; border-radius: 50%; }
.service-icon { position: relative; width: 62px; height: 62px; display: grid; place-items: center; overflow: hidden; color: #fff; background: var(--navy); border-left: 5px solid var(--orange); box-shadow: 0 9px 22px rgba(6,26,53,.14); }
.service-icon::after { content: ""; position: absolute; right: -15px; bottom: -19px; width: 42px; height: 42px; background: rgba(244,122,32,.2); transform: rotate(35deg); }
.service-icon i { position: relative; z-index: 1; color: var(--orange); font-size: 1.55rem; }
.value-card h3, .service-card h3, .process-step h3 { margin: 18px 0 9px; font-size: 1rem; }
.value-card p, .service-card p, .process-step p { margin: 0; color: var(--text); font-size: .8rem; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card { scroll-margin-top: 105px; }
.service-card ul { margin: 18px 0 0; padding-left: 18px; color: var(--text); font-size: .78rem; }
.service-card li { margin-bottom: 6px; }
.process-section { padding-top: 0; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.cta-section { width: min(var(--container), calc(100% - 40px)); margin: 0 auto 85px; padding: 48px; color: #fff; text-align: center; background: var(--navy); border-radius: var(--radius); }
.cta-section h2 { margin-bottom: 8px; }
.cta-section p { color: rgba(255,255,255,.68); }

/* Contact and consultation */
.contact-summary { display: grid; gap: 12px; margin-top: 28px; }
.contact-summary div { display: grid; padding-left: 14px; border-left: 2px solid var(--orange); }
.contact-summary strong { font-size: .75rem; }
.contact-summary span { color: rgba(255,255,255,.65); font-size: .73rem; }
.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; }
.contact-card { margin-top: 14px; padding: 18px 20px; background: var(--soft); border-left: 3px solid var(--orange); }
.contact-card h3 { margin: 0 0 4px; font-size: .85rem; }
.contact-card p { margin: 0; color: var(--text); font-size: .78rem; }
.contact-form-wrapper { padding: 34px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.contact-form { display: grid; grid-template-columns: 1fr; gap: 10px; }
.contact-form label { color: var(--ink); font-size: .75rem; font-weight: 800; }
.contact-form input, .contact-form textarea { width: 100%; padding: 13px 14px; color: var(--ink); background: #fff; border: 1px solid #d8dfe7; border-radius: 4px; outline: none; }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(244,122,32,.1); }
.contact-form textarea { resize: vertical; }
.contact-form .cta-button { justify-self: start; margin-top: 7px; }

/* Single insight */
.single-hero .hero-title { font-size: clamp(2rem, 3.5vw, 3.55rem); }
.post-meta { display: flex; flex-wrap: wrap; gap: 18px; margin: 24px 0; color: rgba(255,255,255,.64); font-size: .75rem; }
.post-content { max-width: 800px; color: var(--text); font-size: 1rem; }
.post-content p { margin-bottom: 22px; }

/* Footer */
.site-footer { padding-top: 68px; color: #fff; background: #04172f; border-top: 1px solid rgba(255,255,255,.07); }
.footer-grid { display: grid; grid-template-columns: 1.25fr .72fr 1fr .9fr; gap: 50px; }
.footer-brand p { max-width: 270px; margin: 22px 0; color: rgba(255,255,255,.58); font-size: .75rem; }
.social-links { display: flex; gap: 8px; }
.social-links a { width: 32px; height: 32px; display: grid; place-items: center; color: var(--orange); background: rgba(255,255,255,.09); border-radius: 50%; font-size: .7rem; font-weight: 800; }
.social-links svg { width: 15px; height: 15px; fill: currentColor; }
.social-links a:hover { color: var(--orange); background: #fff; }
.footer-links h3, .footer-contact h3 { margin-bottom: 20px; font-size: .82rem; }
.footer-links a, .footer-contact a, .footer-contact p { display: block; margin-bottom: 9px; color: rgba(255,255,255,.58); font-size: .72rem; }
.footer-links a:hover, .footer-contact a:hover { color: var(--orange); }
.footer-contact i { width: 20px; color: var(--orange); text-align: center; }
.footer-bottom { margin-top: 52px; padding: 20px 0 25px; display: flex; justify-content: space-between; align-items: center; gap: 15px; color: rgba(255,255,255,.46); border-top: 1px solid rgba(255,255,255,.08); font-size: .67rem; }
.footer-bottom p { margin: 0; }
.footer-legal { display: flex; align-items: center; gap: 10px; }
.footer-legal a:hover { color: var(--orange); }
.whatsapp-float { position: fixed; right: 24px; bottom: 24px; z-index: 999; width: 54px; height: 54px; display: grid; place-items: center; background: #fff; border: 3px solid var(--orange); border-radius: 50%; box-shadow: 0 10px 25px rgba(0,0,0,.2); }
.whatsapp-float svg { width: 28px; fill: var(--orange); }
.feedback-float { position: fixed; right: 90px; bottom: 24px; z-index: 999; height: 54px; display: inline-flex; align-items: center; gap: 9px; padding: 0 17px; color: #fff; background: var(--navy); border: 3px solid var(--orange); box-shadow: 0 10px 25px rgba(0,0,0,.2); cursor: pointer; }
.feedback-float i { color: var(--orange); font-size: 1.2rem; }
.feedback-float span { font-size: .75rem; font-weight: 800; }
.feedback-float:hover { background: var(--navy-2); }

/* Unified icon color */
.line-icon i, .service-symbol i, .value-icon i, .step-number i,
.info-icon i, .cta-icon i, .newsletter-icon i { color: var(--orange); }

/* Visitor feedback */
.feedback-overlay[hidden], .feedback-panel[hidden] { display: none !important; }
.feedback-overlay { position: fixed; inset: 0; z-index: 2000; display: grid; place-items: center; padding: 20px; background: rgba(3, 16, 34, .68); backdrop-filter: blur(4px); animation: feedbackFade .2s ease both; }
.feedback-dialog { position: relative; width: min(540px, 100%); max-height: calc(100vh - 40px); overflow-y: auto; padding: 42px 46px 40px; color: var(--ink); background: #fff; border-top: 5px solid var(--orange); box-shadow: 0 28px 80px rgba(0, 0, 0, .28); animation: feedbackEnter .28s ease both; }
.feedback-close { position: absolute; top: 14px; right: 14px; width: 36px; height: 36px; display: grid; place-items: center; color: var(--orange); background: #fff6ee; border: 0; cursor: pointer; }
.feedback-close:hover { color: #fff; background: var(--orange); }
.feedback-logo { width: 170px; height: 66px; margin: 0 auto 18px; object-fit: contain; }
.feedback-panel { text-align: center; }
.feedback-panel h2 { margin-bottom: 12px; font-size: clamp(1.55rem, 4vw, 2rem); line-height: 1.2; }
.feedback-panel > p { max-width: 430px; margin: 0 auto 25px; color: var(--text); font-size: .9rem; }
.feedback-actions { display: grid; grid-template-columns: 1fr; gap: 10px; margin-top: 22px; }
.feedback-primary, .feedback-secondary { min-height: 48px; padding: 11px 18px; font-weight: 800; border: 2px solid var(--orange); cursor: pointer; transition: color .2s ease, background .2s ease, transform .2s ease; }
.feedback-primary { color: #fff; background: var(--orange); }
.feedback-secondary { color: var(--orange); background: #fff; }
.feedback-primary:hover, .feedback-secondary:hover { transform: translateY(-1px); }
.feedback-primary:hover { background: var(--orange-dark); border-color: var(--orange-dark); }
.feedback-secondary:hover { color: #fff; background: var(--orange); }
.feedback-heading-icon { width: 58px; height: 58px; display: grid; place-items: center; margin: 0 auto 18px; color: var(--orange); background: #fff5ec; border: 1px solid #f6d5bc; font-size: 1.45rem; }
.rating-fieldset { margin: 0 0 22px; padding: 0; border: 0; }
.rating-options { display: grid; grid-template-columns: repeat(5, 1fr); gap: 7px; }
.rating-options input { position: absolute; opacity: 0; pointer-events: none; }
.rating-options label { min-height: 62px; display: grid; place-content: center; gap: 2px; color: var(--text); background: var(--soft); border: 1px solid var(--line); cursor: pointer; }
.rating-options label strong { color: var(--orange); font-size: 1rem; }
.rating-options label span { font-size: .58rem; }
.rating-options input:focus-visible + label { outline: 2px solid var(--orange); outline-offset: 2px; }
.rating-options input:checked + label { color: #fff; background: var(--navy); border-color: var(--navy); }
.rating-options input:checked + label strong { color: var(--orange); }
.feedback-message-label { display: block; margin-bottom: 8px; color: var(--ink); text-align: left; font-size: .76rem; font-weight: 800; }
.feedback-message-label span { color: var(--muted); font-weight: 500; }
.feedback-panel textarea { width: 100%; padding: 13px 14px; color: var(--ink); background: #fff; border: 1px solid #d8dfe7; outline: 0; resize: vertical; }
.feedback-panel textarea:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(244,122,32,.12); }
.feedback-honeypot { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; opacity: 0 !important; }
.feedback-status { min-height: 20px; margin: 8px 0 0; color: #a61b1b; text-align: left; font-size: .7rem; }
.feedback-success .feedback-primary { min-width: 180px; }

@keyframes feedbackFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes feedbackEnter { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }

/* Responsive */
@media (max-width: 1100px) {
  .site-nav { gap: 16px; }
  .site-nav > a, .dropdown-toggle { font-size: .75rem; }
  .site-nav .header-cta { padding: 10px 12px; }
  .home-service-grid { grid-template-columns: repeat(3, 1fr); }
  .value-strip-grid { grid-template-columns: repeat(2, 1fr); }
  .value-strip article:nth-child(3) { border-left: 1px solid var(--line); }
  .results-inner { grid-template-columns: 1fr; gap: 35px; }
  .newsletter { grid-template-columns: auto 1fr; }
  .newsletter-form { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .header-inner { min-height: 70px; }
  .nav-toggle { display: block; margin-left: auto; }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .site-nav { position: fixed; inset: 70px 0 auto; max-height: calc(100vh - 70px); overflow-y: auto; display: none; align-items: stretch; gap: 0; padding: 12px 20px 25px; background: var(--navy); border-top: 1px solid rgba(255,255,255,.08); }
  .site-nav.nav-open { display: flex; flex-direction: column; }
  .site-nav > a, .dropdown-toggle { width: 100%; padding: 14px 0; text-align: left; }
  .site-nav > a::after, .dropdown-toggle::after { bottom: 8px; right: auto; width: 35px; }
  .nav-dropdown { display: block; }
  .dropdown-menu { position: static; width: 100%; display: none; padding: 3px 12px 10px; background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.08); box-shadow: none; opacity: 1; visibility: visible; transform: none; }
  .nav-dropdown.open .dropdown-menu { display: grid; }
  .dropdown-menu a { color: rgba(255,255,255,.7); }
  .site-nav .header-cta { margin-top: 10px; padding: 13px 15px; }
  .home-hero { min-height: 560px; }
  .home-hero-image { background-position: 65% center; }
  .home-hero-overlay { background: rgba(3,20,42,.82); }
  .split-layout, .hero-inner, .contact-grid { grid-template-columns: 1fr; }
  .feature-image-wrap { margin-top: 10px; }
  .home-service-grid, .service-grid, .values-grid, .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .value-card:last-child:nth-child(3n + 2) { grid-column: auto; }
  .process-grid, .results-grid { grid-template-columns: repeat(2, 1fr); }
  .main-cta { grid-template-columns: auto 1fr; }
  .cta-actions { grid-column: 1 / -1; }
  .insights-hero-art { right: -20%; width: 80%; opacity: .45; }
  .insights-hero-inner { grid-template-columns: 1fr; }
  .filter-row { align-items: stretch; flex-direction: column; }
  .filter-search { flex-basis: 42px; width: 100%; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 620px) {
  .container { width: min(100% - 28px, var(--container)); }
  .section { padding: 68px 0; }
  .brand-mark { width: 29px; height: 30px; }
  .brand { flex-basis: 118px; width: 118px; height: 46px; }
  .brand-mark i { width: 6px; }
  .brand-copy strong { font-size: .92rem; }
  .home-hero { min-height: 590px; }
  .home-hero-inner { padding-block: 70px; }
  .home-hero h1 { font-size: 2.6rem; }
  .hero-actions, .cta-actions { flex-direction: column; align-items: stretch; }
  .button { width: 100%; }
  .value-strip-grid, .home-service-grid, .service-grid, .values-grid, .process-grid, .cards-grid, .results-grid, .info-grid { grid-template-columns: 1fr; }
  .value-strip article, .value-strip article:first-child, .value-strip article:nth-child(3) { min-height: 125px; border-left: 1px solid var(--line); }
  .heading-row { align-items: flex-start; flex-direction: column; }
  .feature-image-wrap, .feature-image-wrap img { min-height: 320px; height: 320px; }
  .experience-card { right: 12px; bottom: -25px; }
  .results-grid article { border: 0; border-bottom: 1px solid rgba(255,255,255,.12); text-align: center; }
  .main-cta { grid-template-columns: 1fr; padding: 32px 24px; text-align: center; }
  .cta-icon { margin-inline: auto; }
  .insights-hero, .insights-hero-inner { min-height: 480px; }
  .insights-hero h1 { font-size: 2.5rem; }
  .insights-hero-art { right: -50%; width: 140%; }
  .filter-pill-list { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 6px; }
  .filter-pill { flex: 0 0 auto; }
  .card-media { height: 195px; }
  .newsletter { grid-template-columns: 1fr; padding: 30px 24px; text-align: center; }
  .newsletter-icon { margin-inline: auto; }
  .newsletter-form { grid-column: auto; grid-template-columns: 1fr; }
  .newsletter-form input, .newsletter-form button { height: 46px; border-radius: 4px; }
  .newsletter-form button { margin-top: 8px; }
  .hero { padding: 55px 0; }
  .hero-media { height: 300px; }
  .contact-grid { gap: 38px; }
  .contact-form-wrapper { padding: 23px; }
  .footer-grid { grid-template-columns: 1fr; gap: 35px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .whatsapp-float { right: 16px; bottom: 16px; }
  .feedback-float { right: 80px; bottom: 16px; width: 54px; padding: 0; justify-content: center; }
  .feedback-float span { display: none; }
  .feedback-overlay { padding: 12px; }
  .feedback-dialog { max-height: calc(100vh - 24px); padding: 38px 22px 28px; }
  .feedback-logo { width: 145px; height: 56px; }
  .rating-options { gap: 4px; }
  .rating-options label { min-height: 58px; }
  .rating-options label span { display: none; }
}
