/* =============================================
   KAZGEOMINER - Design System
   Color palette inspired by talgagroup.com
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
    /* Talga-inspired palette */
    --bg-primary: #ffffff;
    --bg-secondary: #f2f2f2;
    /* Talga's warm off-white */
    --bg-tertiary: #eaeaea;
    --bg-card: #ffffff;
    --text-primary: #1a1a1b;
    /* Talga's deep graphite */
    --text-secondary: #5a5a5a;
    --text-muted: #9a9a9a;
    --accent-primary: #00a7e1;
    /* Talga's cyan-blue accent */
    --accent-primary-rgb: 0, 167, 225;
    --accent-secondary: #0090c4;
    --accent-light: #e6f7fd;
    --accent-hover: #007eaa;
    --border: #e0e0e0;
    --border-light: #ececec;
    --shadow-sm: 0 1px 4px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.10);
    --shadow-xl: 0 24px 64px rgba(0, 0, 0, 0.12);
    --container-width: 1280px;
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --font-heading: 'Manrope', 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    zoom: 0.9;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
}

img {
    display: block;
    max-width: 100%;
}

a {
    text-decoration: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 96px 0;
}

/* =============================================
   HEADER / NAV - clean white bar like example
   ============================================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 68px;
}

/* Logo */
.logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

/* Nav Links */
.nav-links {
    display: flex;
    list-style: none;
    gap: 0.25rem;
}

.nav-links a {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.875rem;
    padding: 0.5rem 0.875rem;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    letter-spacing: 0.01em;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text-primary);
    background: var(--bg-secondary);
}

/* Nav Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.lang-switch {
    display: flex;
    align-items: center;
    background: var(--bg-secondary);
    border-radius: var(--radius-sm);
    padding: 0.25rem;
    gap: 0;
}

.lang-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
    padding: 0.3rem 0.6rem;
    border-radius: 6px;
    transition: var(--transition);
    font-family: var(--font-body);
    letter-spacing: 0.05em;
}

.lang-btn.active {
    background: white;
    color: var(--text-primary);
    box-shadow: var(--shadow-sm);
}

.lang-btn:hover:not(.active) {
    color: var(--text-primary);
}

.divider {
    display: none;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
}

.mobile-menu-btn svg {
    width: 22px;
    height: 22px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.25rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.875rem;
    font-family: var(--font-body);
    transition: var(--transition);
    cursor: pointer;
    border: 1.5px solid transparent;
    letter-spacing: 0.01em;
    white-space: nowrap;
}

.btn-sm {
    padding: 0.55rem 1.125rem;
    font-size: 0.8125rem;
}

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

.btn-primary:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
}

.btn-secondary {
    background: white;
    color: var(--text-primary);
    border-color: var(--border);
}

.btn-secondary:hover {
    background: var(--bg-secondary);
    border-color: var(--text-primary);
}

.btn-outline {
    background: none;
    color: var(--text-primary);
    border-color: var(--border);
}

.btn-outline:hover {
    background: var(--bg-secondary);
}


.hero {
    position: relative;
    height: 80vh;
    min-height: 600px;
    display: flex;
    align-items: flex-end;
    overflow: visible;
    margin-top: 68px;
    padding: 16px;
    border-radius: 0;
    background: var(--bg-secondary);
}

.hero-bg {
    position: absolute;
    top: 16px;
    left: 16px;
    right: 16px;
    bottom: 0;
    z-index: 0;
    border-radius: var(--radius-xl);
    overflow: hidden;
}

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

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(10, 15, 30, 0.88) 0%,
            rgba(10, 15, 30, 0.5) 45%,
            rgba(10, 15, 30, 0.15) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-bottom: 180px;
    padding-left: 1rem;
    padding-right: 1rem;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 0.4rem 1rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
}

.hero h1 {
    font-size: clamp(3rem, 7vw, 7rem);
    font-weight: 800;
    background: linear-gradient(to right, #ffffff 0%, #80dcff 50%, #7eccea 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.hero h1 span {
    font-weight: 300;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.75);
    max-width: 520px;
    margin-bottom: 2.5rem;
    font-weight: 400;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-actions .btn-primary {
    background: white;
    color: var(--text-primary);
    border-color: white;
    padding: 0.875rem 2rem;
    font-size: 0.9rem;
}

.hero-actions .btn-primary:hover {
    background: var(--accent-light);
    border-color: var(--accent-primary);
    color: var(--accent-primary);
    box-shadow: none;
    transform: none;
}

.hero-actions .btn-ghost {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(8px);
    padding: 0.875rem 2rem;
    font-size: 0.9rem;
}

.hero-actions .btn-ghost:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Stats bar inside hero */
.hero-stats {
    position: absolute;
    bottom: 0;
    right: 16px;
    z-index: 2;
    display: flex;
    gap: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-right: none;
    border-bottom: none;
    border-radius: var(--radius-lg) 0 var(--radius-xl) 0;
    overflow: hidden;
}

