/* ==================== */
/* CSS RESET & BASE */
/* ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-black: #000000;
    --primary-white: #ffffff;
    --primary-blue: #0066ff;
    --accent-gold: #ffd700;
    --gray-dark: #1a1a1a;
    --gray-medium: #2a2a2a;
    --gray-light: #3a3a3a;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --transition-speed: 0.3s;
    --shadow-primary: 0 10px 40px rgba(0, 102, 255, 0.3);
    --shadow-secondary: 0 5px 20px rgba(255, 215, 0, 0.2);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: var(--primary-black);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    background-image:
        linear-gradient(rgba(0, 102, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 102, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    background-attachment: fixed;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-tap-highlight-color: rgba(0, 102, 255, 0.2);
}

body:not(.loaded) {
    overflow: hidden;
}

body.loaded .loading-screen {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* ==================== */
/* LOADING SCREEN */
/* ==================== */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #000000 0%, #0a0a1a 50%, #000000 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 1;
    visibility: visible;
    transition: opacity 1s ease, visibility 1s ease;
}

.loading-screen::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(2px 2px at 20% 30%, white, transparent),
        radial-gradient(2px 2px at 60% 70%, white, transparent),
        radial-gradient(1px 1px at 50% 50%, white, transparent),
        radial-gradient(1px 1px at 80% 10%, white, transparent),
        radial-gradient(2px 2px at 90% 60%, white, transparent),
        radial-gradient(1px 1px at 33% 80%, white, transparent);
    background-size: 200% 200%;
    animation: stars-float 20s ease-in-out infinite;
    opacity: 0.3;
}

.loading-content {
    position: relative;
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

.loading-logo {
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    animation: fadeInDown 0.8s ease-out;
}

/* Money Printer Animation */
.money-printer {
    position: relative;
    width: 200px;
    height: 150px;
    animation: fadeIn 1s ease-out 0.3s both;
}

.printer-body {
    width: 180px;
    height: 100px;
    background: linear-gradient(135deg, var(--gray-medium), var(--gray-dark));
    border: 3px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 10px 40px rgba(0, 102, 255, 0.3);
}

.printer-slot {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 20px;
    background: linear-gradient(135deg, var(--primary-blue), #0052cc);
    border-radius: 10px;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.3);
}

.printer-light {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 15px;
    height: 15px;
    background: var(--accent-gold);
    border-radius: 50%;
    animation: printer-blink 1.5s ease-in-out infinite;
    box-shadow: 0 0 20px var(--accent-gold);
}

@keyframes printer-blink {
    0%, 100% {
        opacity: 1;
        box-shadow: 0 0 20px var(--accent-gold);
    }
    50% {
        opacity: 0.3;
        box-shadow: 0 0 5px var(--accent-gold);
    }
}

.money-bills {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
}

.bill {
    position: absolute;
    width: 110px;
    height: 55px;
    border-radius: 8px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

/* €10 Bill - Red */
.bill-10 {
    background: linear-gradient(135deg, #d63031 0%, #e74c3c 50%, #c0392b 100%);
    border: 2px solid #a93226;
}

.bill-10 .bill-content::before {
    background: radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.2), transparent 50%);
}

/* €20 Bill - Blue */
.bill-20 {
    background: linear-gradient(135deg, #2980b9 0%, #3498db 50%, #1e6fa5 100%);
    border: 2px solid #1a5990;
}

.bill-20 .bill-content::before {
    background: radial-gradient(circle at 70% 40%, rgba(255, 255, 255, 0.2), transparent 50%);
}

/* €50 Bill - Orange */
.bill-50 {
    background: linear-gradient(135deg, #e67e22 0%, #f39c12 50%, #d68910 100%);
    border: 2px solid #b8750a;
}

.bill-50 .bill-content::before {
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.2), transparent 50%);
}

.bill-content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    position: relative;
    overflow: hidden;
}

.bill-content::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 6px;
}

.bill-content::after {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    right: 4px;
    bottom: 4px;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
}

.bill-value {
    font-size: 2rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.95);
    text-shadow:
        1px 1px 3px rgba(0, 0, 0, 0.5),
        0 0 10px rgba(255, 255, 255, 0.3);
    z-index: 1;
    letter-spacing: -2px;
}

.bill-symbol {
    font-size: 1.8rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.95);
    text-shadow:
        1px 1px 3px rgba(0, 0, 0, 0.5),
        0 0 10px rgba(255, 255, 255, 0.3);
    z-index: 1;
}

.bill-1 {
    animation: print-money 2.5s ease-in-out infinite;
}

.bill-2 {
    animation: print-money 2.5s ease-in-out 0.4s infinite;
}

.bill-3 {
    animation: print-money 2.5s ease-in-out 0.8s infinite;
}

