/* ==========================================================================
   ABOUT & CONTACT PAGES — v5.36.0
   Microsoft Fluent Design — Matches fp-/sv- design token system
   Namespaces: ab- (about), ct- (contact)
   ========================================================================== */

/* ==========================================================================
   SHARED TOKENS
   ========================================================================== */
.ab-modern,
.ct-modern {
    --pg-blue: #0078D4;
    --pg-blue-dark: #005A9E;
    --pg-navy: #002050;
    --pg-navy-light: #003d7a;
    --pg-accent: #10A37F;
    --pg-text: #323130;
    --pg-text-secondary: #605E5C;
    --pg-border: #E1DFDD;
    --pg-bg-light: #F3F2F1;
    --pg-white: #FFFFFF;
    --pg-radius: 8px;
    --pg-radius-lg: 12px;
    --pg-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    --pg-shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.08);
    --pg-transition: 0.3s ease;
    --pg-font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-family: var(--pg-font);
    color: var(--pg-text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* --- Shared Container --- */
.ab-container,
.ct-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

@media (min-width: 768px) {

    .ab-container,
    .ct-container {
        padding: 0 40px;
    }
}

@media (min-width: 1200px) {

    .ab-container,
    .ct-container {
        padding: 0 32px;
    }
}

/* --- Shared Eyebrow --- */
.ab-eyebrow,
.ct-eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--pg-blue);
    margin-bottom: 16px;
}

.ab-eyebrow--accent,
.ct-eyebrow--accent {
    color: var(--pg-accent);
}

/* --- Shared Section --- */
.ab-section,
.ct-section {
    padding: 100px 0;
}

.ab-section--gray,
.ct-section--gray {
    background-color: var(--pg-bg-light);
}

.ab-section--dark {
    background: linear-gradient(135deg, var(--pg-navy) 0%, var(--pg-navy-light) 100%);
    color: var(--pg-white);
}

/* --- Shared Section Header --- */
.ab-section-header,
.ct-section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 64px;
}

.ab-section-header__title,
.ct-section-header__title {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 600;
    line-height: 1.2;
    color: var(--pg-navy);
    margin: 0 0 16px;
}

.ab-section-header__desc,
.ct-section-header__desc {
    font-size: 18px;
    line-height: 1.6;
    color: var(--pg-text-secondary);
    margin: 0;
}

.ab-section-header--light .ab-section-header__title {
    color: var(--pg-white);
}

.ab-section-header--light .ab-section-header__desc {
    color: rgba(255, 255, 255, 0.8);
}

.ab-section--dark .ab-section-header__title {
    color: var(--pg-white);
}

.ab-section--dark .ab-section-header__desc {
    color: rgba(255, 255, 255, 0.8);
}

/* --- Shared Buttons --- */
.ab-btn,
.ct-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    font-family: var(--pg-font);
    border-radius: 6px;
    text-decoration: none;
    transition: all var(--pg-transition);
    border: 2px solid transparent;
    cursor: pointer;
    line-height: 1;
}

.ab-btn--primary,
.ct-btn--primary {
    background: var(--pg-blue);
    color: var(--pg-white);
    border-color: var(--pg-blue);
}

.ab-btn--primary:hover,
.ct-btn--primary:hover {
    background: var(--pg-blue-dark);
    border-color: var(--pg-blue-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0, 120, 212, 0.3);
}

.ab-btn--white,
.ct-btn--white {
    background: var(--pg-white);
    color: var(--pg-navy);
    border-color: var(--pg-white);
}

.ab-btn--white:hover,
.ct-btn--white:hover {
    background: var(--pg-bg-light);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.ab-btn--outline-white,
.ct-btn--outline-white {
    background: transparent;
    color: var(--pg-white);
    border-color: rgba(255, 255, 255, 0.4);
}

.ab-btn--outline-white:hover,
.ct-btn--outline-white:hover {
    border-color: var(--pg-white);
    background: rgba(255, 255, 255, 0.1);
}

.ct-btn--full {
    width: 100%;
    justify-content: center;
}

/* ==========================================================================
   ABOUT PAGE — HERO
   ========================================================================== */
.ab-hero {
    position: relative;
    padding: 160px 0 120px;
    background: linear-gradient(135deg, var(--pg-navy) 0%, var(--pg-navy-light) 60%, var(--pg-blue) 100%);
    color: var(--pg-white);
    overflow: hidden;
}

.ab-hero__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 75% 25%, rgba(0, 120, 212, 0.25) 0%, transparent 50%),
        radial-gradient(circle at 25% 75%, rgba(16, 163, 127, 0.15) 0%, transparent 40%);
    pointer-events: none;
}

