/* ============================
   ROOT / DESIGN TOKENS
   ============================ */
:root {
    --bg: #f0f7f5;
    --surface: #ffffff;
    --ink: #0e1e24;
    --muted: #4d5e65;
    --brand: #0b7f69;
    --brand-dark: #085b4c;
    --brand-light: #dcf2ec;
    --accent: #06c88a;
    --line: #cdddd9;
    --shadow-sm: 0 4px 18px rgba(9, 48, 39, 0.07);
    --shadow-md: 0 12px 36px rgba(9, 48, 39, 0.13);
    --shadow-lg: 0 24px 64px rgba(9, 48, 39, 0.18);
    --radius: 14px;
    --radius-lg: 22px;
    --t: 0.22s ease;
}

/* ============================
   RESET / BASE
   ============================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Manrope", sans-serif;
    color: var(--ink);
    background: var(--bg);
    line-height: 1.65;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

img, svg {
    display: block;
    max-width: 100%;
}

/* ============================
   LAYOUT UTILITIES
   ============================ */
.container {
    width: min(1120px, 92%);
    margin: 0 auto;
}

section {
    padding: clamp(56px, 8vw, 84px) 0;
}

/* ============================
   TYPOGRAPHY UTILITIES
   ============================ */
h1 {
    font-size: clamp(2.1rem, 4.8vw, 3.4rem);
    line-height: 1.08;
    letter-spacing: -0.025em;
    margin-bottom: 16px;
}

h2 {
    font-size: clamp(1.65rem, 3.1vw, 2.3rem);
    letter-spacing: -0.015em;
    margin-bottom: 10px;
    text-align: center;
}

.section-label {
    display: block;
    text-align: center;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--brand);
    margin-bottom: 8px;
}

.section-label.left {
    text-align: left;
}

.section-intro {
    max-width: 780px;
    margin: 0 auto 38px;
    text-align: center;
    color: var(--muted);
    font-size: 1.05rem;
}

.section-visual {
    margin: 0 auto 28px;
    text-align: center;
}

.section-visual img {
    width: min(760px, 100%);
    height: auto;
    border: 1px solid #c0dcd6;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    background: #f8fcfa;
}

/* ============================
   HEADER & NAVIGATION
   ============================ */
/* ── Top contact bar ─────────────────────────────────────────────── */
.contact-bar {
    background: var(--brand-dark);
    color: rgba(255,255,255,0.85);
    font-size: 0.8rem;
    font-weight: 500;
}

.contact-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 7px 0;
    gap: 16px;
}

.contact-bar-tagline {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.7);
}

.contact-bar-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-bar-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    font-weight: 600;
    transition: color var(--t);
}

.contact-bar-link:hover {
    color: var(--accent);
}

.contact-bar-link::after {
    display: none;
}

@media (max-width: 640px) {
    .contact-bar-tagline { display: none; }
    .contact-bar-inner { justify-content: center; }
}

header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 2px 20px rgba(9, 52, 43, 0.06);
}

.header-inner {
    min-height: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 1.06rem;
    color: var(--brand-dark);
}

.logo img {
    display: block;
    width: auto;
    height: 58px;
    max-width: 100%;
}

.logo span {
    line-height: 1.1;
    white-space: nowrap;
}

nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 12px;
}

nav li {
    position: relative;
    display: flex;
    align-items: center;
}

nav a {
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    font-size: 0.94rem;
    color: var(--muted);
    position: relative;
    transition: color var(--t);
    padding: 2px 0;
}

nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 2px;
    background: var(--brand);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--t);
    border-radius: 2px;
}

nav a:hover,
nav .active a {
    color: var(--brand-dark);
}

nav a:hover::after,
nav .active a::after {
    transform: scaleX(1);
}

.has-dropdown > a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.has-dropdown > a::before {
    content: "";
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid currentColor;
    opacity: 0.6;
    transform: translateY(1px);
    transition: transform var(--t), opacity var(--t);
}

