/* ============================================
   CHARJA PARTNERS – Premium Recruitment Website
   ============================================ */

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

:root {
    --black: #1c3a4a;
    --white: #ffffff;
    --off-white: #f8f7f4;
    --light-gray: #f2f1ee;
    --mid-gray: #e0dfdb;
    --text-gray: #6b6b6b;
    --text-dark: #1c3a4a;
    --accent: #1c3a4a;
    --gold: #b8976a;
    --radius: 12px;
    --radius-lg: 20px;
    --radius-sm: 8px;
    --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-slow: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    color: var(--text-dark);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

@media (min-width: 768px) {
    .container { padding: 0 40px; }
}

@media (min-width: 1200px) {
    .container { padding: 0 20px; }
}

/* --- REVEAL ANIMATIONS --- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s,
                transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s;
}

.reveal-delay.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- NAVIGATION --- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    border-bottom: 1px solid transparent;
    transition: all var(--transition);
}

.nav--scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.06);
}

.nav__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

@media (min-width: 768px) {
    .nav__inner { padding: 0 40px; }
}

@media (min-width: 1200px) {
    .nav__inner { padding: 0 20px; }
}

.nav__logo {
    display: flex;
    align-items: center;
}

.nav__logo-img {
    height: 35px;
    width: auto;
    transition: opacity var(--transition);
}

.nav__logo-img--dark {
    opacity: 1;
}

.nav__logo-img--light {
    opacity: 0;
    position: absolute;
}

.nav--scrolled .nav__logo-img--dark {
    opacity: 0;
    position: absolute;
}

.nav--scrolled .nav__logo-img--light {
    opacity: 1;
    position: static;
}

.nav__links {
    display: none;
    align-items: center;
    gap: 36px;
}

@media (min-width: 900px) {
    .nav__links { display: flex; }
}

.nav__link {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition);
    letter-spacing: -0.01em;
}

.nav__link:hover,
.nav__link--active {
    color: var(--white);
}

.nav--scrolled .nav__link {
    color: var(--text-gray);
}

.nav--scrolled .nav__link:hover,
.nav--scrolled .nav__link--active {
    color: var(--black);
}

.nav__actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav__actions .btn {
    display: none;
}

@media (min-width: 900px) {
    .nav__actions .btn { display: inline-flex; }
    .nav__hamburger { display: none !important; }
}

.nav__hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    position: relative;
    z-index: 1002;
}

.nav__hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

.nav--scrolled .nav__hamburger span {
    background: var(--black);
}

.nav__hamburger.active span {
    background: var(--white);
}

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

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

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

.nav__mobile {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--black);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.nav__mobile.active {
    opacity: 1;
    visibility: visible;
}

.nav__mobile-link {
    padding: 16px 0;
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 500;
    font-style: italic;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: -0.02em;
    transition: color 0.3s ease, transform 0.3s ease;
    transform: translateY(10px);
    opacity: 0;
}

.nav__mobile.active .nav__mobile-link {
    transform: translateY(0);
    opacity: 1;
}

.nav__mobile.active .nav__mobile-link:nth-child(1) { transition-delay: 0.05s; }
.nav__mobile.active .nav__mobile-link:nth-child(2) { transition-delay: 0.1s; }
.nav__mobile.active .nav__mobile-link:nth-child(3) { transition-delay: 0.15s; }
.nav__mobile.active .nav__mobile-link:nth-child(4) { transition-delay: 0.2s; }
.nav__mobile.active .nav__mobile-link:nth-child(5) { transition-delay: 0.25s; }

.nav__mobile-link:hover {
    color: var(--white);
}

.nav__mobile .btn {
    margin-top: 32px;
    font-family: var(--font-sans);
    font-style: normal;
    font-size: 0.9375rem;
    padding: 16px 48px;
    border-radius: 100px;
    background: var(--gold);
    color: var(--white);
    border: none;
    width: 60%;
    max-width: 360px;
    min-width: 240px;
    align-self: center;
    transform: translateY(10px);
    opacity: 0;
    transition: all 0.3s ease;
    transition-delay: 0.3s;
}

.nav__mobile.active .btn {
    transform: translateY(0);
    opacity: 1;
}

.nav__mobile .btn:hover {
    background: #a6845c;
}

/* --- BUTTONS --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: -0.01em;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    border-radius: 100px;
    white-space: nowrap;
}

.btn--sm {
    padding: 10px 24px;
    font-size: 0.8125rem;
}

.btn--lg {
    padding: 16px 32px;
    font-size: 0.9375rem;
}

.btn--primary {
    background: var(--gold);
    color: var(--white);
}

.btn--primary:hover {
    background: #a6845c;
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(184, 151, 106, 0.35);
}

.btn--outline {
    background: transparent;
    color: var(--black);
    border: 1.5px solid var(--black);
}

.btn--outline:hover {
    background: var(--black);
    color: var(--white);
}

.btn--outline-light {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
}

.btn--outline-light:hover {
    background: var(--white);
    color: var(--black);
}

.btn--full {
    width: 100%;
}

/* --- HERO --- */
.hero {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        135deg,
        rgba(28, 58, 74, 0.92) 0%,
        rgba(28, 58, 74, 0.78) 50%,
        rgba(28, 58, 74, 0.65) 100%
    );
}

