/*
Theme Name: Deeploy
Theme URI: https://deeploy.co
Author: Deeploy
Description: Custom lightweight theme for Deeploy digital marketing agency.
Version: 1.0.0
Text Domain: deeploy
*/

/* ============================================================
   CSS VARIABLES
   ============================================================ */
:root {
    --color-primary: #DF3E5B;
    --color-primary-dark: #c7304a;
    --color-blue: #8BC9DB;
    --color-blue-light: #e8f5f9;
    --color-dark: #172D3D;
    --color-body: #3A3A3A;
    --color-light-bg: #f7f8fa;
    --color-white: #FFFFFF;
    --color-accent: #8BC9DB;
    --font-family: 'Avenir', 'Libre Franklin', -apple-system, sans-serif;
    --container-width: 1200px;
    --container-narrow: 750px;
    --radius: 6px;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-family);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-body);
    background: var(--color-white);
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-primary); text-decoration: none; transition: color .2s; }
a:hover { color: var(--color-primary-dark); }

h1, h2, h3, h4, h5, h6 {
    color: var(--color-dark);
    font-weight: 600;
    line-height: 1.2;
}
h1 { font-size: 3.375rem; line-height: 1.12; }
h2 { font-size: 2.5rem; line-height: 1.16; letter-spacing: -1px; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p { margin-bottom: 1rem; }

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.container--narrow {
    max-width: var(--container-narrow);
}

.section {
    padding: 80px 0;
}

.section--light {
    background: var(--color-light-bg);
}

.section--dark {
    background: var(--color-dark);
    color: var(--color-white);
}

.section--dark h2,
.section--dark h3,
.section--dark h4 {
    color: var(--color-white);
}

.grid {
    display: grid;
    gap: 2rem;
}

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

.grid--2-1 { grid-template-columns: 2fr 1fr; }
.grid--1-2 { grid-template-columns: 1fr 2fr; }
.grid--1-1 { grid-template-columns: 1fr 1fr; }

.flex { display: flex; }
.flex--center { align-items: center; }
.flex--between { justify-content: space-between; }
.flex--wrap { flex-wrap: wrap; }
.flex--gap { gap: 1.5rem; }
.flex--col { flex-direction: column; }

.text-center { text-align: center; }
.text-white { color: var(--color-white); }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-block;
    padding: 12px 28px;
    font-size: 1rem;
    font-weight: 600;
    font-family: var(--font-family);
    border-radius: var(--radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all .2s;
    text-align: center;
}

.btn--primary {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}
.btn--primary:hover {
    background: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
    color: var(--color-white);
}

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

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

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--color-white);
    border-bottom: 1px solid #e5e7eb;
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    max-width: var(--container-width);
    padding: 0 20px;
    margin: 0 auto;
}

.site-logo img {
    width: 200px;
    height: auto;
}

.site-logo a {
    display: block;
    line-height: 0;
}

.custom-logo-link {
    display: block;
    line-height: 0;
}

/* Main nav */
.main-nav__list {
    display: flex;
    align-items: center;
    gap: 1.75rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav__list > li {
    position: relative;
}

.main-nav__list > li > a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-dark);
    padding: 28px 0;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: color .2s;
}

.main-nav__list > li > a:hover {
    color: var(--color-primary);
}

.mega-chevron {
    transition: transform .2s;
}

.has-mega:hover .mega-chevron {
    transform: rotate(180deg);
}

/* Mega menu */
.mega-menu {
    position: absolute;
    top: 100%;
    right: -100px;
    width: 780px;
    background: var(--color-white);
    border: 1px solid #e2e4e9;
    border-radius: 16px;
    box-shadow: 0 16px 48px rgba(23, 45, 61, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity .2s, visibility .2s, transform .2s;
    z-index: 200;
}

.has-mega:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-menu__inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    padding: 1.5rem;
}

.mega-menu--industries {
    width: 480px;
    right: -40px;
}

.mega-menu--industries .mega-menu__inner {
    grid-template-columns: 1fr 1fr;
}

.mega-col {
    padding: 0 1rem;
    border-right: 1px solid #f0f1f3;
}

.mega-col:last-child {
    border-right: none;
}

.mega-col:first-child {
    padding-left: 0;
}

.mega-col:last-child {
    padding-right: 0;
}

.mega-col__title {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-dark);
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--color-light-bg);
}

.mega-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mega-col ul li a {
    display: block;
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--color-body);
    padding: 0.35rem 0;
    transition: color .15s, padding-left .15s;
}

.mega-col ul li a:hover {
    color: var(--color-primary);
    padding-left: 4px;
}

.mega-menu__footer {
    border-top: 1px solid #f0f1f3;
    padding: 0.75rem 1.5rem;
    text-align: center;
}

.mega-menu__footer a {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-primary);
}

.mega-menu__footer a:hover {
    color: var(--color-primary-dark);
}

