/* ===================================================
   LUMINA IMPACT — Design System & Styles
   =================================================== */

/* ---------- CSS Custom Properties ---------- */
:root {
    /* Brand Colors - from logo */
    --deep-blue: #1a3a5c;
    --deep-blue-rgb: 26, 58, 92;
    --teal: #1a8a7a;
    --teal-rgb: 26, 138, 122;
    --green: #5a8c2a;
    --green-rgb: 90, 140, 42;
    --gold: #c4a35a;
    --gold-rgb: 196, 163, 90;
    --earth: #8b6f3a;

    /* Dark Theme */
    --bg-darkest: #060e18;
    --bg-dark: #0d1b2a;
    --bg-dark-2: #12233a;
    --bg-dark-3: #1a2f4a;
    --bg-light: #f5f0e8;
    --bg-light-2: #eae4d8;

    /* Text */
    --text-light: #f5f0e8;
    --text-light-muted: rgba(245, 240, 232, 0.7);
    --text-dark: #1a1a2e;
    --text-dark-muted: rgba(26, 26, 46, 0.65);

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;

    /* Spacing */
    --section-padding: 120px 0;
    --container-width: 1200px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.6s cubic-bezier(.25, .46, .45, .94);

    /* Borders */
    --border-subtle: 1px solid rgba(196, 163, 90, 0.15);
    --border-glass: 1px solid rgba(255, 255, 255, 0.08);
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    background-color: var(--bg-darkest);
    color: var(--text-light);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- Typography ---------- */
h1,
h2,
h3,
h4 {
    font-family: var(--font-primary);
    font-weight: 600;
    line-height: 1.2;
}

.section-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.section-label::before,
.section-label::after {
    content: '';
    display: block;
    width: 28px;
    height: 2px;
    background: currentColor;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.15;
}

.section-title em {
    font-family: var(--font-display);
    font-style: italic;
    color: var(--gold);
}

.section-subtitle {
    font-size: 1.1rem;
    max-width: 600px;
    opacity: 0.75;
    line-height: 1.7;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header .section-subtitle {
    margin: 0 auto;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 36px;
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    border-radius: 50px;
}

/* Interactive hover structure */
.btn .btn-text {
    display: inline-block;
    transition: all 0.35s cubic-bezier(.4, 0, .2, 1);
    position: relative;
    z-index: 2;
}

.btn .btn-hover-content {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transform: translateX(40px);
    opacity: 0;
    transition: all 0.35s cubic-bezier(.4, 0, .2, 1);
}

.btn .btn-hover-content svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

.btn .btn-circle {
    position: absolute;
    left: 20%;
    top: 40%;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    transform: scale(1);
    transition: all 0.4s cubic-bezier(.4, 0, .2, 1);
    z-index: 1;
    opacity: 0;
}

.btn:hover .btn-text {
    transform: translateX(-40px);
    opacity: 0;
}

.btn:hover .btn-hover-content {
    transform: translateX(0);
    opacity: 1;
}

.btn:hover .btn-circle {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 50px;
    transform: scale(1.1);
    opacity: 1;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), #d4b36a);
    color: var(--bg-dark);
}

.btn-primary .btn-circle {
    background: var(--teal);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(196, 163, 90, 0.35);
    color: #fff;
}

.btn-outline {
    background: transparent;
    color: var(--text-light);
    border: 1px solid rgba(245, 240, 232, 0.3);
}

.btn-outline .btn-circle {
    background: var(--gold);
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--bg-dark);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

/* ---------- NAVBAR ---------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all var(--transition-base);
}

.navbar.scrolled {
    background: rgba(6, 14, 24, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    border-bottom: var(--border-subtle);
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1001;
}

.nav-logo-img {
    height: 40px;
    width: auto;
}

.nav-logo-text {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.nav-logo-text .accent {
    background: linear-gradient(to right, var(--teal), var(--green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    opacity: 0.85;
    transition: all var(--transition-fast);
}

.nav-links a:hover {
    opacity: 1;
    color: var(--gold);
}

.nav-cta {
    display: inline-block !important;
    white-space: nowrap !important;
    flex-shrink: 0 !important;
    min-width: max-content !important;
    padding: 10px 24px !important;
    background: linear-gradient(135deg, var(--gold), #d4b36a);
    color: var(--bg-dark) !important;
    opacity: 1 !important;
    font-weight: 600 !important;
}

.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(196, 163, 90, 0.3);
    color: var(--bg-dark) !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-light);
    transition: all var(--transition-base);
}

.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ---------- HERO ---------- */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: url('assets/images/hero-bg.png') center/cover no-repeat;
}

.hero-canvas {
    width: 100%;
    height: 100%;
    display: block;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(6, 14, 24, 0.35) 0%,
            rgba(6, 14, 24, 0.15) 40%,
            rgba(6, 14, 24, 0.50) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 24px;
}