.hero__container {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-top: 120px;
    padding-bottom: 80px;
}

@media (min-width: 768px) {
    .hero__container {
        padding-top: 140px;
        padding-bottom: 100px;
    }
}

.hero__content {
    max-width: 620px;
    margin-left: 0;
}

.hero__label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--gold);
    margin-bottom: 24px;
    text-transform: uppercase;
}

.hero__label::before {
    content: '';
    display: inline-block;
    width: 32px;
    height: 1.5px;
    background: var(--gold);
}

.hero__title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: var(--white);
    margin-bottom: 24px;
}

.hero__title em {
    font-style: italic;
    color: #ffffff;
}

.hero__subtitle {
    font-size: 1.0625rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 16px;
    max-width: 560px;
}

.hero__body {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 36px;
    max-width: 520px;
}

.hero__ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Floating card */
.hero__float-card {
    margin-top: 48px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius);
    padding: 24px;
    max-width: 400px;
}

.hero__float-quote {
    font-size: 0.875rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 16px;
    font-style: italic;
}

.hero__float-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero__float-avatar-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.hero__float-author strong {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--white);
}

.hero__float-author span {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
}

/* --- SECTION DEFAULTS --- */
.section {
    padding: 100px 0;
}

@media (min-width: 768px) {
    .section { padding: 120px 0; }
}

.section--light {
    background: var(--off-white);
}

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

.section--dark {
    background: var(--black);
    background-image: linear-gradient(rgba(28, 58, 74, 0.6), rgba(28, 58, 74, 0.6)), url('media/bristol-clifton-bridge.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

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

.section__header {
    text-align: left;
    max-width: 720px;
    margin: 0 0 64px;
}

.section__label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    color: var(--gold);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.section__label::before {
    content: '';
    display: inline-block;
    width: 32px;
    height: 1.5px;
    background: var(--gold);
}

.section__label--light {
    color: var(--gold);
}

.section__label--light::before {
    background: var(--gold);
}

.section__title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.section__title em {
    font-style: italic;
    color: #155576;
}

.section__title--light {
    color: var(--white);
}

.section__title--light em {
    color: var(--white);
}

.section__intro {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--text-gray);
}

.section__intro--light {
    color: rgba(255, 255, 255, 0.6);
}

.section__intro--sm {
    font-size: 0.9375rem;
    margin-top: 12px;
}

.section__header--light,
.section__header--centered {
    color: inherit;
    text-align: center;
    margin: 0 auto 64px;
}

/* --- INTELLIGENCE SECTION --- */
.intel__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 48px;
}

@media (min-width: 768px) {
    .intel__grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

.intel__card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    border: 1px solid var(--mid-gray);
    transition: all var(--transition);
}