/* Mobile menu toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-dark);
    margin: 5px 0;
    transition: all .3s;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: var(--color-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 40px 0 25px;
}

.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    margin-bottom: 25px;
}

.footer-logo img {
    width: 160px;
    filter: brightness(0) invert(1);
}

.footer-social {
    display: flex;
    gap: 1rem;
    list-style: none;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    transition: background .2s;
}

.footer-social a:hover {
    background: var(--color-primary);
}

.footer-social svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.875rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.footer-bottom p {
    margin: 0;
}

.footer-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-nav li {
    margin: 0;
    padding: 0;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-nav a:hover {
    color: var(--color-white);
}

/* ============================================================
   HERO SECTIONS
   ============================================================ */
.hero {
    padding: 100px 0 80px;
    position: relative;
}

.hero--centered {
    text-align: center;
}

.hero .kicker {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.hero h1 {
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.15rem;
    max-width: 640px;
    color: var(--color-body);
}

.hero--centered p {
    margin-left: auto;
    margin-right: auto;
}

/* ============================================================
   CARDS
   ============================================================ */
.card {
    background: var(--color-white);
    border-radius: 12px;
    overflow: hidden;
    transition: transform .2s, box-shadow .2s;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.card__image {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.card__body {
    padding: 1.5rem;
}

.card__body h3 {
    margin-bottom: 0.75rem;
}

.card__body p {
    font-size: 0.95rem;
    color: var(--color-body);
}

/* Service card variant */
.service-card {
    background: var(--color-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: transform .2s, box-shadow .2s;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.service-card img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
}

.service-card__body {
    padding: 1.5rem;
}

.service-card__body h3 {
    margin-bottom: 0.5rem;
}

.service-card__body p {
    font-size: 0.95rem;
}

/* ============================================================
   ICON BOX
   ============================================================ */
.icon-box {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.icon-box__icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: var(--color-primary);
    margin-top: 2px;
}

.icon-box__icon svg {
    width: 24px;
    height: 24px;
    fill: var(--color-primary);
}

.icon-box__content h4 {
    margin-bottom: 0.25rem;
}

.icon-box__content p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* ============================================================
   VALUE CARD (emoji + title + desc)
   ============================================================ */
.value-card {
    padding: 2rem;
    border-radius: 12px;
    background: var(--color-white);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.value-card__emoji {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.value-card h4 {
    margin-bottom: 0.5rem;
}

.value-card p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* ============================================================
   PARTNER LOGOS
   ============================================================ */
.partner-logos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.partner-logos img {
    height: 50px;
    width: auto;
    opacity: 0.8;
    transition: opacity .2s;
}

.partner-logos img:hover {
    opacity: 1;
}

/* ============================================================
   LOGO CAROUSEL
   ============================================================ */
.logo-carousel {
    overflow: hidden;
    position: relative;
    width: 100%;
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.logo-carousel__track {
    display: flex;
    align-items: center;
    gap: 3rem;
    width: max-content;
    animation: carousel-scroll 35s linear infinite;
}

.logo-carousel:hover .logo-carousel__track {
    animation-play-state: paused;
}

.logo-carousel__item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    padding: 1rem 2rem;
    background: var(--color-white);
    border: 1px solid #e8e9ec;
    border-radius: 12px;
    transition: transform .2s, box-shadow .2s;
}

.logo-carousel__item:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.logo-carousel__item img {
    height: 65px;
    width: auto;
    object-fit: contain;
    filter: grayscale(30%);
    opacity: 0.85;
    transition: filter .2s, opacity .2s;
}

.logo-carousel__item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

@keyframes carousel-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================================
   GOOGLE PREMIER PARTNER BANNER
   ============================================================ */
.gpp-section {
    background: var(--color-light-bg);
}

.gpp-banner {
    display: flex;
    align-items: center;
    gap: 3rem;
    background: var(--color-white);
    border: 1px solid #e2e4e9;
    border-radius: 24px;
    padding: 3rem;
}

.gpp-banner__badge {
    flex-shrink: 0;
}

.gpp-banner__badge img {
    width: 180px;
    height: auto;
    transition: transform .2s;
}

.gpp-banner__badge img:hover {
    transform: scale(1.05);
}

.gpp-banner__content .kicker {
    color: #1a73e8;
}

.gpp-banner__content h2 {
    margin-bottom: 0.75rem;
}

.gpp-banner__content p {
    margin-bottom: 1.5rem;
    max-width: 550px;
}

@media (max-width: 921px) {
    .gpp-banner {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        padding: 2.5rem 2rem;
    }
    .gpp-banner__content p {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 544px) {
    .gpp-banner {
        padding: 2rem 1.5rem;
    }
    .gpp-banner__badge img {
        width: 140px;
    }
}

/* ============================================================
   DELTA MODEL
   ============================================================ */
.delta-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    counter-reset: step;
}

.delta-step {
    text-align: center;
    position: relative;
}

.delta-step::before {
    counter-increment: step;
    content: counter(step);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--color-primary);
    color: var(--color-white);
    font-weight: 700;
    font-size: 1.25rem;
    margin: 0 auto 1rem;
}

.delta-step h4 {
    margin-bottom: 0.5rem;
}

.delta-step p {
    font-size: 0.9rem;
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section {
    background: var(--color-light-bg);
}

.contact-layout {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    position: sticky;
    top: 100px;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1.25rem;
    background: var(--color-white);
    border: 1px solid #e2e4e9;
    border-radius: 14px;
}

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

.contact-card__icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--color-primary);
}

.contact-card h4 {
    font-size: 0.9rem;
    margin-bottom: 0.15rem;
}

.contact-card a {
    font-size: 0.9rem;
    color: var(--color-primary);
}

.contact-card--highlight {
    border-color: var(--color-primary);
    border-width: 2px;
    background: linear-gradient(135deg, #fff 0%, #fdf2f4 100%);
}

.contact-card__badge {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #fff;
    background: var(--color-primary);
    padding: 0.15rem 0.5rem;
    border-radius: 20px;
    vertical-align: middle;
    margin-left: 0.35rem;
}

.contact-social-block {
    padding: 1.25rem;
    background: var(--color-white);
    border: 1px solid #e2e4e9;
    border-radius: 14px;
}

.contact-social-block h4 {
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.contact-social-block .footer-social a {
    background: var(--color-light-bg);
    color: var(--color-dark);
}

.contact-social-block .footer-social a:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

.contact-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--color-white);
    border: 1px solid #e2e4e9;
    border-radius: 14px;
}

.contact-badge img {
    width: 60px;
    height: auto;
}

.contact-badge p {
    font-size: 0.8rem;
    color: var(--color-body);
    margin: 0;
    line-height: 1.4;
}

.contact-form-wrap {
    background: var(--color-white);
    border: 1px solid #e2e4e9;
    border-radius: 20px;
    padding: 2.5rem;
}

.contact-form-header {
    margin-bottom: 1.5rem;
}

.contact-form-header h2 {
    margin-bottom: 0.25rem;
}

.contact-form-header p {
    color: var(--color-body);
    font-size: 0.95rem;
}

@media (max-width: 921px) {
    .contact-layout {
        grid-template-columns: 1fr;
    }
    .contact-sidebar {
        position: static;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.75rem;
    }
    .contact-card,
    .contact-social-block,
    .contact-badge {
        flex: 1 1 calc(50% - 0.375rem);
        min-width: 200px;
    }
}

@media (max-width: 544px) {
    .contact-form-wrap { padding: 1.5rem; }
    .contact-card,
    .contact-social-block,
    .contact-badge {
        flex: 1 1 100%;
    }
}

/* ============================================================
   BLOG — Hero
   ============================================================ */
.blog-hero {
    background: var(--color-dark);
    color: var(--color-white);
    padding: 100px 0 70px;
}

.blog-hero__content {
    max-width: 700px;
}

.blog-hero .kicker {
    color: var(--color-blue);
}

.blog-hero h1 {
    color: var(--color-white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.blog-hero p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.1rem;
}

/* ============================================================
   BLOG — Category filter bar
   ============================================================ */
.blog-filters {
    border-bottom: 1px solid #e5e7eb;
    background: var(--color-white);
    position: sticky;
    top: 0;
    z-index: 90;
}

.blog-filters__list {
    list-style: none;
    display: flex;
    gap: 0.25rem;
    overflow-x: auto;
    padding: 0;
    -webkit-overflow-scrolling: touch;
}

.blog-filter {
    display: inline-block;
    padding: 0.85rem 1.25rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-body);
    white-space: nowrap;
    border-bottom: 2px solid transparent;
    transition: color .2s, border-color .2s;
}

.blog-filter:hover {
    color: var(--color-primary);
}

.blog-filter--active {
    color: var(--color-primary);
    border-bottom-color: var(--color-primary);
}

/* ============================================================
   BLOG — Featured post
   ============================================================ */
.blog-featured__card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
    background: var(--color-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    text-decoration: none;
    color: inherit;
    transition: box-shadow .2s;
}

.blog-featured__card:hover {
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.1);
}

.blog-featured__image {
    overflow: hidden;
}

.blog-featured__img {
    width: 100%;
    height: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    display: block;
}

.blog-featured__body {
    padding: 2rem 2rem 2rem 0;
}

.blog-featured__body h2 {
    font-size: 1.75rem;
    margin: 0.75rem 0;
    color: var(--color-dark);
}

.blog-featured__excerpt {
    font-size: 1rem;
    color: var(--color-body);
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .blog-featured__card {
        grid-template-columns: 1fr;
    }
    .blog-featured__body {
        padding: 1.5rem;
    }
}

/* ============================================================
   BLOG — Post cards
   ============================================================ */
.post-card {
    background: var(--color-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: transform .2s, box-shadow .2s;
}

.post-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.post-card__link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.post-card__image {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    display: block;
}

.post-card__image--placeholder {
    background: linear-gradient(135deg, var(--color-blue-light) 0%, #e2e8f0 100%);
}

.post-card__body {
    padding: 1.5rem;
}

.post-card__cat {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-primary);
    background: rgba(223, 62, 91, 0.08);
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
    margin-bottom: 0.5rem;
}

.post-card__body h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    color: var(--color-dark);
}

.post-card__body h3 a {
    color: var(--color-dark);
}

.post-card__body h3 a:hover {
    color: var(--color-primary);
}

.post-card__excerpt {
    font-size: 0.9rem;
    color: var(--color-body);
    margin-bottom: 0.75rem;
}

.post-card__meta-row {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    color: #6b7280;
}

/* Legacy compat */
.post-card__meta {
    font-size: 0.8rem;
    color: #6b7280;
    margin-bottom: 0.5rem;
}

/* ============================================================
   BLOG — Single post header
   ============================================================ */
.post-header {
    padding: 100px 0 2rem;
}

.post-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #6b7280;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.post-breadcrumb a {
    color: #6b7280;
}

.post-breadcrumb a:hover {
    color: var(--color-primary);
}

.post-header h1 {
    font-size: 2.75rem;
    line-height: 1.2;
    margin: 0.75rem 0 1rem;
    color: var(--color-dark);
}

.post-header__meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: #6b7280;
}

@media (max-width: 768px) {
    .post-header h1 {
        font-size: 2rem;
    }
}

/* ============================================================
   BLOG — Single post hero image
   ============================================================ */
.post-hero-image {
    margin-bottom: 2rem;
}

.post-hero-image__img {
    width: 100%;
    border-radius: 16px;
    aspect-ratio: 16/8;
    object-fit: cover;
}

/* ============================================================
   BLOG — Single post body
   ============================================================ */
.post-content {
    padding-top: 0;
}

.post-body {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-body);
}