@keyframes print-money {
    0% {
        opacity: 0;
        top: -10px;
        transform: translateX(-50%) scale(0.8);
    }
    20% {
        opacity: 1;
        top: 0;
        transform: translateX(-50%) scale(1);
    }
    40% {
        opacity: 1;
        top: 30px;
        transform: translateX(-50%) scale(1) rotate(0deg);
    }
    60% {
        opacity: 0.8;
        top: 60px;
        transform: translateX(-50%) scale(1.05) rotate(-5deg);
    }
    80% {
        opacity: 0.3;
        top: 90px;
        transform: translateX(-50%) scale(1.1) rotate(-10deg);
    }
    100% {
        opacity: 0;
        top: 120px;
        transform: translateX(-50%) scale(1.2) rotate(-15deg);
    }
}

/* Loading Text */
.loading-text {
    animation: fadeInUp 1s ease-out 0.5s both;
}

.loading-text h3 {
    font-size: 1.5rem;
    font-weight: 600;
    background: linear-gradient(135deg, var(--primary-white) 0%, var(--primary-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.loading-bar {
    width: 250px;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.loading-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-gold), var(--primary-blue));
    background-size: 200% 100%;
    border-radius: 10px;
    animation: loading-progress 2s ease-in-out infinite;
    box-shadow: 0 0 15px var(--primary-blue);
}

@keyframes loading-progress {
    0% {
        width: 0%;
        background-position: 0% 50%;
    }
    50% {
        width: 70%;
        background-position: 100% 50%;
    }
    100% {
        width: 100%;
        background-position: 200% 50%;
    }
}

/* Responsive Loading Screen */
@media (max-width: 768px) {
    .loading-logo {
        font-size: 2rem;
    }

    .money-printer {
        width: 150px;
        height: 120px;
    }

    .printer-body {
        width: 140px;
        height: 80px;
    }

    .printer-slot {
        width: 90px;
        height: 15px;
    }

    .bill {
        width: 90px;
        height: 45px;
    }

    .bill-value {
        font-size: 1.6rem;
    }

    .bill-symbol {
        font-size: 1.4rem;
    }

    .loading-text h3 {
        font-size: 1.2rem;
    }

    .loading-bar {
        width: 200px;
    }
}

/* ==================== */
/* NAVIGATION */
/* ==================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition-speed);
}

.navbar.scrolled {
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    position: relative;
}

.logo-prim {
    color: var(--primary-white);
}

.logo-euro {
    color: var(--primary-blue);
}

.logo-stars {
    color: var(--accent-gold);
    font-size: 1.2rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all var(--transition-speed);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-gold));
    transition: width var(--transition-speed);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--primary-blue);
}

.btn-contact {
    background: linear-gradient(135deg, var(--primary-blue), #0052cc);
    padding: 0.6rem 1.5rem !important;
    border-radius: 25px;
    color: var(--primary-white) !important;
    font-weight: 600;
    transition: all var(--transition-speed);
}

.btn-contact::after {
    display: none;
}

.btn-contact:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary);
    color: var(--primary-white) !important;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    margin: -8px;
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
    align-items: center;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-white);
    border-radius: 3px;
    transition: all var(--transition-speed);
}

/* ==================== */
/* HERO SECTION */
/* ==================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 8rem 0 4rem;
}

.hero-background {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #000000 0%, #0a0a1a 50%, #000000 100%);
    pointer-events: none;
}

.stars {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(2px 2px at 20% 30%, white, transparent),
        radial-gradient(2px 2px at 60% 70%, white, transparent),
        radial-gradient(1px 1px at 50% 50%, white, transparent),
        radial-gradient(1px 1px at 80% 10%, white, transparent),
        radial-gradient(2px 2px at 90% 60%, white, transparent),
        radial-gradient(1px 1px at 33% 80%, white, transparent);
    background-size: 200% 200%;
    animation: stars-float 20s ease-in-out infinite;
    opacity: 0.5;
    pointer-events: none;
}

@keyframes stars-float {
    0%, 100% {
        background-position: 0% 0%;
    }
    50% {
        background-position: 100% 100%;
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 102, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-logo {
    font-size: 4rem;
    font-weight: 900;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    animation: fadeInDown 1s ease-out;
}

.logo-prim-large {
    color: var(--primary-white);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.logo-euro-large {
    color: var(--primary-blue);
    text-shadow: 0 0 30px rgba(0, 102, 255, 0.8);
}

.logo-stars-large {
    color: var(--accent-gold);
    font-size: 3.5rem;
    animation: pulse 2s infinite;
    filter: drop-shadow(0 0 10px var(--accent-gold));
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Image */
.hero-image-container {
    width: 100%;
    max-width: 500px;
    margin: 0 auto 2rem;
    overflow: hidden;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary-white) 0%, var(--primary-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease-out 0.4s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 4rem;
    animation: fadeInUp 1s ease-out 0.6s both;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all var(--transition-speed);
    border: none;
    cursor: pointer;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-blue), #0052cc);
    color: var(--primary-white);
    box-shadow: 0 5px 20px rgba(0, 102, 255, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-primary);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-white);
    border: 2px solid var(--primary-white);
}

