/* ===========================
   CSS VARIABLES & DESIGN TOKENS
   =========================== */
:root {
    --bg-dark: #000000;
    --bg-darker: #050505;
    --bg-surface: #0a0a0a;
    --bg-surface-hover: #121212;

    --text-primary: #ffffff;
    --text-secondary: #a3a3a3;
    --text-muted: #525252;

    --accent-blue: #ccff00;
    /* Reusing existing var names for less HTML churn, but it's lime now */
    --accent-purple: #99ff00;
    --accent-gradient: #ccff00;
    /* Solid override for godly aesthetic */

    --border-light: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(204, 255, 0, 0.3);

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    --transition: all 0.2s ease-in-out;
}

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

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.03'/%3E%3C/svg%3E");
}

/* Background Animated Gradient Glow - Subtle */
.glow-bg {
    position: fixed;
    top: -20vh;
    left: -20vw;
    width: 60vw;
    height: 60vh;
    background: radial-gradient(circle, rgba(204, 255, 0, 0.03) 0%, rgba(204, 255, 0, 0.01) 40%, rgba(0, 0, 0, 0) 70%);
    border-radius: 50%;
    z-index: -1;
    animation: drift 20s infinite alternate;
    pointer-events: none;
}

@keyframes drift {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(30vw, 20vh) scale(1.2);
    }
}

/* ===========================
   UTILITIES & COMPONENTS
   =========================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    overflow-x: hidden;
}

.container-flex {
    display: flex;
    gap: 4rem;
}

.align-center {
    align-items: center;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

.highlight {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.text-highlight {
    color: var(--accent-blue);
}

section {
    padding: 6rem 0;
}

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

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-family: var(--font-body);
    text-align: center;
}

.btn-primary {
    background: var(--accent-blue);
    color: #000;
}

.btn-primary:hover {
    box-shadow: 0 0 20px rgba(204, 255, 0, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-light);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* Bento Cards */
.glass-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    transition: var(--transition);
}

.glass-card:hover {
    border-color: var(--border-hover);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.8);
}

/* Pulsing Dots */
.pulsing {
    width: 10px;
    height: 10px;
    background-color: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

/* ===========================
   NAVIGATION
   =========================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 0;
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(10, 10, 12, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-light);
}

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

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: -0.5px;
    color: var(--text-primary);
    text-decoration: none;
}

.logo {
    text-decoration: none;
}

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

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

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

.nav-links .nav-cta {
    color: #000;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

/* ===========================
   HERO SECTION
   =========================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 6rem;
}

.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(59, 130, 246, 0.1);
    color: var(--accent-blue);
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.hero-title {
    font-size: 4.5rem;
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
}

.hero-title span {
    display: block;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.trust-metrics {
    display: flex;
    gap: 2rem;
    border-top: 1px solid var(--border-light);
    padding-top: 2rem;
}

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

.metric strong {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
}

/* Hero Visual / Mockup */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-photo {
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 500px;
    border-radius: 20px;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
    position: relative;
    z-index: 5;
}

.hero-points {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hero-intro-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: center;
    margin-bottom: 2.5rem;
    text-align: left;
    max-width: 900px;
}

.hero-profile-photo {
    width: 320px;
    height: 320px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border: 3px solid var(--accent-blue);
}

.hero-points li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
    line-height: 1.5;
}

.hero-points li .point-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hero-points li .point-label {
    font-weight: 700;
    color: #fff;
}

.hero-points li .point-text {
    color: var(--text-secondary);
}

.hero-points li i {
    color: var(--accent-blue);
    margin-top: 5px;
    flex-shrink: 0;
    width: 18px;
    text-align: center;
}

.main-card {
    padding: 2rem;
    width: 100%;
    max-width: 400px;
    margin-left: auto;
    position: relative;
    z-index: 2;
}

.floating-stats-card {
    position: absolute;
    bottom: 20px;
    left: -20px;
    max-width: 280px;
    padding: 1.5rem;
    z-index: 10;
    margin: 0;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(16px);
}

.floating-stats-card .chart-container {
    height: 120px;
    margin-bottom: 1rem;
}