.intel__card:hover {
    border-color: var(--black);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

.intel__card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--off-white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--black);
}

.intel__card-title {
    font-family: var(--font-sans);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.intel__list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.intel__list li {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--text-gray);
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.intel__list li svg {
    flex-shrink: 0;
    color: var(--black);
    margin-top: 3px;
    opacity: 0.6;
}

.intel__closing {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-gray);
    font-style: italic;
}

.intel__closing strong {
    color: var(--black);
    font-style: normal;
}

/* --- COMPLEXITY SECTION --- */
.complexity__sub {
    text-align: left;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-gray);
    margin-bottom: 40px;
}

.complexity__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .complexity__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 28px;
    }
}

.complexity__card {
    background: var(--off-white);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    border: 1px solid transparent;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.complexity__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--black);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-slow);
}

.complexity__card:hover::before {
    transform: scaleX(1);
}

.complexity__card:hover {
    border-color: var(--mid-gray);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.04);
}

.complexity__card-num {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-gray);
    margin-bottom: 20px;
    letter-spacing: 0.05em;
}

.complexity__card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--white);
    border: 1px solid var(--mid-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--black);
    transition: all var(--transition);
}

.complexity__card:hover .complexity__card-icon {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

.complexity__card-title {
    font-family: var(--font-sans);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.complexity__card p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--text-gray);
}

/* --- FINANCE SECTION (DARK) --- */
.finance__where {
    max-width: 960px;
    margin: 0 auto 64px;
}

.finance__where-title,
.construction__where-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 40px;
    text-align: center;
    font-style: italic;
}

.construction__where-title {
    color: var(--black);
}

/* Where we operate - icon cards */
.finance__where-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 32px;
}

@media (min-width: 768px) {
    .finance__where-cards {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
}

.finance__where-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    padding: 32px 28px;
    text-align: center;
    transition: all var(--transition);
}

.finance__where-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

.finance__where-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--gold);
}

.finance__where-card-title {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

.finance__where-card-desc {
    font-size: 0.875rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.55);
}

/* Legacy list styles kept for construction section */
.finance__where-grid,
.construction__where-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 20px;
}

.finance__where-item,
.construction__where-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.9375rem;
    line-height: 1.6;
}

.finance__where-item {
    color: rgba(255, 255, 255, 0.7);
}

.finance__where-item svg {
    color: rgba(255, 255, 255, 0.4);
    flex-shrink: 0;
    margin-top: 3px;
}

.construction__where-item {
    color: var(--text-gray);
}

.construction__where-item svg {
    color: var(--black);
    flex-shrink: 0;
    margin-top: 3px;
}

/* Construction where cards (light theme) */
.construction__where-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 32px;
}

@media (min-width: 600px) {
    .construction__where-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (min-width: 900px) {
    .construction__where-cards {
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }
}

.construction__where-card {
    background: var(--white);
    border: 1px solid var(--mid-gray);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    transition: all var(--transition);
}

.construction__where-card:hover {
    border-color: var(--black);
    box-shadow: 0 8px 32px rgba(28, 58, 74, 0.06);
    transform: translateY(-3px);
}

.construction__where-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--off-white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--black);
}