.post-body h2 {
    font-size: 1.75rem;
    margin: 2.5rem 0 1rem;
    color: var(--color-dark);
}

.post-body h3 {
    font-size: 1.4rem;
    margin: 2rem 0 0.75rem;
    color: var(--color-dark);
}

.post-body h4 {
    font-size: 1.15rem;
    margin: 1.5rem 0 0.5rem;
    color: var(--color-dark);
}

.post-body p {
    margin-bottom: 1.5rem;
}

.post-body img {
    border-radius: 12px;
    margin: 2rem 0;
}

.post-body ul,
.post-body ol {
    margin: 1rem 0 1.5rem 1.25rem;
}

.post-body li {
    margin-bottom: 0.5rem;
}

.post-body blockquote {
    border-left: 4px solid var(--color-primary);
    padding: 1rem 1.5rem;
    margin: 2rem 0;
    background: var(--color-light-bg);
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: var(--color-dark);
}

.post-body a {
    color: var(--color-primary);
    text-decoration: underline;
    text-decoration-color: rgba(223, 62, 91, 0.3);
    text-underline-offset: 2px;
}

.post-body a:hover {
    text-decoration-color: var(--color-primary);
}

.post-body pre,
.post-body code {
    font-family: 'SF Mono', 'Fira Code', monospace;
    background: var(--color-light-bg);
    border-radius: 6px;
}