.floating-stats-card .card-header {
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.main-card::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: var(--accent-gradient);
    filter: blur(80px);
    opacity: 0.3;
    z-index: -1;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.card-header i {
    font-size: 1.5rem;
}

.card-header .pulsing {
    margin-left: auto;
}

.chart-container {
    display: flex;
    align-items: flex-end;
    gap: 0.5rem;
    height: 150px;
    margin-bottom: 2rem;
}

.bar {
    flex: 1;
    background: var(--border-light);
    border-radius: 4px 4px 0 0;
    position: relative;
    overflow: hidden;
}

.bar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--accent-gradient);
    transform-origin: bottom;
    animation: growBar 1.5s cubic-bezier(0.1, 0.8, 0.2, 1) forwards;
}

@keyframes growBar {
    0% {
        transform: scaleY(0);
    }

    100% {
        transform: scaleY(1);
    }
}

.card-footer {
    padding-top: 1rem;
    border-top: 1px solid var(--border-light);
    font-weight: 600;
    color: #10b981;
}

/* ===========================
   SERVICES SECTION
   =========================== */
.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.service-card {
    padding: 3rem;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(139, 92, 246, 0.1);
    color: var(--accent-purple);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 2rem;
}

.service-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.service-features {
    list-style: none;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    color: var(--text-primary);
    border-bottom: 1px solid var(--border-light);
}

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

.service-features li i {
    color: var(--accent-blue);
}

/* ===========================
   CASES SECTION
   =========================== */
.cases {
    background: var(--bg-darker);
}

.cases-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.case-card {
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.featured-case {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.case-image-placeholder {
    background: #1f2937;
    position: relative;
    min-height: 300px;
}

.auto-rent-bg {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.8)), url('https://images.unsplash.com/photo-1549317661-bd32c8ce0db2?auto=format&fit=crop&q=80&w=1000') center/cover;
}

.case-industry {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: var(--accent-gradient);
    padding: 0.25rem 1rem;
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 600;
}

.case-content {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.case-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.case-content p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

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

.result-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-blue);
    font-family: var(--font-heading);
}

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

.case-quote {
    font-style: italic;
    border-left: 4px solid var(--accent-purple);
    padding-left: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.results-mini {
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: auto;
}

/* ===========================
   ABOUT & GEO SECTION
   =========================== */
.about .container-flex {
    padding: 4rem 0;
}

.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.about-content p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.operational-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.detail-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.detail-item i {
    font-size: 2rem;
    color: var(--accent-blue);
    background: rgba(59, 130, 246, 0.1);
    padding: 1rem;
    border-radius: 15px;
}

.detail-item h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.detail-item p {
    font-size: 1rem;
    margin-bottom: 0;
}

.about-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.map-illustration {
    width: 300px;
    height: 300px;
    position: relative;
    border-radius: 50%;
    border: 1px dashed rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-illustration::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border: 1px solid rgba(139, 92, 246, 0.4);
    border-radius: 50%;
}

.node {
    position: absolute;
    width: 60px;
    height: 60px;
    background: var(--bg-surface);
    backdrop-filter: blur(5px);
    border: 1px solid var(--accent-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.eu-node {
    top: -20px;
    left: 120px;
    border-color: #3b82f6;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
}

.ua-node {
    top: 150px;
    right: -20px;
    border-color: #facc15;
    box-shadow: 0 0 20px rgba(250, 204, 21, 0.3);
}

.ge-node {
    bottom: -10px;
    left: 50px;
    border-color: #ef4444;
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.3);
}

/* ===========================
   CONTACT FORM SECTION
   =========================== */
.contact {
    position: relative;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    padding: 4rem;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.contact-info p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.contact-methods {
    list-style: none;
}

.contact-methods li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    font-size: 1.1rem;
    border-bottom: 1px solid var(--border-light);
}

.contact-methods li i {
    color: var(--accent-purple);
}

.lead-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-light);
    border-radius: 10px;
    color: #fff;
    font-family: var(--font-body);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2);
}

.btn-submit {
    grid-column: 1 / -1;
    width: 100%;
    font-size: 1.2rem;
    padding: 1.35rem 2rem;
    margin-top: 1rem;
    background: #ccff00 !important;
    color: #000 !important;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(204, 255, 0, 0.3);
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #e0ff4d !important;
    box-shadow: 0 0 30px rgba(204, 255, 0, 0.5);
    transform: translateY(-2px);
}

/* ===========================
   FOOTER
   =========================== */
footer {
    padding: 4rem 0;
    border-top: 1px solid var(--border-light);
    background: var(--bg-darker);
}

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