.hero-logo {
    width: 100px;
    margin: 0 auto 24px;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.hero-subtitle {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.hero-title {
    font-size: clamp(2.5rem, 5.5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-line {
    white-space: nowrap;
}

.hero-title em {
    font-family: var(--font-display);
    font-style: italic;
    color: var(--gold);
}

.hero-description {
    font-size: 1.15rem;
    line-height: 1.7;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto 40px;
}

.desktop-br {
    display: block;
}

@media (max-width: 768px) {
    .desktop-br {
        display: none;
    }
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.5;
    transition: opacity var(--transition-base);
}

.scroll-indicator:hover {
    opacity: 1;
}

.scroll-indicator span {
    font-size: 0.65rem;
    letter-spacing: 3px;
    font-weight: 500;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 0.3;
        height: 40px;
    }

    50% {
        opacity: 1;
        height: 50px;
    }
}

/* ---------- SECTIONS ---------- */
.section {
    padding: var(--section-padding);
    position: relative;
}

.section-about {
    background: var(--bg-light);
    color: var(--text-dark);
}

.section-about .section-label {
    color: var(--teal);
}

.section-about .section-title em {
    color: var(--teal);
}

.section-dark {
    background: var(--bg-dark);
}

/* ---------- ABOUT ---------- */
.about-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 30px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.about-image {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 4px;
}

.about-image-accent {
    position: absolute;
    bottom: -12px;
    right: -12px;
    width: 120px;
    height: 120px;
    border: 3px solid var(--teal);
    border-radius: 4px;
    z-index: -1;
}

.about-image-placeholder {
    width: 100%;
    height: 420px;
    background: linear-gradient(135deg, var(--teal), var(--deep-blue));
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.about-image-placeholder svg {
    width: 80px;
    height: 80px;
    color: rgba(255, 255, 255, 0.3);
}

.about-image-placeholder span {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
}

.about-text {
    width: 100%;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.about-illustration {
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-illustration img {
    width: 100%;
    max-width: 600px;
    height: auto;
    opacity: 0.9;
}

/* ===== DESKTOP — Fit each section in one viewport ===== */
@media (min-width: 1025px) {
    :root {
        --section-padding: 44px 0;
    }

    .container {
        padding: 0 56px;
    }

    /* --- Section header compact --- */
    .section-header {
        margin-bottom: 24px;
    }

    .section-title {
        font-size: clamp(1.5rem, 2.8vw, 2rem);
        margin-bottom: 10px;
    }

    .section-subtitle {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .section-label {
        margin-bottom: 8px;
        font-size: 0.68rem;
    }

    /* --- Hero compact --- */
    .hero {
        min-height: unset;
        height: 100vh;
    }

    .hero-logo {
        width: 80px;
        margin-bottom: 16px;
    }

    .hero-subtitle {
        font-size: 0.72rem;
        margin-bottom: 14px;
    }

    .hero-title {
        font-size: clamp(2rem, 4.5vw, 3.2rem);
        margin-bottom: 16px;
    }

    .hero-description {
        font-size: 1rem;
        margin: 0 auto 28px;
    }

    /* --- About --- */
    .about-grid {
        max-width: 1250px;
        grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
        gap: 40px;
    }

    .about-text p {
        font-size: 0.85rem;
        margin-bottom: 6px;
        line-height: 1.6;
    }

    .about-text .section-title {
        font-size: clamp(1.4rem, 2.5vw, 1.9rem);
    }

    .about-highlights {
        margin-top: 20px;
        gap: 16px;
    }

    .highlight-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        border-radius: 8px;
    }

    .highlight-icon svg {
        width: 20px;
        height: 20px;
    }

    .highlight-item strong {
        font-size: 0.88rem;
        margin-bottom: 2px;
    }

    .highlight-item span {
        font-size: 0.8rem;
    }

    .about-illustration {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;
        transform: translateY(20px);
    }

    .about-illustration img {
        width: 100%;
        max-width: 550px;
        height: auto;
        opacity: 0.95;
    }

    /* --- Why Lumina --- */
    .why-grid {
        gap: 12px;
    }

    .why-card {
        padding: 20px 18px;
    }

    .why-card-icon {
        width: 34px;
        height: 34px;
        margin-bottom: 10px;
    }

    .why-card-icon svg {
        width: 20px;
        height: 20px;
    }

    .why-card h3 {
        font-size: 0.9rem;
        margin-bottom: 5px;
    }

    .why-card p {
        font-size: 0.78rem;
        line-height: 1.45;
    }

    /* --- Approach --- */
    .section-approach {
        padding: 24px 0;
    }

    .approach-header {
        margin-bottom: 10px;
    }

    .section-approach .section-title {
        font-size: clamp(1.2rem, 2.2vw, 1.6rem);
        margin-bottom: 6px;
    }

    .section-approach .section-title em {
        font-size: 1em;
    }

    .approach-lead {
        font-size: 0.8rem;
        line-height: 1.4;
    }

    .approach-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 8px;
        margin-bottom: 10px;
    }

    .approach-item {
        padding: 4px;
        gap: 3px;
        flex-direction: row;
        text-align: left;
        align-items: center;
    }

    .approach-item-img {
        width: 28px;
        height: 28px;
        min-width: 28px;
    }

    .approach-number {
        font-size: 0.8rem;
        min-width: 20px;
    }

    .approach-item h4 {
        font-size: 0.78rem;
        margin-bottom: 1px;
    }

    .approach-item p {
        font-size: 0.7rem;
        line-height: 1.35;
    }

    .approach-illustration {
        display: none;
    }

    .result-card {
        padding: 10px 20px;
    }

    .result-card h3 {
        font-size: 0.6rem;
        margin-bottom: 3px;
    }

    .result-card p {
        font-size: 0.82rem;
    }

    .approach-result {
        max-width: 550px;
    }

    /* --- Services --- */
    .section-services {
        padding: 28px 0 0;
    }

    .service-card {
        padding: 10px 14px;
    }

    .service-number {
        font-size: 1.1rem;
        margin-bottom: 2px;
    }

    .service-card h3 {
        font-size: 0.75rem;
        margin-bottom: 2px;
    }

    .service-card p {
        font-size: 0.68rem;
        line-height: 1.35;
    }

    .services-tagline {
        font-size: 0.82rem;
        margin-top: 10px;
        padding-bottom: 12px;
    }

    .services-illustration {
        max-width: 350px;
        margin: 10px auto 0;
        display: flex;
        justify-content: center;
    }

    .services-illustration img {
        width: 100%;
        max-width: 350px;
        height: auto;
    }

    /* --- Differentials --- */
    .diff-grid {
        gap: 16px;
        margin-bottom: 20px;
    }

    .diff-card {
        padding: 22px 20px;
    }

    .diff-icon {
        width: 38px;
        height: 38px;
        margin: 0 auto 12px;
    }

    .diff-icon svg {
        width: 22px;
        height: 22px;
    }

    .diff-card h3 {
        font-size: 0.95rem;
        margin-bottom: 10px;
    }

    .diff-card ul li {
        padding: 4px 0;
        font-size: 0.82rem;
    }

    .diff-results {
        gap: 10px 28px;
    }

    .diff-result-item {
        font-size: 0.82rem;
    }

    .diff-result-item svg {
        width: 18px;
        height: 18px;
    }

    /* --- Team --- */
    .section-team {
        padding: 20px 0;
    }

    .section-team .section-header {
        margin-bottom: 12px;
    }

    .section-team .section-subtitle {
        font-size: 0.82rem;
    }

    .team-grid {
        gap: 10px;
    }

    .team-card {
        padding: 10px 14px;
        flex-direction: row;
        text-align: left;
        gap: 12px;
    }

    .team-photo {
        width: 56px;
        height: 56px;
        min-width: 56px;
        margin-bottom: 0;
        border-width: 2px;
    }

    .team-info h3 {
        font-size: 0.82rem;
        margin-bottom: 1px;
    }

    .team-role {
        font-size: 0.6rem;
        margin-bottom: 1px;
    }

    .team-focus {
        font-size: 0.58rem;
        margin-bottom: 2px;
    }

    .team-info p {
        font-size: 0.68rem;
        line-height: 1.4;
        margin-bottom: 2px;
    }

    .team-tags {
        padding-top: 12px;
        gap: 6px;
        flex-direction: column;
        align-items: center;
    }

    .team-tags span {
        font-size: 0.65rem;
        width: 180px;
        padding: 4px 10px;
    }

    .team-tagline {
        font-size: 0.88rem;
        margin-top: 10px;
    }

    /* --- Sectors --- */
    .sectors-grid {
        gap: 14px;
    }

    .sector-card {
        padding: 18px 14px;
    }

    .sector-icon {
        width: 34px;
        height: 34px;
        margin: 0 auto 8px;
    }

    .sector-icon svg {
        width: 22px;
        height: 22px;
    }

    .sector-card h4 {
        font-size: 0.8rem;
    }

    /* --- Contact --- */
    .contact-content {
        gap: 36px;
        align-items: center;
    }

    .contact-lead {
        font-size: 0.92rem;
        margin-bottom: 16px;
        line-height: 1.6;
    }

    .contact-form-wrapper {
        padding: 24px;
    }

    .form-group input,
    .form-group textarea {
        padding: 10px 14px;
        font-size: 0.85rem;
    }

    .form-group textarea {
        min-height: 70px;
    }

    .contact-form {
        gap: 10px;
    }

    /* --- Footer compact --- */
    .footer {
        padding: 32px 0 16px;
    }

    .footer-content {
        margin-bottom: 20px;
        gap: 28px;
    }

    .footer-brand p {
        font-size: 0.82rem;
    }

    .footer-links h4 {
        font-size: 0.72rem;
        margin-bottom: 12px;
    }

    .footer-links a {
        font-size: 0.82rem;
        padding: 4px 0;
    }

    .footer-bottom {
        padding-top: 16px;
    }
}

.approach-illustration {
    max-width: 600px;
    margin: 32px auto 0;
    opacity: 0.85;
    transform: translateY(30px);
}

.services-illustration {
    max-width: 600px;
    margin: 40px auto 0;
    /* Ajuste: margem superior para afastar do texto, 0 em baixo para colar no fim da seção */
    opacity: 0.85;
}

.services-illustration img {
    width: 100%;
    height: auto;
}

.about-text .section-title {
    white-space: nowrap;
}

@media (max-width: 960px) {
    .about-text .section-title {
        white-space: normal;
    }
}

.about-text p {
    margin-bottom: 16px;
    font-size: 1rem;
    color: var(--text-dark-muted);
    line-height: 1.8;
}

.about-text p strong {
    color: var(--text-dark);
}

.about-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 56px;
    margin-bottom: 0;
    justify-content: flex-start;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 0 1 auto;
}

.highlight-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--teal), var(--green));
    border-radius: 10px;
    color: white;
}

.highlight-icon svg {
    width: 28px;
    height: 28px;
}

.highlight-item strong {
    display: block;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.highlight-item span {
    font-size: 0.95rem;
    color: var(--text-dark-muted);
}

/* ---------- WHY LUMINA ---------- */
.section-why {
    overflow: visible;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.why-card {
    background: var(--bg-dark-2);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 36px 28px;
    position: relative;
    overflow: visible;
    transition: background var(--transition-base), transform var(--transition-base);
    border-radius: 12px;
}

.why-card:hover {
    background: var(--bg-dark-3);
    transform: translateY(-4px);
}

/* ----- Glowing Border Effect ----- */
.glow-border {
    --glow-start: 0;
    --glow-active: 0;
    --glow-spread: 30;
    --glow-border-width: 4px;
    --repeating-conic-times: 5;
    pointer-events: none;
    position: absolute;
    inset: 0;
    border-radius: inherit;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.glow-border .glow-track {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: inherit;
}

.glow-border .glow-track::after {
    content: '';
    position: absolute;
    inset: calc(-1 * var(--glow-border-width));
    border: var(--glow-border-width) solid transparent;
    border-radius: inherit;
    background:
        radial-gradient(circle, var(--gold) 10%, transparent 20%),
        radial-gradient(circle at 40% 40%, var(--teal) 5%, transparent 15%),
        radial-gradient(circle at 60% 60%, var(--green) 10%, transparent 20%),
        radial-gradient(circle at 40% 60%, var(--deep-blue) 10%, transparent 20%),
        repeating-conic-gradient(from 236.84deg at 50% 50%,
            var(--gold) 0%,
            var(--teal) calc(25% / var(--repeating-conic-times)),
            var(--green) calc(50% / var(--repeating-conic-times)),
            var(--deep-blue) calc(75% / var(--repeating-conic-times)),
            var(--gold) calc(100% / var(--repeating-conic-times)));
    background-attachment: fixed;
    opacity: var(--glow-active);
    transition: opacity 0.3s ease;

    /* Mask: show only the border, with a conic spread following the angle */
    -webkit-mask-clip: padding-box, border-box;
    mask-clip: padding-box, border-box;
    -webkit-mask-composite: source-in;
    mask-composite: intersect;
    -webkit-mask-image:
        linear-gradient(#0000, #0000),
        conic-gradient(from calc((var(--glow-start) - var(--glow-spread)) * 1deg),
            transparent 0deg,
            #fff,
            transparent calc(var(--glow-spread) * 2deg));
    mask-image:
        linear-gradient(#0000, #0000),
        conic-gradient(from calc((var(--glow-start) - var(--glow-spread)) * 1deg),
            transparent 0deg,
            #fff,
            transparent calc(var(--glow-spread) * 2deg));
}

/* Static border (shows when glow is inactive) */
.glow-border .glow-static {
    pointer-events: none;
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    border: 1px solid rgba(255, 255, 255, 0.08);
    opacity: 1;
    transition: opacity 0.3s ease;
}

/* Outer glow blur */
.glow-border-blur {
    pointer-events: none;
    position: absolute;
    inset: 0;
    border-radius: inherit;
    filter: blur(8px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.why-card:hover .glow-border-blur {
    opacity: 0.5;
}

.glow-border-blur .glow-track::after {
    content: '';
    position: absolute;
    inset: calc(-1 * 3px);
    border: 3px solid transparent;
    border-radius: inherit;
    background:
        repeating-conic-gradient(from 236.84deg at 50% 50%,
            var(--gold) 0%,
            var(--teal) calc(25% / 5),
            var(--green) calc(50% / 5),
            var(--deep-blue) calc(75% / 5),
            var(--gold) calc(100% / 5));
    background-attachment: fixed;
    opacity: var(--glow-active);
    transition: opacity 0.3s ease;
    -webkit-mask-clip: padding-box, border-box;
    mask-clip: padding-box, border-box;
    -webkit-mask-composite: source-in;
    mask-composite: intersect;
    -webkit-mask-image:
        linear-gradient(#0000, #0000),
        conic-gradient(from calc((var(--glow-start) - 20) * 1deg),
            transparent 0deg,
            #fff,
            transparent calc(20 * 2deg));
    mask-image:
        linear-gradient(#0000, #0000),
        conic-gradient(from calc((var(--glow-start) - 20) * 1deg),
            transparent 0deg,
            #fff,
            transparent calc(20 * 2deg));
}

.why-card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--gold);
}

.why-card-icon svg {
    width: 28px;
    height: 28px;
}

.why-card h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    font-weight: 600;
}

.why-card p {
    font-size: 0.92rem;
    opacity: 0.7;
    line-height: 1.7;
}

/* ---------- APPROACH ---------- */
.section-approach {
    background: var(--bg-light);
    color: var(--text-dark);
}

.section-approach .section-label {
    color: var(--teal);
}

.section-approach .section-label::before {
    background: var(--teal);
}

.section-approach .section-title em {
    color: var(--teal);
}

.approach-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-approach .section-title {
    font-size: clamp(2.2rem, 4.5vw, 3.2rem);
}

.section-approach .section-title em {
    font-size: 1.15em;
}

.approach-lead {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-dark-muted);
    max-width: 600px;
    margin: 0 auto;
}

.approach-lead strong {
    color: var(--text-dark);
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 40px;
    margin-bottom: 40px;
}

.approach-item {
    display: flex;
    gap: 16px;
    align-items: center;
    padding: 16px;
    border-radius: 4px;
    transition: background var(--transition-fast);
    flex-direction: column;
    text-align: center;
}

.approach-item-img {
    width: 72px;
    height: 72px;
    object-fit: contain;
    border-radius: 12px;
    flex-shrink: 0;
}

.approach-item:hover {
    background: rgba(26, 138, 122, 0.06);
}

.approach-number {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--teal);
    opacity: 0.35;
    line-height: 1;
    min-width: 32px;
}

.approach-item h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-dark);
}

.approach-item p {
    font-size: 0.9rem;
    color: var(--text-dark-muted);
}

.approach-result {
    max-width: 700px;
    margin: 0 auto;
}

.result-card {
    background: linear-gradient(135deg, var(--deep-blue), var(--bg-dark-3));
    color: var(--text-light);
    padding: 32px 40px;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.result-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, var(--gold), var(--teal));
}

.result-card h3 {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.result-card p {
    font-size: 1.15rem;
    font-family: var(--font-display);
    line-height: 1.6;
    margin-bottom: 0;
    opacity: 0.85;
}

.result-card p strong {
    color: var(--gold);
    opacity: 1;
}

/* ---------- SERVICES ---------- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}

.service-card {
    background: var(--bg-dark-2);
    padding: 36px 32px;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-base);
    border-left: 3px solid transparent;
}

.service-card:hover {
    background: var(--bg-dark-3);
    border-left-color: var(--gold);
}

.service-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    opacity: 0.15;
    line-height: 1;
    margin-bottom: 16px;
}

.service-card h3 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 0.9rem;
    opacity: 0.65;
    line-height: 1.7;
}

.services-tagline {
    text-align: center;
    font-size: 1.15rem;
    margin-top: 48px;
    opacity: 0.75;
}

.services-tagline strong {
    color: var(--gold);
    opacity: 1;
}

.section-services {
    padding-bottom: 0;
    /* Remove o espaço extra no fundo da seção */
}

/* ---------- DIFFERENTIALS ---------- */
.section-differentials {
    background: var(--bg-light);
    color: var(--text-dark);
}

.section-differentials .section-label {
    color: var(--teal);
}

.section-differentials .section-label::before {
    background: var(--teal);
}

.section-differentials .section-title em {
    color: var(--teal);
}

.diff-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.diff-card {
    background: white;
    padding: 40px 32px;
    border-radius: 4px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    text-align: center;
    transition: all var(--transition-base);
}

.diff-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.diff-card-featured {
    background: linear-gradient(135deg, var(--deep-blue), var(--bg-dark-3));
    color: var(--text-light);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.diff-card-featured::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--teal));
}

