/* ========== HERO ========== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 70px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('hero-globe.webp') center center / cover no-repeat;
    opacity: 0.15;
    z-index: 0;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 0%, var(--navy-deep) 70%);
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-centered {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 0 40px;
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
}

.hero-line {
    display: block;
}

.hero-line.highlight {
    color: var(--gold);
}

.hero-tagline {
    font-size: 1rem;
    color: var(--gold);
    font-style: italic;
    margin-bottom: 20px;
    opacity: 0.9;
}

.hero-subtitle {
    font-size: 1.05rem;
    color: var(--gray-400);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle strong {
    color: var(--white);
}

/* ========== HERO ACTIONS ========== */
.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

/* ========== HERO STATS ROW ========== */
.hero-stats-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-bottom: 32px;
    padding: 28px 40px;
    background: rgba(21, 34, 56, 0.5);
    border: 1px solid var(--border);
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.hero-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.stat-num {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.stat-text {
    font-size: 0.8rem;
    color: var(--gray-400);
}

.hero-stat-divider {
    width: 1px;
    height: 45px;
    background: var(--border);
}

/* ========== HERO CLIENTS ========== */
.hero-clients {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.clients-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gray-500);
}

.clients-logos {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
}

.clients-logos span {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gray-500);
    opacity: 0.7;
    transition: all 0.3s;
}

.clients-logos span:hover {
    opacity: 1;
    color: var(--gold);
}

/* ========== SCROLL INDICATOR ========== */
.scroll-indicator {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--gray-500);
    cursor: pointer;
    transition: color 0.3s;
}

.scroll-indicator:hover {
    color: var(--gold);
}

.scroll-indicator svg {
    width: 28px;
    height: 28px;
    animation: bounce-down 2s infinite;
}

/* ========== SECTIONS COMMON ========== */
section { padding: 100px 0; position: relative; z-index: 1; }

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-label {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3.5vw, 2.25rem);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 0.95rem;
    color: var(--gray-400);
    margin-top: 12px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ========== SERVICES ========== */
.services {
    background: url('services-bg.webp') center center / cover no-repeat;
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        var(--navy-deep) 0%,
        rgba(10, 15, 26, 0.85) 20%,
        rgba(10, 15, 26, 0.85) 80%,
        var(--navy-deep) 100%
    );
    z-index: 0;
}

.services .container {
    position: relative;
    z-index: 1;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* ========== SERVICE CARDS ========== */
.service-card {
    background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy) 100%);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 36px 28px;
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover::before { transform: scaleX(1); }

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(201, 162, 39, 0.3);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.service-card.featured {
    border-color: rgba(201, 162, 39, 0.4);
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
}

.service-card.featured::before {
    transform: scaleX(1);
    background: var(--gold);
}

.service-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-dim);
    border-radius: 14px;
    margin-bottom: 20px;
}

.service-card.featured .service-icon {
    background: var(--gold);
}

.service-icon svg {
    width: 26px;
    height: 26px;
    stroke: var(--gold);
    stroke-width: 1.5;
    fill: none;
}

.service-card.featured .service-icon svg {
    stroke: var(--navy-deep);
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--gray-400);
    line-height: 1.6;
}

/* ========== WHY SECTION ========== */
.why-section {
    background: url('about-bridge.webp') center center / cover no-repeat;
    position: relative;
}

.why-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
        rgba(10, 15, 26, 0.95) 0%,
        rgba(10, 15, 26, 0.85) 40%,
        rgba(10, 15, 26, 0.7) 100%
    );
    z-index: 0;
}

.why-section .container {
    position: relative;
    z-index: 1;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3.5vw, 2.25rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.why-content > p {
    color: var(--gray-400);
    font-size: 0.95rem;
    margin-bottom: 36px;
    line-height: 1.7;
}

.why-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.why-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.why-feature-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-dim);
    border-radius: 10px;
    flex-shrink: 0;
}

.why-feature-icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--gold);
    stroke-width: 2;
    fill: none;
}

.why-feature h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.why-feature p {
    font-size: 0.9rem;
    color: var(--gray-500);
}

.why-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* ========== STAT CARDS (WHY SECTION) ========== */
.stat-card {
    background: var(--navy-mid);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
}