.post-body code {
    padding: 0.2rem 0.4rem;
    font-size: 0.9em;
}

.post-body pre {
    padding: 1.5rem;
    overflow-x: auto;
    margin: 1.5rem 0;
}

.post-body pre code {
    padding: 0;
    background: none;
}

/* ============================================================
   BLOG — Post layout with TOC sidebar
   ============================================================ */
.post-layout {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 3rem;
    max-width: 960px;
    margin: 0 auto;
}

.post-sidebar {
    position: relative;
}

.post-main {
    min-width: 0;
}

/* Table of Contents */
.post-toc {
    position: sticky;
    top: 2rem;
    max-height: calc(100vh - 4rem);
    overflow-y: auto;
}

.post-toc__title {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-dark);
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--color-primary);
}

.post-toc__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.post-toc__item {
    margin-bottom: 0;
}

.post-toc__item a {
    display: block;
    font-size: 0.82rem;
    line-height: 1.4;
    color: var(--color-body);
    text-decoration: none;
    padding: 0.3rem 0 0.3rem 0.75rem;
    border-left: 2px solid transparent;
    transition: color .2s, border-color .2s;
}

.post-toc__item a:hover {
    color: var(--color-primary);
}

.post-toc__item--sub a {
    padding-left: 1.5rem;
    font-size: 0.78rem;
}

.post-toc__item.is-active > a {
    color: var(--color-primary);
    border-left-color: var(--color-primary);
    font-weight: 600;
}

/* Hide TOC sidebar on small screens, show inline instead */
@media (max-width: 768px) {
    .post-layout {
        grid-template-columns: 1fr;
        gap: 0;
        max-width: var(--container-narrow);
    }

    .post-toc {
        position: static;
        max-height: none;
        background: var(--color-light-bg);
        border-radius: 12px;
        padding: 1.25rem 1.5rem;
        margin-bottom: 2rem;
    }
}

