/* ============================================
   YAROK LANDING PAGE
   Toscana Systems Corporate Palette
   Primary: #2D9C9C | #1A6B6B | #4DBFBF
   ============================================ */

:root {
    --tos-primary: #2D9C9C;
    --tos-primary-dark: #1A6B6B;
    --tos-primary-light: #4DBFBF;
    --tos-primary-lighter: #7DD4D4;
    --tos-accent-bg: #E8F7F7;
    --tos-surface: #F9FAFB;
    --tos-text: #111827;
    --tos-text-secondary: #6B7280;
    --tos-success: #10B981;
    --tos-white: #FFFFFF;
    --tos-gray-100: #F3F4F6;
    --tos-gray-200: #E5E7EB;
    --tos-gray-300: #D1D5DB;
    --tos-gray-400: #9CA3AF;
    --shadow-sm: 0 1px 2px 0 rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
    --radius: 16px;
    --radius-sm: 12px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--tos-text);
    background: var(--tos-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

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

.accent { color: var(--tos-primary); }

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--tos-primary);
    color: var(--tos-white);
    border-color: var(--tos-primary);
}
.btn-primary:hover {
    background: var(--tos-primary-dark);
    border-color: var(--tos-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    color: var(--tos-primary);
    border-color: var(--tos-primary);
}
.btn-outline:hover {
    background: var(--tos-accent-bg);
    transform: translateY(-2px);
}

.btn-block { width: 100%; }

/* ========== NAVBAR ========== */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--tos-gray-200);
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--tos-text-secondary);
    font-size: 0.85rem;
}

.logo-yarok {
    height: 40px;
    width: auto;
}
.logo-toscana {
    height: 36px;
    width: auto;
}

.brand-text strong {
    color: var(--tos-primary);
    font-weight: 600;
}

.navbar-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    padding: 8px 16px;
    text-decoration: none;
    color: var(--tos-text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: 8px;
    transition: all 0.2s;
}
.nav-link:hover {
    color: var(--tos-primary);
    background: var(--tos-accent-bg);
}

.btn-nav {
    background: var(--tos-primary);
    color: var(--tos-white) !important;
}
.btn-nav:hover {
    background: var(--tos-primary-dark);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--tos-text);
    border-radius: 2px;
    transition: all 0.3s;
}

/* ========== HERO ========== */
.hero {
    position: relative;
    padding: 140px 0 80px;
    background: linear-gradient(180deg, var(--tos-accent-bg) 0%, var(--tos-white) 100%);
    overflow: hidden;
}

.hero-decoration {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
}
.c1 {
    width: 400px; height: 400px;
    background: var(--tos-primary-light);
    top: -100px; right: -100px;
}
.c2 {
    width: 300px; height: 300px;
    background: var(--tos-primary);
    bottom: -50px; left: -80px;
}
.c3 {
    width: 200px; height: 200px;
    background: var(--tos-primary-lighter);
    top: 40%; right: 15%;
}

.hero-content {
    position: relative;
    text-align: center;
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: var(--tos-white);
    border: 1px solid var(--tos-gray-200);
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--tos-primary);
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
}
.hero-badge svg {
    width: 18px; height: 18px;
    color: var(--tos-primary);
}

.hero-title {
    font-size: 3.5rem;
    color: var(--tos-text);
    margin-bottom: 20px;
}
.hero-title .accent {
    color: var(--tos-primary);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--tos-text-secondary);
    margin-bottom: 36px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 60px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
}

.stat {
    text-align: center;
}
.stat-number {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--tos-primary);
    line-height: 1;
}
.stat-label {
    font-size: 0.9rem;
    color: var(--tos-text-secondary);
    margin-top: 4px;
}

