/* ==========================================================================
   TEREDA SOFTWARE - Main Styles
   Vercel/Linear/Stripe Quality
   ========================================================================== */

:root {
    /* Colors */
    --color-bg: #000000;
    --color-bg-elevated: #050505;
    --color-bg-card: rgba(255, 255, 255, 0.02);
    --color-border: rgba(255, 255, 255, 0.06);
    --color-border-hover: rgba(255, 255, 255, 0.12);
    --color-text: #ffffff;
    --color-text-secondary: rgba(255, 255, 255, 0.6);
    --color-text-tertiary: rgba(255, 255, 255, 0.4);
    --color-accent: #00d4ff;
    
    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    
    /* Spacing */
    --container-max: 1200px;
    --section-padding: 140px;
    --section-padding-mobile: 80px;
    
    /* Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: 0.15s var(--ease-out);
    --transition-base: 0.3s var(--ease-out);
    --transition-slow: 0.6s var(--ease-out);
}

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

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

body {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-bg);
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.025em;
}

.section-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-text-tertiary);
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: -0.03em;
}

.section-subtitle {
    font-size: 17px;
    color: var(--color-text-secondary);
    max-width: 480px;
    line-height: 1.65;
}

.text-gradient {
    background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,0.6) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Layout */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

@media (min-width: 768px) {
    .container { padding: 0 48px; }
}

.section {
    padding: var(--section-padding) 0;
    position: relative;
}

@media (max-width: 768px) {
    .section { padding: var(--section-padding-mobile) 0; }
}

.section-dark {
    background-color: var(--color-bg-elevated);
}

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

.section-header-centered {
    text-align: center;
}

.section-header-centered .section-subtitle {
    margin: 0 auto;
}


/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition-base);
}

.nav.scrolled {
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border);
    padding: 14px 0;
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (min-width: 768px) {
    .nav-container { padding: 0 48px; }
}

.nav-logo {
    display: flex;
    align-items: center;
    transition: var(--transition-fast);
}

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

.nav-logo .logo-mark {
    width: 48px;
    height: 48px;
    color: var(--color-text);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text-secondary);
    transition: var(--transition-fast);
    position: relative;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-text);
    transition: var(--transition-base);
}

.nav-links a:hover::after { width: 100%; }

.nav-cta {
    background: var(--color-text);
    color: var(--color-bg) !important;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 13px;
}

.nav-cta::after { display: none !important; }

.nav-cta:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    cursor: pointer;
    z-index: 1001;
}

.nav-hamburger span {
    display: block;
    width: 20px;
    height: 1.5px;
    background: var(--color-text);
    margin: 2.5px 0;
    transition: var(--transition-fast);
}

.nav-hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(3.5px, 3.5px);
}

.nav-hamburger.active span:nth-child(2) {
    opacity: 0;
}

.nav-hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(3.5px, -3.5px);
}

@media (max-width: 768px) {
    .nav-hamburger { display: flex; }
    .nav-links { display: none; }
    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        height: 100dvh; /* Dynamic viewport height for mobile */
        background: #0a0a0a;
        z-index: 999;
        justify-content: center;
        align-items: center;
        gap: 32px;
        overflow: hidden;
    }
    .nav-links.active a {
        font-size: 24px;
    }
    .nav-hamburger.active {
        position: fixed;
        top: 20px;
        right: 20px;
        z-index: 1001;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    transition: var(--transition-base);
    cursor: pointer;
    border: none;
    text-decoration: none;
}

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

.btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.15);
}

.btn-ghost {
    background: transparent;
    color: var(--color-text-secondary);
}

.btn-ghost:hover { color: var(--color-text); }

.btn-large {
    padding: 18px 36px;
    font-size: 15px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #000;
}

/* ARGUS - Brought down to show full face and upper body */
.argus-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.argus-video {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
    object-position: center top;
    opacity: 1;
}

.argus-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, transparent 20%, rgba(0,0,0,0.5) 80%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 24px;
}

.hero-title {
    font-size: clamp(40px, 7vw, 76px);
    font-weight: 600;
    letter-spacing: -0.035em;
    line-height: 1.05;
    margin-bottom: 24px;
    text-shadow: 0 2px 40px rgba(0,0,0,0.8), 0 4px 20px rgba(0,0,0,0.6);
}

