﻿:root {
    --bg-body: #f8fafc;
    --bg-card: #ffffff;
    --bg-footer: #f1f5f9;
    --text-main: #0f172a;
    --text-muted: #475569;
    /* Darkened for better contrast (Slate-600) */
    --primary: #4f46e5;
    --accent: #06b6d4;
    --grad-hero: linear-gradient(135deg, #4f46e5 0%, #06b6d4 100%);
    --grad-title: linear-gradient(135deg, #2563eb 0%, #0891b2 100%);
    --grad-bubble: linear-gradient(135deg, #ffffff 0%, #f3f4f6 100%);
    --glass: rgba(255, 255, 255, 0.95);
    --border: 1px solid rgba(0, 0, 0, 0.08);
    --shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.08);
    --orb-1: #e0e7ff;
    --orb-2: #cffafe;
}

[data-theme="dark"] {
    --bg-body: #020617;
    --bg-card: #1e293b;
    --bg-footer: #0f172a;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --primary: #818cf8;
    --accent: #22d3ee;
    --grad-hero: linear-gradient(135deg, #818cf8 0%, #22d3ee 100%);
    --grad-title: linear-gradient(135deg, #a78bfa 0%, #22d3ee 100%);
    --grad-bubble: linear-gradient(135deg, #374151 0%, #1f2937 100%);
    --glass: rgba(30, 41, 59, 0.9);
    --border: 1px solid rgba(255, 255, 255, 0.1);
    --orb-1: #1e1b4b;
    --orb-2: #164e63;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Heebo', sans-serif;
    transition: background 0.3s, color 0.3s;
}

html {
    scroll-behavior: smooth;
}

/* Global Focus State for Accessibility */
:focus-visible {
    outline: 3px solid var(--primary);
    outline-offset: 3px;
}

/* Skip to Content Link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary);
    color: white;
    padding: 8px;
    z-index: 9999;
    transition: top 0.3s;
    text-decoration: none;
    font-weight: 700;
}

.skip-link:focus {
    top: 0;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-footer);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, #4f46e5, #06b6d4);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(to bottom, #06b6d4, #4f46e5);
}

body {
    background: var(--bg-body);
    color: var(--text-main);
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Backgrounds */
.bg-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
    opacity: 0.5;
    pointer-events: none;
}

.orb-1 {
    top: -20%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: var(--orb-1);
    animation: float 15s infinite alternate;
}

.orb-2 {
    bottom: -20%;
    right: -10%;
    width: 60vw;
    height: 60vw;
    background: var(--orb-2);
    animation: float 18s infinite alternate-reverse;
}

@keyframes float {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(40px, 40px);
    }
}

header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    background: var(--glass);
    backdrop-filter: blur(20px);
    border: var(--border);
    border-radius: 20px;
    padding: 10px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: var(--shadow);
}

.logo img {
    height: 45px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 700;
    font-size: 0.95rem;
    transition: 0.2s;
}

.nav-links a:hover {
    color: var(--accent);
}

.actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.theme-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--bg-card);
    color: var(--text-main);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
}

.theme-btn:hover {
    background: var(--primary);
    color: white;
}

.cta-header {
    background: var(--text-main);
    color: var(--bg-body);
    padding: 8px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.9rem;
    transition: 0.2s;
}

.cta-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* WRAPPER & GRID */
.page-wrapper {
    flex: 1;
    padding-top: 180px;
    padding-bottom: 60px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
}

.hero {
    padding-top: 180px;
    padding-bottom: 60px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Force Center */
}

section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    width: 100%;
}

@media(max-width: 900px) {
    .grid-3 {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    .nav-links {
        display: none;
    }

    .page-wrapper {
        padding-top: 140px;
    }

    .hero {
        padding-top: 140px;
    }
}

@media(max-width: 600px) {
    .grid-3 {
        grid-template-columns: 1fr;
    }
}

/* TYPOGRAPHY IN CONTENT (Article/Terms/Roadmap Fixes) */
.article-content h2,
.legal-content h3 {
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.6rem;
    font-weight: 900;
    background: var(--grad-title);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    line-height: 1.2;
}

.t-content h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    margin-top: 30px;
    margin-bottom: 15px;
    line-height: 1.2;
}

.article-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-main);
    margin-top: 25px;
    margin-bottom: 10px;
}

.article-content p,
.legal-content p,
.t-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.article-content ol,
.article-content ul {
    margin-bottom: 20px;
    padding-right: 20px;
    color: var(--text-muted);
    line-height: 1.8;
}

