/* ═══════════════════════════════════════════════════════════
   Dijimu — Landing Page Styles
   Marka Rengi: #0E7B6B (teal)
   ═══════════════════════════════════════════════════════════ */

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

:root {
    --brand: #0E7B6B;
    --brand-dark: #0A5C50;
    --brand-light: #E6F5F2;
    --brand-glow: rgba(14,123,107,0.15);
    --dark: #0F172A;
    --dark-2: #1E293B;
    --gray-1: #334155;
    --gray-2: #64748B;
    --gray-3: #94A3B8;
    --gray-4: #CBD5E1;
    --gray-5: #E2E8F0;
    --gray-6: #F1F5F9;
    --gray-7: #F8FAFC;
    --white: #FFFFFF;
    --radius: 12px;
    --radius-lg: 20px;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--dark);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

/* ── NAVBAR ─────────────────────────────────────────────── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}
.navbar.scrolled {
    box-shadow: var(--shadow-sm);
}
.nav-inner {
    display: flex;
    align-items: center;
    height: 72px;
    gap: 32px;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}
.nav-logo-img { height: 36px; width: auto; }
.nav-logo-text { height: 22px; width: auto; }

.nav-links {
    display: flex;
    gap: 8px;
    flex: 1;
}
.nav-links a {
    text-decoration: none;
    color: var(--gray-2);
    font-size: 14px;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 8px;
    transition: all 0.2s;
}
.nav-links a:hover {
    color: var(--brand);
    background: var(--brand-light);
}

.nav-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 22px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.25s ease;
    white-space: nowrap;
}
.btn-primary {
    background: var(--brand);
    color: var(--white);
    box-shadow: 0 2px 12px rgba(14,123,107,0.3);
}
.btn-primary:hover {
    background: var(--brand-dark);
    box-shadow: 0 4px 20px rgba(14,123,107,0.4);
    transform: translateY(-1px);
}
.btn-outline {
    background: transparent;
    color: var(--brand);
    border: 1.5px solid var(--brand);
}
.btn-outline:hover {
    background: var(--brand-light);
}
.btn-ghost {
    background: transparent;
    color: var(--gray-2);
}
.btn-ghost:hover {
    color: var(--brand);
    background: var(--brand-light);
}
.btn-white {
    background: var(--white);
    color: var(--brand);
    box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}
.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0,0,0,0.2);
}
.btn-lg { padding: 14px 32px; font-size: 16px; border-radius: 12px; }
.btn-block { width: 100%; }

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

/* ── HERO ───────────────────────────────────────────────── */
.hero {
    position: relative;
    padding: 140px 0 80px;
    overflow: hidden;
    background: linear-gradient(170deg, var(--white) 0%, var(--gray-7) 50%, var(--brand-light) 100%);
}
.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.4;
}
.shape-1 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(14,123,107,0.08) 0%, transparent 70%);
    top: -200px; right: -100px;
}
.shape-2 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(59,130,246,0.06) 0%, transparent 70%);
    bottom: -100px; left: -100px;
}
.shape-3 {
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(139,92,246,0.06) 0%, transparent 70%);
    top: 50%; left: 50%;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
}
.hero-badge {
    display: inline-block;
    background: var(--brand-light);
    color: var(--brand);
    font-size: 13px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 20px;
    border: 1px solid rgba(14,123,107,0.15);
}
.hero h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    color: var(--dark);
}
.gradient-text {
    background: linear-gradient(135deg, var(--brand) 0%, #3B82F6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-desc {
    font-size: 17px;
    line-height: 1.7;
    color: var(--gray-2);
    margin-bottom: 32px;
    max-width: 500px;
}
.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.hero-trust {
    display: flex;
    align-items: center;
    gap: 12px;
}
.trust-avatars {
    display: flex;
}
.avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    color: white;
    border: 2px solid white;
    margin-right: -8px;
}
.hero-trust span {
    font-size: 13px;
    color: var(--gray-3);
}