.btn-secondary:hover {
    background: var(--primary-white);
    color: var(--primary-black);
    transform: translateY(-3px);
}

.btn-tertiary {
    background: linear-gradient(135deg, var(--accent-gold), #ffaa00);
    color: var(--primary-black);
    font-weight: 700;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
}

.btn-tertiary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-secondary);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.scroll-indicator {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    animation: fadeInUp 1s ease-out 1s both;
    z-index: 10;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--primary-white);
    border-radius: 15px;
    margin: 0 auto 10px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 10px;
    background: var(--primary-blue);
    border-radius: 2px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 2s infinite;
}

@keyframes scroll-wheel {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(15px);
    }
}

.scroll-indicator p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ==================== */
/* SECTIONS COMMON */
/* ==================== */
section {
    padding: 6rem 0;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-white) 0%, var(--primary-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ==================== */
/* HOW WE WORK */
/* ==================== */
.how-we-work {
    background: linear-gradient(180deg, var(--primary-black) 0%, var(--gray-dark) 50%, var(--primary-black) 100%);
    position: relative;
}

.how-we-work::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-blue), transparent);
}

.how-we-work::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-blue), transparent);
}

.steps-container {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    max-width: 100%;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.step {
    background: linear-gradient(135deg, var(--gray-medium) 0%, var(--gray-dark) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
    transition: all var(--transition-speed);
    opacity: 0;
    transform: translateY(-30px);
    animation: slideInDown 0.6s ease-out forwards;
    flex: 1 1 180px;
    max-width: 220px;
    min-width: 180px;
}

.step:nth-child(1) { animation-delay: 0.1s; }
.step:nth-child(2) { animation-delay: 0.2s; }
.step:nth-child(3) { animation-delay: 0.3s; }
.step:nth-child(4) { animation-delay: 0.4s; }
.step:nth-child(5) { animation-delay: 0.5s; }

@keyframes slideInDown {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.step:hover {
    transform: translateY(-5px);
    border-color: var(--primary-blue);
    box-shadow: 0 10px 40px rgba(0, 102, 255, 0.2);
}

.step-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue), #0052cc);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-primary);
}

.step-icon svg {
    width: 30px;
    height: 30px;
    color: var(--primary-white);
}

.step-content {
    width: 100%;
}

.step-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--primary-white);
}

.step-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.85rem;
}

/* ==================== */
/* SERVICES GRID */
/* ==================== */
.services {
    background: var(--primary-black);
    padding: 6rem 0 8rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 100%;
    margin: 2rem 0;
}

.service-card {
    background: linear-gradient(135deg, var(--gray-medium) 0%, var(--gray-dark) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    position: relative;
    transition: all var(--transition-speed);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.2);
    transform: translateY(-5px);
}

.service-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-blue);
    color: var(--primary-white);
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 5;
}

/* Service Image */
.service-image-container {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1rem;
    background: transparent;
}

.service-image {
    width: 100%;
    max-width: 1000px;
    height: auto;
    display: block;
    object-fit: contain;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--primary-white);
}

.service-description {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* What you get section */
.service-includes {
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.includes-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-blue);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
}

.includes-list {
    list-style: none;
    padding: 0;
}

.includes-list li {
    color: var(--text-secondary);
    padding: 0.5rem 0;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.includes-list li:before {
    content: "✓";
    color: var(--primary-blue);
    font-weight: bold;
    font-size: 1rem;
}

.service-pricing {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.price-amount {
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn-service {
    background: linear-gradient(135deg, var(--primary-blue), #0052cc);
    color: var(--primary-white);
    padding: 0.875rem 1.5rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
}

.btn-service:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 102, 255, 0.3);
}

/* ==================== */
/* FAQ SECTION */
/* ==================== */
.faq {
    background: linear-gradient(180deg, var(--primary-black) 0%, var(--gray-dark) 50%, var(--primary-black) 100%);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--gray-medium);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: all var(--transition-speed);
}

.faq-item:hover {
    border-color: var(--primary-blue);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem 2rem;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--primary-white);
    font-size: 1.1rem;
    font-weight: 600;
    transition: all var(--transition-speed);
}

.faq-question:hover {
    color: var(--primary-blue);
}

.faq-icon {
    width: 24px;
    height: 24px;
    transition: transform var(--transition-speed);
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--primary-blue);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 2rem 1.5rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ==================== */
/* FOOTER */
/* ==================== */
.footer {
    background: linear-gradient(180deg, var(--primary-black) 0%, #0a0a0a 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    margin-bottom: 1rem;
}

.footer-description {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--gray-medium);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-white);
    transition: all var(--transition-speed);
}

