:root {
    --primary: #0078D4;
    --primary-dark: #005A9E;
    --dark: #1A1A2E;
    --bg-accent: #EBF4FF;
    --success: #229954;
    --bg: #FFFFFF;
    --bg-surface: #F7F9FC;
    --text-body: #333333;
    --text-muted: #666666;
    --text-light: #D0EAFF;

    --radius: 12px;
    --transition: 0.3s ease;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 10px 25px rgba(0, 120, 212, 0.1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    color: var(--text-body);
    background-color: var(--bg);
    line-height: 1.6;
    font-size: 17px;
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3 {
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 52px;
    font-weight: 700;
    color: var(--bg);
    letter-spacing: -0.02em;
}

h2 {
    font-size: 34px;
    font-weight: 700;
    color: var(--dark);
    letter-spacing: -0.01em;
}

h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--dark);
}

a {
    text-decoration: none;
    color: inherit;
}

/* Containers */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-label {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary);
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    display: block;
}

.centered {
    text-align: center;
}

.subtitle {
    color: var(--text-muted);
    font-size: 17px;
    margin-bottom: 3rem;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background-color: var(--bg);
    backdrop-filter: blur(10px);
    z-index: 1000;
    display: flex;
    align-items: center;
    transition: var(--transition);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar.scrolled {
    height: 70px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    background-color: rgba(255, 255, 255, 0.95);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/* Logo as image */
.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 38px;
    width: auto;
    object-fit: contain;
}

.navbar.scrolled .logo-img {
    height: 32px;
}

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

.nav-links a:not(.btn-cta-nav) {
    color: var(--text-body);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
}

.nav-links a:not(.btn-cta-nav):hover {
    color: var(--primary);
}

.btn-cta-nav {
    background-color: var(--primary);
    color: var(--bg) !important;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
}

.btn-cta-nav:hover {
    background-color: var(--primary-dark);
    transform: translateY(-1px);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-body);
    cursor: pointer;
}

.menu-toggle svg {
    width: 28px;
    height: 28px;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    cursor: pointer;
}

.btn-primary {
    background-color: var(--bg);
    color: var(--primary);
    border: 2px solid var(--bg);
}

.btn-primary:hover {
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--primary);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--bg);
    border: 2px solid var(--bg);
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.btn-cta {
    background-color: var(--bg);
    color: var(--primary);
    font-size: 1.125rem;
    padding: 1rem 2.5rem;
    border: none;
    margin-top: 32px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    background-color: #f8f9fa;
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 90vh;
    background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
    display: flex;
    align-items: center;
    padding-top: 80px;
    padding-bottom: 4rem;
}

.hero-content {
    text-align: center;
    width: 100%;
}

.hero .subheadline {
    font-size: 20px;
    color: var(--text-light);
    margin: 1.5rem auto 2.5rem auto;
    max-width: 650px;
    font-weight: 400;
}

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

.trust-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.trust-bar .dot {
    opacity: 0.5;
}

/* ===== ABOUT SECTION ===== */
.about {
    padding: 6rem 0;
    background-color: var(--bg);
}

.about-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.profile-image {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.about-text-col {
    max-width: 700px;
}

.about-text-col p:not(.section-label):not(.tagline) {
    margin-bottom: 1.5rem;
}

.about .tagline {
    font-style: italic;
    font-weight: 600;
    color: var(--primary);
    margin-top: 1rem;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 3rem;
}

.badge-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
    color: var(--dark);
    padding: 1rem 1.5rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    background-color: var(--bg);
}

.badge-icon {
    font-size: 1.25rem;
}

/* ===== SERVICES SECTION ===== */
.services {
    padding: 6rem 0;
    background-color: var(--bg-surface);
}

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

.service-card {
    background: var(--bg);
    padding: 28px;
    border-radius: var(--radius);
    border-left: 4px solid var(--primary);
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.icon-area {
    font-size: 32px;
    margin-bottom: 1rem;
}

.service-card .subline {
    font-style: italic;
    color: var(--primary);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.service-card .body-text {
    color: var(--text-muted);
    margin-bottom: 2rem;
    flex-grow: 1;
}

.card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: auto;
}

.benefit-tag {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--success);
    background-color: rgba(34, 153, 84, 0.1);
    padding: 0.4rem 0.8rem;
    border-radius: 50px;
}

.card-link {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary);
    transition: var(--transition);
}

.card-link:hover {
    color: var(--dark);
}

/* ===== SOCIAL PROOF SECTION ===== */
.social-proof {
    padding: 6rem 0;
    background-color: var(--bg);
}

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

.case-card {
    background-color: var(--bg-accent);
    padding: 2rem;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
}