.ab-hero__inner {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.ab-hero .ab-eyebrow {
    color: rgba(255, 255, 255, 0.7);
}

.ab-hero__title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 24px;
    color: var(--pg-white);
}

.ab-hero__subtitle {
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    max-width: 650px;
}

/* ==========================================================================
   ABOUT — SPLIT (Mission + Values)
   ========================================================================== */
.ab-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.ab-split__title {
    font-size: clamp(28px, 3.5vw, 36px);
    font-weight: 600;
    color: var(--pg-navy);
    margin: 0 0 20px;
    line-height: 1.2;
}

.ab-split__desc {
    font-size: 17px;
    color: var(--pg-text-secondary);
    line-height: 1.7;
    margin: 0 0 16px;
}

/* Values Grid */
.ab-values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.ab-value-card {
    background: var(--pg-white);
    border: 1px solid var(--pg-border);
    border-radius: var(--pg-radius-lg);
    padding: 24px;
    transition: all var(--pg-transition);
}

.ab-value-card:hover {
    border-color: var(--pg-blue);
    box-shadow: var(--pg-shadow-hover);
    transform: translateY(-2px);
}

.ab-value-card__icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 120, 212, 0.08);
    border-radius: var(--pg-radius);
    color: var(--pg-blue);
    margin-bottom: 12px;
}

.ab-value-card h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--pg-navy);
    margin: 0 0 6px;
}

.ab-value-card p {
    font-size: 14px;
    color: var(--pg-text-secondary);
    margin: 0;
    line-height: 1.5;
}

/* ==========================================================================
   ABOUT — STATS
   ========================================================================== */
.ab-stats {
    background: var(--pg-white);
    border-top: 1px solid var(--pg-border);
    border-bottom: 1px solid var(--pg-border);
    padding: 48px 0;
}

.ab-stats__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    text-align: center;
}

.ab-stat__number {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: var(--pg-blue);
    line-height: 1;
    margin-bottom: 8px;
}

.ab-stat__label {
    font-size: 14px;
    color: var(--pg-text-secondary);
    font-weight: 500;
}

/* ==========================================================================
   ABOUT — TIMELINE
   ========================================================================== */
.ab-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 40px;
}

.ab-timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--pg-border);
}

.ab-timeline__item {
    position: relative;
    padding: 0 0 48px 40px;
}

.ab-timeline__item:last-child {
    padding-bottom: 0;
}

.ab-timeline__item::before {
    content: '';
    position: absolute;
    left: -33px;
    top: 6px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--pg-blue);
    border: 3px solid var(--pg-bg-light);
    z-index: 1;
}

.ab-timeline__year {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: var(--pg-blue);
    background: rgba(0, 120, 212, 0.08);
    padding: 4px 14px;
    border-radius: 100px;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.ab-timeline__content h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--pg-navy);
    margin: 0 0 8px;
}

.ab-timeline__content p {
    font-size: 16px;
    color: var(--pg-text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* ==========================================================================
   ABOUT — TEAM
   ========================================================================== */
.ab-team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.ab-team-card {
    background: var(--pg-white);
    border: 1px solid var(--pg-border);
    border-radius: var(--pg-radius-lg);
    padding: 40px 32px;
    text-align: center;
    transition: all var(--pg-transition);
}

.ab-team-card:hover {
    border-color: var(--pg-blue);
    box-shadow: var(--pg-shadow-hover);
    transform: translateY(-4px);
}

.ab-team-card__avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pg-blue) 0%, var(--pg-accent) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.ab-team-card__avatar span {
    font-size: 28px;
    font-weight: 700;
    color: var(--pg-white);
}

.ab-team-card__name {
    font-size: 20px;
    font-weight: 600;
    color: var(--pg-navy);
    margin: 0 0 4px;
}

.ab-team-card__role {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--pg-blue);
    margin-bottom: 16px;
}