.article-content li {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.article-content b,
.article-content strong {
    color: var(--text-main);
    font-weight: 700;
}

/* Article-specific elements */
.article-header {
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 15px;
    font-weight: 600;
    flex-wrap: wrap;
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.article-cover {
    width: 100%;
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 30px;
    margin-bottom: 50px;
    box-shadow: var(--shadow);
}

.article-content {
    max-width: 750px;
    margin: 0 auto;
}

.share-bar {
    margin-top: 60px;
    padding-top: 30px;
    border-top: var(--border);
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.share-bar span {
    font-weight: 700;
    color: var(--text-muted);
}

.share-btn {
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    color: white;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
    font-size: 0.9rem;
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Legal Page */
.legal-card {
    background: var(--glass);
    backdrop-filter: blur(10px);
    border: var(--border);
    padding: 50px;
    border-radius: 30px;
    box-shadow: var(--shadow);
    margin-top: 20px;
}

.legal-card h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: var(--text-main);
}

.legal-meta {
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 40px;
    display: block;
    font-size: 0.9rem;
}

.legal-content h3 {
    display: flex;
    align-items: center;
    gap: 10px;
}

.legal-content h3 i {
    color: var(--primary);
}

/* Cards Styling */
.t-card,
.price-card,
.blog-card {
    background: var(--bg-card);
    border: var(--border);
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.t-card:hover,
.price-card:hover,
.blog-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.15);
}

.t-card {
    padding: 30px;
}

.price-card {
    padding: 40px 30px;
    text-align: center;
    position: relative;
    overflow: visible !important;
    margin-top: 20px;
}

.price-card.main {
    border: 2px solid var(--primary);
    transform: scale(1.05);
    z-index: 5;
}

.blog-img {
    height: 220px;
    width: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    background-color: var(--orb-1);
}

.blog-date {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    backdrop-filter: blur(5px);
}

.blog-body {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-body h3 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--text-main);
    line-height: 1.3;
}

.blog-body p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.read-link {
    color: var(--accent);
    font-weight: 800;
    text-decoration: none;
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: 0.2s;
}

.read-link:hover {
    gap: 10px;
    color: var(--primary);
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 0;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background: var(--border);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
}

.container {
    padding: 10px 40px;
    position: relative;
    width: 50%;
}

.container.left {
    left: 0;
}

.container.right {
    left: 50%;
}

.container::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: -12px;
    background: var(--bg-card);
    border: 4px solid var(--accent);
    top: 15px;
    border-radius: 50%;
    z-index: 1;
}

.container.right::after {
    left: -8px;
}

.container.current::after {
    border-color: var(--accent);
    background: var(--accent);
    box-shadow: 0 0 0 4px rgba(6, 182, 212, 0.3);
    animation: pulse-cyan 2s infinite;
}

.container.current .t-content {
    border-color: var(--accent);
    border-width: 2px;
}

.t-content {
    padding: 20px 30px;
    background: var(--bg-card);
    border-radius: 15px;
    border: var(--border);
    box-shadow: var(--shadow);
}

.t-date {
    font-weight: bold;
    color: var(--accent);
    margin-bottom: 10px;
    display: block;
    font-size: 0.9rem;
}

@keyframes pulse-cyan {
    0% {
        box-shadow: 0 0 0 0 rgba(6, 182, 212, 0.7);
    }

    100% {
        box-shadow: 0 0 0 15px transparent;
    }
}

@media(max-width: 600px) {
    .timeline::after {
        left: 31px;
    }

    .container {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }

    .container.right {
        left: 0;
    }

    .container.left::after,
    .container.right::after {
        left: 21px;
    }

    .article-cover {
        height: 250px;
    }
}

/* Other Styles */
h1 {
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero-title {
    background: var(--grad-hero);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-title span {
    background: var(--grad-title);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.subtitle {
    font-size: 1.3rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 40px;
}

.studio-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-top: 20px;
    /* Add space between title and badge */
    margin-bottom: 30px;
    border: 1px solid var(--border);
    text-decoration: none;
    transition: 0.3s;
}

.studio-badge:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--bg-card);
}

.beta-tag {
    display: inline-block;
    background: #F59E0B;
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 5px 15px;
    border-radius: 50px;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(245, 158, 11, 0.3);
    animation: pulse 2s infinite;
}