/* ========== TRUST BAR ========== */
.trust {
    padding: 20px 0;
    background: var(--tos-white);
    border-bottom: 1px solid var(--tos-gray-200);
    text-align: center;
}
.trust-text {
    font-size: 0.9rem;
    color: var(--tos-text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}
.trust-logo {
    height: 28px;
    width: auto;
    opacity: 0.8;
}

/* ========== SECTIONS COMMON ========== */
section { padding: 80px 0; }

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

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: var(--tos-accent-bg);
    color: var(--tos-primary);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 100px;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-title {
    font-size: 2.5rem;
    color: var(--tos-text);
}
.section-title .accent {
    color: var(--tos-primary);
}

/* ========== PROBLEM / CARDS ========== */
.problem { background: var(--tos-surface); }

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

.card {
    background: var(--tos-white);
    border: 1px solid var(--tos-gray-200);
    border-radius: var(--radius);
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
}
.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--tos-primary-lighter);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}
.card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--tos-text);
}
.card p {
    color: var(--tos-text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}
.card p em {
    color: var(--tos-primary);
    font-style: normal;
    font-weight: 500;
}

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

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

.step {
    position: relative;
    padding: 24px;
}

.step-number {
    width: 48px; height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--tos-primary);
    color: var(--tos-white);
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: 20px;
}

.step-content h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
    color: var(--tos-text);
}
.step-content p {
    color: var(--tos-text-secondary);
    font-size: 0.92rem;
}
.step-content p em {
    color: var(--tos-primary);
    font-style: normal;
    font-weight: 500;
}

/* ========== EXERCISES ========== */
.exercises { background: var(--tos-accent-bg); }

.exercise-types {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.ex-type {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--tos-white);
    border: 1px solid var(--tos-gray-200);
    border-radius: var(--radius-sm);
    transition: all 0.2s;
}
.ex-type:hover {
    border-color: var(--tos-primary);
    box-shadow: var(--shadow-sm);
}
.ex-icon { font-size: 1.5rem; }
.ex-name {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--tos-text);
}

/* ========== ROUTES ========== */
.routes { background: var(--tos-white); }

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

.route-card {
    padding: 28px;
    background: var(--tos-surface);
    border: 1px solid var(--tos-gray-200);
    border-radius: var(--radius);
    text-align: center;
    transition: all 0.3s;
}
.route-card:hover {
    border-color: var(--tos-primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}
.route-emoji { font-size: 2.5rem; margin-bottom: 12px; }
.route-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--tos-text);
}
.route-card p {
    font-size: 0.88rem;
    color: var(--tos-text-secondary);
}

/* ========== PRICING ========== */
.pricing { background: var(--tos-surface); }

.pricing-cards {
    display: flex;
    justify-content: center;
    gap: 32px;
    align-items: flex-start;
}

.price-card {
    background: var(--tos-white);
    border: 1px solid var(--tos-gray-200);
    border-radius: var(--radius);
    padding: 40px 32px;
    width: 100%;
    max-width: 380px;
    position: relative;
    transition: all 0.3s;
}
.price-card:hover {
    box-shadow: var(--shadow-lg);
}

.price-card.featured {
    border-color: var(--tos-primary);
    box-shadow: 0 0 0 4px rgba(45,156,156,0.1);
    transform: scale(1.02);
}

.price-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--tos-primary);
    color: var(--tos-white);
    padding: 6px 20px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-card h3 {
    font-size: 1.25rem;
    text-align: center;
    margin-bottom: 16px;
    color: var(--tos-text);
}

.price {
    text-align: center;
    margin-bottom: 4px;
}
.price-currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--tos-text);
    vertical-align: top;
}
.price-amount {
    font-family: 'Poppins', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    color: var(--tos-primary);
    line-height: 1;
}
.price-period {
    font-size: 1rem;
    color: var(--tos-text-secondary);
}

.price-sub {
    text-align: center;
    color: var(--tos-text-secondary);
    font-size: 0.9rem;
    margin-bottom: 24px;
}

.price-features {
    list-style: none;
    margin-bottom: 24px;
}
.price-features li {
    padding: 10px 0;
    border-bottom: 1px solid var(--tos-gray-100);
    font-size: 0.95rem;
    color: var(--tos-text-secondary);
}
.price-features li:last-child { border-bottom: none; }
.price-features strong { color: var(--tos-text); }

.price-per-user {
    text-align: center;
    padding: 12px;
    background: var(--tos-accent-bg);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    color: var(--tos-text-secondary);
    margin-bottom: 24px;
}
.price-per-user strong {
    color: var(--tos-primary);
    font-weight: 700;
}