/* ============================================================
   BLOG — Tags
   ============================================================ */
.post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
}

.post-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--color-body);
    background: var(--color-light-bg);
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    transition: background .2s, color .2s;
}

.post-tag:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

/* ============================================================
   BLOG — Share
   ============================================================ */
.post-share {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
    flex-wrap: wrap;
}

.post-share__label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-dark);
}

.post-share__links {
    display: flex;
    gap: 0.5rem;
}

.post-share__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-body);
    background: var(--color-light-bg);
    padding: 0.5rem 0.85rem;
    border-radius: 6px;
    transition: background .2s, color .2s;
}

.post-share__btn svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.post-share__btn:hover {
    background: var(--color-dark);
    color: var(--color-white);
}

/* ============================================================
   BLOG — Post navigation (prev/next)
   ============================================================ */
.post-nav-section {
    padding: 0 0 2rem;
}

.post-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
}

.post-nav__item {
    display: block;
    padding: 1.25rem;
    background: var(--color-light-bg);
    border-radius: 10px;
    text-decoration: none;
    transition: background .2s;
}

.post-nav__item:hover {
    background: #eef0f4;
}

.post-nav__item--next {
    text-align: right;
}

.post-nav__label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-primary);
    margin-bottom: 0.35rem;
}

.post-nav__title {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-dark);
    line-height: 1.3;
}

@media (max-width: 600px) {
    .post-nav {
        grid-template-columns: 1fr;
    }
    .post-nav__item--next {
        text-align: left;
    }
}

/* ============================================================
   BLOG — Pagination
   ============================================================ */
.pagination,
.nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.35rem;
}

.pagination .page-numbers,
.nav-links .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 0.75rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-body);
    background: var(--color-light-bg);
    border-radius: 8px;
    transition: background .2s, color .2s;
}

.pagination .page-numbers:hover,
.nav-links .page-numbers:hover {
    background: var(--color-dark);
    color: var(--color-white);
}

.pagination .page-numbers.current,
.nav-links .page-numbers.current {
    background: var(--color-primary);
    color: var(--color-white);
}

/* ============================================================
   LEGAL PAGES (Privacy Policy, Terms)
   ============================================================ */
.legal-hero {
    background: var(--color-dark);
    color: var(--color-white);
    padding: 100px 0 50px;
}

.legal-hero h1 {
    color: var(--color-white);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.legal-hero__updated {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    margin: 0;
}

.legal-content {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-body);
}

.legal-content h2 {
    font-size: 1.5rem;
    color: var(--color-dark);
    margin: 2.5rem 0 1rem;
}

.legal-content h3 {
    font-size: 1.15rem;
    color: var(--color-dark);
    margin: 1.5rem 0 0.75rem;
}

.legal-content p {
    margin-bottom: 1rem;
}

.legal-content ul {
    margin: 0.5rem 0 1.25rem 1.25rem;
}

.legal-content li {
    margin-bottom: 0.4rem;
}

.legal-content hr {
    border: none;
    border-top: 1px solid #e5e7eb;
    margin: 2.5rem 0;
}

.legal-content a {
    color: var(--color-primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.legal-content a:hover {
    color: var(--color-primary-dark);
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0 1.5rem;
    font-size: 0.9rem;
}

.legal-table th,
.legal-table td {
    text-align: left;
    padding: 0.65rem 0.85rem;
    border-bottom: 1px solid #e5e7eb;
    vertical-align: top;
}

.legal-table th {
    background: var(--color-light-bg);
    font-weight: 600;
    color: var(--color-dark);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.legal-table td {
    color: var(--color-body);
}

.legal-table tr:last-child td {
    border-bottom: none;
}

@media (max-width: 768px) {
    .legal-table {
        font-size: 0.8rem;
    }
    .legal-table th,
    .legal-table td {
        padding: 0.5rem;
    }
}

.legal-contact {
    background: var(--color-light-bg);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1rem 0;
}

.legal-contact p {
    margin: 0;
}

.dcc-inline-link {
    background: none;
    border: none;
    color: var(--color-primary);
    text-decoration: underline;
    text-underline-offset: 2px;
    font: inherit;
    cursor: pointer;
    padding: 0;
}

.dcc-inline-link:hover {
    color: var(--color-primary-dark);
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
    background: var(--color-light-bg);
    padding: 80px 0;
    text-align: center;
}

.cta-banner h2 {
    margin-bottom: 1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-banner p {
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================================
   SERVICE CATEGORY SECTIONS
   ============================================================ */
/* ============================================================
   SERVICES PAGE
   ============================================================ */

/* Service blocks */
.svc-blocks {
    padding-top: 40px;
}

.svc-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    padding: 60px 0;
    border-bottom: 1px solid #e8e9ec;
}

.svc-block:last-child {
    border-bottom: none;
}

.svc-block--reverse {
    direction: rtl;
}

.svc-block--reverse > * {
    direction: ltr;
}

.svc-block__visual img {
    width: 100%;
    border-radius: 20px;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.svc-block__num {
    display: inline-block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-blue);
    opacity: 0.25;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.svc-block__content h2 {
    margin-bottom: 0.75rem;
}

.svc-block__content > p {
    margin-bottom: 1.5rem;
    color: var(--color-body);
}

/* Service tags — will become links to individual pages */
.svc-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.75rem;
}

.svc-tag {
    display: inline-block;
    padding: 0.45rem 1rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-dark);
    background: var(--color-light-bg);
    border-radius: 100px;
    border: 1px solid #e2e4e9;
    transition: background .2s, border-color .2s, color .2s;
    cursor: default;
}

.svc-tag:hover {
    background: var(--color-blue-light);
    border-color: var(--color-blue);
    color: var(--color-dark);
}

a.svc-tag--link {
    text-decoration: none;
    cursor: pointer;
}

a.svc-tag--link:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
}

/* Link to contact */
.svc-block__link {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--color-primary);
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    transition: gap .2s;
}

.svc-block__link:hover {
    gap: 0.5rem;
    color: var(--color-primary-dark);
}

@media (max-width: 921px) {
    .svc-block {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 40px 0;
    }
    .svc-block--reverse {
        direction: ltr;
    }
}

@media (max-width: 544px) {
    .svc-blocks { padding-top: 20px; }
    .svc-block { padding: 30px 0; }
    .svc-block__num { font-size: 2.5rem; }
}

/* ============================================================
   SERVICE DETAIL PAGES
   ============================================================ */

/* Platform cards */
.svc-platform {
    text-align: center;
    padding: 2rem;
    border: 1px solid #e2e4e9;
    border-radius: 20px;
    background: var(--color-white);
    transition: transform .2s, box-shadow .2s;
}

.svc-platform:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(23, 45, 61, 0.08);
}