.hero-subtitle {
    font-size: clamp(16px, 2vw, 19px);
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 20px rgba(0,0,0,0.9), 0 1px 3px rgba(0,0,0,1);
}

.hero-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.5;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--color-text-secondary), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; height: 30px; }
    50% { opacity: 0.7; height: 40px; }
}


/* Metrics Bar */
.metrics-bar {
    background: var(--color-bg-elevated);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    padding: 40px 0;
}

.metrics-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.metric { text-align: center; }

.metric-value {
    display: block;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--color-text);
    margin-bottom: 4px;
}

.metric-label {
    font-size: 13px;
    color: var(--color-text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.metric-divider {
    width: 1px;
    height: 40px;
    background: var(--color-border);
}

@media (max-width: 768px) {
    .metrics-grid { gap: 32px; }
    .metric-divider { display: none; }
    .metric-value { font-size: 28px; }
}

/* Bento Grid */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: var(--color-border);
    border-radius: 16px;
    overflow: hidden;
}

.bento-card {
    background: var(--color-bg);
    padding: 40px;
    transition: var(--transition-base);
    position: relative;
}

.bento-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.03) 0%, transparent 50%);
    opacity: 0;
    transition: var(--transition-base);
    pointer-events: none;
}

.bento-card:hover::before { opacity: 1; }
.bento-card:hover { background: rgba(255, 255, 255, 0.02); }

.bento-large {
    grid-column: span 2;
    grid-row: span 2;
    padding: 56px;
}

.bento-wide { grid-column: span 2; }

.bento-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    margin-bottom: 24px;
    color: var(--color-text);
}

.bento-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.bento-large .bento-title { font-size: 28px; }

.bento-desc {
    font-size: 15px;
    color: var(--color-text-secondary);
    line-height: 1.65;
    margin-bottom: 20px;
}

.bento-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
}

.bento-tags span {
    font-size: 12px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 100px;
    color: var(--color-text-tertiary);
}

@media (max-width: 1024px) {
    .bento-grid { grid-template-columns: repeat(2, 1fr); }
    .bento-large { grid-column: span 2; grid-row: span 1; }
}

@media (max-width: 640px) {
    .bento-grid { grid-template-columns: 1fr; }
    .bento-large, .bento-wide { grid-column: span 1; }
    .bento-card { padding: 32px; }
}

/* Tech Stack Categories */
.tech-categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
}

.tech-category {
    padding: 32px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    transition: var(--transition-base);
}

.tech-category:hover {
    border-color: var(--color-border-hover);
    background: rgba(255, 255, 255, 0.03);
}

.tech-category-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.tech-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tech-list span {
    font-size: 12px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    color: var(--color-text-secondary);
    transition: var(--transition-fast);
}

.tech-list span:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-text);
}

@media (max-width: 1024px) {
    .tech-categories { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
    .tech-categories { grid-template-columns: 1fr; gap: 24px; }
    .tech-category { padding: 24px; }
}


/* About Section */
.about-grid { max-width: 640px; }

.about-text {
    font-size: 17px;
    color: var(--color-text-secondary);
    line-height: 1.75;
    margin-bottom: 24px;
}

.about-values {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.value {
    display: flex;
    align-items: center;
    gap: 12px;
}

.value-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(52, 211, 153, 0.1);
    border-radius: 8px;
    color: #34d399;
}

.value span {
    font-size: 15px;
    color: var(--color-text);
}

/* Contact CTA */
.contact-cta {
    text-align: center;
    padding: 80px 0;
}

.contact-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.contact-subtitle {
    font-size: 17px;
    color: var(--color-text-secondary);
    margin-bottom: 40px;
}

/* Footer */
.footer {
    border-top: 1px solid var(--color-border);
    padding: 64px 0 48px;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 64px;
    margin-bottom: 64px;
}

.footer-brand { max-width: 280px; }

.footer-logo {
    color: var(--color-text);
    margin-bottom: 16px;
}

.footer-tagline {
    font-size: 14px;
    color: var(--color-text-tertiary);
    line-height: 1.6;
}

.footer-links {
    display: flex;
    gap: 80px;
}

.footer-col h4 {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--color-text);
}

.footer-col a {
    display: block;
    font-size: 14px;
    color: var(--color-text-tertiary);
    margin-bottom: 12px;
    transition: var(--transition-fast);
}