.old-price {
    text-decoration: line-through;
    color: var(--text-muted);
    opacity: 0.6;
    display: block;
    font-size: 1.2rem;
    margin-bottom: -10px;
}

h1,
h2,
h3,
h2.sec-title,
.sec-title,
.form-container h3,
.grad-text {
    background: var(--grad-title);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

h2.sec-title {
    font-size: 2.5rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 20px;
    width: 100%;
}

.sec-intro {
    text-align: center;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 60px;
    font-size: 1.1rem;
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--grad-hero);
    color: white;
    padding: 6px 18px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.85rem;
    box-shadow: 0 5px 15px rgba(79, 70, 229, 0.4);
    z-index: 10;
    white-space: nowrap;
}

.price-txt {
    font-size: 3.5rem;
    font-weight: 900;
    margin: 20px 0;
    background: var(--grad-title);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.price-txt span {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
    -webkit-text-fill-color: var(--text-muted);
}

.stars {
    color: #F59E0B;
    margin-bottom: 15px;
}

.quote {
    font-style: italic;
    color: var(--text-main);
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.client-info h4 {
    font-weight: 700;
    color: var(--text-main);
}

.client-info span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.btn {
    display: block;
    padding: 15px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    margin-top: auto;
    transition: 0.3s;
}

.btn-fill,
.form-btn {
    background: var(--grad-hero);
    color: white;
    border: none;
    width: auto;
    margin: 20px auto;
    padding: 10px 40px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.4);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.btn-fill:hover,
.form-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(6, 182, 212, 0.5);
}

.btn-fill:hover {
    transform: translateY(-2px);
}

.btn-line {
    border: 1px solid var(--accent);
    color: var(--accent);
}

.btn-line:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--grad-hero);
    color: white;
}

.p-feat {
    list-style: none;
    padding: 0;
}

.p-feat li {
    list-style: none;
    margin-bottom: 15px;
    color: var(--text-muted);
    display: flex;
    justify-content: center;
    gap: 8px;
}

.p-feat i {
    color: var(--accent);
}

/* Chat specific */
.chat-container {
    width: 100%;
    max-width: 700px;
    height: 550px;
    margin: 0 auto;
    background: var(--bg-card);
    border: var(--border);
    border-radius: 30px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.c-head {
    padding: 15px 20px;
    border-bottom: var(--border);
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(0, 0, 0, 0.02);
}

.c-avatar {
    width: 40px;
    height: 40px;
    background: var(--grad-hero);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.c-body {
    flex: 1;
    padding: 25px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.msg {
    padding: 14px 20px;
    border-radius: 20px;
    max-width: 85%;
    font-size: 1rem;
    line-height: 1.5;
    animation: pop 0.3s;
}

.bot {
    background: rgba(0, 0, 0, 0.05);
    color: var(--text-main);
    align-self: flex-start;
    border-bottom-left-radius: 4px;
    position: relative;
}

.bot::before {
    content: '';
    position: absolute;
    left: -8px;
    bottom: 0;
    width: 0;
    height: 0;
    border: 8px solid transparent;
    border-right-color: rgba(0, 0, 0, 0.05);
    border-bottom-color: rgba(0, 0, 0, 0.05);
}

[data-theme="dark"] .bot {
    background: rgba(255, 255, 255, 0.1);
}

.user {
    background: var(--grad-hero);
    color: white;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
    position: relative;
}

.user::before {
    content: '';
    position: absolute;
    right: -8px;
    bottom: 0;
    width: 0;
    height: 0;
    border: 8px solid transparent;

    .user::before {
        content: '';
        position: absolute;
        right: -8px;
        bottom: 0;
        width: 0;
        height: 0;
        border: 8px solid transparent;
        border-left-color: var(--primary);
        border-bottom-color: var(--primary);
    }
}

.c-foot {
    padding: 20px;
    border-top: var(--border);
    display: flex;
    gap: 10px;
}

input {
    flex: 1;
    padding: 15px 25px;
    border-radius: 50px;
    border: 1px solid transparent;
    background: rgba(0, 0, 0, 0.03);
    color: var(--text-main);
    outline: none;
}

.send-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--grad-hero);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(79, 70, 229, 0.3);
    transition: 0.2s;
}

.send-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(79, 70, 229, 0.5);
}

.chip-area {
    padding: 15px 25px;
    border-top: var(--border);
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scrollbar-width: none;
    background: rgba(0, 0, 0, 0.01);
}

.chip-area::-webkit-scrollbar {
    display: none;
}