.social-link:hover {
    background: linear-gradient(135deg, var(--primary-blue), #0052cc);
    border-color: var(--primary-blue);
    transform: translateY(-3px);
    box-shadow: var(--shadow-primary);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary-white);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all var(--transition-speed);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-blue);
    transform: translateX(5px);
}

.footer-contact {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
}

.footer-contact svg {
    width: 20px;
    height: 20px;
    color: var(--primary-blue);
    flex-shrink: 0;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.footer-legal a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--transition-speed);
}

.footer-legal a:hover {
    color: var(--primary-blue);
}

.footer-legal span {
    color: rgba(255, 255, 255, 0.2);
}

/* ==================== */
/* RESPONSIVE DESIGN */
/* ==================== */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-card {
        min-width: auto;
        flex-shrink: 1;
    }

    /* Make How We Work vertical on mobile */
    .steps-container {
        flex-direction: column;
    }

    .step {
        max-width: 100%;
        flex: 1 1 auto;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        min-width: auto;
        flex-shrink: 1;
        padding: 1.5rem;
    }

    .service-image-container {
        margin-bottom: 1rem;
    }

    .service-title {
        font-size: 1.4rem;
        margin-bottom: 0.6rem;
    }

    .service-description {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .includes-title {
        font-size: 0.8rem;
    }

    .includes-list li {
        font-size: 0.85rem;
        padding: 0.4rem 0;
    }

    .price-amount {
        font-size: 1.8rem;
    }

    .btn-service {
        font-size: 0.95rem;
        padding: 0.875rem 1.25rem;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(10px);
        width: 100%;
        padding: 2rem;
        gap: 1.5rem;
        transition: left var(--transition-speed);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links.active {
        left: 0;
    }

    .hero-logo {
        font-size: 2.5rem;
    }

    .logo-stars-large {
        font-size: 2rem;
    }

    .hero-image-container {
        max-width: 100%;
        margin-bottom: 1.5rem;
        border-radius: 15px;
    }

    .hero-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .hero-description {
        font-size: 1.05rem;
        line-height: 1.7;
        padding: 0 0.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
        width: 100%;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .btn {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: 100%;
        text-align: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .step {
        flex-direction: column;
        padding: 2rem;
    }

    .step:hover {
        transform: translateY(-5px);
    }

    .service-card {
        padding: 2rem;
    }

    .service-badge {
        top: 1rem;
        right: 1rem;
        font-size: 0.75rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .hero {
        padding: 6rem 0 3rem;
    }

    .hero-logo {
        font-size: 2rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-image-container {
        border-radius: 12px;
        margin-bottom: 1.25rem;
    }

    .hero-title {
        font-size: 1.5rem;
        line-height: 1.3;
    }

    .hero-description {
        font-size: 1rem;
        line-height: 1.7;
        padding: 0;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        padding: 0 0.5rem;
    }

    .btn {
        padding: 1.125rem 2rem;
        font-size: 1rem;
        width: 100%;
        text-align: center;
        min-height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .service-image-container {
        margin-bottom: 0.875rem;
        border-radius: 8px;
    }

    .service-card {
        padding: 1.5rem;
    }

    .service-title {
        font-size: 1.4rem;
    }

    .price-amount {
        font-size: 1.8rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .faq-question {
        padding: 1.25rem 1.5rem;
        font-size: 1rem;
    }

    .faq-answer p {
        padding: 0 1.5rem 1.25rem;
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .step {
        padding: 1.75rem;
    }

    .step-content h3 {
        font-size: 1rem;
    }

    .step-content p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
}

/* ==================== */
/* ANIMATIONS */
/* ==================== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* Smooth scroll offset for fixed navbar */
section {
    scroll-margin-top: 80px;
}

/* ==================== */
/* MOBILE ENHANCEMENTS */
/* ==================== */

/* Prevent text size adjustment on mobile devices */
@media (max-width: 768px) {
    html {
        -webkit-text-size-adjust: 100%;
        -moz-text-size-adjust: 100%;
        -ms-text-size-adjust: 100%;
        text-size-adjust: 100%;
    }

    /* Improve touch scrolling */
    * {
        -webkit-overflow-scrolling: touch;
    }

    /* Ensure all interactive elements have adequate touch targets */
    a, button, input, select, textarea {
        min-height: 44px;
        min-width: 44px;
    }

    /* Prevent layout shift from scrollbar */
    body {
        scrollbar-gutter: stable;
    }
}

/* Very small devices optimizations */
@media (max-width: 375px) {
    .container {
        padding: 0 0.75rem;
    }

    .hero-title {
        font-size: 1.375rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .btn {
        font-size: 0.95rem;
        padding: 1rem 1.5rem;
    }
}