/* ========================================
   LINAMANDALINA LLC — Dark Gold Premium Theme
   ======================================== */

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #c8a86b;
    --gold-light: #f0d090;
    --gold-dark: #b8903a;
    --gold-pale: #e8d5a3;
    --blue: #4a9eff;
    --purple: #7c5cfc;
    --dark-1: #0a0a1a;
    --dark-2: #0f1535;
    --dark-3: #151a3a;
    --dark-4: #1c2250;
    --dark-5: #252b60;
    --gray: #8892b0;
    --gray-light: #a8b2d1;
    --gray-lighter: #ccd6f6;
    --white: #e6f1ff;
    --pure-white: #ffffff;
    --font-heading: 'Playfair Display', 'Georgia', serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-mono: 'JetBrains Mono', 'Courier New', monospace;
    --shadow-gold: 0 4px 20px rgba(200, 168, 107, 0.15);
    --shadow-dark: 0 10px 40px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.5);
    --radius: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    color: var(--gray-light);
    background: var(--dark-1);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s;
}

/* Text gradients */
.text-gradient {
    background: linear-gradient(135deg, var(--gold), var(--gold-light), var(--gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-blue {
    background: linear-gradient(135deg, var(--blue), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Section styling */
.section-tag {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--gold);
    background: rgba(200, 168, 107, 0.08);
    border: 1px solid rgba(200, 168, 107, 0.2);
    padding: 6px 18px;
    border-radius: 100px;
    margin-bottom: 16px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--pure-white);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--gray);
}

/* ========================================
   Buttons
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 12px 24px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.01em;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
    color: var(--dark-1);
    box-shadow: 0 2px 12px rgba(200, 168, 107, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 4px 24px rgba(200, 168, 107, 0.5);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--gold-pale);
    border: 1.5px solid rgba(200, 168, 107, 0.3);
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(200, 168, 107, 0.05);
}

.btn-outline-light {
    background: transparent;
    color: var(--pure-white);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1rem;
    border-radius: 12px;
}

.btn-nav {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: var(--dark-1) !important;
    padding: 10px 22px;
    border-radius: 8px;
    font-size: 0.9rem;
}

.btn-nav:hover {
    box-shadow: 0 2px 16px rgba(200, 168, 107, 0.4);
}

/* ========================================
   Navbar
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(10, 10, 26, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(200, 168, 107, 0.1);
    padding: 10px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1.1rem;
}

.logo-icon {
    display: flex;
    align-items: center;
}

.logo-text {
    font-family: var(--font-heading);
    color: var(--gold-pale);
    font-size: 1.15rem;
    letter-spacing: 0.08em;
    transition: color 0.3s;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray);
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--gold-pale);
}

.navbar.scrolled .nav-links a {
    color: var(--gray);
}

.navbar.scrolled .nav-links a:hover {
    color: var(--gold-pale);
}

.navbar.scrolled .nav-links .btn-nav {
    color: var(--dark-1) !important;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--gold-pale);
    border-radius: 2px;
    transition: all 0.3s;
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, #0a0a1a 0%, #0f1535 30%, #151a3a 60%, #0a0a1a 100%);
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(200, 168, 107, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(200, 168, 107, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.floating-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.25;
}

.shape-1 {
    width: 500px;
    height: 500px;
    background: var(--gold-dark);
    top: -150px;
    right: -150px;
    animation: float 10s ease-in-out infinite;
}

.shape-2 {
    width: 350px;
    height: 350px;
    background: var(--purple);
    bottom: -100px;
    left: -100px;
    animation: float 12s ease-in-out infinite reverse;
}

.shape-3 {
    width: 250px;
    height: 250px;
    background: var(--blue);
    top: 40%;
    left: 25%;
    animation: float 14s ease-in-out infinite;
}

.shape-4 {
    width: 200px;
    height: 200px;
    background: var(--gold);
    bottom: 25%;
    right: 15%;
    animation: float 11s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(25px, -25px); }
    66% { transform: translate(-20px, 20px); }
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.hero-text {
    color: var(--pure-white);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(200, 168, 107, 0.08);
    border: 1px solid rgba(200, 168, 107, 0.2);
    backdrop-filter: blur(10px);
    padding: 8px 18px;
    border-radius: 100px;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 28px;
    color: var(--gold);
    letter-spacing: 0.05em;
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(200, 168, 107, 0.4); }
    50% { opacity: 0.7; box-shadow: 0 0 0 6px rgba(200, 168, 107, 0); }
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
    color: var(--pure-white);
}

.hero-description {
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 520px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

/* Dashboard Mockup */
.hero-visual {
    perspective: 1000px;
}

.dashboard-mockup {
    background: var(--dark-3);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(200, 168, 107, 0.1);
    transform: rotateY(-5deg) rotateX(2deg);
    transition: transform 0.5s ease;
}

.dashboard-mockup:hover {
    transform: rotateY(-2deg) rotateX(1deg);
}

.mockup-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--dark-2);
    border-bottom: 1px solid rgba(200, 168, 107, 0.1);
}