.stat-card.highlight {
    grid-column: span 2;
    background: linear-gradient(135deg, var(--gold) 0%, #b8922a 100%);
}

.stat-card.highlight .stat-value,
.stat-card.highlight .stat-label {
    color: var(--navy-deep);
}

.stat-value {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-top: 8px;
}

/* ========== PARTNER SECTION ========== */
.partner-section { background: transparent; }

.partner-card {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 48px;
    background: var(--navy-mid);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 48px;
    align-items: center;
}

.partner-logo-area {
    text-align: center;
    padding: 32px;
    background: var(--navy-deep);
    border-radius: 16px;
    border: 1px solid var(--border);
}

.partner-logo-img {
    max-width: 180px;
    height: auto;
    margin-bottom: 12px;
}

.partner-logo-text {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gold);
}

.partner-logo-sub {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin-top: 4px;
}

.partner-info h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.partner-info > p {
    color: var(--gray-400);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.partner-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.3s;
}

.partner-link:hover { gap: 14px; }

.partner-link svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

.partner-badges {
    display: flex;
    gap: 10px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.partner-badge {
    font-size: 0.75rem;
    font-weight: 500;
    padding: 6px 14px;
    background: var(--navy-deep);
    border: 1px solid var(--border);
    border-radius: 6px;
    color: var(--gray-400);
}

/* ========== TERRITORY SECTION ========== */
.territory-section {
    padding: 100px 0;
    background: url('territory-map.webp') center center / cover no-repeat;
    position: relative;
    overflow: visible;
}

.territory-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        rgba(10, 15, 26, 0.85) 0%,
        rgba(21, 34, 56, 0.8) 50%,
        rgba(10, 15, 26, 0.85) 100%
    );
    z-index: 0;
}

.territory-section .container {
    position: relative;
    z-index: 1;
}

.territory-card {
    background: rgba(10, 15, 26, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 48px;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 10;
}

.territory-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    border-radius: 0 0 3px 3px;
}

.territory-header h2 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3.5vw, 2.25rem);
    font-weight: 700;
    margin-bottom: 12px;
}

.territory-header h2 .highlight {
    color: var(--gold);
}

.territory-header p {
    color: var(--gray-400);
    font-size: 1rem;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto 40px;
}

.territory-stats-row {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 40px;
}

.territory-stat-card {
    position: relative;
    background: var(--navy-mid);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px 48px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 200px;
    z-index: 1;
}

.territory-stat-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    z-index: 100;
}

.territory-stat-card.available-card:hover {
    box-shadow: 0 20px 50px rgba(201, 162, 39, 0.2);
}

.territory-stat-card.claimed-card:hover {
    box-shadow: 0 20px 50px rgba(34, 197, 94, 0.2);
}

.stat-number {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 8px;
}

.available-card .stat-number {
    color: var(--gold);
}

.claimed-card .stat-number {
    color: #22c55e;
}

.stat-label {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 4px;
}

.stat-hint {
    font-size: 0.75rem;
    color: var(--gray-500);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.stat-hint::before {
    content: '⟨';
    font-size: 0.65rem;
}

.stat-hint::after {
    content: '⟩';
    font-size: 0.65rem;
}

/* ========== TERRITORY ACTIONS ========== */
.territory-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.territory-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.territory-cta svg {
    width: 20px;
    height: 20px;
}

.territory-cta.primary {
    background: var(--gold);
    color: var(--navy-deep);
}

.territory-cta.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px var(--gold-glow);
}

.territory-cta.secondary {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--border);
}

.territory-cta.secondary:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* ========== PARTNER CTA SECTION ========== */
.partner-cta-section {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.partner-cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.partner-cta-content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3.5vw, 2.25rem);
    font-weight: 700;
    margin-bottom: 16px;
}

.partner-cta-content p {
    color: var(--gray-400);
    font-size: 1.05rem;
    margin-bottom: 28px;
}

.partner-cta-content .btn-primary {
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
}

.partner-cta-content .btn-primary:hover {
    background: var(--gold);
    color: var(--navy-deep);
}

/* ========== CONTACT SECTION ========== */
.contact-section {
    background: linear-gradient(180deg, transparent 0%, rgba(21, 34, 56, 0.3) 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 64px;
}

.contact-info h2 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3.5vw, 2.25rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.contact-info h2 span { color: var(--gold); }

.contact-info > p {
    color: var(--gray-400);
    font-size: 1.05rem;
    margin-bottom: 36px;
}

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

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

.contact-method-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-dim);
    border-radius: 12px;
}

.contact-method-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--gold);
    stroke-width: 1.5;
    fill: none;
}

.contact-method-label {
    font-size: 0.75rem;
    color: var(--gray-500);
}

.contact-method-text {
    font-size: 1rem;
    font-weight: 500;
}