.svc-platform__logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    margin: 0 auto 1.25rem;
}

.svc-platform h3 {
    margin-bottom: 0.5rem;
}

.svc-platform p {
    font-size: 0.9rem;
    margin: 0;
    color: var(--color-body);
}

/* What's included cards */
.svc-included {
    padding: 1.75rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: background .2s;
}

.svc-included:hover {
    background: rgba(255, 255, 255, 0.1);
}

.svc-included__icon {
    font-size: 1.75rem;
    display: block;
    margin-bottom: 0.75rem;
}

.svc-included h4 {
    color: var(--color-white);
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
}

.svc-included p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 544px) {
    .svc-included { padding: 1.25rem; }
}

/* ============================================================
   ABOUT: HOW WE WORK CARDS
   ============================================================ */
/* ============================================================
   ABOUT: HERO
   ============================================================ */
.about-hero {
    position: relative;
    padding: 120px 0 100px;
    overflow: hidden;
    text-align: center;
}

.about-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.about-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(23, 45, 61, 0.88) 0%, rgba(23, 45, 61, 0.95) 100%);
}

.about-hero .container {
    position: relative;
    z-index: 1;
}

.about-hero__content {
    max-width: 700px;
    margin: 0 auto;
}

.about-hero h1 {
    color: var(--color-white);
    font-size: 3rem;
    margin-bottom: 1.25rem;
}

.about-hero p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.15rem;
    max-width: 550px;
    margin: 0 auto;
}

@media (max-width: 921px) {
    .about-hero { padding: 80px 0 60px; }
    .about-hero h1 { font-size: 2.25rem; }
}

@media (max-width: 544px) {
    .about-hero { padding: 60px 0 50px; }
    .about-hero h1 { font-size: 1.85rem; }
}

/* ============================================================
   ABOUT: HOW WE WORK CARDS
   ============================================================ */
.about-how-card {
    background: var(--color-white);
    border: 1px solid #e2e4e9;
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    transition: transform .2s, box-shadow .2s;
}

.about-how-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(23, 45, 61, 0.08);
}

.about-how-card__num {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-blue);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 0.75rem;
}

.about-how-card h4 {
    margin-bottom: 0.75rem;
}

.about-how-card p {
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.6;
}

/* ============================================================
   ABOUT: MAP & OFFICES
   ============================================================ */
.about-map {
    margin-bottom: 3rem;
}

.about-map__visual {
    width: 100%;
}

.about-map__svg {
    width: 100%;
    height: auto;
    border-radius: 16px;
    display: block;
}

.about-offices-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.about-office-inline {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    transition: background .2s;
}

.about-office-inline:hover {
    background: rgba(255, 255, 255, 0.1);
}

.about-office-inline__flag {
    font-size: 1.75rem;
    flex-shrink: 0;
    line-height: 1;
}

.about-office-inline strong {
    display: block;
    color: var(--color-white);
    font-size: 0.95rem;
    margin-bottom: 0.15rem;
}

.about-office-inline span {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.3;
}

/* ============================================================
   INDUSTRY CARDS
   ============================================================ */