.ab-team-card__bio {
    font-size: 15px;
    color: var(--pg-text-secondary);
    line-height: 1.6;
    margin: 0 0 16px;
}

.ab-team-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
}

.ab-team-card__tags span {
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    background: var(--pg-bg-light);
    color: var(--pg-text-secondary);
    border-radius: 100px;
}

/* ==========================================================================
   ABOUT — GLOBAL OFFICES
   ========================================================================== */
.ab-offices-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.ab-office-card {
    position: relative;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--pg-radius-lg);
    padding: 28px 24px;
    transition: all var(--pg-transition);
}

.ab-office-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.ab-office-card--hq {
    border-color: rgba(0, 120, 212, 0.5);
    background: rgba(0, 120, 212, 0.1);
}

.ab-office-card__flag {
    font-size: 32px;
    display: block;
    margin-bottom: 12px;
}

.ab-office-card__badge {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 11px;
    font-weight: 700;
    background: var(--pg-blue);
    color: var(--pg-white);
    padding: 3px 10px;
    border-radius: 100px;
    letter-spacing: 1px;
}

.ab-office-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--pg-white);
    margin: 0 0 8px;
}

.ab-office-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 8px;
    line-height: 1.5;
}

.ab-office-card__phone {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

/* ==========================================================================
   ABOUT — BENEFITS
   ========================================================================== */
.ab-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.ab-benefit {
    display: flex;
    gap: 16px;
    padding: 24px;
    background: var(--pg-white);
    border: 1px solid var(--pg-border);
    border-radius: var(--pg-radius-lg);
    transition: all var(--pg-transition);
}

.ab-benefit:hover {
    border-color: var(--pg-blue);
    box-shadow: var(--pg-shadow-hover);
    transform: translateY(-2px);
}

.ab-benefit__icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 120, 212, 0.08);
    border-radius: var(--pg-radius);
    color: var(--pg-blue);
}

.ab-benefit h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--pg-navy);
    margin: 0 0 6px;
}

.ab-benefit p {
    font-size: 14px;
    color: var(--pg-text-secondary);
    line-height: 1.5;
    margin: 0;
}

/* ==========================================================================
   ABOUT — CTA
   ========================================================================== */
.ab-cta {
    background: linear-gradient(135deg, var(--pg-blue) 0%, var(--pg-blue-dark) 100%);
    color: var(--pg-white);
    padding: 100px 0;
}

.ab-cta__inner {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.ab-cta__title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    margin: 0 0 16px;
    color: var(--pg-white);
}

.ab-cta__desc {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 40px;
    line-height: 1.6;
}

.ab-cta__actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==========================================================================
   CONTACT PAGE — HERO
   ========================================================================== */
.ct-hero {
    position: relative;
    padding: 140px 0 100px;
    background: linear-gradient(135deg, var(--pg-navy) 0%, var(--pg-navy-light) 60%, var(--pg-blue) 100%);
    color: var(--pg-white);
    overflow: hidden;
}

.ct-hero__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 80% 30%, rgba(0, 120, 212, 0.25) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(16, 163, 127, 0.15) 0%, transparent 40%);
    pointer-events: none;
}

.ct-hero__inner {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.ct-hero .ct-eyebrow {
    color: rgba(255, 255, 255, 0.7);
}

.ct-hero__title {
    font-size: clamp(32px, 4.5vw, 48px);
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 20px;
    color: var(--pg-white);
}

.ct-hero__subtitle {
    font-size: clamp(16px, 2vw, 19px);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

/* ==========================================================================
   CONTACT — SPLIT: FORM + INFO
   ========================================================================== */
.ct-split {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 48px;
    align-items: start;
}

/* --- Form Card --- */
.ct-form-card {
    background: var(--pg-white);
    border: 1px solid var(--pg-border);
    border-radius: var(--pg-radius-lg);
    padding: 48px 40px;
}

.ct-form-card__title {
    font-size: 24px;
    font-weight: 600;
    color: var(--pg-navy);
    margin: 0 0 8px;
}

.ct-form-card__desc {
    font-size: 15px;
    color: var(--pg-text-secondary);
    margin: 0 0 32px;
    line-height: 1.6;
}

/* --- Form Elements --- */
.ct-form__group {
    margin-bottom: 20px;
}

.ct-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.ct-form__label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--pg-navy);
    margin-bottom: 6px;
}