.mockup-dots {
    display: flex;
    gap: 6px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot.red { background: #ef4444; }
.dot.yellow { background: #f0d090; }
.dot.green { background: #22c55e; }

.mockup-url {
    flex: 1;
    text-align: center;
    font-size: 0.75rem;
    color: var(--gray);
    background: rgba(255, 255, 255, 0.05);
    padding: 4px 12px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.mockup-body {
    display: flex;
    min-height: 340px;
}

.mockup-sidebar {
    width: 56px;
    background: var(--dark-1);
    padding: 16px 12px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sidebar-item {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
}

.sidebar-item.active {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
}

.mockup-content {
    flex: 1;
    padding: 20px;
    background: var(--dark-3);
}

.mockup-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.topbar-title {
    width: 120px;
    height: 14px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 4px;
}

.topbar-actions {
    display: flex;
    gap: 8px;
}

.topbar-btn {
    width: 60px;
    height: 28px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 6px;
}

.topbar-btn.primary {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    width: 80px;
}

.mockup-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.mock-card {
    background: var(--dark-2);
    border-radius: 10px;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.mock-card-icon {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    margin-bottom: 8px;
}

.mock-card-icon.blue { background: rgba(74, 158, 255, 0.15); }
.mock-card-icon.purple { background: rgba(124, 92, 252, 0.15); }
.mock-card-icon.green { background: rgba(200, 168, 107, 0.15); }

.mock-card-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--pure-white);
    margin-bottom: 4px;
}

.mock-card-label {
    width: 60%;
    height: 8px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    margin-bottom: 10px;
}

.mock-card-chart {
    height: 30px;
}

.mock-card-chart svg {
    width: 100%;
    height: 100%;
}

.mockup-chart-area {
    background: var(--dark-2);
    border-radius: 10px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 16px;
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.chart-title {
    width: 100px;
    height: 10px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 4px;
}

.chart-tabs {
    display: flex;
    gap: 6px;
}

.chart-tabs .tab {
    width: 40px;
    height: 22px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 4px;
}

.chart-tabs .tab.active {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
}

.chart-body {
    height: 80px;
}

.area-chart {
    width: 100%;
    height: 100%;
}

.mockup-table {
    background: var(--dark-2);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    overflow: hidden;
}

.table-row {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1fr 0.8fr;
    gap: 8px;
    padding: 10px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.table-row span {
    height: 8px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 4px;
}

.table-row.header span {
    background: rgba(255, 255, 255, 0.12);
    height: 6px;
}

.table-row .status {
    width: 50px;
    height: 20px;
    border-radius: 10px;
    align-self: center;
}

.table-row .status.green { background: rgba(200, 168, 107, 0.15); }
.table-row .status.blue { background: rgba(74, 158, 255, 0.15); }

/* ========================================
   Trusted By
   ======================================== */
.trusted-by {
    padding: 60px 0;
    background: var(--dark-2);
    border-top: 1px solid rgba(200, 168, 107, 0.08);
    border-bottom: 1px solid rgba(200, 168, 107, 0.08);
}

.trusted-label {
    text-align: center;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 32px;
}

.logo-strip {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
    opacity: 0.4;
}

.company-logo {
    transition: opacity 0.3s;
    filter: brightness(2) grayscale(1);
}

.company-logo:hover {
    opacity: 0.7;
}

/* ========================================
   About Section
   ======================================== */
.about {
    padding: 120px 0;
    background: var(--dark-1);
}

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

.about-text h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--pure-white);
}

.about-description {
    font-size: 1.1rem;
    color: var(--gray-light);
    margin-bottom: 8px;
}

.about-text p {
    color: var(--gray);
    margin-bottom: 32px;
    line-height: 1.7;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.feature-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: rgba(200, 168, 107, 0.08);
    border: 1px solid rgba(200, 168, 107, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-feature strong {
    display: block;
    margin-bottom: 4px;
    font-size: 0.95rem;
    color: var(--pure-white);
}

.about-feature p {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 0;
}

.about-visual {
    position: relative;
}

.about-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: visible;
}

.about-image-wrapper img {
    border-radius: var(--radius-lg);
    width: 100%;
    height: 400px;
    object-fit: cover;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(200, 168, 107, 0.1);
}

/* ========================================
   Expertise Section
   ======================================== */
.expertise {
    padding: 120px 0;
    background: var(--dark-2);
}

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

.expertise-card {
    background: var(--dark-3);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    border: 1px solid rgba(200, 168, 107, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.expertise-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
    opacity: 0;
    transition: opacity 0.3s;
}

.expertise-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(200, 168, 107, 0.15);
}

.expertise-card:hover::before {
    opacity: 1;
}

.card-icon {
    width: 52px;
    height: 52px;
    background: rgba(200, 168, 107, 0.08);
    border: 1px solid rgba(200, 168, 107, 0.12);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--gold);
}

.expertise-card h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--pure-white);
}

.expertise-card p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 20px;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gold);
    transition: gap 0.3s;
}

.card-link:hover {
    gap: 10px;
    color: var(--gold-light);
}

/* ========================================
   Solutions Section
   ======================================== */
.solutions {
    padding: 120px 0;
    background: var(--dark-1);
}

.solutions-list {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.solution-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.solution-item.reverse {
    direction: rtl;
}

.solution-item.reverse > * {
    direction: ltr;
}

.solution-visual {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.solution-visual img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-dark);
    transition: transform 0.5s ease;
    border: 1px solid rgba(200, 168, 107, 0.1);
}

.solution-visual:hover img {
    transform: scale(1.03);
}

.solution-tag {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gold);
    background: rgba(200, 168, 107, 0.08);
    border: 1px solid rgba(200, 168, 107, 0.2);
    padding: 4px 14px;
    border-radius: 100px;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.solution-content h3 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.3;
    color: var(--pure-white);
}

