/* ================================
   FIYONOM - CSS STYLESHEET
   Premium E-commerce Platform
   ================================ */

/* ===== ROOT VARIABLES ===== */
:root {
    /* Colors */
    --fiyonom-primary: #b313c1;
    --fiyonom-primary-dark: #8a0f96;
    --fiyonom-primary-light: #d946e8;
    --fiyonom-secondary: #6366f1;
    --fiyonom-accent: #f59e0b;
    --fiyonom-success: #10b981;
    --fiyonom-error: #ef4444;

    /* Backgrounds */
    --bg-dark: #0f172a;
    --bg-dark-secondary: #1e293b;
    --bg-light: #f8fafc;
    --bg-light-secondary: #f1f5f9;

    /* Text */
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --text-light: #94a3b8;
    --text-white: #ffffff;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #b313c1 0%, #6366f1 100%);
    --gradient-secondary: linear-gradient(135deg, rgba(179, 19, 193, 0.1) 0%, rgba(99, 102, 241, 0.1) 100%);
    --gradient-glow: 0 20px 60px rgba(179, 19, 193, 0.3);

    /* Spacing */
    --container-max: 1280px;
    --section-padding: 60px;

    /* Fonts */
    --font-heading: 'Outfit', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Transitions */
    --transition-base: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

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

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

.section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

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

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.section-subtitle.center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== BUTTONS ===== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition-base);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(179, 19, 193, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--gradient-glow);
}

.btn-primary.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: transparent;
    color: var(--fiyonom-primary);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid var(--fiyonom-primary);
    transition: var(--transition-base);
}

.btn-secondary:hover {
    background: var(--fiyonom-primary);
    color: white;
    transform: translateY(-2px);
}

.btn-secondary.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

.arrow-icon {
    width: 20px;
    height: 20px;
    transition: var(--transition-base);
}

.btn-primary:hover .arrow-icon,
.btn-secondary:hover .arrow-icon {
    transform: translateX(4px);
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition-base);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

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

.logo {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition-base);
    position: relative;
}

.nav-link:not(.btn-primary-small):hover {
    color: var(--fiyonom-primary);
}

.nav-link:not(.btn-primary-small)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition-base);
}

.nav-link:not(.btn-primary-small):hover::after {
    width: 100%;
}

.btn-primary-small {
    padding: 0.625rem 1.5rem;
    background: var(--gradient-primary);
    color: white;
    border-radius: 8px;
    font-size: 0.875rem;
}

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--fiyonom-primary);
    border-radius: 2px;
    transition: var(--transition-base);
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 8rem 0 4rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
    z-index: -1;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: float 20s infinite ease-in-out;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: var(--fiyonom-primary);
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: var(--fiyonom-secondary);
    bottom: -150px;
    left: -150px;
    animation-delay: 7s;
}

.orb-3 {
    width: 350px;
    height: 350px;
    background: var(--fiyonom-accent);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 14s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -30px) scale(1.1);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

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

.hero-content {
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
    border: 1px solid rgba(179, 19, 193, 0.2);
}

.check-icon {
    width: 18px;
    height: 18px;
    color: var(--fiyonom-success);
}

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

.hero-visual {
    position: relative;
    animation: fadeInRight 1s ease-out;
}

.dashboard-mockup {
    position: relative;
}

.dashboard-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    transition: var(--transition-slow);
}

.dashboard-img:hover {
    transform: translateY(-10px);
    box-shadow: var(--gradient-glow);
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    animation: floatCard 3s infinite ease-in-out;
}

.card-1 {
    top: 20%;
    right: -10%;
    animation-delay: 0s;
}

.card-2 {
    bottom: 15%;
    left: -10%;
    animation-delay: 1.5s;
}