.bubble-chip {
    background: var(--grad-bubble);
    border: 1px solid var(--border);
    color: var(--text-main);
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
    cursor: pointer;
    transition: 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.bubble-chip i {
    color: var(--accent);
}

.bubble-chip:hover {
    transform: translateY(-3px);
    border-color: var(--primary);
    color: var(--primary);
}

/* Contact Cards */
.contact-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.c-card {
    background: var(--bg-card);
    border: var(--border);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    text-decoration: none;
    transition: 0.3s;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.c-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.15);
}

.c-icon {
    width: 80px;
    height: 80px;
    background: var(--grad-hero);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin-bottom: 20px;
}

.c-card h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 10px;
}

.c-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.c-link {
    color: var(--primary);
    font-weight: 800;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: 0.2s;
}

.c-card:hover .c-link {
    gap: 10px;
}

footer {
    text-align: center;
    padding: 60px 20px 40px;
    margin-top: auto;
    border-top: var(--border);
    color: var(--text-muted);
    font-size: 0.9rem;
    background: var(--bg-footer);
    width: 100%;
    position: relative;
    overflow: hidden;
}

.f-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    pointer-events: none;
}

.f-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin: 0 auto;
    max-width: 1200px;
    position: relative;
    z-index: 1;
}

.f-col h3 {
    font-size: 1.4rem;
    font-weight: 900;
    margin-bottom: 25px;
    background: var(--grad-title);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.f-col p {
    color: var(--text-muted);
    line-height: 1.6;
}

.f-links {
    display: flex;
    flex-direction: column;
}

.f-links a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    margin-bottom: 12px;
    transition: 0.2s;
    font-weight: 500;
}

.f-links a:hover {
    color: var(--primary);
    padding-right: 5px;
}

.socials {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.socials a {
    width: 42px;
    height: 42px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-main);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.socials a:nth-child(1):hover {
    background: #1877F2;
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(24, 119, 242, 0.3);
}

.socials a:nth-child(2):hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(220, 39, 67, 0.3);
}

.socials a:nth-child(3):hover {
    background: #0077b5;
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 119, 181, 0.3);
}

.copyright {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
    padding-top: 20px;
    border-top: var(--border);
    position: relative;
    z-index: 1;
}

.studio-credit {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    color: var(--text-main);
    text-decoration: none;
    padding: 5px 15px;
    background: var(--bg-card);
    border-radius: 20px;
    border: 1px solid var(--border);
    transition: 0.3s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.studio-credit:hover {
    transform: translateY(-3px);
    border-color: var(--primary);
}

.wa-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    z-index: 999;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    text-decoration: none;
    animation: pulse 2s infinite;
}

.menu-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: var(--bg-card);
    color: var(--text-main);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 999;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: 0.3s;
}

.menu-float:hover {
    background: var(--primary);
    color: white;
}

.quick-menu {
    position: fixed;
    bottom: 90px;
    left: 30px;
    background: var(--bg-card);
    border: var(--border);
    border-radius: 15px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: 0.3s;
    min-width: 180px;
}

.quick-menu.show {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}

.quick-menu a,
.quick-menu div {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.2s;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
}

.quick-menu a:hover,
.quick-menu div:hover {
    background: rgba(0, 0, 0, 0.05);
    color: var(--primary);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 600px;
    background: var(--bg-card);
    border: var(--border);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    z-index: 2000;
    animation: slideUp 0.5s ease-out;
    display: none;
}

.cookie-banner p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.4;
}

.cookie-btn {
    background: var(--text-main);
    color: var(--bg-card);
    border: none;
    padding: 8px 20px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
}

@keyframes slideUp {
    from {
        transform: translate(-50%, 100%);
        opacity: 0;
    }

    to {
        transform: translate(-50%, 0);
        opacity: 1;
    }
}

/* Typing Effect Styles - UPDATED FOR VISIBILITY */
.type-wrap {
    color: var(--accent);
    position: relative;
    /* IMPORTANT: Override parent transparency so text is visible */
    -webkit-text-fill-color: var(--accent) !important;
    text-shadow: 0 0 15px rgba(6, 182, 212, 0.4);
    /* Slight glow for effect */
}

.cursor {
    display: inline-block;
    background-color: var(--accent);
    width: 3px;
    animation: blink 1s infinite;
    margin-right: 2px;
    vertical-align: middle;
}

@keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* Network Links in Footer */
.network-links a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 0;
    transition: 0.3s;
}