.ct-form__input,
.ct-form__select,
.ct-form__textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 15px;
    font-family: var(--pg-font);
    color: var(--pg-text);
    background: var(--pg-white);
    border: 1px solid var(--pg-border);
    border-radius: 6px;
    transition: all var(--pg-transition);
    outline: none;
    box-sizing: border-box;
}

.ct-form__input:focus,
.ct-form__select:focus,
.ct-form__textarea:focus {
    border-color: var(--pg-blue);
    box-shadow: 0 0 0 3px rgba(0, 120, 212, 0.12);
}

.ct-form__input::placeholder,
.ct-form__textarea::placeholder {
    color: #A19F9D;
}

.ct-form__select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23605E5C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
}

.ct-form__textarea {
    resize: vertical;
    min-height: 120px;
}

.ct-form__privacy {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--pg-text-secondary);
    margin-top: 16px;
    text-align: center;
    justify-content: center;
}

.ct-form__privacy svg {
    color: var(--pg-accent);
    flex-shrink: 0;
}

/* --- Office Cards (Right side) --- */
.ct-office-card {
    background: var(--pg-white);
    border: 1px solid var(--pg-border);
    border-radius: var(--pg-radius-lg);
    padding: 24px;
    margin-bottom: 16px;
}

.ct-office-card--primary {
    border-color: var(--pg-blue);
    background: linear-gradient(135deg, rgba(0, 120, 212, 0.03) 0%, rgba(16, 163, 127, 0.03) 100%);
}

.ct-office-card__header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.ct-office-card__flag {
    font-size: 28px;
}

.ct-office-card__title {
    font-size: 16px;
    font-weight: 600;
    color: var(--pg-navy);
    margin: 0;
}

.ct-office-card__badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    color: var(--pg-blue);
    background: rgba(0, 120, 212, 0.08);
    padding: 2px 8px;
    border-radius: 100px;
    letter-spacing: 1px;
    margin-top: 2px;
}

.ct-office-card__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ct-office-card__list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
    color: var(--pg-text);
    line-height: 1.5;
}

.ct-office-card__list li svg {
    color: var(--pg-blue);
    flex-shrink: 0;
    margin-top: 2px;
}

.ct-office-card__list a {
    color: var(--pg-blue);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--pg-transition);
}

.ct-office-card__list a:hover {
    color: var(--pg-blue-dark);
}

/* --- Business Hours --- */
.ct-hours-card {
    background: var(--pg-bg-light);
    border-radius: var(--pg-radius-lg);
    padding: 24px;
    margin-bottom: 16px;
}

.ct-hours-card__title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
    color: var(--pg-navy);
    margin: 0 0 16px;
}

.ct-hours-card__title svg {
    color: var(--pg-blue);
}

.ct-hours-card__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ct-hours-card__list li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 14px;
    color: var(--pg-text-secondary);
    border-bottom: 1px solid var(--pg-border);
}

.ct-hours-card__list li:last-child {
    border-bottom: none;
}

.ct-hours-card__list strong {
    color: var(--pg-navy);
}

/* --- Trust Box --- */
.ct-trust-box {
    background: var(--pg-navy);
    border-radius: var(--pg-radius-lg);
    padding: 24px;
    color: var(--pg-white);
}

.ct-trust-box__title {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 16px;
    color: var(--pg-white);
}

.ct-trust-box__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ct-trust-box__list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

.ct-trust-box__list svg {
    color: var(--pg-accent);
    flex-shrink: 0;
    margin-top: 2px;
}

.ct-trust-box__list strong {
    color: var(--pg-white);
}

/* ==========================================================================
   CONTACT — MINI OFFICES GRID
   ========================================================================== */
.ct-offices-mini-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.ct-mini-office {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 24px;
    background: var(--pg-white);
    border: 1px solid var(--pg-border);
    border-radius: var(--pg-radius-lg);
    transition: all var(--pg-transition);
}