.has-dropdown:hover > a::before {
    opacity: 1;
    transform: translateY(1px) rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 14px);
    left: 0;
    min-width: 290px;
    padding: 10px;
    margin: 0;
    list-style: none;
    background: #ffffff;
    border: 1px solid #cce0d9;
    border-radius: 14px;
    box-shadow: 0 16px 40px rgba(9, 48, 39, 0.14);
    display: grid;
    gap: 2px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
    z-index: 1200;
}

.dropdown-menu a {
    display: block;
    padding: 9px 12px;
    border-radius: 9px;
    color: #243b44;
    font-size: 0.91rem;
    font-weight: 500;
    transition: background var(--t), color var(--t);
}

.dropdown-menu a::after {
    display: none;
}

.dropdown-menu a:hover,
.dropdown-menu a:focus-visible {
    color: var(--brand-dark);
    background: var(--brand-light);
}

.has-dropdown:hover > .dropdown-menu,
.has-dropdown:focus-within > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

/* ============================
   BUTTONS
   ============================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 24px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--brand) 0%, #0d9578 100%);
    color: #fff;
    font-weight: 700;
    font-size: 0.97rem;
    box-shadow: 0 8px 20px rgba(10, 127, 104, 0.28);
    transition: transform var(--t), box-shadow var(--t), background var(--t);
    white-space: nowrap;
}

.btn:hover {
    background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand) 100%);
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(10, 103, 85, 0.32);
}

.btn:focus-visible {
    outline: 3px solid #9fd8ca;
    outline-offset: 3px;
}

.btn-secondary {
    background: #fff;
    color: var(--brand-dark);
    border: 1.5px solid #a6d4c9;
    box-shadow: 0 4px 12px rgba(9, 48, 39, 0.08);
}

.btn-secondary:hover {
    background: var(--brand-light);
    border-color: var(--brand);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(9, 48, 39, 0.12);
}

#showcase .btn-secondary {
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    border-color: rgba(216, 236, 230, 0.75);
    backdrop-filter: blur(4px);
}

#showcase .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.24);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-sm {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 18px;
    font-size: 0.87rem;
    font-weight: 700;
    border-radius: 8px;
    background: var(--brand);
    color: #fff;
    box-shadow: 0 4px 12px rgba(10, 127, 104, 0.24);
    transition: background var(--t), transform var(--t), box-shadow var(--t);
    white-space: nowrap;
}

.btn-sm:hover {
    background: var(--brand-dark);
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(10, 103, 85, 0.28);
}

/* ============================
   HERO / SHOWCASE
   ============================ */
#showcase {
    position: relative;
    min-height: 76vh;
    display: grid;
    align-items: center;
    overflow: hidden;
    background: #07202f;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(108deg, rgba(5, 28, 46, 0.92) 0%, rgba(5, 28, 46, 0.76) 42%, rgba(5, 28, 46, 0.44) 75%, rgba(5, 28, 46, 0.2) 100%),
        linear-gradient(180deg, rgba(3, 14, 24, 0.18) 0%, rgba(3, 14, 24, 0.5) 100%);
}

.hero {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 96px 0 90px;
    color: #fff;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 14px;
    border: 1px solid rgba(134, 205, 185, 0.45);
    background: rgba(6, 200, 138, 0.12);
    border-radius: 999px;
    color: #b8e8d8;
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.03em;
    margin-bottom: 22px;
}

.eyebrow::before {
    content: '';
    display: block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
    box-shadow: 0 0 0 3px rgba(6, 200, 138, 0.3);
}

.hero > p:not(.eyebrow):not(.hero-trust) {
    color: #d8eaf2;
    font-size: 1.12rem;
    max-width: 680px;
    line-height: 1.65;
}