/* Hero Mockup */
.hero-visual {
    position: relative;
}
.hero-mockup {
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    border: 1px solid var(--gray-5);
}
.mockup-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--dark);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.mockup-dots {
    display: flex;
    gap: 6px;
}
.mockup-dots span {
    width: 10px; height: 10px;
    border-radius: 50%;
    display: block;
}
.mockup-title {
    font-size: 12px;
    color: var(--gray-3);
    font-weight: 500;
}
.mockup-body {
    display: flex;
    min-height: 240px;
}
.mockup-sidebar {
    width: 140px;
    background: var(--gray-7);
    border-right: 1px solid var(--gray-5);
    padding: 12px 8px;
}
.mockup-nav-item {
    padding: 8px 10px;
    font-size: 11px;
    color: var(--gray-2);
    border-radius: 6px;
    margin-bottom: 4px;
    font-weight: 500;
}
.mockup-nav-item.active {
    background: var(--brand-light);
    color: var(--brand);
    font-weight: 600;
}
.mockup-content {
    flex: 1;
    padding: 16px;
}
.mockup-card {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.mockup-card-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: var(--gray-7);
    border-radius: 8px;
    border: 1px solid var(--gray-5);
}
.mc-badge {
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
    white-space: nowrap;
}
.mc-blue { background: #E6F1FB; color: #2563EB; }
.mc-green { background: #ECFDF5; color: #10B981; }
.mc-orange { background: #FFF7ED; color: #EA580C; }
.mc-text { flex: 1; font-size: 11px; color: var(--gray-1); font-weight: 500; }
.mc-amount { font-size: 11px; font-weight: 600; color: var(--dark); font-variant-numeric: tabular-nums; }
.mc-status { font-size: 10px; color: var(--brand); font-weight: 600; }

.hero-mascot {
    position: absolute;
    bottom: -20px;
    right: -30px;
    width: 120px;
    height: auto;
    filter: drop-shadow(0 8px 20px rgba(0,0,0,0.15));
    animation: mascotFloat 3s ease-in-out infinite;
}
@keyframes mascotFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ── TRUST BAR ──────────────────────────────────────────── */
.trust-bar {
    padding: 40px 0;
    border-bottom: 1px solid var(--gray-5);
    background: var(--white);
}
.trust-text {
    text-align: center;
    font-size: 13px;
    color: var(--gray-3);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}
.trust-logos {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}
.trust-logo-item {
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-4);
    letter-spacing: 1px;
}

/* ── SECTION SHARED ─────────────────────────────────────── */
.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 56px;
}
.section-badge {
    display: inline-block;
    background: var(--brand-light);
    color: var(--brand);
    font-size: 12px;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}
.section-header h2 {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 14px;
    letter-spacing: -0.02em;
}
.section-header p {
    font-size: 16px;
    color: var(--gray-2);
    line-height: 1.7;
}

/* ── FEATURES ───────────────────────────────────────────── */
.features {
    padding: 100px 0;
    background: var(--gray-7);
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.feature-card {
    background: var(--white);
    border: 1px solid var(--gray-5);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all 0.3s ease;
}
.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(14,123,107,0.2);
}
.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.feature-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark);
}
.feature-card p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--gray-2);
}

/* ── HOW IT WORKS ───────────────────────────────────────── */
.how-it-works {
    padding: 100px 0;
    background: var(--white);
}
.steps-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
}
.step-card {
    text-align: center;
    max-width: 280px;
    padding: 0 24px;
}
.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--brand);
    color: white;
    font-weight: 800;
    font-size: 16px;
    margin-bottom: 20px;
}
.step-visual {
    margin-bottom: 24px;
}
.step-icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--brand-light);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(14,123,107,0.15);
}
.step-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}
.step-card p {
    font-size: 14px;
    color: var(--gray-2);
    line-height: 1.7;
}
.step-connector {
    margin-top: 90px;
    flex-shrink: 0;
}

/* ── PRICING ────────────────────────────────────────────── */
.pricing {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--gray-7) 0%, var(--white) 100%);
}
.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 48px;
}
.toggle-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-3);
    cursor: pointer;
    transition: color 0.2s;
}
.toggle-label.active { color: var(--dark); }
.save-badge {
    background: var(--brand-light);
    color: var(--brand);
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 10px;
}
.toggle-switch {
    width: 48px;
    height: 26px;
    background: var(--gray-4);
    border-radius: 13px;
    border: none;
    cursor: pointer;
    position: relative;
    transition: background 0.3s;
}
.toggle-switch.active { background: var(--brand); }
.toggle-knob {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: white;
    top: 3px;
    left: 3px;
    transition: left 0.3s ease;
    box-shadow: 0 1px 4px rgba(0,0,0,0.15);
}
.toggle-switch.active .toggle-knob { left: 25px; }

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}
.price-card {
    background: var(--white);
    border: 1.5px solid var(--gray-5);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    position: relative;
    transition: all 0.3s;
}
.price-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.price-card.popular {
    border-color: var(--brand);
    box-shadow: 0 8px 40px rgba(14,123,107,0.15);
    transform: scale(1.04);
}
.price-card.popular:hover {
    transform: scale(1.04) translateY(-4px);
}
.popular-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--brand);
    color: white;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 18px;
    border-radius: 12px;
    white-space: nowrap;
}
.price-header h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 4px;
}
.price-desc {
    font-size: 13px;
    color: var(--gray-3);
    margin-bottom: 20px;
}
.price-amount {
    display: flex;
    align-items: baseline;
    gap: 2px;
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--gray-5);
}
.currency { font-size: 22px; font-weight: 700; color: var(--dark); }
.amount { font-size: 48px; font-weight: 800; color: var(--dark); letter-spacing: -0.02em; }
.period { font-size: 14px; color: var(--gray-3); font-weight: 500; }