.construction__where-card-title {
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.construction__where-card-desc {
    font-size: 0.8125rem;
    line-height: 1.6;
    color: var(--text-gray);
}

.finance__where-note,
.construction__where-note {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    margin-top: 20px;
}

.construction__where-note {
    color: var(--text-gray);
}

.finance__who,
.construction__who {
    text-align: left;
    margin-bottom: 40px;
}

.finance__who-heading,
.construction__who-heading {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 600;
    font-style: italic;
}

.finance__who-heading {
    color: var(--white);
}

.construction__who-heading {
    color: var(--black);
}

/* Accordion block icons */
.finance__block-header-inner,
.construction__block-header-inner {
    display: flex;
    align-items: center;
    gap: 20px;
}

.finance__block-icon,
.construction__block-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.finance__block-icon {
    background: rgba(255, 255, 255, 0.08);
    color: var(--gold);
}

.construction__block-icon {
    background: var(--white);
    border: 1px solid var(--mid-gray);
    color: var(--black);
}

/* Accordion blocks */
.finance__block,
.construction__block {
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
    transition: all var(--transition);
}

.finance__block {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.construction__block {
    background: var(--off-white);
    border: 1px solid var(--mid-gray);
}

.finance__block:hover,
.construction__block:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

.construction__block:hover {
    border-color: var(--black);
}

.finance__block-header,
.construction__block-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 32px;
    cursor: pointer;
    transition: background var(--transition);
    user-select: none;
}

.finance__block-header:hover {
    background: rgba(255, 255, 255, 0.03);
}

.construction__block-header:hover {
    background: rgba(0, 0, 0, 0.02);
}

.finance__block-title,
.construction__block-title {
    font-family: var(--font-sans);
    font-size: 1.0625rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 4px;
}

.finance__block-title {
    color: var(--white);
}

.construction__block-title {
    color: var(--black);
}

.finance__block-subtitle,
.construction__block-subtitle {
    font-size: 0.8125rem;
}

.finance__block-subtitle {
    color: rgba(255, 255, 255, 0.5);
}

.construction__block-subtitle {
    color: var(--text-gray);
}

.finance__block-toggle,
.construction__block-toggle {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}

.finance__block-toggle {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.6);
}

.construction__block-toggle {
    background: var(--mid-gray);
    color: var(--text-gray);
}

.finance__block-toggle.active,
.construction__block-toggle.active {
    transform: rotate(180deg);
}

.finance__block-body,
.construction__block-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.finance__block-body.open,
.construction__block-body.open {
    max-height: 1200px;
}

.finance__block-content,
.construction__block-content {
    padding: 0 32px 32px;
}

.finance__block-content p,
.construction__block-content p {
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 16px;
}

.finance__block-content p {
    color: rgba(255, 255, 255, 0.7);
}

.construction__block-content p {
    color: var(--text-gray);
}

.finance__block-quote {
    font-size: 1rem !important;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9) !important;
    border-left: 3px solid rgba(255, 255, 255, 0.2);
    padding-left: 20px;
}

.finance__block-content strong,
.construction__block-content strong {
    color: var(--white);
}

.construction__block-content strong {
    color: var(--black);
}

.finance__block-content ul,
.construction__block-content ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
    padding-left: 0;
}

.finance__block-content ul li,
.construction__block-content ul li {
    font-size: 0.9375rem;
    line-height: 1.6;
    padding-left: 18px;
    position: relative;
}

.finance__block-content ul li {
    color: rgba(255, 255, 255, 0.65);
}

.construction__block-content ul li {
    color: var(--text-gray);
}

.finance__block-content ul li::before,
.construction__block-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
}

.finance__block-content ul li::before {
    background: rgba(255, 255, 255, 0.3);
}

.construction__block-content ul li::before {
    background: var(--black);
}

.finance__block-callout {
    font-weight: 600 !important;
    color: rgba(255, 255, 255, 0.9) !important;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
    border-left: 3px solid rgba(255, 255, 255, 0.2);
}

.finance__placements,
.construction__placements {
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 8px;
}

.construction__placements {
    border-top-color: var(--mid-gray);
}

.finance__placements h5,
.construction__placements h5 {
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.finance__placements h5 {
    color: rgba(255, 255, 255, 0.5);
}

.construction__placements h5 {
    color: var(--text-gray);
}

.finance__badge,
.construction__badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 100px;
    margin-top: 12px;
}

.finance__badge {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.6);
}

.construction__badge {
    background: var(--mid-gray);
    color: var(--text-gray);
}

/* --- CONSTRUCTION LAUNCH BADGE --- */
.construction__launch-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 8px 20px;
    border-radius: 100px;
    background: var(--black);
    color: var(--white);
    margin-bottom: 24px;
}