.hero-actions {
    margin-top: 30px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-trust {
    margin-top: 18px;
    font-size: 0.84rem;
    color: rgba(190, 225, 215, 0.72);
    letter-spacing: 0.01em;
}

/* ============================
   STATS STRIP
   ============================ */
.stat-strip {
    background: linear-gradient(135deg, var(--brand-dark) 0%, #0a6e5a 50%, var(--brand) 100%);
    padding: 0;
    position: relative;
    overflow: hidden;
}

.stat-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(800px circle at 50% 50%, rgba(6, 200, 138, 0.15), transparent);
    pointer-events: none;
}

.stat-strip-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    position: relative;
    z-index: 1;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 28px 16px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.stat-item:last-child {
    border-right: none;
}

.stat-num {
    font-size: clamp(1.9rem, 3.2vw, 2.7rem);
    font-weight: 800;
    color: #fff;
    line-height: 1;
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 0.83rem;
    font-weight: 600;
    color: rgba(185, 230, 215, 0.85);
    letter-spacing: 0.01em;
}

/* ============================
   CARDS SECTION
   ============================ */
.cards-section {
    background: linear-gradient(180deg, #f5faf8 0%, #edf6f3 100%);
    border-top: 1px solid #dceee9;
    border-bottom: 1px solid #dceee9;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

/* Service Cards */
.service {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 24px;
    transition: transform var(--t), box-shadow var(--t), border-color var(--t);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.service::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--brand), var(--accent));
    opacity: 0;
    transition: opacity var(--t);
}

.card-link {
    display: block;
    height: 100%;
}

.service:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: #9dcec4;
}

.service:hover::before {
    opacity: 1;
}

.card-link:focus-visible {
    outline: 3px solid #9fd8ca;
    outline-offset: 3px;
}

.service-icon {
    width: 46px;
    height: 46px;
    border-radius: 11px;
    background: var(--brand-light);
    color: var(--brand);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    flex-shrink: 0;
    transition: background var(--t), color var(--t), transform var(--t);
}

.service-icon svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.service:hover .service-icon {
    background: var(--brand);
    color: #fff;
    transform: scale(1.08);
}

.service h2,
.service h3 {
    margin-bottom: 8px;
    font-size: 1.12rem;
    text-align: left;
    line-height: 1.3;
}

.service p {
    color: var(--muted);
    font-size: 0.94rem;
    line-height: 1.6;
    flex: 1;
}

.card-arrow {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 14px;
    color: var(--brand);
    font-weight: 700;
    font-size: 0.88rem;
    transition: gap var(--t), color var(--t);
}

.service:hover .card-arrow {
    gap: 8px;
    color: var(--brand-dark);
}

/* ============================
   FEATURE SECTIONS
   ============================ */
.feature-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(0, 1fr);
    gap: 48px;
    align-items: center;
}

.feature-section.reverse .feature-visual {
    order: 2;
}

.feature-section.reverse .feature-content {
    order: 1;
}

.feature-visual {
    margin: 0;
}

.feature-visual img {
    width: 100%;
    height: auto;
    border: 1px solid #bdd9d3;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    background: #f8fcfa;
}

.feature-visual.is-portrait img {
    height: clamp(320px, 40vw, 520px);
    object-fit: cover;
    object-position: center;
}

.feature-content h2 {
    text-align: left;
    margin-bottom: 10px;
}

.feature-content .section-intro {
    max-width: none;
    margin: 0 0 22px;
    text-align: left;
}

/* ============================
   PAGE HERO (SUBPAGES)
   ============================ */
.page-hero {
    padding: 60px 0 48px;
    background: linear-gradient(180deg, #f0faf7 0%, #e8f6f2 100%);
    border-bottom: 1px solid var(--line);
}

.page-hero.page-hero-photo {
    position: relative;
    overflow: hidden;
    min-height: 44vh;
    display: grid;
    align-items: end;
    background: #07202f;
    border-bottom: none;
    padding: 0;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(108deg, rgba(5, 28, 46, 0.88) 0%, rgba(5, 28, 46, 0.7) 48%, rgba(5, 28, 46, 0.32) 100%),
        linear-gradient(180deg, rgba(3, 14, 24, 0.26) 0%, rgba(3, 14, 24, 0.54) 100%);
}

.page-hero.page-hero-photo .container {
    position: relative;
    z-index: 1;
    color: #fff;
    padding: 76px 0 64px;
}

.page-hero.page-hero-photo p,
.page-hero.page-hero-photo .breadcrumb {
    color: #d8eaf2;
}

.page-hero.page-hero-photo .breadcrumb a {
    color: #fff;
}

.page-hero h1 {
    margin-bottom: 12px;
}

.page-hero p {
    max-width: 860px;
    color: var(--muted);
}

.breadcrumb {
    margin-bottom: 10px;
    font-size: 0.91rem;
    color: var(--muted);
}

.breadcrumb a {
    color: var(--brand-dark);
}

/* ============================
   ABOUT LAYOUT
   ============================ */
.about-layout {
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    gap: 28px;
    align-items: start;
}

.about-layout p {
    margin-bottom: 14px;
}

.about-highlights {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow-sm);
}

