/* ═══════════════════════════════════════════════════════════
 *  css/pages/about.css — Land of Profits
 *  Page-specific styles for about.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;
      }
      img {
        display: block;
        max-width: 100%;
      }

      /* ═══ HERO ═══════════════════════════════════════════════════════════════ */
      .hero {
        min-height: 100vh;
        background: linear-gradient(150deg, var(--navy) 0%, #0a1520 40%, #1a2c1a 80%, #0d1b2e 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        overflow: hidden;
        padding: 120px 40px 80px;
      }
      .hero-pat {
        position: absolute;
        inset: 0;
        pointer-events: none;
        background-image: repeating-linear-gradient(
          45deg,
          rgba(201, 169, 110, 0.035) 0,
          rgba(201, 169, 110, 0.035) 1px,
          transparent 0,
          transparent 50%
        );
        background-size: 28px 28px;
      }
      .hero-glow {
        position: absolute;
        width: 700px;
        height: 700px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(201, 169, 110, 0.06) 0%, transparent 70%);
        top: -150px;
        right: -100px;
        pointer-events: none;
      }
      .hero-glow2 {
        position: absolute;
        width: 500px;
        height: 500px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(46, 107, 72, 0.08) 0%, transparent 70%);
        bottom: -100px;
        left: -80px;
        pointer-events: none;
      }
      .hero-inner {
        position: relative;
        z-index: 1;
        text-align: center;
        max-width: 860px;
        margin: 0 auto;
      }
      .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: 28px;
      }
      .hero-eyebrow::before {
        content: '';
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--gold);
      }
      .hero h1 {
        font-family: var(--serif);
        font-size: clamp(48px, 7vw, 86px);
        font-weight: 600;
        color: #fff;
        line-height: 1.08;
        margin-bottom: 28px;
        letter-spacing: -1px;
      }
      .hero h1 em {
        color: var(--gold);
        font-style: italic;
      }
      .hero-sub {
        font-size: clamp(16px, 1.8vw, 19px);
        color: rgba(255, 255, 255, 0.55);
        font-weight: 300;
        line-height: 1.75;
        max-width: 640px;
        margin: 0 auto 48px;
        letter-spacing: 0.2px;
      }
      .hero-stats {
        display: flex;
        justify-content: center;
        gap: 48px;
        flex-wrap: wrap;
        margin-top: 8px;
      }
      .hero-stat {
        text-align: center;
      }
      .hero-stat-num {
        font-family: var(--serif);
        font-size: 36px;
        font-weight: 700;
        color: var(--gold);
        line-height: 1;
        display: block;
      }
      .hero-stat-lbl {
        font-size: 12px;
        color: rgba(255, 255, 255, 0.4);
        text-transform: uppercase;
        letter-spacing: 1.2px;
        margin-top: 5px;
        display: block;
      }
      .hero-divider {
        width: 1px;
        height: 40px;
        background: rgba(255, 255, 255, 0.12);
        align-self: center;
      }
      .scroll-hint {
        position: absolute;
        bottom: 40px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        color: rgba(255, 255, 255, 0.3);
        font-size: 11px;
        letter-spacing: 1px;
        text-transform: uppercase;
        animation: fadeUpDown 2.5s ease-in-out infinite;
      }
      .scroll-hint-line {
        width: 1px;
        height: 36px;
        background: linear-gradient(to bottom, rgba(201, 169, 110, 0.5), transparent);
      }
      @keyframes fadeUpDown {
        0%,
        100% {
          opacity: 0.3;
          transform: translateX(-50%) translateY(0);
        }
        50% {
          opacity: 0.7;
          transform: translateX(-50%) translateY(6px);
        }
      }

      /* ═══ SECTION BASE ═══════════════════════════════════════════════════════ */
      section {
        padding: 100px 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(32px, 4vw, 52px);
        font-weight: 600;
        color: var(--navy);
        line-height: 1.12;
      }
      .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;
      }
      .section-sub.wide {
        max-width: 760px;
      }
      .gold-line {
        width: 48px;
        height: 3px;
        background: linear-gradient(90deg, var(--gold), var(--gold2));
        border-radius: 2px;
        margin: 18px 0 0;
      }

      /* ═══ STORY ══════════════════════════════════════════════════════════════ */
      .story-section {
        background: var(--cream);
      }
      .story-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: center;
      }
      .story-left {
      }
      .story-visual {
        position: relative;
        height: 520px;
        border-radius: var(--r20);
        background: linear-gradient(135deg, var(--navy) 0%, #1a2c1a 100%);
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
      }
      .story-visual-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: 24px 24px;
      }
      .story-visual-globe {
        position: relative;
        z-index: 1;
        width: 240px;
        height: 240px;
        border-radius: 50%;
        border: 1px solid rgba(201, 169, 110, 0.2);
        display: flex;
        align-items: center;
        justify-content: center;
        animation: rotate 40s linear infinite;
      }
      .story-visual-globe::before {
        content: '';
        position: absolute;
        inset: -20px;
        border-radius: 50%;
        border: 1px solid rgba(201, 169, 110, 0.08);
      }
      .story-visual-globe::after {
        content: '';
        position: absolute;
        inset: -40px;
        border-radius: 50%;
        border: 1px dashed rgba(201, 169, 110, 0.06);
      }
      @keyframes rotate {
        to {
          transform: rotate(360deg);
        }
      }
      .globe-inner {
        font-size: 80px;
        animation: rotate-rev 40s linear infinite;
      }
      @keyframes rotate-rev {
        to {
          transform: rotate(-360deg);
        }
      }
      .story-visual-dots {
        position: absolute;
        z-index: 2;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
      }
      .dot-city {
        position: absolute;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 4px;
        cursor: default;
      }
      .dot-city::before {
        content: '';
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--gold);
        box-shadow:
          0 0 0 3px rgba(201, 169, 110, 0.2),
          0 0 12px rgba(201, 169, 110, 0.4);
        animation: pulse-dot 2s ease-in-out infinite;
      }
      @keyframes pulse-dot {
        0%,
        100% {
          transform: scale(1);
        }
        50% {
          transform: scale(1.3);
        }
      }
      .dot-city span {
        font-size: 9px;
        color: rgba(255, 255, 255, 0.5);
        font-weight: 500;
        white-space: nowrap;
        letter-spacing: 0.5px;
      }
      .story-visual-badge {
        position: absolute;
        bottom: 24px;
        left: 24px;
        right: 24px;
        z-index: 3;
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(201, 169, 110, 0.15);
        border-radius: var(--r12);
        padding: 14px 18px;
        display: flex;
        align-items: center;
        gap: 14px;
        backdrop-filter: blur(10px);
      }
      .story-visual-badge-icon {
        font-size: 24px;
      }
      .story-visual-badge p {
        font-size: 12px;
        color: rgba(255, 255, 255, 0.6);
        line-height: 1.5;
      }
      .story-visual-badge strong {
        color: var(--gold);
      }
      .story-text p {
        font-size: 16px;
        color: #4a5568;
        line-height: 1.85;
        margin-bottom: 20px;
        font-weight: 300;
      }
      .story-text p:last-child {
        margin-bottom: 0;
      }

      /* ═══ MISSION ════════════════════════════════════════════════════════════ */
      .mission-section {
        background: var(--navy);
        position: relative;
        overflow: hidden;
      }
      .mission-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: 32px 32px;
        pointer-events: none;
      }
      .mission-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: start;
        position: relative;
        z-index: 1;
      }
      .mission-left .section-sub {
        color: rgba(255, 255, 255, 0.55);
        max-width: 500px;
      }
      .mission-cards {
        display: flex;
        flex-direction: column;
        gap: 16px;
      }
      .mission-card {
        padding: 24px 28px;
        border-radius: var(--r12);
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.07);
        display: flex;
        gap: 18px;
        align-items: flex-start;
        transition: 0.25s;
        cursor: default;
      }
      .mission-card:hover {
        background: rgba(201, 169, 110, 0.07);
        border-color: rgba(201, 169, 110, 0.18);
        transform: translateX(4px);
      }
      .mission-card-icon {
        width: 42px;
        height: 42px;
        border-radius: 10px;
        background: rgba(201, 169, 110, 0.12);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
      }
      .mission-card-icon svg {
        width: 20px;
        height: 20px;
        stroke: var(--gold);
        fill: none;
        stroke-width: 1.8;
      }
      .mission-card h4 {
        font-size: 15px;
        font-weight: 600;
        color: #fff;
        margin-bottom: 5px;
      }
      .mission-card p {
        font-size: 13.5px;
        color: rgba(255, 255, 255, 0.5);
        line-height: 1.65;
        font-weight: 300;
      }

      /* ═══ VALUES ═════════════════════════════════════════════════════════════ */
      .values-section {
        background: var(--sand);
      }
      .values-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 28px;
        margin-top: 56px;
      }
      .value-card {
        background: var(--white);
        border-radius: var(--r20);
        padding: 36px 32px;
        border: 1px solid var(--fog);
        transition: 0.25s;
        position: relative;
        overflow: hidden;
      }
      .value-card::before {
        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;
      }
      .value-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 20px 48px rgba(13, 27, 46, 0.1);
        border-color: rgba(201, 169, 110, 0.25);
      }
      .value-card:hover::before {
        transform: scaleX(1);
      }
      .value-num {
        font-family: var(--serif);
        font-size: 48px;
        font-weight: 700;
        color: rgba(201, 169, 110, 0.2);
        line-height: 1;
        margin-bottom: 16px;
      }
      .value-card h3 {
        font-family: var(--serif);
        font-size: 22px;
        font-weight: 600;
        color: var(--navy);
        margin-bottom: 12px;
      }
      .value-card p {
        font-size: 14.5px;
        color: var(--slate);
        line-height: 1.75;
        font-weight: 300;
      }

      /* ═══ COUNTRIES ══════════════════════════════════════════════════════════ */
      .countries-section {
        background: var(--cream);
      }
      .countries-intro {
        max-width: 620px;
        margin-bottom: 56px;
      }
      .countries-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 14px;
      }
      .country-card {
        background: var(--white);
        border: 1px solid var(--fog);
        border-radius: var(--r12);
        padding: 20px 18px;
        display: flex;
        align-items: center;
        gap: 12px;
        transition: 0.2s;
        cursor: default;
      }
      .country-card:hover {
        border-color: var(--gold);
        background: var(--sand);
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(13, 27, 46, 0.06);
      }
      .country-flag {
        font-size: 26px;
        line-height: 1;
      }
      .country-name {
        font-size: 13.5px;
        font-weight: 500;
        color: var(--navy);
      }
      .country-status {
        font-size: 11px;
        color: var(--slate);
        margin-top: 1px;
      }

      /* ═══ CTA ════════════════════════════════════════════════════════════════ */
      .cta-section {
        background: var(--cream);
      }
      .cta-inner {
        background: linear-gradient(135deg, var(--navy) 0%, #162236 60%, #1a2c1a 100%);
        border-radius: var(--r20);
        padding: 72px 80px;
        position: relative;
        overflow: hidden;
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 40px;
        align-items: center;
      }
      .cta-inner::before {
        content: '';
        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: 24px 24px;
      }
      .cta-text {
        position: relative;
        z-index: 1;
      }
      .cta-text h2 {
        font-family: var(--serif);
        font-size: clamp(28px, 3.5vw, 44px);
        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: 480px;
        line-height: 1.7;
      }
      .cta-btns {
        display: flex;
        flex-direction: column;
        gap: 12px;
        flex-shrink: 0;
        position: relative;
        z-index: 1;
      }
      .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);
        transition: 0.2s;
        border: none;
        cursor: pointer;
        white-space: nowrap;
      }
      .btn-gold:hover {
        background: var(--gold2);
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(201, 169, 110, 0.35);
      }
      .btn-gold svg {
        width: 15px;
        height: 15px;
        stroke: currentColor;
        fill: none;
        stroke-width: 2;
      }
      .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);
        transition: 0.2s;
        cursor: pointer;
        white-space: nowrap;
      }
      .btn-outline-light:hover {
        background: rgba(255, 255, 255, 0.08);
        color: #fff;
        border-color: rgba(255, 255, 255, 0.35);
      }

      /* ─── 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;
      }

      /* ═══ ANIMATIONS ══════════════════════════════════════════════════════════ */
      .fade-up {
        opacity: 0;
        transform: translateY(28px);
        transition:
          opacity 0.7s ease,
          transform 0.7s ease;
      }
      .fade-up.visible {
        opacity: 1;
        transform: none;
      }
      .fade-up:nth-child(2) {
        transition-delay: 0.1s;
      }
      .fade-up:nth-child(3) {
        transition-delay: 0.2s;
      }
      .fade-up:nth-child(4) {
        transition-delay: 0.3s;
      }

      /* ═══ RESPONSIVE ══════════════════════════════════════════════════════════ */
      @media (max-width: 1024px) {
        .story-grid,
        .mission-grid {
          grid-template-columns: 1fr;
          gap: 48px;
        }
        .values-grid {
          grid-template-columns: repeat(2, 1fr);
        }
        .cta-inner {
          grid-template-columns: 1fr;
          padding: 48px 40px;
        }
        .cta-btns {
          flex-direction: row;
        }
      }
      @media (max-width: 768px) {
        nav {
          padding: 0 20px;
        }
        .nav-links {
          display: none;
        }
        section {
          padding: 72px 24px;
        }
        .hero {
          padding: 100px 24px 72px;
        }
        .hero-stats {
          gap: 24px;
        }
        .hero-divider {
          display: none;
        }
        .values-grid {
          grid-template-columns: 1fr;
        }
        .footer-top {
          grid-template-columns: 1fr 1fr;
          gap: 32px;
        }
        .cta-inner {
          padding: 40px 28px;
        }
        .cta-btns {
          flex-direction: column;
        }
      }