.construction__where {
    max-width: 800px;
    margin: 0 auto 64px;
}

/* --- HOW WE WORK --- */
.how__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 768px) {
    .how__grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

.how__col {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    border: 1px solid var(--mid-gray);
}

.how__col--candidate {
    display: flex;
    flex-direction: column;
}

.how__col-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    font-style: italic;
    color: var(--black);
    margin-bottom: 32px;
    letter-spacing: -0.02em;
}

.how__steps {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.how__step {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid var(--light-gray);
}

.how__step:last-child {
    border-bottom: none;
}

.how__step-num {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-gray);
    letter-spacing: 0.05em;
    padding-top: 2px;
    flex-shrink: 0;
}

.how__step-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--off-white);
    border: 1px solid var(--mid-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--black);
    transition: all var(--transition);
}

.how__step:hover .how__step-icon {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

.how__step h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
    letter-spacing: -0.02em;
}

.how__step p {
    font-size: 0.9375rem;
    color: var(--text-gray);
    line-height: 1.6;
}

.how__candidate-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
}

.how__candidate-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--text-gray);
}

.how__candidate-list li svg {
    flex-shrink: 0;
    color: var(--black);
    margin-top: 2px;
}

.how__cta {
    margin-top: 32px;
}

/* --- CONTACT --- */
.contact__header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 80px;
    padding-bottom: 64px;
    border-bottom: 1px solid var(--mid-gray);
}

.contact__title {
    font-family: var(--font-serif);
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.contact__title em {
    font-style: italic;
    color: #155576;
}

.contact__intro {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--text-gray);
}

.contact__header-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 32px;
    flex-wrap: wrap;
}

.contact__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .contact__grid {
        grid-template-columns: 1.2fr 1fr;
        gap: 60px;
    }
}

.contact__form-wrap {
    background: var(--off-white);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.contact__form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact__form-intro {
    padding-bottom: 18px;
    margin-bottom: 6px;
    border-bottom: 1px solid rgba(28, 58, 74, 0.12);
}

.contact__form-intro-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    font-style: italic;
    line-height: 1.2;
    margin-bottom: 16px;
}

.contact__form-intro-icon {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(184, 151, 106, 0.14);
    color: var(--black);
}

.contact__form-intro p {
    color: var(--dark-gray);
    line-height: 1.6;
    margin-bottom: 0;
}

.contact__form-intro + .contact__form {
    padding-top: 10px;
}

.contact__form-wrap {
    padding: 44px;
}

.contact__form {
    gap: 22px;
}

.form__group textarea {
    height: 250px;
    min-height: 250px;
    resize: vertical;
}

.form__group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form__group label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: -0.01em;
}

.form__group input,
.form__group select,
.form__group textarea {
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    padding: 14px 16px;
    border: 1.5px solid var(--mid-gray);
    border-radius: var(--radius-sm);
    background: var(--white);
    color: var(--text-dark);
    transition: border-color var(--transition);
    outline: none;
}

.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
    border-color: var(--black);
}

.form__group input::placeholder,
.form__group textarea::placeholder {
    color: #b0b0b0;
}

.form__group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%236b6b6b' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form__group textarea {
    resize: vertical;
    min-height: 100px;
}

.contact__details {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding-top: 20px;
}

.contact__person-card {
    padding-bottom: 28px;
    border-bottom: 1px solid var(--mid-gray);
}

.contact__person-card:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.contact__person {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.contact__avatar-img {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    object-fit: cover;
}

.contact__avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--black);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.contact__person strong {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.contact__person span {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.contact__info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact__info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9375rem;
    color: var(--text-dark);
    transition: color var(--transition);
}

.contact__info-item:hover {
    color: var(--text-gray);
}

.contact__info-item svg {
    flex-shrink: 0;
    color: var(--text-gray);
}

.contact__cta-buttons {
    margin-top: auto;
}

/* --- FOOTER --- */
.footer {
    background: var(--black);
    color: var(--white);
    padding: 80px 0 40px;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

@media (min-width: 768px) {
    .footer__grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 40px;
    }
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 16px;
}

.footer__logo-img {
    height: 28px;
    width: auto;
}

.footer__desc {
    font-size: 0.8125rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.5);
}