.about-highlights h2,
.about-highlights h3 {
    margin-bottom: 10px;
    text-align: left;
    font-size: 1.2rem;
}

.about-highlights ul {
    padding-left: 20px;
    color: var(--muted);
}

/* ============================
   CONTENT SECTION / INFO CARDS
   ============================ */
.content-section {
    padding-top: 56px;
}

.content-section h2 {
    text-align: left;
    font-size: 1.25rem;
}

.service-detail .feature-content .content-columns {
    grid-template-columns: 1fr;
}

.content-columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.info-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 22px;
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--t), transform var(--t);
}

.info-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.info-card h3 {
    margin-bottom: 10px;
    font-size: 1.08rem;
    color: var(--ink);
}

.checklist {
    padding-left: 18px;
    color: var(--muted);
    font-size: 0.95rem;
}

.checklist li + li {
    margin-top: 7px;
}

/* ============================
   INDUSTRY GRID
   ============================ */
.industry-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.industry-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-left: 3px solid var(--brand);
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--t), transform var(--t), border-left-color var(--t);
}

.industry-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-left-color: var(--accent);
}

.industry-card h3 {
    margin-bottom: 8px;
    font-size: 1.02rem;
    color: var(--ink);
}

.industry-card p {
    color: var(--muted);
    font-size: 0.93rem;
    line-height: 1.55;
}

/* ============================
   CTA PANEL
   ============================ */
.cta-panel {
    background: linear-gradient(135deg, #072e26 0%, var(--brand-dark) 40%, #0b7360 100%);
    border: none;
    border-radius: var(--radius-lg);
    padding: 56px 48px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.cta-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(700px circle at 50% -10%, rgba(6, 200, 138, 0.22), transparent);
    pointer-events: none;
}

.cta-panel::after {
    content: '';
    position: absolute;
    bottom: -60px;
    right: -60px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    pointer-events: none;
}

.cta-panel h2 {
    color: #fff;
    margin-bottom: 12px;
    font-size: clamp(1.65rem, 3vw, 2.3rem);
    position: relative;
    z-index: 1;
}

.cta-panel p {
    color: rgba(210, 240, 230, 0.85);
    margin-bottom: 26px;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.05rem;
    position: relative;
    z-index: 1;
}

.cta-panel .btn {
    background: #fff;
    color: var(--brand-dark);
    font-weight: 800;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
    position: relative;
    z-index: 1;
}

.cta-panel .btn:hover {
    background: #f0fdf8;
    color: var(--brand-dark);
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.24);
}

/* ============================
   CONTACT SECTION
   ============================ */
#contact form {
    max-width: 680px;
    margin: 0 auto;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow-sm);
}

#contact label {
    display: block;
    margin-bottom: 6px;
    font-weight: 700;
    font-size: 0.93rem;
}

#contact input,
#contact textarea {
    width: 100%;
    font: inherit;
    border: 1.5px solid #c6ddd7;
    border-radius: 10px;
    padding: 12px 14px;
    margin-bottom: 16px;
    background: #fafefe;
    transition: border-color var(--t), box-shadow var(--t);
    color: var(--ink);
}

#contact input:focus,
#contact textarea:focus {
    outline: none;
    border-color: var(--brand);
    box-shadow: 0 0 0 3px rgba(11, 127, 105, 0.12);
}