.price-features {
    list-style: none;
    margin-bottom: 32px;
}
.price-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
    color: var(--gray-1);
}
.price-features li.disabled {
    color: var(--gray-4);
}

/* ── FAQ ────────────────────────────────────────────────── */
.faq {
    padding: 100px 0;
    background: var(--white);
}
.faq-grid {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.faq-item {
    border: 1px solid var(--gray-5);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.2s;
}
.faq-item:hover { border-color: var(--gray-4); }
.faq-item.open { border-color: rgba(14,123,107,0.3); }

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 18px 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
    text-align: left;
    gap: 16px;
}
.faq-chevron {
    flex-shrink: 0;
    color: var(--gray-3);
    transition: transform 0.3s ease;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--brand); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}
.faq-item.open .faq-answer { max-height: 200px; }
.faq-answer p {
    padding: 0 24px 18px;
    font-size: 14px;
    line-height: 1.7;
    color: var(--gray-2);
}

/* ── CTA ────────────────────────────────────────────────── */
.cta {
    padding: 80px 0;
    background: var(--gray-7);
}
.cta-inner {
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
    border-radius: 24px;
    padding: 72px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-inner::before {
    content: '';
    position: absolute;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
    top: -200px; right: -100px;
    border-radius: 50%;
}
.cta-mascot {
    width: 90px;
    margin-bottom: 24px;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.2)) brightness(1.1);
}
.cta h2 {
    font-size: 32px;
    font-weight: 800;
    color: white;
    margin-bottom: 14px;
    line-height: 1.3;
}
.cta p {
    font-size: 16px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 32px;
}

/* ── FOOTER ─────────────────────────────────────────────── */
.footer {
    background: var(--dark);
    padding: 64px 0 0;
    color: var(--gray-3);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo-group {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}
.footer-logo-group img {
    max-height: 28px !important;
    height: 28px !important;
    width: auto !important;
    object-fit: contain;
}
.footer-logo-group .footer-logo-text {
    max-height: 20px !important;
    height: 20px !important;
}
.footer-brand p {
    font-size: 13px;
    line-height: 1.7;
    color: var(--gray-3);
    max-width: 300px;
}
.footer-col h4 {
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 16px;
}
.footer-col a {
    display: block;
    color: var(--gray-3);
    font-size: 13px;
    text-decoration: none;
    padding: 5px 0;
    transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
}
.footer-bottom p { font-size: 13px; }
.footer-social {
    display: flex;
    gap: 12px;
}
.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-3);
    font-size: 12px;
    font-weight: 700;
    background: rgba(255,255,255,0.06);
    text-decoration: none;
    transition: all 0.2s;
}
.footer-social a:hover {
    background: var(--brand);
    color: white;
}

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1024px) {
    .hero h1 { font-size: 38px; }
    .hero-inner { gap: 40px; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { gap: 16px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
    .nav-links, .nav-actions { display: none; }
    .hamburger { display: flex; }
    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: white;
        padding: 16px 24px;
        border-bottom: 1px solid var(--gray-5);
        box-shadow: var(--shadow-md);
    }

    .hero { padding: 110px 0 60px; }
    .hero-inner { grid-template-columns: 1fr; text-align: center; }
    .hero h1 { font-size: 32px; }
    .hero-desc { margin: 0 auto 32px; }
    .hero-actions { justify-content: center; }
    .hero-trust { justify-content: center; }
    .hero-visual { max-width: 500px; margin: 0 auto; }
    .hero-mascot { width: 80px; right: -10px; bottom: -10px; }

    .section-header h2 { font-size: 28px; }

    .features-grid { grid-template-columns: 1fr; }
    .steps-grid { flex-direction: column; align-items: center; gap: 24px; }
    .step-connector { display: none; }

    .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .price-card.popular { transform: none; }
    .price-card.popular:hover { transform: translateY(-4px); }

    .cta-inner { padding: 48px 24px; }
    .cta h2 { font-size: 24px; }

    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}