.footer-col a:hover { color: var(--color-text); }

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid var(--color-border);
}

.footer-bottom p {
    font-size: 13px;
    color: var(--color-text-tertiary);
}

@media (max-width: 768px) {
    .footer-grid { flex-direction: column; gap: 48px; }
    .footer-links { gap: 48px; flex-wrap: wrap; }
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Selection */
::selection {
    background: rgba(255, 255, 255, 0.2);
    color: var(--color-text);
}

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--color-bg); }
::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover { background: rgba(255, 255, 255, 0.2); }

/* Focus */
:focus-visible {
    outline: 2px solid var(--color-text);
    outline-offset: 2px;
}


/* ==========================================================================
   Homepage Preview Sections
   ========================================================================== */

/* Capabilities Preview Grid */
.cap-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.cap-preview-card {
    padding: 32px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    transition: var(--transition-base);
}

.cap-preview-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--color-border-hover);
    transform: translateY(-2px);
}

.cap-preview-num {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--color-text-tertiary);
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.cap-preview-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.cap-preview-card p {
    font-size: 14px;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

/* Technology Preview */
.tech-preview {
    position: relative;
    margin-bottom: 48px;
    overflow: hidden;
}

.tech-preview-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    padding: 0 40px;
}

.tech-preview-tags span {
    display: inline-flex;
    align-items: center;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text);
    transition: var(--transition-fast);
}

.tech-preview-tags span:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--color-border-hover);
}

.tech-preview-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to top, var(--color-bg-secondary), transparent);
    pointer-events: none;
}

/* Section CTA */
.section-cta {
    text-align: center;
}

/* Responsive */
@media (max-width: 1024px) {
    .cap-preview-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .cap-preview-grid {
        grid-template-columns: 1fr;
    }
    
    .cap-preview-card {
        padding: 24px;
    }
    
    .tech-preview-tags {
        padding: 0;
    }
    
    .tech-preview-tags span {
        padding: 8px 14px;
        font-size: 13px;
    }
}


/* ==========================================================================
   Navigation Dropdown Menus
   ========================================================================== */

.nav-dropdown {
    position: relative;
}

.nav-dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.nav-dropdown-trigger svg {
    transition: transform 0.2s ease;
}

.nav-dropdown:hover .nav-dropdown-trigger svg {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 600px;
    background: rgba(15, 15, 15, 0.98);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    z-index: 1000;
    backdrop-filter: blur(20px);
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu-compact {
    min-width: 480px;
}

.dropdown-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1.2fr;
    gap: 32px;
}

.dropdown-grid-2 {
    grid-template-columns: 1fr 1fr;
}

.dropdown-section h4 {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-tertiary);
    margin-bottom: 16px;
}

.dropdown-section a {
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid transparent;
    transition: var(--transition-fast);
}

.dropdown-section a:hover {
    border-bottom-color: var(--color-border);
}

.dropdown-title {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: 2px;
}

.dropdown-desc {
    display: block;
    font-size: 12px;
    color: var(--color-text-tertiary);
}

.dropdown-featured {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    padding: 20px;
}

.dropdown-label {
    display: block;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-tertiary);
    margin-bottom: 12px;
}

.dropdown-focus {
    display: block;
}

.focus-title {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 8px;
}

.focus-desc {
    display: block;
    font-size: 13px;
    color: var(--color-text-secondary);
    line-height: 1.5;
    margin-bottom: 12px;
}

.focus-link {
    font-size: 13px;
    color: var(--color-text-tertiary);
    transition: color 0.2s ease;
}

.dropdown-featured:hover .focus-link {
    color: var(--color-text);
}

.dropdown-footer {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--color-border);
}

.dropdown-footer a {
    font-size: 13px;
    color: var(--color-text-tertiary);
    transition: color 0.2s ease;
}

.dropdown-footer a:hover {
    color: var(--color-text);
}

/* ==========================================================================
   Solutions Grid
   ========================================================================== */

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

.solution-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 32px;
    transition: var(--transition-base);
}

.solution-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--color-border-hover);
    transform: translateY(-2px);
}

.solution-featured {
    grid-column: span 2;
}

.solution-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    margin-bottom: 20px;
    color: var(--color-text);
}