.footer-brand p {
    color: var(--text-muted);
    margin-top: 0.5rem;
}

.footer-legal {
    text-align: right;
}

.footer-legal p {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.legal-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.875rem;
    margin-left: 1rem;
}

.legal-links a:hover {
    color: #fff;
}

/* ===========================
   RESPONSIVE DESIGN (MOBILE)
   =========================== */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-visual {
        order: -1;
        margin-bottom: 2rem;
    }

    .floating-stats-card {
        bottom: -30px;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        max-width: 300px;
    }

    .hero-photo {
        max-height: 350px;
    }

    .hero-points {
        text-align: left;
        max-width: 500px;
        margin: 0 auto;
    }

    .hero-intro-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }

    .hero-photo-wrapper {
        order: -1;
        margin-bottom: 1rem;
    }

    .hero-profile-photo {
        width: 240px;
        height: 240px;
    }

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

    .hero-subtitle {
        margin: 0 auto 2.5rem;
    }

    .hero-actions {
        justify-content: center;
    }

    .trust-metrics {
        justify-content: center;
    }

    .main-card {
        margin: 0 auto;
    }

    .container-flex {
        flex-direction: column;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        padding: 2rem;
    }

    .featured-case {
        grid-template-columns: 1fr;
    }

    .case-image-placeholder {
        min-height: 250px;
    }
}

@media (max-width: 768px) {
    section {
        padding: 4rem 0;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

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

    .hero-subtitle {
        font-size: 1rem;
        margin: 0 auto 2rem;
    }

    .hero-photo {
        max-height: 280px;
    }

    .hero-points li {
        font-size: 0.95rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .trust-metrics {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .metric strong {
        font-size: 1.25rem;
    }

    .services-grid,
    .cases-grid {
        grid-template-columns: 1fr;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--bg-darker);
        flex-direction: column;
        padding: 2rem;
        border-bottom: 1px solid var(--border-light);
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: block;
    }

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

    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .footer-legal {
        text-align: center;
    }

    .legal-links a {
        margin: 0 0.5rem;
    }

    /* About section centering on mobile */
    .about .container-flex {
        text-align: center;
    }

    .about-content h2 {
        font-size: 2rem;
    }

    .about-content p {
        font-size: 1.05rem;
    }

    .detail-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .about-visual {
        display: none;
    }

    /* Qualification / Who This Is For */
    .qualification h2 {
        font-size: 1.75rem !important;
    }

    /* CTA section */
    .cta-massive h2 {
        font-size: 1.75rem;
    }

    .cta-massive p {
        font-size: 1rem;
    }

    /* Contact */
    .contact-info h2 {
        font-size: 1.75rem;
    }

    /* Price card font */
    .price {
        font-size: 2rem;
    }
}

/* ===========================
   NEW ADDITIONS (PRICING, FOOTER, LEGAL, MOCKUPS)
   =========================== */

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.pricing-card {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
}

.featured-tier {
    border-color: var(--accent-blue);
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(59, 130, 246, 0.2);
}



.tier-header {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-light);
}

.tier-header h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-primary);
    font-family: var(--font-heading);
}

.tier-desc {
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 2rem;
    min-height: 3rem;
}

.btn-full {
    width: 100%;
    margin-top: auto;
}

/* Global Footer */
.global-footer {
    padding: 4rem 0 2rem;
    background: var(--bg-darker);
    border-top: 1px solid var(--border-light);
}

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

.footer-info h4,
.footer-links h4 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.footer-info p {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-blue);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--border-light);
    text-align: center;
    color: var(--text-muted);
}

/* Legal Pages */
.legal-page {
    padding-top: 10rem;
    padding-bottom: 6rem;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 3rem;
    margin-bottom: 2rem;
    text-align: center;
}