.hero-stat {
    padding: 1.25rem 2rem;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-stat:last-child {
    border-right: none;
}

.hero-stat-value {
    font-size: 1.75rem;
    font-weight: 800;
    color: white;
    font-family: var(--font-heading);
    line-height: 1;
    margin-bottom: 0.25rem;
    white-space: nowrap;
}

.hero-stat-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* =============================================
   WHY SECTION - like "Why thousands choose..."
   ============================================= */
.why-section {
    padding: 80px 0;
    background: white;
}

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

.why-text h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 1.25rem;
    line-height: 1.2;
}

.why-text p {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.why-text .socials {
    display: flex;
    gap: 0.75rem;
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: var(--transition);
    cursor: pointer;
}

.social-icon:hover {
    background: var(--accent-primary);
    color: white;
}

.why-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 2.5rem;
}

.why-stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.why-stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-primary);
    font-family: var(--font-heading);
}

.why-stat-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

/* Feature cards on the right */
.why-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-card {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    transition: var(--transition);
    border: 1px solid var(--border-light);
}

.feature-card:hover {
    background: white;
    box-shadow: var(--shadow-md);
    border-color: var(--border);
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-primary);
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.feature-icon svg {
    width: 22px;
    height: 22px;
}

.feature-card h3 {
    font-size: 0.9375rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
    color: var(--text-primary);
}

.feature-card p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* =============================================
   SECTION HEADERS
   ============================================= */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--accent-primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}


.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 520px;
    line-height: 1.65;
}

.section-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2.5rem;
    gap: 2rem;
    flex-wrap: wrap;
}

/* Old section header compat */
.section-header {
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.section-header .line {
    width: 36px;
    height: 3px;
    background: var(--accent-primary);
    border-radius: 3px;
}

/* =============================================
   PROJECT CARDS (Geology section)
   ============================================= */
.secondary-bg {
    background: var(--bg-secondary);
}

.highlight-bg {
    background: white;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.25rem;
}

.project-card {
    background: white;
    border-radius: var(--radius-md);
    padding: 2rem;
    border: 1px solid var(--border);
    cursor: default;
}

.card-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: var(--accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--accent-primary);
}

.card-icon svg {
    width: 20px;
    height: 20px;
}

.project-card h3 {
    margin-bottom: 0.75rem;
    font-size: 1rem;
    font-weight: 700;
}

.project-card p {
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.6;
}

/* =============================================
   PITCH (Company) SECTION
   ============================================= */
.pitch-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.pitch-text p {
    margin-bottom: 1.25rem;
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.7;
}

.advantages-list {
    list-style: none;
    display: grid;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.advantages-list li {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    font-weight: 500;
    font-size: 0.9375rem;
    padding: 0.75rem 1rem;
    background: var(--bg-secondary);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-light);
}

.advantages-list li i,
.advantages-list li svg {
    color: var(--accent-primary);
    flex-shrink: 0;
}

.glass-img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    object-fit: cover;
    aspect-ratio: 4/3;
}

/* =============================================
   MARKET SECTION
   ============================================= */
.market-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.market-info h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.market-info p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.applications {
    margin-top: 2.5rem;
}

.applications h3 {
    font-size: 0.9375rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    color: var(--text-primary);
}

.app-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.875rem;
}

.app-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--bg-secondary);
    border-radius: var(--radius-sm);
    padding: 0.875rem 1rem;
    font-weight: 500;
    font-size: 0.875rem;
    color: var(--text-primary);
    border: 1px solid var(--border-light);
}

.app-item svg,
.app-item i {
    color: var(--accent-primary);
    flex-shrink: 0;
}

/* =============================================
   INVESTORS - Step Cards
   ============================================= */
.investors {
    background: var(--bg-secondary);
}

.text-center {
    text-align: center;
}

.investors h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.investors>.container>p {
    color: var(--text-secondary);
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

.funding-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
}

.step-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    border: 1px solid var(--border);
    transition: var(--transition);
    text-align: left;
}

.step-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.step-card.featured {
    border-color: var(--accent-primary);
    background: var(--accent-primary);
    color: white;
}

.step-card h3 {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent-primary);
    margin-bottom: 1rem;
}