#contact input[type="submit"] {
    border: none;
    background: linear-gradient(135deg, var(--brand) 0%, #0d9578 100%);
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(11, 127, 105, 0.28);
    transition: background var(--t), transform var(--t), box-shadow var(--t);
}

#contact input[type="submit"]:hover {
    background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand) 100%);
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(11, 127, 105, 0.32);
}

.contact-info {
    max-width: 680px;
    margin: 18px auto 0;
    color: var(--muted);
}

#contact .feature-content .section-intro {
    margin-bottom: 16px;
}

#contact .feature-content form {
    max-width: none;
    margin: 0;
}

#contact .feature-content .contact-info {
    max-width: none;
    margin: 16px 0 0;
}

/* ============================
   FOOTER
   ============================ */
footer {
    margin-top: 60px;
    background: linear-gradient(180deg, #081e1a 0%, #050f0d 100%);
    color: rgba(212, 235, 228, 0.8);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.6fr;
    gap: 52px;
    padding: 60px 0 44px;
}

.footer-brand .footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    transition: opacity var(--t);
}

.footer-brand .footer-logo:hover {
    opacity: 0.85;
}

.footer-brand .footer-logo img {
    height: 42px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.85;
}

.footer-brand .footer-logo span {
    font-size: 1.02rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.2;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.65;
    color: rgba(200, 228, 220, 0.7);
    max-width: 280px;
}

.footer-col h4 {
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.42);
    margin-bottom: 18px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col a {
    font-size: 0.91rem;
    color: rgba(200, 228, 220, 0.72);
    transition: color var(--t);
    font-weight: 500;
}

.footer-col a:hover {
    color: #fff;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin-bottom: 18px;
}

.footer-contact-info a,
.footer-contact-info p {
    font-size: 0.91rem;
    color: rgba(200, 228, 220, 0.72);
    transition: color var(--t);
}

.footer-contact-info a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding: 22px 0;
    text-align: center;
    font-size: 0.83rem;
    color: rgba(200, 228, 220, 0.4);
}

/* Old simple footer support (for pages not yet updated) */
footer > p,
footer > p + p {
    text-align: center;
    color: rgba(212, 235, 228, 0.8);
    padding: 8px 0;
}

footer > .container > p,
footer > .container > p + p {
    padding: 4px 0;
}

/* ============================
   SCROLL REVEAL ANIMATIONS
   ============================ */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(22px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.revealed {
    opacity: 1;
    transform: none;
}

.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
.reveal-delay-5 { transition-delay: 0.40s; }
.reveal-delay-6 { transition-delay: 0.48s; }
.reveal-delay-7 { transition-delay: 0.56s; }

/* ============================
   MOBILE NAV TOGGLE
   ============================ */
.nav-toggle {
    display: none;
    background: none;
    border: 1.5px solid var(--line);
    border-radius: 9px;
    padding: 8px 10px;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    align-items: center;
    transition: border-color var(--t), background var(--t);
}

.nav-toggle:hover {
    border-color: var(--brand);
    background: var(--brand-light);
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: transform 0.22s ease, opacity 0.22s ease;
}

.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);
}

/* ============================
   MEDIA QUERIES
   ============================ */