.diff-card-featured:hover {
    box-shadow: 0 12px 40px rgba(26, 58, 92, 0.3);
}

.diff-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
}

.diff-card-featured .diff-icon {
    color: var(--gold);
}

.diff-icon svg {
    width: 32px;
    height: 32px;
}

.diff-card h3 {
    font-size: 1.15rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.diff-card ul {
    text-align: left;
    list-style: none;
}

.diff-card ul li {
    padding: 8px 0;
    font-size: 0.92rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    color: var(--text-dark-muted);
}

.diff-card-featured ul li {
    border-bottom-color: rgba(255, 255, 255, 0.1);
    color: var(--text-light-muted);
}

.diff-card ul li:last-child {
    border-bottom: none;
}

.diff-results {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px 40px;
    max-width: 750px;
    margin: 0 auto;
}

.diff-result-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--text-dark);
}

.diff-result-item svg {
    width: 20px;
    height: 20px;
    color: var(--teal);
}

/* ---------- TEAM ---------- */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.team-card {
    background: var(--bg-dark-2);
    border: var(--border-glass);
    transition: all var(--transition-base);
    height: 100%;
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.team-photo {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center center;
    margin-bottom: 20px;
    border: 3px solid rgba(196, 163, 90, 0.3);
    transition: border-color var(--transition-base);
}

.team-card:hover .team-photo {
    border-color: var(--gold);
}

.team-card:hover {
    transform: translateY(-4px);
    border-color: rgba(196, 163, 90, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.team-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.team-info h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.team-role {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.team-focus {
    display: block;
    font-size: 0.78rem;
    opacity: 0.55;
    margin-bottom: 14px;
}

.team-info p {
    font-size: 0.88rem;
    opacity: 0.7;
    line-height: 1.7;
    margin-bottom: 16px;
}

.team-tags {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding-top: 24px;
}

.team-tags span {
    font-size: 0.7rem;
    width: 100%;
    max-width: 200px;
    padding: 6px 8px;
    background: rgba(26, 138, 122, 0.1);
    color: var(--teal);
    border: 1px solid rgba(26, 138, 122, 0.2);
    letter-spacing: 0.5px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.team-tagline {
    text-align: center;
    font-size: 1.5rem;
    margin-top: 64px;
    opacity: 0.8;
    font-family: var(--font-display);
    font-style: italic;
}

.team-tagline strong {
    color: var(--gold);
    opacity: 1;
}

/* ---------- SECTORS ---------- */
.section-sectors {
    background: var(--bg-light);
    color: var(--text-dark);
}

.section-sectors .section-label {
    color: var(--teal);
}

.section-sectors .section-title em {
    color: var(--teal);
}

.sectors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.sector-card {
    background: white;
    padding: 36px 24px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all var(--transition-base);
}

.sector-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border-color: var(--teal);
}

.sector-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
    transition: color var(--transition-fast);
}

.sector-card:hover .sector-icon {
    color: var(--deep-blue);
}

.sector-icon svg {
    width: 32px;
    height: 32px;
}

.sector-card h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
}

/* ---------- CONTACT ---------- */
.section-contact {
    background: linear-gradient(135deg, var(--bg-dark), var(--bg-dark-2));
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-lead {
    font-size: 1.1rem;
    opacity: 0.75;
    margin-bottom: 32px;
    line-height: 1.7;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
}

.contact-item svg {
    width: 20px;
    height: 20px;
    color: var(--gold);
}

.contact-item a:hover {
    color: var(--gold);
}

.contact-form-wrapper {
    background: var(--bg-dark-2);
    border: var(--border-glass);
    padding: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    font-family: var(--font-primary);
    font-size: 0.92rem;
    transition: border-color var(--transition-fast);
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light-muted);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--gold);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* ---------- FOOTER ---------- */
.footer {
    background: var(--bg-darkest);
    padding: 64px 0 32px;
    border-top: var(--border-subtle);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-logo {
    width: 48px;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 0.9rem;
    opacity: 0.6;
    max-width: 280px;
    line-height: 1.6;
}

.footer-links h4 {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.footer-links a {
    display: block;
    font-size: 0.88rem;
    opacity: 0.6;
    padding: 6px 0;
    transition: all var(--transition-fast);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--gold);
    padding-left: 8px;
}

.footer-bottom {
    border-top: var(--border-glass);
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    opacity: 0.4;
}

/* ---------- REVEAL ANIMATIONS ---------- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(.25, .46, .45, .94),
        transform 0.8s cubic-bezier(.25, .46, .45, .94);
}

.reveal.reveal-left {
    transform: translateX(-40px);
}

.reveal.reveal-right {
    transform: translateX(40px);
}

.reveal.active {
    opacity: 1;
    transform: translate(0, 0);
}

/* Staggered children */
.why-grid .why-card:nth-child(2) {
    transition-delay: 0.1s;
}

.why-grid .why-card:nth-child(3) {
    transition-delay: 0.2s;
}

.why-grid .why-card:nth-child(4) {
    transition-delay: 0.3s;
}

.why-grid .why-card:nth-child(5) {
    transition-delay: 0.4s;
}

.why-grid .why-card:nth-child(6) {
    transition-delay: 0.5s;
}

.services-grid .service-card:nth-child(2) {
    transition-delay: 0.1s;
}

.services-grid .service-card:nth-child(3) {
    transition-delay: 0.2s;
}

.services-grid .service-card:nth-child(4) {
    transition-delay: 0.15s;
}

.services-grid .service-card:nth-child(5) {
    transition-delay: 0.25s;
}

.services-grid .service-card:nth-child(6) {
    transition-delay: 0.2s;
}

.services-grid .service-card:nth-child(7) {
    transition-delay: 0.3s;
}

.diff-grid .diff-card:nth-child(2) {
    transition-delay: 0.15s;
}

.diff-grid .diff-card:nth-child(3) {
    transition-delay: 0.3s;
}

.team-grid .team-card:nth-child(2) {
    transition-delay: 0.1s;
}

.team-grid .team-card:nth-child(3) {
    transition-delay: 0.2s;
}

.team-grid .team-card:nth-child(4) {
    transition-delay: 0.3s;
}

.sectors-grid .sector-card:nth-child(2) {
    transition-delay: 0.05s;
}

.sectors-grid .sector-card:nth-child(3) {
    transition-delay: 0.1s;
}

.sectors-grid .sector-card:nth-child(4) {
    transition-delay: 0.15s;
}

.sectors-grid .sector-card:nth-child(5) {
    transition-delay: 0.2s;
}

.sectors-grid .sector-card:nth-child(6) {
    transition-delay: 0.25s;
}

.sectors-grid .sector-card:nth-child(7) {
    transition-delay: 0.3s;
}

.sectors-grid .sector-card:nth-child(8) {
    transition-delay: 0.35s;
}

/* ---------- RESPONSIVE ---------- */

/* Tablet paisagem / telas intermediárias */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px 0;
    }

    .nav-links {
        gap: 16px;
    }

    .nav-links a {
        font-size: 0.8rem;
    }

    .about-grid {
        grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
        gap: 32px;
    }

    .about-illustration {
        max-width: 360px;
        margin: 0 auto;
    }

    .about-image img {
        height: 320px;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .approach-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .diff-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .team-card {
        padding: 24px;
    }

    .sectors-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-content {
        grid-template-columns: 1.5fr 1fr 1fr;
        gap: 32px;
    }
}

/* Tablet / navegador redimensionado */
@media (max-width: 960px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(6, 14, 24, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 24px;
        transition: right var(--transition-base);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.1rem;
    }

    .hamburger {
        display: flex;
    }

    .diff-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .team-card {
        padding: 32px;
    }

    .sectors-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* Tablet retrato / janela pequena */
@media (max-width: 768px) {
    :root {
        --section-padding: 64px 0;
    }

    .container {
        padding: 0 28px;
    }

    .hero {
        min-height: auto;
        height: 100svh;
        height: 100vh;
    }

    .hero-bg {
        background: none;
    }

    .hero-canvas {
        opacity: 0.7;
    }

    .hero-overlay {
        background: linear-gradient(180deg,
                rgba(6, 14, 24, 0.45) 0%,
                rgba(6, 14, 24, 0.25) 40%,
                rgba(6, 14, 24, 0.60) 100%);
    }

    .hero-logo {
        width: 70px;
    }

    .hero-title {
        font-size: clamp(1.6rem, 5.5vw, 2.5rem);
    }

    .desktop-br {
        display: none;
    }

    .hero-description {
        font-size: 1rem;
    }

    .about-image-accent {
        display: none;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .about-text {
        text-align: center;
        align-items: center;
        margin-bottom: 0;
    }

    .about-illustration {
        order: 1;
        max-width: 320px;
        margin: 32px auto 0;
    }

    .approach-illustration {
        max-width: 220px;
        margin: 20px auto 0;
    }

    .services-illustration {
        max-width: 260px;
        margin: 24px auto 0;
    }

    .about-highlights {
        flex-direction: column;
        align-items: center;
    }

    .highlight-item {
        justify-content: center;
        text-align: left;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .why-card {
        padding: 24px 18px;
    }

    .approach-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-card {
        padding: 24px 20px;
    }

    .sectors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .sector-card {
        padding: 24px 16px;
    }

    .contact-form-wrapper {
        padding: 24px;
    }

    .diff-results {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        margin: 0;
        gap: 16px;
    }

    .diff-result-item {
        align-items: flex-start;
    }

    .diff-result-item svg {
        margin-top: 2px;
        flex-shrink: 0;
    }

    .section-title {
        font-size: clamp(1.4rem, 6vw, 2.5rem);
    }

    .about-text .section-title {
        white-space: normal;
    }
}

/* Celular */
@media (max-width: 480px) {
    :root {
        --section-padding: 44px 0;
    }

    .section-header {
        margin-bottom: 28px;
    }

    .section-title {
        font-size: clamp(1.25rem, 5.5vw, 1.8rem);
        margin-bottom: 12px;
    }

    .section-subtitle {
        font-size: 0.9rem;
    }

    .section-label {
        font-size: 0.7rem;
        gap: 10px;
        margin-bottom: 12px;
    }

    .section-label::before,
    .section-label::after {
        width: 18px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 280px;
        padding: 12px 28px;
        font-size: 0.82rem;
    }

    /* About compact */
    .about-illustration {
        max-width: 280px;
        margin-top: 32px;
    }

    .about-text p {
        font-size: 0.9rem;
        line-height: 1.7;
        margin-bottom: 12px;
    }

    .about-highlights {
        margin-top: 20px;
        margin-bottom: 0;
        gap: 14px;
    }

    .highlight-icon {
        width: 42px;
        height: 42px;
        min-width: 42px;
    }

    .highlight-icon svg {
        width: 20px;
        height: 20px;
    }

    .highlight-item strong {
        font-size: 0.88rem;
    }

    .highlight-item span {
        font-size: 0.8rem;
    }

    /* Why cards compact */
    .why-card {
        padding: 16px 12px;
    }

    .why-card-icon {
        width: 32px;
        height: 32px;
        margin-bottom: 10px;
    }

    .why-card-icon svg {
        width: 18px;
        height: 18px;
    }

    .why-card h3 {
        font-size: 0.88rem;
        margin-bottom: 5px;
    }

    .why-card p {
        font-size: 0.78rem;
        line-height: 1.45;
    }

    /* Approach compact */
    .approach-item {
        padding: 10px;
    }

    .approach-number {
        font-size: 1.15rem;
        min-width: 26px;
    }

    .approach-item h4 {
        font-size: 0.9rem;
    }

    .approach-item p {
        font-size: 0.8rem;
    }

    .approach-lead {
        font-size: 0.92rem;
    }

    .approach-illustration {
        display: none;
    }

    .result-card {
        padding: 22px 18px;
    }

    .result-card p {
        font-size: 1rem;
    }

    /* Services compact horizontal */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1px;
    }

    .service-card {
        padding: 16px 18px;
        display: grid;
        grid-template-columns: auto 1fr;
        grid-template-areas:
            "num title"
            "num desc";
        column-gap: 14px;
        align-items: center;
    }

    .service-number {
        grid-area: num;
        font-size: 1.5rem;
        margin-bottom: 0;
        min-width: 32px;
    }

    .service-card h3 {
        grid-area: title;
        font-size: 0.9rem;
        margin-bottom: 2px;
    }

    .service-card p {
        grid-area: desc;
        font-size: 0.78rem;
        line-height: 1.5;
    }

    .services-tagline {
        font-size: 0.95rem;
        margin-top: 16px;
    }

    .section-services {
        padding-bottom: 24px;
    }

    .services-illustration {
        display: none;
    }

    /* Diff cards compact - horizontal layout */
    .diff-grid {
        gap: 10px;
    }

    .diff-card {
        padding: 18px 16px;
        display: grid;
        grid-template-columns: 36px 120px 1fr;
        align-items: center;
        gap: 0 14px;
        text-align: left;
    }

    .diff-card h3 {
        font-size: 0.92rem;
        margin-bottom: 8px;
    }

    .diff-card ul li {
        font-size: 0.8rem;
        padding: 3px 0 3px 12px;
        border-bottom: none;
        position: relative;
    }

    .diff-card ul li::before {
        content: "·";
        color: var(--teal);
        font-weight: 700;
        position: absolute;
        left: 0;
    }

    .diff-card-featured ul li::before {
        color: var(--gold);
    }

    .diff-icon {
        width: 36px;
        height: 36px;
        min-width: 36px;
        margin: 0;
        align-self: center;
    }

    .diff-icon svg {
        width: 20px;
        height: 20px;
    }

    .diff-results {
        gap: 8px 20px;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        margin: 0 auto;
    }

    .diff-result-item {
        font-size: 0.78rem;
    }

    .diff-result-item svg {
        width: 16px;
        height: 16px;
    }

    /* Team compact */
    .team-card {
        padding: 22px 18px;
    }

    .team-info h3 {
        font-size: 1rem;
    }

    .team-info p {
        font-size: 0.82rem;
        line-height: 1.6;
        margin-bottom: 10px;
    }

    .team-role {
        font-size: 0.75rem;
    }

    .team-focus {
        font-size: 0.72rem;
        margin-bottom: 10px;
    }

    .team-tags {
        padding-top: 16px;
        gap: 8px;
        flex-direction: column;
        align-items: center;
    }

    .team-tags span {
        font-size: 0.7rem;
        width: 210px;
        padding: 5px 12px;
    }

    .team-tagline {
        font-size: 1.1rem;
        margin-top: 32px;
    }

    /* Sectors compact */
    .sectors-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .sector-card {
        padding: 16px 10px;
    }

    .sector-icon {
        width: 30px;
        height: 30px;
        margin: 0 auto 8px;
    }

    .sector-icon svg {
        width: 20px;
        height: 20px;
    }

    .sector-card h4 {
        font-size: 0.76rem;
    }

    /* Contact compact */
    .contact-form-wrapper {
        padding: 20px;
    }

    .contact-lead {
        font-size: 0.95rem;
        margin-bottom: 24px;
    }

    .form-group input,
    .form-group textarea {
        padding: 12px 14px;
        font-size: 0.88rem;
    }

    /* Footer compact */
    .footer {
        padding: 36px 0 20px;
    }

    .footer-content {
        margin-bottom: 28px;
        gap: 24px;
    }

    .footer-brand p {
        font-size: 0.82rem;
    }

    .footer-links h4 {
        font-size: 0.75rem;
        margin-bottom: 14px;
    }

    .footer-links a {
        font-size: 0.82rem;
        padding: 4px 0;
    }
}