.step-card.featured h3 {
    color: rgba(255, 255, 255, 0.7);
}

.step-card h4 {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.step-card.featured h4 {
    color: white;
}

.step-card .price {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
    letter-spacing: -0.03em;
}

.step-card.featured .price {
    color: white;
}

.step-card p {
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.6;
}

.step-card.featured p {
    color: rgba(255, 255, 255, 0.75);
}

.disclaimer {
    max-width: 700px;
    margin: 0 auto;
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* =============================================
   DOCUMENTS SECTION
   ============================================= */
.doc-list {
    display: grid;
    gap: 0;
}

.doc-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem 1rem;
    background: none;
    border-radius: 0;
    text-decoration: none;
    color: var(--text-primary);
    transition: var(--transition);
    border-bottom: 1px solid var(--border);
    cursor: pointer;
}

.doc-item:first-child {
    border-top: 1px solid var(--border);
}

.doc-item:hover {
    padding-left: 1.5rem;
    color: var(--accent-primary);
    background: var(--accent-light);
}

.doc-item i,
.doc-item svg {
    color: var(--accent-primary);
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.doc-item span {
    font-size: 0.9375rem;
    font-weight: 500;
    flex: 1;
}

.doc-item::after {
    content: '→';
    margin-left: auto;
    color: var(--text-muted);
    font-size: 1rem;
    transition: var(--transition);
}

.doc-item:hover::after {
    color: var(--accent-primary);
    transform: translateX(4px);
}

/* =============================================
   NURA VIDEO
   ============================================= */
.nura-video-section {
    padding-top: 48px;
    padding-bottom: 48px;
    background: var(--bg-primary);
}

.nura-video-wrap {
    position: relative;
    max-width: 960px;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
    background: #000;
}

.nura-video-card {
    position: absolute;
    inset: 0;
}

.nura-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #000;
}

.nura-video-card:not(.nura-video-ready) .nura-video {
    opacity: 0;
}

.nura-video-card.nura-video-ready .nura-video {
    opacity: 1;
}

.nura-video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 72px;
    height: 72px;
    border: none;
    border-radius: 50%;
    background: rgba(0, 167, 225, 0.92);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
    transition: var(--transition);
}

.nura-video-play-btn:hover {
    background: var(--accent-hover);
    transform: translate(-50%, -50%) scale(1.06);
}

.nura-video-play-btn svg {
    width: 32px;
    height: 32px;
    margin-left: 4px;
}

.nura-video-card.is-playing .nura-video-play-btn {
    display: none;
}

.nura-video-hidden {
    display: none !important;
}

/* =============================================
   HOW IT WORKS - "Booking made easy" equivalent
   ============================================= */
.steps-section {
    background: white;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
}

.steps-grid::before {
    content: '';
    position: absolute;
    top: 2.25rem;
    left: calc(16.66% + 1rem);
    right: calc(16.66% + 1rem);
    height: 2px;
    background: linear-gradient(to right, var(--accent-primary), var(--accent-light));
    z-index: 0;
}

.step-item {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-num {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--accent-primary);
    color: white;
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-family: var(--font-heading);
}