@media (max-width: 1100px) {
    .header-inner {
        min-height: auto;
        flex-direction: column;
        padding: 10px 0;
        gap: 0;
    }

    .header-inner > .logo {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 12px 0;
    }

    .nav-toggle {
        display: flex;
    }

    nav {
        display: none;
        width: 100%;
        border-top: 1px solid var(--line);
        padding-top: 4px;
        padding-bottom: 12px;
    }

    nav.open {
        display: block;
    }

    nav ul {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    nav > ul > li > a {
        display: block;
        padding: 10px 0;
        border-bottom: 1px solid var(--line);
    }

    .dropdown-menu {
        position: static;
        min-width: 0;
        padding: 4px 0 0 12px;
        border: 0;
        border-radius: 0;
        box-shadow: none;
        background: transparent;
        display: grid;
        gap: 0;
        opacity: 1;
        visibility: visible;
        transform: none;
        pointer-events: auto;
    }

    .dropdown-menu a {
        padding: 6px 0;
        font-size: 0.89rem;
        color: #3d6069;
        border-radius: 0;
    }

    .dropdown-menu a:hover,
    .dropdown-menu a:focus-visible {
        background: transparent;
        color: var(--brand-dark);
    }

    .industry-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 960px) {
    .cards-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-layout,
    .content-columns,
    .feature-layout {
        grid-template-columns: 1fr;
    }

    .feature-section.reverse .feature-visual,
    .feature-section.reverse .feature-content {
        order: initial;
    }

    .cta-panel {
        padding: 44px 32px;
    }
}

@media (max-width: 720px) {
    .logo a {
        gap: 8px;
        font-size: 1rem;
    }

    .logo img {
        height: 48px;
    }

    .cards-grid,
    .industry-grid {
        grid-template-columns: 1fr;
    }

    .stat-strip-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .stat-item:nth-child(odd) {
        border-right: 1px solid rgba(255, 255, 255, 0.1);
    }

    .stat-item:nth-last-child(-n+2) {
        border-bottom: none;
    }

    section {
        padding: 52px 0;
    }

    #showcase {
        min-height: 68vh;
    }

    .hero {
        padding: 72px 0 68px;
    }

    .hero-actions {
        gap: 10px;
    }

    .page-hero.page-hero-photo .container {
        padding: 64px 0 54px;
    }

    .cta-panel {
        padding: 36px 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 44px 0 32px;
    }

    .footer-brand {
        grid-column: auto;
    }
}

/* ============================
   HEADER ACCENT LINE
   ============================ */
header {
    border-top: 3px solid var(--brand);
}

/* Contact nav CTA button */
.nav-cta {
    display: inline-flex !important;
    align-items: center;
    padding: 8px 16px;
    background: var(--brand);
    color: #fff !important;
    border-radius: 8px;
    font-weight: 700 !important;
    font-size: 0.88rem !important;
    box-shadow: 0 4px 12px rgba(10, 127, 104, 0.2);
    transition: background var(--t), transform var(--t), box-shadow var(--t) !important;
    margin-left: 4px;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    background: var(--brand-dark) !important;
    color: #fff !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(10, 103, 85, 0.28) !important;
}

/* ============================
   MEGA MENU
   ============================ */
.has-mega {
    position: relative;
}

/* Invisible hover bridge — fills the gap between nav link and panel
   so the dropdown doesn't disappear when moving the mouse downward */
.has-mega::after {
    content: '';
    position: absolute;
    top: 100%;
    left: -16px;
    right: -16px;
    height: 18px;
    z-index: 1199;
}

.has-mega > a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.has-mega > a::before {
    content: "";
    order: 99;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid currentColor;
    opacity: 0.6;
    transform: translateY(1px);
    transition: transform var(--t), opacity var(--t);
}

.has-mega > a::after {
    display: none;
}

.has-mega:hover > a {
    color: var(--brand-dark);
}

.has-mega:hover > a::before {
    opacity: 1;
    transform: translateY(1px) rotate(180deg);
}

.mega-panel {
    position: absolute;
    top: calc(100% + 14px);
    left: 0;
    background: #fff;
    border: 1px solid #c2dad4;
    border-radius: 18px;
    box-shadow: 0 24px 64px rgba(9, 48, 39, 0.18);
    display: flex;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
    transform: translateY(10px);
    z-index: 1200;
    overflow: hidden;
}

.has-mega:hover .mega-panel,
.has-mega:focus-within .mega-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.mega-col {
    padding: 22px 20px;
    min-width: 210px;
    text-align: left;
}

.mega-col + .mega-col {
    border-left: 1px solid var(--line);
}

.mega-col-accent {
    background: #f4faf8;
    min-width: 200px;
}

.mega-heading {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(11, 127, 105, 0.6);
    margin-bottom: 10px;
    padding: 0 8px;
    text-align: left;
}

.mega-col > ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 1px;
}