.industry-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 1rem;
    background: var(--color-white);
    border: 1px solid #e2e4e9;
    border-radius: 16px;
    text-decoration: none;
    color: inherit;
    transition: transform .2s, box-shadow .2s, border-color .2s;
}

.industry-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(23, 45, 61, 0.08);
    border-color: var(--color-blue);
    color: inherit;
}

.industry-card__emoji {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.industry-card h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.industry-card p {
    font-size: 0.8rem;
    color: var(--color-body);
    margin: 0;
}

@media (max-width: 921px) {
    .industry-card { padding: 1.5rem 0.75rem; }
}

@media (max-width: 544px) {
    .industry-card__emoji { font-size: 2rem; }
}

/* ============================================================
   HOMEPAGE: HERO
   ============================================================ */
.hp-hero {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, #fdf2f0 0%, #fff 50%, #f0f4ff 100%);
}

.hp-hero__inner {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: center;
}

.hp-hero__content h1 {
    font-size: 3rem;
    line-height: 1.15;
    margin-bottom: 1.25rem;
}

.text-gradient {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hp-hero__sub {
    font-size: 1.1rem;
    color: var(--color-body);
    max-width: 520px;
    margin-bottom: 2rem;
}

.hp-hero__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hp-hero__visual img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

/* ============================================================
   HOMEPAGE: STATS BAR
   ============================================================ */
.hp-stats {
    position: relative;
    padding: 60px 0;
    background: var(--color-dark);
    overflow: hidden;
}

.hp-stats__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.25;
    filter: grayscale(30%);
}

.hp-stats__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(15, 23, 42, 0.7) 100%);
}

.hp-stats .container {
    position: relative;
    z-index: 1;
}

.hp-stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.hp-stat {
    padding: 1.5rem 1rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: background .2s;
}

.hp-stat:hover {
    background: rgba(255, 255, 255, 0.14);
}

.hp-stat__number {
    display: block;
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--color-white);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.hp-stat__label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
}

/* ============================================================
   HOMEPAGE: HUMAN + AI APPROACH
   ============================================================ */
.hp-approach {
    background: var(--color-light-bg);
}

.hp-approach__intro {
    max-width: 650px;
    margin: 0 auto 3rem;
    font-size: 1.05rem;
}

.hp-approach__columns {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 1.5rem;
    align-items: stretch;
    max-width: 960px;
    margin: 0 auto;
}

/* Card base */
.hp-approach__col {
    padding: 0;
    border-radius: 24px;
    background: var(--color-white);
    position: relative;
    overflow: hidden;
    border: 1px solid #e2e4e9;
    box-shadow: none;
    transition: box-shadow .3s, transform .3s;
}

.hp-approach__col:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(23, 45, 61, 0.1);
}

/* Gradient header band */
.hp-approach__header {
    padding: 2rem 2rem 1.5rem;
    color: var(--color-dark);
    background: var(--color-light-bg);
    border-radius: 24px 24px 0 0;
}

.hp-approach__emoji {
    font-size: 2.5rem;
    line-height: 1;
    margin-bottom: 0.75rem;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.15));
}

.hp-approach__header h3 {
    font-size: 1.4rem;
    margin-bottom: 0.4rem;
    color: var(--color-dark);
}

.hp-approach__header .hp-approach__tagline {
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
    color: var(--color-body);
}

/* List inside card body */
.hp-approach__col ul {
    list-style: none;
    padding: 1.25rem 2rem 2rem;
    margin: 0;
}

.hp-approach__col ul li {
    padding: 0.7rem 0;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--color-body);
    border-bottom: 1px solid #f0f1f3;
}

.hp-approach__col ul li:last-child {
    border: none;
    padding-bottom: 0;
}

.hp-approach__col ul li::before {
    content: '';
    flex-shrink: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.hp-approach__col--human ul li::before {
    background: var(--color-primary);
}

.hp-approach__col--ai ul li::before {
    background: var(--color-blue);
}

/* Plus connector */
.hp-approach__plus {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hp-approach__plus span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--color-dark);
    color: var(--color-white);
    font-size: 1.75rem;
    font-weight: 700;
    box-shadow: 0 6px 24px rgba(23, 45, 61, 0.2);
    border: 3px solid var(--color-light-bg);
}

/* Result bar */
.hp-approach__result {
    margin-top: 2.5rem;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
}

.hp-approach__result-inner {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, #e84a6a 50%, var(--color-blue) 100%);
    color: var(--color-white);
    padding: 2rem 2.5rem;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.hp-approach__equals {
    font-size: 2rem;
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    backdrop-filter: blur(8px);
}

.hp-approach__result h3 {
    color: var(--color-white);
    margin-bottom: 0.35rem;
}

.hp-approach__result p {
    margin: 0;
    opacity: 0.9;
    font-size: 0.95rem;
}

/* ============================================================
   HOMEPAGE: DELTA PROCESS
   ============================================================ */
.hp-process__steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

.hp-process__step {
    text-align: center;
    padding: 1.5rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: background .2s;
}

.hp-process__step:hover {
    background: rgba(255, 255, 255, 0.1);
}

.hp-process__num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--color-primary);
    color: var(--color-white);
    font-weight: 700;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