.solution-content > p {
    color: var(--gray);
    margin-bottom: 24px;
    line-height: 1.7;
}

.solution-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
}

.solution-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--gray-light);
}

.solution-features li svg {
    flex-shrink: 0;
}

/* ========================================
   Why Choose Us
   ======================================== */
.why-us {
    padding: 120px 0;
    background: var(--dark-2);
}

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

.why-card {
    background: var(--dark-3);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    border: 1px solid rgba(200, 168, 107, 0.08);
    transition: all 0.3s ease;
}

.why-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(200, 168, 107, 0.15);
}

.why-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
    line-height: 1;
}

.why-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--pure-white);
}

.why-card p {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.6;
}

/* ========================================
   Tech Stack
   ======================================== */
.tech-stack {
    padding: 120px 0;
    background: var(--dark-1);
}

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

.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 32px 16px;
    background: var(--dark-2);
    border-radius: var(--radius);
    border: 1px solid rgba(200, 168, 107, 0.06);
    transition: all 0.3s ease;
}

.tech-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(200, 168, 107, 0.15);
}

.tech-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tech-item span {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gray);
    text-align: center;
}

/* ========================================
   Vision Section
   ======================================== */
.vision {
    padding: 120px 0;
    background: var(--dark-2);
}

.vision-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.vision-text h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--pure-white);
}