.legal-content h2 {
    font-size: 1.75rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.legal-content p,
.legal-content li {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.legal-content ul {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

.highlight-box {
    background: rgba(59, 130, 246, 0.1);
    border-left: 4px solid var(--accent-blue);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 10px 10px 0;
}

.highlight-box p {
    margin-bottom: 0;
    color: var(--text-primary);
    font-weight: 500;
}

/* Case Studies Page */
.page-header {
    padding: 10rem 0 4rem;
    text-align: center;
}

.page-header h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.cases-list {
    display: flex;
    flex-direction: column;
    gap: 6rem;
}

.case-study-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.case-study-row:nth-child(even) {
    direction: rtl;
}

.case-study-row:nth-child(even) .case-info {
    direction: ltr;
    /* Reset to RTL to keep text readable left to right */
}

.case-study-row:nth-child(even) .case-visual {
    direction: ltr;
}

.case-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.case-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
    padding: 1.5rem;
    background: var(--bg-surface);
    border-radius: 15px;
    border: 1px solid var(--border-light);
}

/* Browser Mockup */
.browser-mockup {
    background: #1e1e1e;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    position: relative;
    width: 100%;
}

.browser-header {
    height: 30px;
    background: #2d2d2d;
    display: flex;
    align-items: center;
    padding: 0 15px;
    gap: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.browser-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #4a4a4a;
}

.browser-dot:nth-child(1) {
    background: #ff5f56;
}

.browser-dot:nth-child(2) {
    background: #ffbd2e;
}

.browser-dot:nth-child(3) {
    background: #27c93f;
}

.browser-content {
    aspect-ratio: 16/10;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
}

.placeholder-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-text {
    font-size: 1.25rem;
    font-weight: 500;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
    padding: 2rem;
}

.placeholder-text i {
    font-size: 3rem;
    color: var(--accent-blue);
    opacity: 0.8;
}

/* Responsive updates for new elements */
@media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .featured-tier {
        transform: translateY(0);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .case-study-row {
        grid-template-columns: 1fr;
        gap: 2rem;
        direction: ltr !important;
        text-align: center;
    }

    .case-study-row:nth-child(even) .case-info {
        text-align: center;
    }

    .case-metrics {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* ===========================
   AGENCY STRUCTURE UPDATES
   =========================== */

/* Trusted Logos */
.trusted-section {
    padding: 3rem 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    background: var(--bg-darker);
    text-align: center;
}

.trusted-section p {
    color: var(--text-muted);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
}

.logo-ticker {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    align-items: center;
    opacity: 0.5;
    filter: grayscale(100%);
    transition: var(--transition);
}

.logo-ticker:hover {
    opacity: 0.8;
}

.logo-ticker i {
    font-size: 2.5rem;
    color: var(--text-primary);
}

/* Features Grid (Bento) */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.feature-card {
    padding: 2.5rem;
}

.feature-card i {
    font-size: 2rem;
    color: var(--accent-lime);
    margin-bottom: 1.5rem;
    display: block;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.testimonial-card {
    padding: 3rem;
    display: flex;
    flex-direction: column;
}

.testimonial-quote {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--text-primary);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--border-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-lime);
    font-weight: 700;
}

.author-info h4 {
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.author-info p {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin: 0;
}

/* Pre-Footer CTA */
.cta-massive {
    text-align: center;
    padding: 8rem 2rem;
    background: var(--bg-surface);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

.cta-massive::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(204, 255, 0, 0.05) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.cta-massive h2 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.cta-massive p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 3rem;
    position: relative;
    z-index: 2;
}

.cta-massive .btn {
    position: relative;
    z-index: 2;
}

/* ===========================
   COOPERATION STEPS
   =========================== */
.cooperation-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.coop-step {
    padding: 2.5rem;
    position: relative;
    text-align: center;
}

.coop-step-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 900;
    color: rgba(204, 255, 0, 0.1);
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    line-height: 1;
}

.coop-step i {
    font-size: 2rem;
    color: var(--accent-blue);
    margin-bottom: 1.5rem;
    display: block;
}

.coop-step h3 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
}

.coop-step p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* 4-Column Pricing Grid */
.pricing-grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

/* AI Feature Grid */
.ai-grid {
    grid-template-columns: repeat(3, 1fr);
}

.ai-section .feature-card i {
    background: rgba(204, 255, 0, 0.08);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
    color: var(--accent-blue);
}

/* Responsive updates for new sections */
@media (max-width: 1200px) {
    .pricing-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .cooperation-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-grid-4 {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {

    .cooperation-steps {
        grid-template-columns: 1fr;
    }

    .coop-step-number {
        font-size: 2rem;
    }

    .features-grid,
    .testimonials-grid,
    .ai-grid {
        grid-template-columns: 1fr;
    }

    .cta-massive {
        padding: 5rem 1.5rem;
    }

    .cta-massive h2 {
        font-size: 1.75rem;
    }
}