.network-links a:hover {
    padding-right: 10px;
    color: #F59E0B;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    100% {
        box-shadow: 0 0 0 20px transparent;
    }
}

/* Article Page Styles */
.article-header {
    text-align: center;
    margin-bottom: 40px;
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 20px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.article-cover {
    width: 100%;
    height: 450px;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    margin-bottom: 40px;
    box-shadow: var(--shadow);
}

/* Suitability Section Styles */
.suitability-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.s-card {
    background: var(--glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: var(--border);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow);
    height: 100%;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}

.s-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12), 0 0 25px rgba(16, 185, 129, 0.3);
}

.s-card.no:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12), 0 0 25px rgba(239, 68, 68, 0.3);
}

.s-card h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
}

.s-card ul {
    list-style: none;
}

.s-card li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.s-card.yes {
    border-top: 5px solid #10b981;
    background: linear-gradient(to bottom, rgba(16, 185, 129, 0.05), var(--bg-card));
}

.s-card.yes h3 {
    color: #10b981;
}

.s-card.yes i {
    color: #10b981;
    font-size: 1.1rem;
    margin-top: 4px;
}

.s-card.no {
    border-top: 5px solid #ef4444;
    background: linear-gradient(to bottom, rgba(239, 68, 68, 0.05), var(--bg-card));
}

.s-card.no h3 {
    color: #ef4444;
}

.s-card.no i {
    color: #ef4444;
    font-size: 1.1rem;
    margin-top: 4px;
}

.enterprise-note {
    grid-column: 1 / -1;
    background: var(--glass);
    border: 2px dashed var(--primary);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    margin-top: 20px;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.8;
}

.enterprise-note strong {
    color: var(--primary);
}

.enterprise-note i {
    color: var(--primary);
    font-size: 1.3rem;
    margin-left: 5px;
}

/* FAQ Accordion Styles (NEW) */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

details.faq-item {
    background: var(--bg-card);
    border: var(--border);
    border-radius: 15px;
    padding: 20px;
    transition: 0.3s;
    cursor: pointer;
    overflow: hidden;
}

details.faq-item:hover {
    border-color: var(--primary);
    transform: translateX(5px);
}

details.faq-item[open] {
    background: var(--glass);
    border-color: var(--accent);
    box-shadow: 0 10px 30px rgba(6, 182, 212, 0.15);
}

summary {
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-main);
    cursor: pointer;
}

summary::-webkit-details-marker {
    display: none;
}

summary::after {
    content: '+';
    font-size: 1.8rem;
    color: var(--primary);
    transition: 0.3s;
    font-weight: 300;
}

details[open] summary::after {
    transform: rotate(45deg);
    color: var(--accent);
}

.faq-ans {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    color: var(--text-muted);
    line-height: 1.8;
    animation: slideDown 0.3s ease-out;
}

.faq-ans b {
    color: var(--text-main);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Typing Indicator */
.typing-indicator {
    padding: 14px 20px;
    border-radius: 20px;
    max-width: 85%;
    background: rgba(0, 0, 0, 0.05);
    color: var(--text-main);
    align-self: flex-start;
    border-bottom-left-radius: 4px;
    display: flex;
    gap: 5px;
    align-items: center;
    animation: pop 0.3s;
}

[data-theme="dark"] .typing-indicator {
    background: rgba(255, 255, 255, 0.1);
}

.typing-indicator .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--text-muted);
    animation: typingBounce 1.4s infinite;
}

.typing-indicator .dot:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-indicator .dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typingBounce {

    0%,
    60%,
    100% {
        transform: translateY(0);
    }

    30% {
        transform: translateY(-10px);
    }
}

@media(max-width: 768px) {
    .suitability-grid {
        grid-template-columns: 1fr;
    }

    .article-cover {
        height: 300px;
    }

    .article-meta {
        flex-direction: column;
        gap: 10px;
    }
}

/* FAQ Styles */
.faq-item {
    background: var(--bg-card);
    border: var(--border);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 20px;
    transition: 0.3s;
}

.faq-item:hover {
    border-color: var(--primary);
    box-shadow: 0 5px 20px rgba(79, 70, 229, 0.1);
}