.solution-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.solution-card p {
    font-size: 15px;
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.solution-examples {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.solution-examples span {
    font-size: 12px;
    color: var(--color-text-tertiary);
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 4px;
}

/* ==========================================================================
   Flagship Section (ZAFTO)
   ========================================================================== */

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

.flagship-subtitle {
    font-size: 20px;
    color: var(--color-text-secondary);
    margin-bottom: 24px;
}

.flagship-desc {
    font-size: 16px;
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: 40px;
}

.flagship-features {
    display: flex;
    gap: 48px;
    margin-bottom: 32px;
}

.flagship-feature {
    display: flex;
    flex-direction: column;
}

.feature-number {
    font-size: 36px;
    font-weight: 600;
    letter-spacing: -0.03em;
    margin-bottom: 4px;
}

.feature-label {
    font-size: 13px;
    color: var(--color-text-tertiary);
}

.flagship-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.flagship-tech span {
    font-size: 13px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--color-border);
    border-radius: 6px;
    color: var(--color-text-secondary);
}

.flagship-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--color-border);
    border-radius: 24px;
}

.flagship-badge {
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--color-border);
    border-radius: 8px;
}

.badge-text {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text-secondary);
}

/* ==========================================================================
   Responsive - Dropdowns & New Sections
   ========================================================================== */

@media (max-width: 1024px) {
    .nav-dropdown-menu {
        display: none;
    }
    
    .nav-dropdown-trigger svg {
        display: none;
    }
    
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .solution-featured {
        grid-column: span 2;
    }
    
    .flagship-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .flagship-visual {
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    .solutions-grid {
        grid-template-columns: 1fr;
    }
    
    .solution-featured {
        grid-column: span 1;
    }
    
    .flagship-features {
        flex-wrap: wrap;
        gap: 32px;
    }
}


/* ==========================================================================
   ZAFTO Platform Showcase
   ========================================================================== */

.zafto-intro {
    max-width: 800px;
    margin: 0 auto 64px;
    text-align: center;
}

.zafto-lead {
    font-size: 18px;
    line-height: 1.7;
    color: var(--color-text-secondary);
    margin-bottom: 32px;
}

.zafto-comparison {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.comparison-item {
    font-size: 15px;
    color: var(--color-text-tertiary);
}

.comparison-vs {
    font-size: 20px;
    font-weight: 600;
    color: var(--color-text);
}

/* Platform Grid */
.platform-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 64px;
}

.platform-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 32px;
}

.platform-icon {
    font-size: 32px;
    margin-bottom: 16px;
}

.platform-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.platform-card > p {
    font-size: 14px;
    color: var(--color-text-tertiary);
    margin-bottom: 20px;
}

.platform-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.platform-features li {
    font-size: 14px;
    color: var(--color-text-secondary);
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.platform-features li:last-child {
    border-bottom: none;
}

.platform-features li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--color-text-tertiary);
    font-size: 12px;
}

/* Trades Section */
.trades-section {
    margin-bottom: 64px;
    text-align: center;
}

.trades-title {
    font-size: 16px;
    font-weight: 500;
    color: var(--color-text-tertiary);
    margin-bottom: 24px;
}

.trades-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.trade-badge {
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    font-size: 14px;
    color: var(--color-text-secondary);
}

/* Pricing Preview */
.pricing-preview {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 48px;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.pricing-featured {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.15);
}

.pricing-tier {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-tertiary);
}

.pricing-price {
    font-size: 28px;
    font-weight: 600;
    color: var(--color-text);
}

.pricing-period {
    font-size: 13px;
    color: var(--color-text-tertiary);
    margin-bottom: 8px;
}

.pricing-desc {
    font-size: 12px;
    color: var(--color-text-tertiary);
    line-height: 1.4;
}

/* ZAFTO Status */
.zafto-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.status-badge {
    padding: 6px 12px;
    background: rgba(255, 200, 50, 0.1);
    border: 1px solid rgba(255, 200, 50, 0.3);
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    color: rgb(255, 200, 50);
}

.status-text {
    font-size: 14px;
    color: var(--color-text-tertiary);
}

/* ==========================================================================
   Responsive - ZAFTO Section
   ========================================================================== */

@media (max-width: 1024px) {
    .platform-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-preview {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .pricing-preview {
        grid-template-columns: 1fr;
    }
    
    .zafto-status {
        flex-direction: column;
        text-align: center;
    }
    
    .zafto-lead {
        font-size: 16px;
    }
}