.mega-col > ul a {
    display: block;
    padding: 7px 10px;
    border-radius: 8px;
    font-size: 0.88rem;
    color: #2c4850;
    font-weight: 500;
    text-align: left;
    transition: background var(--t), color var(--t);
}

.mega-col > ul a::after {
    display: none;
}

.mega-col > ul a:hover {
    background: var(--brand-light);
    color: var(--brand-dark);
}

.mega-cta-block {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mega-cta-block p {
    font-size: 0.83rem;
    color: var(--muted);
    line-height: 1.45;
    text-align: left;
}

.mega-all-link {
    font-size: 0.86rem;
    font-weight: 700;
    color: var(--brand);
    transition: color var(--t);
    padding: 2px 0;
}

.mega-all-link::after {
    display: none;
}

.mega-all-link:hover {
    color: var(--brand-dark);
}

/* Locations panel — smaller, anchored right */
.mega-panel-sm {
    flex-direction: column;
    padding: 20px;
    min-width: 320px;
    left: auto;
    right: 0;
    text-align: left;
}

.mega-cities {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: 2px;
    margin-bottom: 12px;
}

.mega-cities a {
    display: block;
    padding: 7px 10px;
    border-radius: 8px;
    font-size: 0.88rem;
    color: #2c4850;
    font-weight: 500;
    text-align: left;
    transition: background var(--t), color var(--t);
}

.mega-cities a::after {
    display: none;
}

.mega-cities a:hover {
    background: var(--brand-light);
    color: var(--brand-dark);
}

/* ============================
   PAGE HIGHLIGHTS BAR
   ============================ */
.highlights-bar {
    background: var(--surface);
    border-bottom: 1px solid var(--line);
}

.highlights-bar-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 24px;
    border-right: 1px solid var(--line);
}

.highlight-item:last-child {
    border-right: none;
}

.highlight-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--brand-light);
    color: var(--brand);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.highlight-icon svg {
    width: 20px;
    height: 20px;
}

.highlight-text strong {
    display: block;
    font-size: 0.94rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 2px;
}

.highlight-text span {
    font-size: 0.82rem;
    color: var(--muted);
}

/* ============================
   PROCESS STEPS
   ============================ */
.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.step-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 26px;
    box-shadow: var(--shadow-sm);
    transition: transform var(--t), box-shadow var(--t);
}

.step-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--brand), var(--accent));
    color: #fff;
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 14px;
}