.footer__col h4 {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 20px;
}

.footer__col a {
    display: block;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 12px;
    transition: color var(--transition);
}

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

.footer__bottom {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media (min-width: 768px) {
    .footer__bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.footer__bottom p {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.35);
}

.footer__legal {
    display: flex;
    gap: 24px;
}

.footer__legal a {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.35);
    transition: color var(--transition);
}

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

/* --- FORM SUCCESS STATE --- */
.contact__form--success {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    text-align: center;
}

.form__success {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.form__success-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--black);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.form__success h3 {
    font-size: 1.25rem;
    font-weight: 700;
}

.form__success p {
    font-size: 0.9375rem;
    color: var(--text-gray);
    max-width: 300px;
}

/* --- SMOOTH SCROLL PROGRESS BAR --- */
.scroll-progress {
    position: fixed;
    top: 72px;
    left: 0;
    height: 2px;
    background: var(--black);
    z-index: 998;
    transition: width 0.1s linear;
}

/* --- STAGGER CHILDREN --- */
.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }

/* --- SELECTION COLOR --- */
::selection {
    background: var(--black);
    color: var(--white);
}

/* --- RESPONSIVE FINE-TUNING --- */
@media (max-width: 480px) {
    .hero__title {
        font-size: 2.25rem;
    }

    .section__title {
        font-size: 1.75rem;
    }

    .contact__title {
        font-size: 1.75rem;
    }

    .intel__card,
    .complexity__card,
    .how__col,
    .contact__form-wrap {
        padding: 28px 24px;
    }

    .finance__block-header,
    .construction__block-header {
        padding: 20px 20px;
    }

    .finance__block-content,
    .construction__block-content {
        padding: 0 20px 24px;
    }
}

/* --- SCROLL TO TOP --- */
.scroll-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 9000;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--mid-gray);
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
    box-shadow: 0 4px 20px rgba(28, 58, 74, 0.2);
}

/* --- COOKIE CONSENT --- */
.cookie-consent {
    position: fixed;
    bottom: 24px;
    left: 24px;
    right: 24px;
    z-index: 10000;
    display: none;
    justify-content: center;
}

.cookie-consent.active {
    display: flex;
    animation: cookieSlideUp 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes cookieSlideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.cookie-consent__inner {
    background: var(--white);
    border: 1px solid var(--mid-gray);
    border-radius: var(--radius-lg);
    padding: 20px 28px;
    display: flex;
    align-items: center;
    gap: 24px;
    max-width: 720px;
    width: 100%;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
}

.cookie-consent__text {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    flex: 1;
}

.cookie-consent__text svg {
    flex-shrink: 0;
    color: var(--gold);
    margin-top: 2px;
}

.cookie-consent__text p {
    font-size: 0.8125rem;
    line-height: 1.6;
    color: var(--text-gray);
    margin: 0;
}

.cookie-consent__text a {
    color: var(--black);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cookie-consent__actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

.cookie-consent__btn {
    padding: 10px 20px;
    border-radius: 100px;
    font-size: 0.8125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    border: none;
}

.cookie-consent__btn--accept {
    background: var(--gold);
    color: var(--white);
}

.cookie-consent__btn--accept:hover {
    background: #a6845c;
}

.cookie-consent__btn--decline {
    background: transparent;
    color: var(--text-gray);
    border: 1px solid var(--mid-gray);
}

.cookie-consent__btn--decline:hover {
    background: var(--off-white);
    color: var(--black);
}

@media (max-width: 600px) {
    .cookie-consent__inner {
        flex-direction: column;
        align-items: stretch;
        padding: 20px;
        gap: 16px;
    }

    .cookie-consent__actions {
        justify-content: stretch;
    }

    .cookie-consent__btn {
        flex: 1;
        text-align: center;
    }
}