/* ========== DOWNLOAD ========== */
.download {
    background: linear-gradient(135deg, var(--tos-primary-dark) 0%, var(--tos-primary) 100%);
    color: var(--tos-white);
    text-align: center;
}

.download-content {
    max-width: 700px;
    margin: 0 auto;
}

.download .section-title {
    color: var(--tos-white);
    font-size: 2.8rem;
    margin-bottom: 12px;
}
.download .section-title .accent {
    color: var(--tos-primary-lighter);
}

.download-subtitle {
    font-size: 1.15rem;
    opacity: 0.9;
    margin-bottom: 40px;
}

.store-badges {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.store-badge {
    display: inline-block;
    text-decoration: none;
    background: var(--tos-text);
    color: var(--tos-white);
    border-radius: 10px;
    padding: 12px 24px;
    min-width: 200px;
    transition: all 0.2s;
}
.store-badge:hover {
    background: #000;
    transform: scale(1.03);
}
.store-badge.store-soon {
    opacity: 0.7;
    cursor: default;
}

.badge-content {
    display: flex;
    align-items: center;
    gap: 12px;
}
.badge-icon {
    width: 32px; height: 32px;
    flex-shrink: 0;
}
.badge-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}
.badge-small {
    font-size: 0.7rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.badge-big {
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.2;
}

.resellers {
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.2);
}
.resellers-title {
    font-size: 0.95rem;
    opacity: 0.85;
    margin-bottom: 16px;
}
.reseller-links {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
.reseller-badge {
    padding: 8px 20px;
    background: rgba(255,255,255,0.15);
    color: var(--tos-white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.2s;
}
.reseller-badge:hover {
    background: rgba(255,255,255,0.25);
}

/* ========== FOOTER ========== */
.footer {
    background: var(--tos-text);
    color: var(--tos-gray-300);
    padding: 60px 0 24px;
}

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

.footer-brand .footer-logo {
    height: 40px;
    margin-bottom: 16px;
    opacity: 0.9;
}
.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--tos-gray-400);
}
.footer-brand strong {
    color: var(--tos-white);
}

.footer-links h4 {
    color: var(--tos-white);
    font-size: 0.95rem;
    margin-bottom: 16px;
}
.footer-links a {
    display: block;
    color: var(--tos-gray-400);
    text-decoration: none;
    padding: 6px 0;
    font-size: 0.9rem;
    transition: color 0.2s;
}
.footer-links a:hover {
    color: var(--tos-primary-light);
}

.footer-bottom {
    border-top: 1px solid var(--tos-gray-700);
    padding-top: 24px;
    text-align: center;
    font-size: 0.85rem;
    color: var(--tos-gray-500);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .cards-grid { grid-template-columns: repeat(2, 1fr); }
    .steps { grid-template-columns: repeat(2, 1fr); }
    .routes-grid { grid-template-columns: repeat(2, 1fr); }
    .exercise-types { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .hero-title { font-size: 2.5rem; }
    .section-title { font-size: 2rem; }
    .hero-stats { gap: 24px; flex-wrap: wrap; }
    .hero-cta { flex-direction: column; align-items: center; }

    .cards-grid { grid-template-columns: 1fr; }
    .steps { grid-template-columns: 1fr; }
    .routes-grid { grid-template-columns: 1fr; }
    .exercise-types { grid-template-columns: 1fr; }
    .pricing-cards { flex-direction: column; align-items: center; }

    .hamburger { display: flex; }
    .navbar-menu {
        position: fixed;
        top: 72px; left: 0; right: 0;
        background: var(--tos-white);
        border-bottom: 1px solid var(--tos-gray-200);
        flex-direction: column;
        padding: 16px 24px;
        gap: 4px;
        transform: translateY(-150%);
        transition: transform 0.3s ease;
        box-shadow: var(--shadow-lg);
    }
    .navbar-menu.active {
        transform: translateY(0);
    }
    .nav-link {
        width: 100%;
        padding: 12px;
    }

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

@media (max-width: 480px) {
    .hero-title { font-size: 2rem; }
    .hero-subtitle { font-size: 1rem; }
    .stat-number { font-size: 2rem; }
    .price-amount { font-size: 3rem; }
    .footer-grid { grid-template-columns: 1fr; }
    .store-badges { flex-direction: column; align-items: center; }
}