.vision-text p {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 16px;
}

.vision-visual img {
    border-radius: var(--radius-lg);
    width: 100%;
    height: 380px;
    object-fit: cover;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(200, 168, 107, 0.1);
}

/* ========================================
   CTA Section
   ======================================== */
.cta {
    padding: 120px 0;
    background: linear-gradient(160deg, var(--dark-1) 0%, var(--dark-3) 50%, var(--dark-1) 100%);
    position: relative;
    overflow: hidden;
}

.cta-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200, 168, 107, 0.12), transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--pure-white);
    line-height: 1.2;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 36px;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background: var(--dark-1);
    padding: 80px 0 40px;
    color: var(--gray);
    border-top: 1px solid rgba(200, 168, 107, 0.08);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand p {
    font-size: 0.9rem;
    margin-top: 16px;
    line-height: 1.6;
    color: var(--gray);
}

.footer-brand .logo-text {
    color: var(--gold-pale);
}

.footer-links h4 {
    color: var(--pure-white);
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 20px;
}

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

.footer-links a {
    font-size: 0.875rem;
    color: var(--gray);
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid rgba(200, 168, 107, 0.08);
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--gray);
}

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social a {
    color: var(--gray);
    transition: color 0.3s;
}

.footer-social a:hover {
    color: var(--gold);
}

/* ========================================
   Contact Modal
   ======================================== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 26, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: var(--dark-3);
    border: 1px solid rgba(200, 168, 107, 0.15);
    border-radius: var(--radius-xl);
    padding: 40px;
    width: 100%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(20px) scale(0.97);
    transition: transform 0.3s ease;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.6);
}

.modal-overlay.active .modal {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--gray);
    transition: all 0.2s;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--pure-white);
}

.modal-header {
    margin-bottom: 28px;
}

.modal-header h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--pure-white);
}

.modal-header p {
    color: var(--gray);
    font-size: 0.95rem;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-light);
}

.form-group label .required {
    color: var(--gold);
}

.form-group input,
.form-group textarea {
    font-family: var(--font-body);
    font-size: 0.95rem;
    padding: 12px 16px;
    border: 1.5px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--pure-white);
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
    resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(200, 168, 107, 0.1);
    background: rgba(200, 168, 107, 0.03);
}

.form-group input.error,
.form-group textarea.error {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

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

.btn-loading {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.form-success {
    text-align: center;
    padding: 20px 0;
}

.success-icon {
    margin-bottom: 20px;
}

.form-success h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--pure-white);
}

.form-success p {
    color: var(--gray);
    margin-bottom: 24px;
    line-height: 1.6;
}

/* ========================================
   Animations
   ======================================== */
.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }
.delay-4 { animation-delay: 0.6s; }

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

.scroll-animate {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

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

    .dashboard-mockup {
        transform: none;
    }

    .dashboard-mockup:hover {
        transform: none;
    }

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

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

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

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--dark-2);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        box-shadow: var(--shadow-dark);
        border-top: 1px solid rgba(200, 168, 107, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        color: var(--gray-light) !important;
    }

    .nav-links a:hover {
        color: var(--gold) !important;
    }

    .mobile-toggle {
        display: flex;
    }

    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

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

    .hero-buttons {
        flex-direction: column;
    }

    .section-header h2,
    .about-text h2,
    .vision-text h2,
    .cta-content h2 {
        font-size: 2rem;
    }

    .about-grid,
    .solution-item,
    .solution-item.reverse,
    .vision-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .solution-item.reverse {
        direction: ltr;
    }

    .about, .expertise, .solutions, .why-us, .tech-stack, .vision, .cta {
        padding: 80px 0;
    }

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

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

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

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .mockup-body {
        min-height: 280px;
    }

    .mockup-cards {
        grid-template-columns: 1fr;
    }

    .logo-strip {
        gap: 24px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

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

    .mockup-sidebar {
        display: none;
    }

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

    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .modal {
        width: 95%;
        max-height: 90vh;
        margin: 20px;
        padding: 28px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}