@keyframes floatCard {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.card-metric {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.metric-value {
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.metric-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===== PROXY COMMERCE SECTION ===== */
.proxy-commerce {
    padding: var(--section-padding) 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.comparison-table {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.comparison-col {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 20px;
    transition: var(--transition-base);
    border: 2px solid transparent;
}

.comparison-col.highlight {
    background: var(--gradient-secondary);
    border-color: var(--fiyonom-primary);
    position: relative;
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(179, 19, 193, 0.3);
}

.comparison-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.comparison-list {
    list-style: none;
}

.comparison-item {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.comparison-item.negative {
    color: var(--text-secondary);
}

.comparison-item.positive {
    color: var(--fiyonom-primary);
    font-weight: 600;
}

.process-section {
    margin-top: 5rem;
}

.process-img {
    width: 100%;
    max-width: 800px;
    margin: 0 auto 3rem;
    display: block;
}

/* Process Steps - Premium Card Grid */
.process-steps-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 2rem;
    align-items: start;
    margin: 4rem 0;
}

.process-step-card {
    background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
    border: 2px solid #f1f5f9;
    border-radius: 24px;
    padding: 3rem 2.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.process-step-card:hover {
    border-color: var(--fiyonom-primary);
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(179, 19, 193, 0.18);
}

.step-visual-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 1.8rem;
    background: var(--gradient-primary);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 35px rgba(179, 19, 193, 0.3);
    transition: all 0.3s ease;
}

.process-step-card:hover .step-visual-icon {
    transform: scale(1.08);
    box-shadow: 0 15px 45px rgba(179, 19, 193, 0.4);
}

.step-visual-icon svg {
    width: 44px;
    height: 44px;
    color: white;
}

.step-badge {
    display: inline-block;
    background: rgba(179, 19, 193, 0.1);
    color: var(--fiyonom-primary);
    padding: 0.5rem 1.2rem;
    border-radius: 24px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 1.2rem;
}

.step-heading {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    color: var(--text-primary);
    line-height: 1.3;
}

.step-tagline {
    font-size: 1.05rem;
    color: var(--fiyonom-primary);
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.step-description {
    text-align: left;
    margin-top: 1.5rem;
}

.step-description>p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

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

.step-features li {
    display: flex;
    align-items: flex-start;
    padding: 0.85rem 0;
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.65;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.feature-check {
    width: 20px;
    height: 20px;
    min-width: 20px;
    color: var(--fiyonom-success);
    margin-right: 0.75rem;
    margin-top: 0.15rem;
}

.step-features li span {
    flex: 1;
}

.step-features li strong {
    color: var(--text-primary);
    font-weight: 600;
}

.step-connector {
    color: var(--fiyonom-primary);
    opacity: 0.35;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-connector svg {
    width: 32px;
    height: 32px;
}

/* Value Proposition Cards */
.value-proposition {
    margin: 3rem 0;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition-base);
    border: 2px solid transparent;
}

.value-card:hover {
    border-color: var(--fiyonom-primary);
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(179, 19, 193, 0.15);
}

.value-icon-wrapper {
    width: 70px;
    height: 70px;
    background: var(--gradient-secondary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.value-icon {
    width: 36px;
    height: 36px;
    color: var(--fiyonom-primary);
    stroke-width: 2.5px;
}


.value-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.value-text {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Process Section Improvements */
.process-main-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.process-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.benefit-card {
    display: flex;
    gap: 1.25rem;
    padding: 1.75rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    transition: var(--transition-base);
    border: 2px solid transparent;
}

.benefit-card:hover {
    border-color: var(--fiyonom-primary);
    transform: translateX(8px);
    box-shadow: 0 4px 25px rgba(179, 19, 193, 0.12);
}

.benefit-icon-box {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-secondary);
    border-radius: 12px;
}

.benefit-icon-svg {
    width: 28px;
    height: 28px;
    color: var(--fiyonom-primary);
    stroke-width: 2.5px;
}

.benefit-content {
    flex: 1;
}

.benefit-title {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 700;
}

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


/* ===== PROBLEM SOLUTION SECTION ===== */
.problem-solution {
    padding: var(--section-padding) 0;
    background: var(--bg-light);
}

.split-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 4rem;
}

.col-title {
    font-size: 1.75rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid;
}

.problem-col .col-title {
    border-color: var(--fiyonom-error);
    color: var(--fiyonom-error);
}

.solution-col .col-title {
    border-color: var(--fiyonom-success);
    color: var(--fiyonom-success);
}

.problem-list,
.solution-list {
    list-style: none;
}

.problem-item,
.solution-item {
    padding: 1.25rem;
    margin-bottom: 1rem;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: var(--transition-base);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.problem-item:hover,
.solution-item:hover {
    transform: translateX(8px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.x-icon {
    width: 24px;
    height: 24px;
    color: var(--fiyonom-error);
    flex-shrink: 0;
}

.solution-item .check-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
    padding: var(--section-padding) 0;
    background: white;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin: 4rem 0;
}

.step-card {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 20px;
    transition: var(--transition-base);
    border: 2px solid transparent;
}

.step-card:hover {
    border-color: var(--fiyonom-primary);
    transform: translateY(-10px);
    box-shadow: var(--gradient-glow);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.step-icon svg {
    width: 40px;
    height: 40px;
    color: white;
}

.step-card .step-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.step-subtitle {
    font-size: 1rem;
    color: var(--fiyonom-primary);
    font-weight: 600;
    margin-bottom: 1rem;
}

.step-description {
    color: var(--text-secondary);
    line-height: 1.7;
}

.metrics-preview {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.metric-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.cta-box {
    max-width: 800px;
    margin: 4rem auto 0;
    padding: 2.5rem;
    background: var(--gradient-secondary);
    border-radius: 20px;
    border: 2px solid var(--fiyonom-primary);
    text-align: center;
}

.cta-text {
    font-size: 1.125rem;
    color: var(--text-primary);
    line-height: 1.8;
}

/* ===== WHY FIYONOM ===== */
.why-fiyonom {
    padding: var(--section-padding) 0;
    background: var(--bg-light);
}

.comparison-table-full {
    margin-top: 4rem;
    overflow-x: auto;
}

.feature-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.feature-table thead {
    background: var(--bg-dark);
    color: white;
}

.feature-table th {
    padding: 1.5rem;
    text-align: left;
    font-weight: 600;
    font-size: 1.125rem;
}

.feature-table th.highlight-col {
    background: var(--gradient-primary);
}

.feature-table td {
    padding: 1.5rem;
    border-bottom: 1px solid var(--bg-light);
}

.feature-table tr:last-child td {
    border-bottom: none;
}

.feature-name {
    font-weight: 600;
    color: var(--text-primary);
}

.highlight-col {
    background: var(--gradient-secondary) !important;
}

.positive {
    color: var(--fiyonom-success);
    font-weight: 600;
}

.negative {
    color: var(--fiyonom-error);
}

/* ===== PACKAGES ===== */
.packages {
    padding: var(--section-padding) 0;
    background: white;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}

.package-card {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 24px;
    border: 2px solid transparent;
    transition: var(--transition-base);
    position: relative;
}

.package-card:hover {
    border-color: var(--fiyonom-primary);
    transform: translateY(-10px);
    box-shadow: var(--gradient-glow);
}

.package-card.popular {
    background: var(--gradient-secondary);
    border-color: var(--fiyonom-primary);
    transform: scale(1.05);
}

.package-card.popular .popular-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: var(--gradient-primary);
    color: white;
    padding: 0.625rem 1.75rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(179, 19, 193, 0.4);
}

.package-name {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.package-tagline {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

.package-features {
    list-style: none;
    margin-bottom: 2rem;
}

.package-features li {
    padding: 0.75rem 0;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 0.9375rem;
}

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

.package-target {
    padding: 1.5rem;
    background: rgba(179, 19, 193, 0.05);
    border-radius: 12px;
    margin-bottom: 2rem;
    font-size: 0.9375rem;
}

.btn-package {
    display: block;
    width: 100%;
    padding: 1.125rem;
    text-align: center;
    background: var(--fiyonom-primary);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    transition: var(--transition-base);
}

.btn-package:hover {
    background: var(--fiyonom-primary-dark);
    transform: translateY(-2px);
}

.btn-popular {
    background: var(--gradient-primary);
}

/* ===== PLATFORM VISION ===== */
.platform-vision {
    padding: var(--section-padding) 0;
    background: var(--bg-light);
}

.platforms-roadmap {
    margin: 4rem 0;
}

.platform-group {
    margin-bottom: 3rem;
}

.platform-status {
    font-size: 1rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.platform-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    margin-bottom: 1rem;
    transition: var(--transition-base);
    border: 2px solid transparent;
}

.platform-item.active {
    border-color: var(--fiyonom-primary);
    box-shadow: var(--gradient-glow);
}

.platform-item.upcoming {
    opacity: 0.7;
}

.platform-item:hover {
    transform: translateX(10px);
}

.platform-icon {
    font-size: 3rem;
}

.platform-info {
    flex: 1;
}

.platform-name {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.platform-region {
    color: var(--text-secondary);
}

.live-badge {
    background: var(--fiyonom-success);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
}

.coming-badge {
    background: var(--fiyonom-accent);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
}

.platforms-grid-future {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.future-platform {
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
    color: var(--text-secondary);
    transition: var(--transition-base);
}

.future-platform:hover {
    color: var(--fiyonom-primary);
    transform: scale(1.05);
}

.vision-message {
    text-align: center;
    margin-top: 4rem;
    padding: 2rem;
    background: var(--gradient-secondary);
    border-radius: 20px;
    font-size: 1.125rem;
    color: var(--text-secondary);
}

/* ===== TECHNOLOGY ===== */
.technology {
    padding: var(--section-padding) 0;
    background: white;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin: 4rem 0;
}

.tech-card {
    padding: 2.5rem;
    background: var(--bg-light);
    border-radius: 20px;
    transition: var(--transition-base);
    border: 2px solid transparent;
}

.tech-card:hover {
    border-color: var(--fiyonom-primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.tech-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.tech-icon svg {
    width: 35px;
    height: 35px;
    color: white;
}

.tech-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.tech-desc {
    color: var(--text-secondary);
    line-height: 1.7;
}

.tech-visual {
    margin-top: 4rem;
    text-align: center;
}

.tech-img {
    max-width: 800px;
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* ===== NEWSLETTER ===== */
.newsletter {
    padding: var(--section-padding) 0;
    background: var(--bg-light);
}

.newsletter-card {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 3rem;
    background: white;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 2px solid var(--fiyonom-primary);
}

.newsletter-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.newsletter-subtitle {
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    font-size: 1.125rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.newsletter-input {
    flex: 1;
    padding: 1.25rem 1.75rem;
    border: 2px solid var(--bg-light);
    border-radius: 12px;
    font-size: 1rem;
    transition: var(--transition-base);
    font-family: var(--font-body);
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--fiyonom-primary);
    box-shadow: 0 0 0 4px rgba(179, 19, 193, 0.1);
}

.btn-newsletter {
    padding: 1.25rem 2.5rem;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-base);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-newsletter:hover {
    transform: translateY(-2px);
    box-shadow: var(--gradient-glow);
}

.newsletter-badges {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.badge {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.newsletter-bonus {
    color: var(--fiyonom-primary);
    font-size: 0.9375rem;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-dark-secondary) 100%);
    color: white;
}

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

.cta-title {
    font-size: 3rem;
    color: white;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
}

.cta-benefits {
    max-width: 700px;
    margin: 0 auto 3rem;
    text-align: left;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.0625rem;
}

.contact-form {
    max-width: 700px;
    margin: 0 auto 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-input {
    padding: 1.125rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border-radius: 12px;
    font-size: 1rem;
    transition: var(--transition-base);
    font-family: var(--font-body);
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-input:focus {
    outline: none;
    border-color: var(--fiyonom-primary);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 4px rgba(179, 19, 193, 0.2);
}

.btn-submit {
    width: 100%;
    margin-top: 1rem;
    justify-content: center;
}

.trust-signals {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9375rem;
    margin-bottom: 2rem;
}

.alternative-contact {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.alternative-contact p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.75rem;
}

.email-link {
    color: var(--fiyonom-primary-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.25rem;
}

.email-link:hover {
    text-decoration: underline;
}

/* ===== FOOTER ===== */
.footer {
    padding: 4rem 0 2rem;
    background: var(--bg-dark);
    color: rgba(255, 255, 255, 0.8);
}

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

.footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-title {
    color: white;
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition-base);
}

.footer-links a:hover {
    color: var(--fiyonom-primary-light);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9375rem;
}

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

    .hero-container,
    .split-container {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        order: -1;
    }

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

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

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

@media (max-width: 768px) {
    :root {
        --section-padding: 80px;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: white;
        flex-direction: column;
        padding: 5rem 2rem;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
        transition: var(--transition-base);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .comparison-table,
    .platforms-grid-future {
        grid-template-columns: 1fr;
    }

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

    .newsletter-form {
        flex-direction: column;
    }

    /* Process Steps Grid Responsive */
    .process-steps-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .step-connector {
        transform: rotate(90deg);
        margin: 1rem 0;
    }

    .cta-title {
        font-size: 2rem;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
    }

    .hero-cta a {
        width: 100%;
        justify-content: center;
    }

    .newsletter-badges {
        flex-direction: column;
        gap: 0.5rem;
    }

    .trust-signals {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* ================================
   Platform Vision Section
   ================================ */
.platform-vision {
    background: linear-gradient(135deg, #0a0c1a 0%, #141728 50%, #1a1d35 100%);
    position: relative;
}

.platform-vision::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(179, 19, 193, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.platform-vision h2 {
    color: #ffffff !important;
    font-weight: 800;
}

.platform-vision .section-subtitle {
    color: #cbd5e1;
}


/* Platform Cards - Horizontal Grid */
.platforms-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.platform-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.platform-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--fiyonom-primary), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.platform-card.active::before {
    opacity: 1;
}

.platform-card:hover {
    border-color: var(--fiyonom-primary);
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(179, 19, 193, 0.15);
}

.platform-status-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
}

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

.platform-status-badge.soon {
    background: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.platform-logo-box {
    margin-bottom: 1.5rem;
}

.platform-brand {
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.platform-card.coming-soon .platform-brand {
    opacity: 0.6;
}

.platform-region {
    color: #94a3b8;
    font-size: 0.95rem;
}

.platform-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.platform-feat {
    background: rgba(179, 19, 193, 0.1);
    color: #e9d5f0;
    padding: 0.4rem 0.9rem;
    border-radius: 12px;
    font-size: 0.85rem;
    border: 1px solid rgba(179, 19, 193, 0.2);
}

/* Upcoming Platforms */
.platforms-upcoming {
    margin: 3rem 0;
    text-align: center;
}

.upcoming-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #94a3b8;
}

.upcoming-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.25rem;
}

.upcoming-platform {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 1rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    transition: all 0.3s ease;
}

.upcoming-platform:hover {
    border-color: rgba(179, 19, 193, 0.4);
    background: rgba(179, 19, 193, 0.05);
}

.upcoming-name {
    font-weight: 600;
    font-size: 1rem;
}

.upcoming-tag {
    font-size: 0.8rem;
    color: #94a3b8;
}

/* Vision Message */
.vision-message {
    text-align: center;
    margin-top: 4rem;
    padding: 2rem;
    background: var(--gradient-secondary);
    border-radius: 16px;
    border: 1px solid rgba(179, 19, 193, 0.2);
}

.vision-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e2e8f0;
}

.vision-text strong {
    color: var(--fiyonom-primary);
    font-weight: 700;
}

/* Responsive */
@media (max-width: 768px) {
    .platforms-grid-new {
        grid-template-columns: 1fr;
    }

    .upcoming-grid {
        flex-direction: column;
        align-items: center;
    }

    .upcoming-platform {
        width: 100%;
        max-width: 300px;
    }
}

/* ================================
   Process & Technology Visual Sections
   ================================ */
.process-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 3rem;
    font-weight: 500;
}

.process-visual-wrapper {
    margin: 3rem auto;
    max-width: 1200px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(179, 19, 193, 0.15);
    background: linear-gradient(135deg, rgba(179, 19, 193, 0.05) 0%, rgba(59, 130, 246, 0.05) 100%);
    padding: 2rem;
}

.process-visual-new {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}


/* Technology Section - TRUE Side by Side Layout */
.tech-content-wrapper {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 4rem;
    align-items: start;
    margin-top: 3rem;
}

.tech-cards-column {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.tech-visual-column {
    position: relative;
}

.tech-visual-sticky {
    position: sticky;
    top: 100px;
    background: linear-gradient(135deg, rgba(179, 19, 193, 0.08) 0%, rgba(59, 130, 246, 0.08) 100%);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 15px 50px rgba(179, 19, 193, 0.2);
    border: 1px solid rgba(179, 19, 193, 0.15);
}

.tech-visual-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
}

.visual-caption {
    margin-top: 1.2rem;
    text-align: center;
    font-size: 0.9rem;
    color: #64748b;
    font-style: italic;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 1024px) {
    .tech-content-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .tech-visual-sticky {
        position: relative;
        top: 0;
        max-width: 500px;
        margin: 0 auto;
    }

    .tech-cards-column {
        order: 1;
    }

    .tech-visual-column {
        order: 2;
    }
}

@media (max-width: 768px) {
    .process-visual-wrapper {
        padding: 1rem;
        margin: 2rem auto;
    }

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