.step-card h3 {
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.step-card p {
    color: var(--muted);
    font-size: 0.93rem;
    line-height: 1.6;
}

/* ============================
   FAQ SECTION
   ============================ */
.faq-list {
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.faq-item h3 {
    font-size: 1rem;
    padding: 18px 22px;
    margin: 0;
    color: var(--ink);
    border-bottom: 1px solid var(--line);
    background: #fafcfc;
    line-height: 1.4;
}

.faq-item p {
    padding: 14px 22px;
    color: var(--muted);
    font-size: 0.94rem;
    line-height: 1.65;
    margin: 0;
}

/* ============================
   WHY CHOOSE GRID
   ============================ */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.why-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    transition: transform var(--t), box-shadow var(--t);
}

.why-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.why-icon {
    width: 44px;
    height: 44px;
    border-radius: 11px;
    background: var(--brand-light);
    color: var(--brand);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.why-icon svg {
    width: 22px;
    height: 22px;
}

.why-card h3 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.why-card p {
    color: var(--muted);
    font-size: 0.91rem;
    line-height: 1.55;
}

/* Service category headers on services page */
.service-cat-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.service-cat-header h2 {
    text-align: left;
    font-size: 1.5rem;
    margin: 0;
}

.service-cat-divider {
    flex: 1;
    height: 1px;
    background: var(--line);
}

/* ============================
   MEGA MENU MOBILE OVERRIDES
   ============================ */
@media (max-width: 1100px) {
    /* Hide mega panels by default — JS adds .open to toggle */
    .mega-panel {
        display: none;
        position: static;
        min-width: 0;
        width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
        pointer-events: auto;
        flex-direction: column;
        box-shadow: none;
        border: none;
        border-top: 1px solid var(--line);
        border-radius: 0;
        background: #f8fdfb;
        overflow: visible;
        gap: 0;
        padding: 8px 0 12px;
    }

    .has-mega.open .mega-panel {
        display: flex;
    }

    /* Chevron rotates when open */
    .has-mega.open > a::before {
        transform: translateY(1px) rotate(180deg);
        opacity: 1;
    }

    /* Make top-level has-mega links look tappable */
    .has-mega > a {
        width: 100%;
        justify-content: space-between;
    }

    .mega-panel-sm {
        position: static;
        padding: 0;
        right: auto;
    }

    .mega-col {
        padding: 4px 0 0 16px;
        min-width: 0;
        text-align: left;
    }

    .mega-col + .mega-col {
        border-left: none;
        border-top: 1px solid var(--line);
        padding-top: 8px;
        margin-top: 4px;
    }

    .mega-col-accent {
        background: transparent;
    }

    .mega-heading {
        display: block;
        padding: 6px 0 4px;
        font-size: 0.68rem;
    }

    .mega-cta-block {
        display: none;
    }

    .mega-col > ul a {
        padding: 8px 12px 8px 0;
        font-size: 0.92rem;
        border-bottom: 1px solid var(--line);
        border-radius: 0;
    }

    .mega-col > ul li:last-child a {
        border-bottom: none;
    }

    .mega-cities {
        grid-template-columns: 1fr 1fr;
        padding: 4px 0 0;
        margin-bottom: 0;
    }

    .mega-cities a {
        padding: 8px 8px 8px 0;
        border-radius: 0;
        font-size: 0.88rem;
        color: #3d6069;
    }

    .mega-all-link {
        padding: 10px 0 4px 0;
        display: block;
        font-size: 0.85rem;
    }

    .highlights-bar-grid {
        grid-template-columns: 1fr;
    }

    .highlight-item {
        border-right: none;
        border-bottom: 1px solid var(--line);
    }

    .highlight-item:last-child {
        border-bottom: none;
    }

    .process-steps,
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 720px) {
    .process-steps,
    .why-grid {
        grid-template-columns: 1fr;
    }
}

/* ── Testimonial cards ───────────────────────────────────────────── */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 20px;
}

.testimonial-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 28px 26px 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: var(--shadow-sm);
    transition: transform var(--t), box-shadow var(--t);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: -10px;
    right: 20px;
    font-size: 7rem;
    line-height: 1;
    color: var(--brand-light);
    font-family: Georgia, serif;
    pointer-events: none;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.tc-stars {
    color: #f5a623;
    font-size: 1rem;
    letter-spacing: 2px;
    line-height: 1;
}

.testimonial-card blockquote {
    margin: 0;
    font-size: 0.97rem;
    line-height: 1.72;
    color: var(--text);
    flex: 1;
}

.tc-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--line);
    margin-top: auto;
}

.tc-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--brand-light);
    color: var(--brand-dark);
    font-size: 0.75rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    letter-spacing: 0.04em;
}

.tc-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.tc-info strong {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text);
}

.tc-info span {
    font-size: 0.8rem;
    color: var(--muted);
}

@media (max-width: 1000px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* ── Location cards with city thumbnails ─────────────────────────── */
.loc-card {
    padding: 0;
    overflow: hidden;
}

.loc-card-img {
    margin: 0;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: var(--radius) var(--radius) 0 0;
    flex-shrink: 0;
}

.loc-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.loc-card:hover .loc-card-img img {
    transform: scale(1.04);
}

.loc-card h2,
.loc-card h3,
.loc-card p,
.loc-card .card-arrow {
    padding-left: 22px;
    padding-right: 22px;
}

.loc-card h2 {
    padding-top: 18px;
    font-size: 1.1rem;
}

.loc-card p {
    margin-top: 6px;
    font-size: 0.92rem;
}

.loc-card .card-arrow {
    padding-bottom: 18px;
    margin-top: auto;
}
