/* ═══════════════════════════════════════════════════════════
 *  css/pages/careers.css — Land of Profits
 *  Page-specific styles for careers.html.
 * ═══════════════════════════════════════════════════════════ */

/* ═══ VARIABLES ══════════════════════════════════════════════════════════ */
      
      *,
      *::before,
      *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
      }
      html {
        scroll-behavior: smooth;
      }
      body {
        font-family: var(--sans);
        background: var(--cream);
        color: var(--ink);
        font-size: 15px;
        line-height: 1.6;
        overflow-x: hidden;
      }
      a {
        text-decoration: none;
        color: inherit;
      }

      /* ═══ HERO ════════════════════════════════════════════════════════════════ */
      .hero {
        min-height: 100vh;
        background: linear-gradient(148deg, var(--navy) 0%, #0a1520 45%, #1a2c1a 85%, #0d1b2e 100%);
        display: flex;
        align-items: center;
        padding: 130px 40px 90px;
        position: relative;
        overflow: hidden;
      }
      .hero-pat {
        position: absolute;
        inset: 0;
        pointer-events: none;
        background-image: repeating-linear-gradient(
          45deg,
          rgba(201, 169, 110, 0.03) 0,
          rgba(201, 169, 110, 0.03) 1px,
          transparent 0,
          transparent 50%
        );
        background-size: 28px 28px;
      }
      .hero-glow-a {
        position: absolute;
        width: 700px;
        height: 700px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(201, 169, 110, 0.055) 0%, transparent 65%);
        top: -200px;
        right: -80px;
        pointer-events: none;
      }
      .hero-glow-b {
        position: absolute;
        width: 500px;
        height: 500px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(46, 107, 72, 0.07) 0%, transparent 65%);
        bottom: -100px;
        left: -80px;
        pointer-events: none;
      }
      .hero-inner {
        position: relative;
        z-index: 1;
        max-width: 1160px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: center;
        width: 100%;
      }
      .hero-left {
      }
      .hero-eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: rgba(201, 169, 110, 0.1);
        border: 1px solid rgba(201, 169, 110, 0.25);
        color: var(--gold);
        font-size: 12px;
        font-weight: 600;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        padding: 7px 18px;
        border-radius: 30px;
        margin-bottom: 26px;
      }
      .hero-eyebrow::before {
        content: '';
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--gold);
      }
      .hero h1 {
        font-family: var(--serif);
        font-size: clamp(44px, 5.5vw, 76px);
        font-weight: 600;
        color: #fff;
        line-height: 1.08;
        margin-bottom: 24px;
        letter-spacing: -0.5px;
      }
      .hero h1 em {
        color: var(--gold);
        font-style: italic;
      }
      .hero-sub {
        font-size: 17px;
        color: rgba(255, 255, 255, 0.5);
        font-weight: 300;
        line-height: 1.8;
        margin-bottom: 36px;
        max-width: 500px;
      }
      .hero-ctas {
        display: flex;
        gap: 14px;
        flex-wrap: wrap;
      }
      .btn-gold {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 14px 28px;
        background: var(--gold);
        color: var(--navy);
        font-size: 14px;
        font-weight: 600;
        border-radius: var(--r12);
        border: none;
        cursor: pointer;
        transition: 0.2s;
        font-family: var(--sans);
        white-space: nowrap;
      }
      .btn-gold:hover {
        background: var(--gold2);
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(201, 169, 110, 0.3);
      }
      .btn-gold svg {
        width: 15px;
        height: 15px;
        stroke: currentColor;
        fill: none;
        stroke-width: 2;
      }
      .btn-ghost {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 14px 28px;
        background: transparent;
        color: rgba(255, 255, 255, 0.75);
        font-size: 14px;
        font-weight: 500;
        border-radius: var(--r12);
        border: 1px solid rgba(255, 255, 255, 0.2);
        cursor: pointer;
        transition: 0.2s;
        font-family: var(--sans);
        white-space: nowrap;
      }
      .btn-ghost:hover {
        background: rgba(255, 255, 255, 0.07);
        border-color: rgba(255, 255, 255, 0.4);
        color: #fff;
      }
      /* Hero right — perks orbit */
      .hero-right {
        display: flex;
        align-items: center;
        justify-content: center;
      }
      .perks-visual {
        position: relative;
        width: 340px;
        height: 340px;
      }
      .perks-center {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100px;
        height: 100px;
        background: rgba(201, 169, 110, 0.12);
        border: 1px solid rgba(201, 169, 110, 0.25);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 36px;
        z-index: 2;
      }
      .perks-ring {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 280px;
        height: 280px;
        border-radius: 50%;
        border: 1px dashed rgba(201, 169, 110, 0.15);
        animation: spin-ring 30s linear infinite;
      }
      .perks-ring2 {
        width: 200px;
        height: 200px;
        border-color: rgba(201, 169, 110, 0.08);
        animation-duration: 20s;
        animation-direction: reverse;
      }
      @keyframes spin-ring {
        to {
          transform: translate(-50%, -50%) rotate(360deg);
        }
      }
      .perk-orb {
        position: absolute;
        width: 68px;
        height: 68px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.08);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 3px;
        backdrop-filter: blur(8px);
        transition: 0.2s;
        cursor: default;
      }
      .perk-orb:hover {
        background: rgba(201, 169, 110, 0.1);
        border-color: rgba(201, 169, 110, 0.3);
      }
      .perk-orb-icon {
        font-size: 20px;
        line-height: 1;
      }
      .perk-orb-lbl {
        font-size: 8px;
        color: rgba(255, 255, 255, 0.4);
        text-align: center;
        letter-spacing: 0.3px;
      }
      /* Hero stats strip */
      .hero-stats {
        display: flex;
        gap: 0;
        margin-top: 44px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        padding-top: 32px;
      }
      .hero-stat {
        flex: 1;
        text-align: center;
        padding: 0 16px;
        border-right: 1px solid rgba(255, 255, 255, 0.08);
      }
      .hero-stat:last-child {
        border-right: none;
      }
      .hero-stat-num {
        font-family: var(--serif);
        font-size: 30px;
        font-weight: 700;
        color: var(--gold);
        display: block;
        line-height: 1;
      }
      .hero-stat-lbl {
        font-size: 11px;
        color: rgba(255, 255, 255, 0.35);
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-top: 5px;
        display: block;
      }

      /* ═══ SECTION BASE ════════════════════════════════════════════════════════ */
      section {
        padding: 96px 40px;
      }
      .container {
        max-width: 1160px;
        margin: 0 auto;
      }
      .section-eyebrow {
        font-size: 11.5px;
        font-weight: 600;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: var(--gold-dark);
        margin-bottom: 12px;
      }
      .section-title {
        font-family: var(--serif);
        font-size: clamp(30px, 3.5vw, 48px);
        font-weight: 600;
        color: var(--navy);
        line-height: 1.15;
      }
      .section-title.light {
        color: #fff;
      }
      .section-sub {
        font-size: 17px;
        color: var(--slate);
        font-weight: 300;
        line-height: 1.8;
        margin-top: 16px;
        max-width: 560px;
      }
      .gold-line {
        width: 48px;
        height: 3px;
        background: linear-gradient(90deg, var(--gold), var(--gold2));
        border-radius: 2px;
        margin-top: 18px;
      }

      /* ═══ WHY JOIN ════════════════════════════════════════════════════════════ */
      .why-section {
        background: var(--cream);
      }
      .why-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
        margin-top: 52px;
      }
      .why-card {
        background: var(--white);
        border-radius: var(--r20);
        padding: 32px 28px;
        border: 1px solid var(--fog);
        position: relative;
        overflow: hidden;
        transition: 0.25s;
        cursor: default;
      }
      .why-card::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--gold), var(--gold2));
        transform: scaleX(0);
        transform-origin: left;
        transition: 0.3s;
      }
      .why-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 20px 48px rgba(13, 27, 46, 0.09);
        border-color: rgba(201, 169, 110, 0.2);
      }
      .why-card:hover::after {
        transform: scaleX(1);
      }
      .why-icon {
        width: 48px;
        height: 48px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 18px;
      }
      .why-icon svg {
        width: 22px;
        height: 22px;
        stroke: currentColor;
        fill: none;
        stroke-width: 1.8;
      }
      .why-card h3 {
        font-family: var(--serif);
        font-size: 20px;
        font-weight: 600;
        color: var(--navy);
        margin-bottom: 10px;
      }
      .why-card p {
        font-size: 14px;
        color: var(--slate);
        line-height: 1.8;
        font-weight: 300;
      }

      /* ═══ CULTURE ════════════════════════════════════════════════════════════ */
      .culture-section {
        background: var(--sand);
      }
      .culture-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 72px;
        align-items: center;
      }
      .culture-visual {
        position: relative;
      }
      .culture-mosaic {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 14px;
      }
      .mosaic-tile {
        border-radius: var(--r12);
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
      }
      .mosaic-tile:first-child {
        grid-column: span 2;
      }
      .mosaic-main {
        height: 200px;
        background: linear-gradient(135deg, var(--navy) 0%, #162236 60%, #1a2c1a 100%);
        font-size: 60px;
      }
      .mosaic-a {
        height: 150px;
        background: linear-gradient(135deg, #1e3a6a, #0d1b40);
        font-size: 40px;
      }
      .mosaic-b {
        height: 150px;
        background: linear-gradient(135deg, #2e6b48, #1a3a28);
        font-size: 40px;
      }
      .mosaic-pat {
        position: absolute;
        inset: 0;
        background-image: repeating-linear-gradient(
          45deg,
          rgba(201, 169, 110, 0.04) 0,
          rgba(201, 169, 110, 0.04) 1px,
          transparent 0,
          transparent 50%
        );
        background-size: 20px 20px;
      }
      .mosaic-label {
        position: absolute;
        bottom: 10px;
        left: 12px;
        font-size: 11px;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.55);
        letter-spacing: 0.5px;
        text-transform: uppercase;
        background: rgba(0, 0, 0, 0.3);
        padding: 3px 10px;
        border-radius: 10px;
        backdrop-filter: blur(6px);
      }
      .culture-values {
        display: flex;
        flex-direction: column;
        gap: 20px;
        margin-top: 36px;
      }
      .culture-value {
        display: flex;
        gap: 16px;
        align-items: flex-start;
      }
      .culture-value-icon {
        width: 36px;
        height: 36px;
        border-radius: 9px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        background: rgba(201, 169, 110, 0.12);
      }
      .culture-value-icon svg {
        width: 16px;
        height: 16px;
        stroke: var(--gold-dark);
        fill: none;
        stroke-width: 2;
      }
      .culture-value h4 {
        font-size: 15px;
        font-weight: 600;
        color: var(--navy);
        margin-bottom: 3px;
      }
      .culture-value p {
        font-size: 13.5px;
        color: var(--slate);
        line-height: 1.7;
        font-weight: 300;
      }

      /* ═══ PERKS STRIP ════════════════════════════════════════════════════════ */
      .perks-section {
        background: var(--navy);
        position: relative;
        overflow: hidden;
      }
      .perks-section::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: repeating-linear-gradient(
          45deg,
          rgba(201, 169, 110, 0.025) 0,
          rgba(201, 169, 110, 0.025) 1px,
          transparent 0,
          transparent 50%
        );
        background-size: 28px 28px;
        pointer-events: none;
      }
      .perks-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 2px;
        margin-top: 52px;
        position: relative;
        z-index: 1;
      }
      .perk-card {
        padding: 32px 28px;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.05);
        transition: 0.2s;
        cursor: default;
      }
      .perk-card:hover {
        background: rgba(201, 169, 110, 0.07);
        border-color: rgba(201, 169, 110, 0.15);
      }
      .perk-card:first-child {
        border-radius: var(--r12) 0 0 var(--r12);
      }
      .perk-card:last-child {
        border-radius: 0 var(--r12) var(--r12) 0;
      }
      .perk-emoji {
        font-size: 28px;
        margin-bottom: 14px;
      }
      .perk-card h4 {
        font-size: 15px;
        font-weight: 600;
        color: #fff;
        margin-bottom: 8px;
      }
      .perk-card p {
        font-size: 13px;
        color: rgba(255, 255, 255, 0.45);
        line-height: 1.7;
        font-weight: 300;
      }

      /* ═══ OPEN ROLES ══════════════════════════════════════════════════════════ */
      .roles-section {
        background: var(--cream);
      }
      .roles-header {
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        margin-bottom: 40px;
        flex-wrap: wrap;
        gap: 20px;
      }
      .roles-filters {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
      }
      .role-filter-btn {
        padding: 8px 16px;
        border-radius: 20px;
        border: 1.5px solid var(--fog);
        background: var(--white);
        font-family: var(--sans);
        font-size: 12.5px;
        font-weight: 500;
        color: var(--slate);
        cursor: pointer;
        transition: 0.2s;
      }
      .role-filter-btn:hover {
        border-color: var(--gold-dark);
        color: var(--gold-dark);
      }
      .role-filter-btn.active {
        border-color: var(--gold);
        background: var(--gold);
        color: var(--navy);
        font-weight: 600;
      }
      .dept-group {
        margin-bottom: 36px;
      }
      .dept-label {
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 1.4px;
        text-transform: uppercase;
        color: var(--slate);
        margin-bottom: 12px;
        padding-left: 2px;
      }
      .roles-list {
        display: flex;
        flex-direction: column;
        gap: 10px;
      }
      .role-card {
        background: var(--white);
        border-radius: var(--r12);
        border: 1px solid var(--fog);
        padding: 22px 26px;
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 20px;
        align-items: center;
        cursor: pointer;
        transition: 0.22s;
      }
      .role-card:hover {
        border-color: var(--gold);
        box-shadow: 0 8px 28px rgba(13, 27, 46, 0.07);
        transform: translateX(4px);
      }
      .role-card-left {
      }
      .role-title {
        font-size: 16px;
        font-weight: 600;
        color: var(--navy);
        margin-bottom: 6px;
      }
      .role-tags {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
      }
      .role-tag {
        font-size: 11.5px;
        padding: 3px 10px;
        border-radius: 10px;
        font-weight: 500;
      }
      .tag-location {
        background: rgba(13, 27, 46, 0.07);
        color: var(--navy);
      }
      .tag-type {
        background: rgba(201, 169, 110, 0.12);
        color: var(--gold-dark);
      }
      .tag-dept {
        background: var(--fog);
        color: var(--slate);
      }
      .tag-new {
        background: rgba(46, 139, 87, 0.12);
        color: #2e8b57;
        font-weight: 600;
      }
      .role-card-right {
        display: flex;
        align-items: center;
        gap: 16px;
        flex-shrink: 0;
      }
      .apply-btn {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 9px 20px;
        background: var(--navy);
        color: #fff;
        border-radius: var(--r6);
        font-size: 13px;
        font-weight: 500;
        transition: 0.2s;
        border: none;
        font-family: var(--sans);
        cursor: pointer;
        white-space: nowrap;
      }
      .apply-btn:hover {
        background: var(--gold);
        color: var(--navy);
      }
      .apply-btn svg {
        width: 13px;
        height: 13px;
        stroke: currentColor;
        fill: none;
        stroke-width: 2;
      }
      .no-roles {
        text-align: center;
        padding: 48px;
        background: var(--white);
        border-radius: var(--r12);
        border: 1px solid var(--fog);
        display: none;
      }
      .no-roles-icon {
        font-size: 40px;
        margin-bottom: 12px;
      }
      .no-roles h4 {
        font-family: var(--serif);
        font-size: 20px;
        color: var(--navy);
        margin-bottom: 6px;
      }
      .no-roles p {
        font-size: 14px;
        color: var(--slate);
        font-weight: 300;
      }

      /* ═══ PROCESS ════════════════════════════════════════════════════════════ */
      .process-section {
        background: var(--sand);
      }
      .process-steps {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 0;
        margin-top: 52px;
        position: relative;
      }
      .process-steps::before {
        content: '';
        position: absolute;
        top: 30px;
        left: 10%;
        right: 10%;
        height: 1px;
        background: linear-gradient(
          90deg,
          transparent,
          var(--fog),
          var(--fog),
          var(--fog),
          transparent
        );
        z-index: 0;
      }
      .process-step {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 0 16px;
        position: relative;
        z-index: 1;
      }
      .process-num {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
        font-family: var(--serif);
        font-size: 22px;
        font-weight: 700;
        border: 2px solid var(--fog);
        background: var(--white);
        color: var(--navy);
        transition: 0.2s;
      }
      .process-step:hover .process-num {
        background: var(--navy);
        color: var(--gold);
        border-color: var(--navy);
      }
      .process-step h4 {
        font-size: 14px;
        font-weight: 600;
        color: var(--navy);
        margin-bottom: 6px;
      }
      .process-step p {
        font-size: 12.5px;
        color: var(--slate);
        line-height: 1.65;
        font-weight: 300;
      }

      /* ═══ GLOBAL OFFICES ══════════════════════════════════════════════════════ */
      .offices-section {
        background: var(--white);
      }
      .offices-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        margin-top: 48px;
      }
      .office-card {
        border-radius: var(--r20);
        overflow: hidden;
        border: 1px solid var(--fog);
        transition: 0.2s;
        cursor: default;
      }
      .office-card:hover {
        box-shadow: 0 12px 36px rgba(13, 27, 46, 0.08);
        transform: translateY(-3px);
        border-color: rgba(201, 169, 110, 0.25);
      }
      .office-card-top {
        height: 140px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 52px;
        position: relative;
        overflow: hidden;
      }
      .office-card-pat {
        position: absolute;
        inset: 0;
        background-image: repeating-linear-gradient(
          45deg,
          rgba(255, 255, 255, 0.04) 0,
          rgba(255, 255, 255, 0.04) 1px,
          transparent 0,
          transparent 50%
        );
        background-size: 18px 18px;
      }
      .office-card-body {
        padding: 20px 22px 24px;
      }
      .office-city {
        font-family: var(--serif);
        font-size: 20px;
        font-weight: 600;
        color: var(--navy);
        margin-bottom: 4px;
      }
      .office-role {
        font-size: 12px;
        color: var(--gold-dark);
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.6px;
        margin-bottom: 10px;
      }
      .office-desc {
        font-size: 13px;
        color: var(--slate);
        line-height: 1.7;
        font-weight: 300;
      }
      .office-openings {
        display: inline-flex;
        align-items: center;
        gap: 5px;
        margin-top: 14px;
        font-size: 12.5px;
        font-weight: 600;
        color: var(--navy);
        background: var(--sand);
        padding: 5px 12px;
        border-radius: 20px;
      }
      .office-openings svg {
        width: 12px;
        height: 12px;
        stroke: var(--gold-dark);
        fill: none;
        stroke-width: 2;
      }

      /* ═══ CTA STRIP ══════════════════════════════════════════════════════════ */
      .cta-section {
        background: var(--cream);
      }
      .cta-inner {
        background: linear-gradient(135deg, var(--navy) 0%, #162236 55%, #1a2c1a 100%);
        border-radius: var(--r20);
        padding: 72px 80px;
        position: relative;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 48px;
      }
      .cta-inner::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: repeating-linear-gradient(
          45deg,
          rgba(201, 169, 110, 0.025) 0,
          rgba(201, 169, 110, 0.025) 1px,
          transparent 0,
          transparent 50%
        );
        background-size: 24px 24px;
        pointer-events: none;
      }
      .cta-text {
        position: relative;
        z-index: 1;
      }
      .cta-text h2 {
        font-family: var(--serif);
        font-size: clamp(26px, 3.2vw, 42px);
        font-weight: 600;
        color: #fff;
        line-height: 1.15;
        margin-bottom: 12px;
      }
      .cta-text h2 em {
        color: var(--gold);
        font-style: italic;
      }
      .cta-text p {
        font-size: 16px;
        color: rgba(255, 255, 255, 0.5);
        font-weight: 300;
        max-width: 460px;
        line-height: 1.7;
      }
      .cta-actions {
        display: flex;
        flex-direction: column;
        gap: 12px;
        flex-shrink: 0;
        position: relative;
        z-index: 1;
      }
      .btn-outline-light {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 14px 28px;
        background: transparent;
        color: rgba(255, 255, 255, 0.75);
        font-size: 14px;
        font-weight: 500;
        border-radius: var(--r12);
        border: 1px solid rgba(255, 255, 255, 0.2);
        cursor: pointer;
        transition: 0.2s;
        font-family: var(--sans);
        white-space: nowrap;
      }
      .btn-outline-light:hover {
        background: rgba(255, 255, 255, 0.07);
        border-color: rgba(255, 255, 255, 0.4);
        color: #fff;
      }

      /* ─── FOOTER ──────────────────────────────────────────────── */
      footer {
        background: var(--navy);
        padding: 72px 5% 0;
        border-top: 1px solid rgba(201, 169, 110, 0.12);
      }
      .footer-inner {
        max-width: 1240px;
        margin: 0 auto;
      }
      .footer-top {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
        gap: 48px;
        padding-bottom: 56px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
      }
      .footer-brand p {
        font-size: 14px;
        color: rgba(255, 255, 255, 0.4);
        line-height: 1.75;
        margin-top: 16px;
        font-weight: 300;
        max-width: 260px;
      }
      .footer-social {
        display: flex;
        gap: 10px;
        margin-top: 24px;
      }
      .social-btn {
        width: 36px;
        height: 36px;
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: rgba(255, 255, 255, 0.4);
        transition: all 0.15s;
        cursor: pointer;
      }
      .social-btn:hover {
        border-color: var(--gold);
        color: var(--gold);
      }
      .social-btn svg {
        width: 15px;
        height: 15px;
        stroke: currentColor;
        fill: none;
        stroke-width: 2;
      }
      .footer-col h5 {
        font-size: 11px;
        letter-spacing: 1.8px;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.25);
        font-weight: 500;
        margin-bottom: 20px;
      }
      .footer-col a {
        display: block;
        font-size: 13px;
        color: rgba(255, 255, 255, 0.45);
        margin-bottom: 11px;
        transition: color 0.15s;
        font-weight: 300;
      }
      .footer-col a:hover {
        color: rgba(255, 255, 255, 0.85);
      }
      .footer-bottom {
        padding: 24px 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 12px;
      }
      .footer-bottom p {
        font-size: 12px;
        color: rgba(255, 255, 255, 0.25);
      }
      .footer-reg {
        font-size: 11px;
        color: rgba(255, 255, 255, 0.2);
      }
      .footer-badges {
        display: flex;
        gap: 8px;
      }
      .fbadge {
        padding: 4px 10px;
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 5px;
        font-size: 10px;
        color: rgba(255, 255, 255, 0.3);
        letter-spacing: 0.5px;
      }

      /* ═══ MODAL ═══════════════════════════════════════════════════════════════ */
      .modal-overlay {
        position: fixed;
        inset: 0;
        background: rgba(13, 27, 46, 0.6);
        z-index: 900;
        display: none;
        align-items: center;
        justify-content: center;
        padding: 20px;
        backdrop-filter: blur(4px);
      }
      .modal-overlay.open {
        display: flex;
      }
      .modal {
        background: var(--white);
        border-radius: var(--r20);
        width: 100%;
        max-width: 560px;
        max-height: 90vh;
        overflow-y: auto;
        box-shadow: 0 40px 100px rgba(0, 0, 0, 0.25);
      }
      .modal-head {
        padding: 28px 32px 20px;
        border-bottom: 1px solid var(--fog);
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 16px;
      }
      .modal-head h3 {
        font-family: var(--serif);
        font-size: 22px;
        font-weight: 600;
        color: var(--navy);
        margin-bottom: 4px;
      }
      .modal-head p {
        font-size: 13px;
        color: var(--slate);
      }
      .modal-close {
        width: 32px;
        height: 32px;
        border-radius: 50%;
        border: 1px solid var(--fog);
        background: var(--white);
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        transition: 0.15s;
      }
      .modal-close:hover {
        background: var(--sand);
      }
      .modal-close svg {
        width: 14px;
        height: 14px;
        stroke: var(--slate);
        fill: none;
        stroke-width: 2;
      }
      .modal-body {
        padding: 28px 32px 32px;
      }
      .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 14px;
        margin-bottom: 14px;
      }
      .form-group {
        display: flex;
        flex-direction: column;
        gap: 5px;
        margin-bottom: 14px;
      }
      .form-group:last-child {
        margin-bottom: 0;
      }
      .form-group label {
        font-size: 12px;
        font-weight: 600;
        color: var(--navy);
        text-transform: uppercase;
        letter-spacing: 0.5px;
      }
      .form-input {
        padding: 10px 14px;
        border: 1.5px solid var(--fog);
        border-radius: var(--r6);
        font-family: var(--sans);
        font-size: 14px;
        color: var(--ink);
        outline: none;
        transition: 0.2s;
        background: var(--cream);
      }
      .form-input:focus {
        border-color: var(--gold);
        background: var(--white);
        box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.1);
      }
      .form-input::placeholder {
        color: var(--slate);
      }
      textarea.form-input {
        min-height: 100px;
        resize: vertical;
      }
      .form-upload {
        padding: 20px;
        border: 2px dashed var(--fog);
        border-radius: var(--r12);
        text-align: center;
        cursor: pointer;
        transition: 0.2s;
        background: var(--cream);
      }
      .form-upload:hover {
        border-color: var(--gold);
        background: rgba(201, 169, 110, 0.04);
      }
      .form-upload svg {
        width: 24px;
        height: 24px;
        stroke: var(--slate);
        fill: none;
        stroke-width: 1.5;
        margin: 0 auto 8px;
        display: block;
      }
      .form-upload p {
        font-size: 13px;
        color: var(--slate);
        font-weight: 300;
      }
      .form-upload strong {
        color: var(--gold-dark);
        font-weight: 600;
      }
      .btn-submit {
        width: 100%;
        padding: 14px;
        background: var(--navy);
        color: #fff;
        border: none;
        border-radius: var(--r12);
        font-family: var(--sans);
        font-size: 14px;
        font-weight: 600;
        cursor: pointer;
        transition: 0.2s;
        margin-top: 20px;
      }
      .btn-submit:hover {
        background: var(--gold);
        color: var(--navy);
      }
      .form-note {
        font-size: 12px;
        color: var(--slate);
        text-align: center;
        margin-top: 12px;
        line-height: 1.6;
      }

      /* ═══ ANIMATIONS ══════════════════════════════════════════════════════════ */
      .fade-up {
        opacity: 0;
        transform: translateY(24px);
        transition:
          opacity 0.65s ease,
          transform 0.65s ease;
      }
      .fade-up.visible {
        opacity: 1;
        transform: none;
      }
      .fade-up:nth-child(2) {
        transition-delay: 0.08s;
      }
      .fade-up:nth-child(3) {
        transition-delay: 0.16s;
      }
      .fade-up:nth-child(4) {
        transition-delay: 0.24s;
      }

      /* ═══ RESPONSIVE ══════════════════════════════════════════════════════════ */
      @media (max-width: 1024px) {
        .hero-inner {
          grid-template-columns: 1fr;
          gap: 48px;
        }
        .hero-right {
          display: none;
        }
        .culture-grid {
          grid-template-columns: 1fr;
          gap: 40px;
        }
        .perks-grid {
          grid-template-columns: repeat(2, 1fr);
        }
        .perks-grid .perk-card:nth-child(2) {
          border-radius: 0 var(--r12) 0 0;
        }
        .perks-grid .perk-card:nth-child(3) {
          border-radius: 0 0 0 var(--r12);
        }
        .perks-grid .perk-card:last-child {
          border-radius: 0 0 var(--r12) 0;
        }
        .process-steps {
          grid-template-columns: repeat(3, 1fr);
          gap: 24px;
        }
        .process-steps::before {
          display: none;
        }
        .offices-grid {
          grid-template-columns: 1fr 1fr;
        }
        .cta-inner {
          flex-direction: column;
          padding: 48px 40px;
        }
        .cta-actions {
          flex-direction: row;
        }
      }
      @media (max-width: 768px) {
        nav {
          padding: 0 20px;
        }
        .nav-links {
          display: none;
        }
        section {
          padding: 64px 24px;
        }
        .hero {
          padding: 110px 24px 72px;
        }
        .why-grid {
          grid-template-columns: 1fr;
        }
        .perks-grid {
          grid-template-columns: 1fr;
        }
        .perks-grid .perk-card {
          border-radius: 0 !important;
        }
        .perks-grid .perk-card:first-child {
          border-radius: var(--r12) var(--r12) 0 0 !important;
        }
        .perks-grid .perk-card:last-child {
          border-radius: 0 0 var(--r12) var(--r12) !important;
        }
        .process-steps {
          grid-template-columns: 1fr 1fr;
        }
        .offices-grid {
          grid-template-columns: 1fr;
        }
        .cta-inner {
          padding: 36px 28px;
        }
        .cta-actions {
          flex-direction: column;
        }
        .footer-top {
          grid-template-columns: 1fr 1fr;
          gap: 32px;
        }
        .form-row {
          grid-template-columns: 1fr;
        }
        .modal {
          margin: 20px;
        }
      }