.faq-question {
    font-size: 1.3rem;
    color: var(--text-main);
    margin-bottom: 15px;
    font-weight: 700;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.faq-answer {
    color: var(--text-muted);
    line-height: 1.8;
}

.faq-answer p {
    margin-bottom: 15px;
}

.faq-answer strong {
    color: var(--text-main);
}

@keyframes pop {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes pop {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Hero Shimmer Animation */
.animate-text {
    background: linear-gradient(to right, #4f46e5, #06b6d4, #4f46e5);
    background-size: 200% auto;
    color: #000;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    animation: shine 3s linear infinite;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

/* Contact Form */
.form-container {
    opacity: 1 !important;
    visibility: visible !important;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 40px 25px;
    border-radius: 20px;
    border: 1px solid rgba(79, 70, 229, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 60px auto;
    text-align: center;
}

[data-theme="dark"] .form-container {
    background: rgba(30, 41, 59, 0.9);
    border-color: rgba(255, 255, 255, 0.1);
}

.form-container h3 {
    margin-bottom: 25px;
    color: var(--text-main);
    font-size: 1.5rem;
    font-weight: 800;
}

.form-group {
    display: flex;
    gap: 15px;
}

.form-container input,
.form-container textarea {
    width: 100%;
    padding: 15px 20px;
    margin-bottom: 15px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(79, 70, 229, 0.1);
    color: var(--text-main);
    outline: none;
    transition: 0.3s;
    font-family: inherit;
    text-align: right;
    direction: rtl;
}

.form-container input::placeholder,
.form-container textarea::placeholder {
    text-align: right;
}

.form-container input:focus,
.form-container textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 15px rgba(6, 182, 212, 0.2);
}

.form-container textarea {
    height: 120px;
    resize: vertical;
}

.form-sub {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 25px;
}

.form-intro {
    text-align: center;
    margin-bottom: 25px;
}

.form-intro p:first-child {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 5px;
    /* Add Gradient Text */
    background: var(--grad-title);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.form-sub {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 500;
    opacity: 0.9;
    display: block;
    /* Forces new line */
    margin-bottom: 20px;
}

.form-intro .sub-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Form Wrapper Spacing */
#formWrapper h3 {
    margin-bottom: 25px;
    display: block;
}

.form-intro {
    margin-bottom: 25px;
}

.form-btn {
    width: auto;
    min-width: 180px;
    margin: 20px auto 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    border-radius: 50px;
    background: var(--grad-hero);
    border: none;
    color: white;
    font-weight: 700;
    box-shadow: 0 5px 20px rgba(79, 70, 229, 0.4);
    cursor: pointer;
    transition: 0.3s;
}

.form-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(6, 182, 212, 0.5);
}

.form-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Mobile specific fixes */
@media (max-width: 600px) {
    .hero-title {
        min-height: auto;
    }

    .page-wrapper {
        padding-left: 15px;
        padding-right: 15px;
    }

    .form-container {
        padding: 25px 20px;
    }

    .form-group {
        flex-direction: column;
        gap: 0;
    }
}

/* Clickable Blog Title Links */
.card-title-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: 0.3s;
}

.card-title-link:hover {
    /* Force a visible color (Cyan/Primary) instead of white */
    color: var(--primary) !important;
    text-shadow: 0 0 1px rgba(0, 0, 0, 0.1);
}

/* Safety: Hide any leftover dates */
.blog-date {
    display: none !important;
}

/* Ensure the Ghost Date is hidden via CSS just in case */
#latest-news>.blog-date,
#latest-news>span {
    display: none !important;
}

/* Mobile Polish (Global Safety) */
@media (max-width: 600px) {

    html,
    body {
        overflow-x: hidden;
        /* Prevent side-scroll */
    }

    .page-wrapper {
        padding-top: 100px;
        /* Adjust header spacing */
    }

    .hero-title {
        font-size: 2.5rem;
        /* Prevent massive text breaking layout */
    }

    .t-card,
    .s-card,
    .blog-card {
        margin-bottom: 20px;
        /* Better spacing */
    }

    .form-container {
        width: 95%;
        margin: 40px auto;
        padding: 25px 15px;
    }
}

/* Form Validation Error Styling */
input.input-error,
textarea.input-error {
    border-color: #ef4444 !important;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.2) !important;
    animation: shake 0.3s ease-in-out;
}

@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-5px);
    }

    75% {
        transform: translateX(5px);
    }
}




/* --- תוספת לתיקון טקסט התשלום --- */
.pay-text {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--text-muted); /* ברירת מחדל אפור כהה שרואים */
}

.pay-gradient {
    background: var(--grad-hero); /* הגרדיאנט של הכפתורים */
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900; /* מודגש מאוד */
    display: inline-block;
}