.step-item h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.step-item p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
    background: var(--text-primary);
    color: white;
    margin: 16px;
    padding: 5rem 0 2rem;
    border-radius: var(--radius-xl);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 5rem;
    margin-bottom: 4rem;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.375rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    background: linear-gradient(to right, #cecece 0%, #79b6cb 60%, #7eccea 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


.footer-brand p {
    color: #64748b;
    margin-top: 1rem;
    font-size: 0.875rem;
    line-height: 1.7;
    max-width: 280px;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #94a3b8;
    margin-bottom: 1.25rem;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.footer-links a {
    color: #94a3b8;
    font-size: 0.875rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    color: #94a3b8;
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}

.footer-contact svg,
.footer-contact i {
    width: 16px;
    height: 16px;
    color: var(--accent-primary);
    flex-shrink: 0;
}

.footer-contact-btn {
    margin-top: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-bottom p {
    color: #475569;
    font-size: 0.8rem;
}

/* =============================================
   MODALS
   ============================================= */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    backdrop-filter: blur(8px);
}

.modal-content {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    width: 90%;
    max-width: 480px;
    box-shadow: var(--shadow-xl);
    position: relative;
}

.modal-content h2 {
    font-size: 1.375rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

/* Forms */
.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-family: var(--font-body);
    color: var(--text-primary);
    background: white;
    transition: var(--transition);
    outline: none;
}

.form-control:focus {
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(29, 78, 216, 0.1);
}

/* =============================================
   ANIMATIONS
   ============================================= */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: none;
}

.fade-in {
    animation: fadeIn 0.9s ease-out forwards;
}

.slide-up {
    opacity: 0;
    animation: slideUp 0.7s ease-out 0.2s forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

/* =============================================
   ADMIN / DASHBOARD (keep compatibility)
   ============================================= */
.role-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.role-badge.admin {
    background: rgba(29, 78, 216, 0.1);
    color: var(--accent-primary);
    border: 1px solid rgba(29, 78, 216, 0.2);
}

.role-badge.editor {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.role-badge.viewer {
    background: rgba(148, 163, 184, 0.1);
    color: var(--text-secondary);
    border: 1px solid rgba(148, 163, 184, 0.2);
}

.profile-modal {
    max-width: 600px;
}

.profile-header {
    border-bottom: 1px solid var(--border);
    padding-bottom: 1.25rem;
    margin-bottom: 1.5rem;
}

.status-section {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1.25rem;
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
}

.status-badge {
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.status-badge.pending {
    background: rgba(251, 191, 36, 0.1);
    color: #f59e0b;
    border: 1px solid rgba(251, 191, 36, 0.3);
}

.status-badge.approved {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.docs-section h3 {
    margin-bottom: 0.875rem;
    font-size: 1rem;
}

.docs-grid-mini {
    display: grid;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.doc-item-mini {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.875rem 1rem;
    background: var(--bg-secondary);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
}

.doc-info-mini {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.doc-info-mini i,
.doc-info-mini svg {
    color: var(--accent-primary);
}

.empty-msg {
    text-align: center;
    color: var(--text-secondary);
    padding: 2rem;
    background: var(--bg-secondary);
    border-radius: var(--radius-sm);
}

.dashboard-body {
    background-color: #f0f2f5;
    background-image: radial-gradient(at 0% 0%, rgba(29, 78, 216, 0.05) 0px, transparent 50%),
        radial-gradient(at 50% 0%, rgba(30, 64, 175, 0.03) 0px, transparent 50%);
    min-height: 100vh;
    color: var(--text-primary);
}

.dashboard-main {
    padding-top: 120px;
    padding-bottom: 80px;
}

.dashboard-header {
    margin-bottom: 2.5rem;
}

.dashboard-header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.user-welcome {
    color: var(--text-secondary);
    font-size: 1.1rem;
    font-weight: 500;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.dashboard-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.dashboard-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.dashboard-card h2 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-light);
}

/* Status Badge Large */
.status-badge-lg {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.25rem;
}

.status-badge-lg.pending {
    background: rgba(245, 158, 11, 0.1);
    color: #d97706;
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.status-badge-lg.approved {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.status-description {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.9375rem;
}

/* =============================================
   NOTIFICATIONS (TOASTS)
   ============================================= */
.notification-container {
    position: fixed;
    top: 2rem;
    right: 2rem;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    pointer-events: none;
}

.notification {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: var(--radius-md);
    padding: 1.25rem 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-left: 5px solid var(--accent-primary);
    display: flex;
    align-items: center;
    gap: 1.25rem;
    min-width: 320px;
    max-width: 450px;
    pointer-events: auto;
    animation: slideInRight 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    transition: var(--transition);
}

.notification.hiding {
    animation: slideOutRight 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.notification-icon {
    color: var(--accent-primary);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notification-content {
    flex-grow: 1;
}

.notification-title {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.notification-message {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

@keyframes slideInRight {
    from { transform: translateX(100px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slideOutRight {
    from { transform: translateX(0); opacity: 1; }
    to { transform: translateX(100px); opacity: 0; }
}

.info-list {
    display: grid;
    gap: 1.25rem;
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border-light);
}

.info-item:last-child {
    border-bottom: none;
}

.info-item label {
    font-weight: 600;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.info-item span {
    font-weight: 500;
    color: var(--text-primary);
}

/* Documents Dashboard */
.documents-dashboard {
    margin-top: 4rem;
}

.documents-dashboard h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.dashboard-docs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 1.5rem;
}

.doc-card-premium {
    background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.doc-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--accent-primary);
    opacity: 0;
    transition: var(--transition);
}

.doc-card-premium:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 167, 225, 0.3);
    box-shadow: var(--shadow-lg);
}

.doc-card-premium:hover::before {
    opacity: 1;
}

.doc-icon-wrapper {
    width: 54px;
    height: 54px;
    background: var(--accent-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-primary);
    flex-shrink: 0;
    transition: var(--transition);
}

.doc-card-premium:hover .doc-icon-wrapper {
    background: var(--accent-primary);
    color: white;
    transform: scale(1.1);
}

.doc-icon-wrapper i,
.doc-icon-wrapper svg {
    width: 24px;
    height: 24px;
}

.doc-details {
    flex-grow: 1;
}

.doc-details h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
    color: var(--text-primary);
}

.doc-details p {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}


.loading-docs {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem;
    background: white;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    color: var(--text-secondary);
    font-weight: 500;
}

/* Transitions and animations */
.animate {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dashboard-header.animate {
    animation-delay: 0.1s;
}

.status-card.animate {
    animation-delay: 0.2s;
}

.info-card.animate {
    animation-delay: 0.3s;
}

.documents-dashboard.animate {
    animation-delay: 0.4s;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .dashboard-header h1 {
        font-size: 2rem;
    }

    .dashboard-docs-grid {
        grid-template-columns: 1fr;
    }
}

/* =============================================
   MAPS SECTION
   ============================================= */
.maps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 1rem;
}

.map-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
}

.map-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-primary);
}

.map-img-wrapper {
    position: relative;
    overflow: hidden;
    padding: 1rem;
    padding-bottom: 0;
}

.map-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.map-card:hover .map-img {
    transform: scale(1.03);
}

.map-info {
    padding: 1.5rem;
}

.map-info h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.map-info p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* =============================================
   IMAGE MODAL
   ============================================= */
.image-modal-overlay {
    z-index: 2000;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.85);
    cursor: pointer;
    align-items: center;
    justify-content: center;
}

.expanded-image {
    max-width: 90%;
    max-height: 90vh;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
    object-fit: contain;
    cursor: default;
}

.close-image-modal {
    position: absolute;
    top: 20px;
    right: 24px;
    color: white;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.15);
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    backdrop-filter: blur(8px);
}

.close-image-modal:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: white;
}

.map-img-wrapper {
    position: relative;
    overflow: hidden;
    padding: 1rem;
    padding-bottom: 0;
    cursor: pointer;
}

.map-zoom-hint {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(6px);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-primary);
    opacity: 0;
    transform: scale(0.8);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.map-card:hover .map-zoom-hint {
    opacity: 1;
    transform: scale(1);
}

.map-card {
    cursor: pointer;
}


/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {

    .pitch-content,
    .market-split {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .pitch-visual,
    .market-visual {
        order: -1;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .hero-stats {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    /* Reset zoom on mobile to prevent tiny text */
    html {
        zoom: 1;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero-content {
        padding-bottom: 3rem;
    }

    .section {
        padding: 64px 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid::before {
        display: none;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 600px) {
    .why-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .app-grid {
        grid-template-columns: 1fr;
    }

    .project-grid {
        grid-template-columns: 1fr;
    }

    .funding-steps {
        grid-template-columns: 1fr;
    }

    .hero {
        border-radius: 0;
    }
}

/* =============================================
   MOBILE MENU
   ============================================= */
.nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: white;
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
    border-bottom: 1px solid var(--border);
    gap: 0.25rem;
    z-index: 999;
}

.nav-links.mobile-open a {
    padding: 0.875rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.9375rem;
}

/* =============================================
   CONTACTS PAGE
   ============================================= */
.contacts-body {
    background: var(--bg-secondary);
}

.contacts-page {
    padding-top: 120px;
    padding-bottom: 64px;
    min-height: calc(100vh - 80px);
}

.contacts-page-header {
    margin-bottom: 2.5rem;
    max-width: 640px;
}

.contacts-page-intro {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.65;
    margin-top: 0.5rem;
}

.contacts-layout {
    display: grid;
    grid-template-columns: 1.35fr 0.85fr;
    gap: 2rem;
    align-items: start;
}

.contacts-form-card,
.contacts-info-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: 2rem;
}

.contacts-form-card h2 {
    font-size: 1.375rem;
    margin-bottom: 0.5rem;
}

.contacts-form-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.contacts-textarea {
    resize: vertical;
    min-height: 140px;
}

.contacts-info-card h3 {
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
}

.contacts-info-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.contacts-info-list li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contacts-info-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: var(--accent-light);
    color: var(--accent-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contacts-info-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

.contacts-info-list a {
    color: var(--accent-primary);
    font-weight: 500;
}

.contacts-info-list a:hover {
    color: var(--accent-hover);
}

.contacts-info-note {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.contact-success {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    border-radius: var(--radius-md);
    color: #065f46;
}

.contact-success svg {
    flex-shrink: 0;
    color: #10b981;
}

.contacts-footer {
    margin-top: auto;
}

@media (max-width: 900px) {
    .contacts-layout {
        grid-template-columns: 1fr;
    }
}