.ct-mini-office:hover {
    border-color: var(--pg-blue);
    box-shadow: var(--pg-shadow-hover);
    transform: translateY(-2px);
}

.ct-mini-office__flag {
    font-size: 28px;
    flex-shrink: 0;
}

.ct-mini-office strong {
    display: block;
    font-size: 15px;
    color: var(--pg-navy);
    margin-bottom: 2px;
}

.ct-mini-office span {
    display: block;
    font-size: 13px;
    color: var(--pg-text-secondary);
}

.ct-mini-office a {
    display: block;
    font-size: 13px;
    color: var(--pg-blue);
    text-decoration: none;
    margin-top: 4px;
}

.ct-mini-office a:hover {
    color: var(--pg-blue-dark);
}

/* ==========================================================================
   CONTACT — FAQ
   ========================================================================== */
.ct-faq__list {
    max-width: 800px;
    margin: 0 auto;
}

.ct-faq__item {
    border-bottom: 1px solid var(--pg-border);
}

.ct-faq__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 24px 0;
    background: none;
    border: none;
    font-size: 17px;
    font-weight: 600;
    color: var(--pg-navy);
    cursor: pointer;
    text-align: left;
    font-family: var(--pg-font);
    transition: color var(--pg-transition);
}

.ct-faq__question:hover {
    color: var(--pg-blue);
}

.ct-faq__chevron {
    flex-shrink: 0;
    transition: transform var(--pg-transition);
    color: var(--pg-text-secondary);
}

.ct-faq__item--open .ct-faq__chevron {
    transform: rotate(180deg);
}

.ct-faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.ct-faq__item--open .ct-faq__answer {
    max-height: 300px;
}

.ct-faq__answer p {
    padding: 0 0 24px;
    font-size: 16px;
    line-height: 1.7;
    color: var(--pg-text-secondary);
    margin: 0;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
    .ab-split {
        grid-template-columns: 1fr;
        gap: 48px;
    }

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

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

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

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

    .ct-split {
        grid-template-columns: 1fr 340px;
        gap: 32px;
    }

    .ct-offices-mini-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .ab-hero,
    .ct-hero {
        padding: 120px 0 80px;
    }

    .ab-hero__title {
        font-size: 32px;
    }

    .ct-hero__title {
        font-size: 30px;
    }

    .ab-section,
    .ct-section {
        padding: 64px 0;
    }

    .ab-section-header,
    .ct-section-header {
        margin-bottom: 40px;
    }

    .ab-stats__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .ab-team-grid {
        grid-template-columns: 1fr;
    }

    .ab-offices-grid {
        grid-template-columns: 1fr;
    }

    .ab-benefits-grid {
        grid-template-columns: 1fr;
    }

    .ab-values-grid {
        grid-template-columns: 1fr 1fr;
    }

    .ct-split {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .ct-form-card {
        padding: 32px 24px;
    }

    .ct-form__row {
        grid-template-columns: 1fr;
    }

    .ct-offices-mini-grid {
        grid-template-columns: 1fr;
    }

    .ab-cta {
        padding: 64px 0;
    }

    .ab-cta__actions {
        flex-direction: column;
        align-items: center;
    }

    .ab-timeline {
        padding-left: 20px;
    }

    .ab-timeline::before {
        left: 5px;
    }

    .ab-timeline__item {
        padding-left: 30px;
    }

    .ab-timeline__item::before {
        left: -23px;
    }
}

@media (max-width: 480px) {

    .ab-hero,
    .ct-hero {
        padding: 100px 0 60px;
    }

    .ab-hero__title {
        font-size: 28px;
    }

    .ct-hero__title {
        font-size: 26px;
    }

    .ab-stats__grid {
        grid-template-columns: 1fr 1fr;
    }

    .ab-stat__number {
        font-size: 28px;
    }

    .ab-values-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   PRINT
   ========================================================================== */
@media print {

    .ab-hero,
    .ct-hero,
    .ab-cta {
        page-break-inside: avoid;
    }

    .ab-btn,
    .ct-btn {
        display: none !important;
    }

    .ct-form-card,
    .ab-team-card,
    .ab-office-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ccc;
    }
}