.case-tag {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.case-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.case-card p {
    color: var(--text-body);
    margin-bottom: 1.5rem;
    flex-grow: 1;
    font-size: 0.95rem;
}

.result-badge {
    display: inline-flex;
    font-weight: 600;
    color: var(--success);
    font-size: 0.9rem;
    margin-top: auto;
}

/* ===== CTA SECTION ===== */
.cta {
    background-color: var(--primary);
    padding: 6rem 0;
    color: var(--bg);
    text-align: center;
}

.cta h2 {
    color: var(--bg);
    font-size: 36px;
    margin-bottom: 1.5rem;
}

.cta .subtext {
    font-size: 19px;
    max-width: 700px;
    margin: 0 auto 1.5rem auto;
    color: var(--text-light);
}

.cta .supporting-line {
    font-size: 17px;
    font-weight: 700;
    color: var(--bg);
}

/* ===== FOOTER ===== */
footer {
    background-color: var(--dark);
    color: rgba(255, 255, 255, 0.6);
    padding-top: 4rem;
}

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

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

.footer-logo-img {
    height: 30px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.col-brand .tagline {
    font-size: 0.95rem;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-nav a,
.col-contact a {
    transition: var(--transition);
}

.footer-nav a:hover,
.col-contact a:hover {
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
    font-size: 0.875rem;
}

.bottom-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.legal-nav {
    display: flex;
    gap: 1rem;
}

.legal-nav a {
    transition: var(--transition);
}

.legal-nav a:hover {
    color: var(--bg);
}

/* ===== COOKIE CONSENT BANNER ===== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background-color: var(--bg);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.12);
    padding: 1.5rem 0;
    transform: translateY(100%);
    transition: transform 0.5s ease;
}

.cookie-banner.visible {
    transform: translateY(0);
}

.cookie-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.cookie-text h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.cookie-text p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 1rem;
}

.cookie-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.btn-cookie {
    padding: 0.6rem 1.25rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-family: 'Inter', 'Segoe UI', sans-serif;
}

.btn-cookie-accept {
    background-color: var(--primary);
    color: var(--bg);
}

.btn-cookie-accept:hover {
    background-color: var(--primary-dark);
}

.btn-cookie-essential {
    background-color: var(--bg-surface);
    color: var(--text-body);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.btn-cookie-essential:hover {
    background-color: #e9ecef;
}

.btn-cookie-settings {
    background-color: transparent;
    color: var(--text-muted);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.btn-cookie-settings:hover {
    color: var(--text-body);
    border-color: rgba(0, 0, 0, 0.2);
}

.cookie-details {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.cookie-option {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.cookie-option label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cookie-option input[type="checkbox"] {
    accent-color: var(--primary);
    width: 16px;
    height: 16px;
}

.cookie-desc {
    font-size: 0.825rem;
    color: var(--text-muted);
}

/* ===== ANIMATIONS ===== */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.service-card.fade-in-up,
.trust-bar.fade-in-up,
.case-card.fade-in-up,
.trust-badges.fade-in-up {
    transition-delay: var(--anim-delay, 0s);
}

/* ===== RESPONSIVE BREAKPOINTS ===== */

/* 1280px */
@media (max-width: 1280px) {
    .hero h1 {
        font-size: 48px;
    }
}

/* 768px */
@media (max-width: 768px) {
    h1 {
        font-size: 40px;
    }

    h2 {
        font-size: 28px;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        background-color: var(--bg);
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
        border-top: 1px solid rgba(0, 0, 0, 0.05);
    }

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

    .nav-links a:not(.btn-cta-nav) {
        font-size: 1.125rem;
    }

    .menu-toggle {
        display: block;
        color: var(--dark);
    }

    .hero {
        padding-top: 100px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

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

    .trust-bar .dot {
        display: none;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .profile-image {
        max-width: 280px;
        margin: 0 auto;
        display: block;
    }

    .trust-badges {
        flex-direction: column;
    }

    .badge-card {
        justify-content: center;
    }

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

    .card-footer {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .footer-top {
        grid-template-columns: 1fr;
    }

    .bottom-bar-inner {
        flex-direction: column;
        text-align: center;
    }

    .cookie-actions {
        flex-direction: column;
    }

    .cookie-actions .btn-cookie {
        width: 100%;
        text-align: center;
    }
}

/* 375px */
@media (max-width: 375px) {
    h1 {
        font-size: 32px;
    }

    .hero .subheadline {
        font-size: 16px;
    }

    .cta h2 {
        font-size: 28px;
    }

    .cta .subtext {
        font-size: 16px;
    }

    .logo-img {
        height: 28px;
    }
}