.hp-process__step h4 {
    color: var(--color-white);
    margin-bottom: 0.5rem;
}

.hp-process__step p {
    font-size: 0.9rem;
    opacity: 0.75;
    margin: 0;
}

/* ============================================================
   HOMEPAGE: SERVICES
   ============================================================ */
.hp-service {
    display: flex;
    background: var(--color-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
    transition: transform .2s, box-shadow .2s;
}

.hp-service:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.hp-service__img {
    flex-shrink: 0;
    width: 220px;
}

.hp-service__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hp-service__body {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
}

.hp-service__body h3 {
    margin-bottom: 0.5rem;
}

.hp-service__body p {
    font-size: 0.95rem;
    flex-grow: 1;
}

.hp-service__link {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--color-primary);
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.hp-service__link:hover {
    gap: 0.5rem;
}

.hp-service__link span {
    transition: margin-left .2s;
}

/* ============================================================
   HOMEPAGE: CTA
   ============================================================ */
.hp-cta {
    background: linear-gradient(135deg, var(--color-dark) 0%, #1e293b 100%);
    padding: 80px 0;
    color: var(--color-white);
}

.hp-cta h2 {
    color: var(--color-white);
    max-width: 700px;
    margin: 0 auto 1rem;
}

.hp-cta p {
    max-width: 550px;
    margin: 0 auto 2rem;
    opacity: 0.8;
    font-size: 1.05rem;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 921px) {
    .container { padding: 0 30px; }
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    .hero { padding: 60px 0; }
    .section { padding: 60px 0; }

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

    .delta-steps { grid-template-columns: repeat(3, 1fr); }

    /* Mobile nav */
    .menu-toggle { display: block; }

    .main-nav {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--color-white);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        z-index: 200;
        max-height: 80vh;
        overflow-y: auto;
    }

    .main-nav.open { display: block; }

    .main-nav__list {
        flex-direction: column;
        gap: 0;
        padding: 0.5rem 30px 1rem;
    }

    .main-nav__list > li {
        border-bottom: 1px solid #f3f4f6;
    }

    .main-nav__list > li:last-child { border: none; }

    .main-nav__list > li > a {
        padding: 0.85rem 0;
        width: 100%;
    }

    /* Mobile mega menu */
    .mega-menu,
    .mega-menu--industries {
        position: static !important;
        transform: none !important;
        width: auto !important;
        max-width: none !important;
        right: auto !important;
        border: none;
        border-radius: 0;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        display: none;
        padding: 0;
    }

    .has-mega.mega-open .mega-menu {
        display: block;
    }

    .mega-menu__inner,
    .mega-menu--industries .mega-menu__inner {
        display: block !important;
        padding: 0 0 1rem;
    }

    .mega-col {
        padding: 0 !important;
        border-right: none !important;
    }

    .mega-col + .mega-col {
        margin-top: 0.5rem;
    }

    .mega-menu__footer {
        padding: 0.75rem 0;
    }

    /* Homepage tablet */
    .hp-hero__inner { grid-template-columns: 1fr; text-align: center; }
    .hp-hero__content h1 { font-size: 2.5rem; }
    .hp-hero__sub { margin-left: auto; margin-right: auto; }
    .hp-hero__actions { justify-content: center; }
    .hp-hero__visual { max-width: 500px; margin: 0 auto; }
    .hp-stats__grid { grid-template-columns: repeat(2, 1fr); }
    .hp-approach__columns { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    .hp-approach__plus { padding: 0.25rem 0; }
    .hp-approach__plus span { transform: rotate(90deg); }
    .hp-process__steps { grid-template-columns: repeat(3, 1fr); }
    .hp-service { flex-direction: column; }
    .hp-service__img { width: 100%; height: 200px; }
    .about-offices-row { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 544px) {
    .container { padding: 0 20px; }
    h1 { font-size: 2rem; }
    h2 { font-size: 1.65rem; }
    .hero { padding: 40px 0; }
    .section { padding: 50px 0; }

    .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
    .grid--1-1 { grid-template-columns: 1fr; }

    .delta-steps { grid-template-columns: 1fr; }

    .site-logo img { width: 130px; }

    .footer-top { flex-direction: column; gap: 1rem; }
    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }

    .partner-logos img { height: 35px; }

    /* Homepage mobile */
    .hp-hero { padding: 50px 0 40px; }
    .hp-hero__content h1 { font-size: 1.85rem; }
    .hp-stats__grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
    .hp-stat__number { font-size: 2rem; }
    .hp-process__steps { grid-template-columns: 1fr; }
    .hp-approach__result-inner { flex-direction: column; text-align: center; }
    .hp-services__grid { grid-template-columns: 1fr; }
    .hp-cta { padding: 60px 0; }
    .about-offices-row { grid-template-columns: 1fr; }
}
