/* -------------------------------------------------------------------------- */
/*                                   IMPORTS                                  */
/* -------------------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Syne&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&display=swap');

/* -------------------------------------------------------------------------- */
/*                                  VARIABLES                                 */
/* -------------------------------------------------------------------------- */
:root {
    --primary-color: #000000;
    --accent-color: #FF8A3D;
    --text-color: #000000;
    --text-muted: #333333;
    --bg-color: #FF8A3D;
    --white: #FFFFFF;
    --container-width: 1200px;
}

/* -------------------------------------------------------------------------- */
/*                                 BASE RESET                                 */
/* -------------------------------------------------------------------------- */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

::selection {
    background: var(--accent-color);
    color: var(--white);
}

body {
    font-family: 'DM Sans', sans-serif;
    background-color: #FFF8ED;
    background-image:
        radial-gradient(rgba(0, 0, 0, 0.04) 1px, transparent 1px),
        radial-gradient(at 0% 0%, rgba(255, 138, 61, 0.15) 0px, transparent 50%),
        radial-gradient(at 100% 0%, rgba(255, 113, 25, 0.1) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(255, 138, 61, 0.05) 0px, transparent 50%),
        radial-gradient(at 0% 100%, rgba(255, 248, 237, 1) 0px, transparent 50%);
    background-size: 24px 24px, 100% 100%, 100% 100%, 100% 100%, 100% 100%;
    background-attachment: fixed;
    color: var(--text-color);
    line-height: 1.2;
    overflow-x: hidden;
}

/* -------------------------------------------------------------------------- */
/*                                   LAYOUT                                   */
/* -------------------------------------------------------------------------- */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1rem;
}

.text-center {
    text-align: center;
}

section {
    padding: 120px 0;
}

/* -------------------------------------------------------------------------- */
/*                                 COMPONENTS                                 */
/* -------------------------------------------------------------------------- */

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 400;
    position: relative;
    overflow: hidden;
    z-index: 1;
    background: transparent;
    color: white;
    transition: color 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    isolation: isolate;
    -webkit-mask-image: -webkit-radial-gradient(white, black);
    mask-image: radial-gradient(white, black);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
}

/* Button Background Layer */
.btn::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    z-index: -2;
    transition: background-color 0.3s ease;
    border-radius: inherit;
}

/* Button Hover Expansion Layer */
.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 4px;
    width: 36px;
    height: 36px;
    background: white;
    border-radius: 50%;
    transform: translateY(-50%) scale(1);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
    will-change: transform;
}

.btn:hover::before {
    transform: translateY(-50%) scale(25);
}

.btn:hover {
    color: black !important;
    transition-delay: 0.1s;
}

.btn svg {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background-color: rgba(255, 255, 255, 0.9);
    color: black;
    width: 36px;
    height: 36px;
    padding: 0.7rem;
    border-radius: 50%;
    margin-left: 12px;
    z-index: 2;
}

.btn:hover svg {
    background-color: rgba(0, 0, 0, 0.9);
    color: white;
    transform: rotate(-45deg);
}

/* Button Variants */
.btn-nav,
.btn-hero,
.btn-pricing {
    color: var(--white);
    padding: 4px 4px 4px 18px;
}

.btn-nav {
    font-size: 0.8rem;
}

.btn-hero {
    font-size: 0.85rem;
}

.btn-pricing {
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.btn-pricing::before {
    content: none !important;
}

/* CTA Button Variant */
.btn-cta {
    color: black;
    font-size: 0.8rem;
    padding: 6px 6px 6px 22px;
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
}

.btn-cta::after {
    background: white;
}

.btn-cta::before {
    background: black;
}

.btn-cta:hover {
    color: white !important;
}

.btn-cta svg {
    background-color: black;
    color: white;
}

.btn-cta:hover svg {
    background-color: white;
    color: black;
}


/* -------------------------------------------------------------------------- */
/*                                   HEADER                                   */
/* -------------------------------------------------------------------------- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(19px);
    -webkit-backdrop-filter: blur(19px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.6rem 0;
}

nav {
    width: 100%;
}

nav .nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 0;
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1rem;
}

.logo {
    font-family: 'Syne', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    text-decoration: none;
    color: var(--text-color);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 400;
    font-size: 0.9rem;
    transition: opacity 0.2s;
}

.nav-links a:hover {
    opacity: 0.7;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1000;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: black;
    transition: 0.3s;
}

/* Mobile Menu Overlay */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(4px);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Mobile Menu Container */
.mobile-menu {
    display: none;
    /* Hidden by default on desktop */
}

/* -------------------------------------------------------------------------- */
/*                                HERO SECTION                                */
/* -------------------------------------------------------------------------- */
.hero {
    padding: 10rem 0 0;
}

.subheadline {
    font-family: 'Instrument Serif', serif;
    font-size: clamp(1.5rem, 1.5vw + 1rem, 2.5rem);
    font-style: italic;
    font-weight: 400;
    display: block;
    margin-bottom: 1rem;
    color: var(--primary-color);
    letter-spacing: -0.01em;
}

.headline {
    font-size: clamp(2rem, 3.5vw + 1rem, 3.5rem);
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -0.05em;
    max-width: 999px;
    margin-left: auto;
    margin-right: auto;
}

.description {
    font-size: 1rem;
    max-width: 699px;
    margin: 0 auto 2.5rem;
    color: rgba(0, 0, 0, 0.8);
    font-weight: 400;
}

.hero-cta {
    margin-bottom: 5rem;
    font-size: 0.9rem;
}

.hero-image-container {
    position: relative;
    max-width: 1000px;
}

.hero-image {
    width: 100%;
    display: block;
}

.brands-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    opacity: 0.4;
}

.brands-grid span {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 0.1em;
}

/* -------------------------------------------------------------------------- */
/*                                ABOUT SECTION                               */
/* -------------------------------------------------------------------------- */
.about-section {
    margin-top: 4rem;
}

.section-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 800;
    margin-bottom: 2rem;
    letter-spacing: -0.01em;
    line-height: 1;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-image img {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    object-fit: cover;
    max-height: 540px;
}

.about-text p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    opacity: 0.8;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 2rem;
}

.stat-item h3 {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(1.5rem, 2vw, 2rem);
    font-weight: 700;
}

.stat-item p {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.5;
}

/* -------------------------------------------------------------------------- */
/*                              SERVICES SECTION                              */
/* -------------------------------------------------------------------------- */
.services-section {
    text-align: left;
    margin-top: 4rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    padding: 2.5rem 2rem;
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02), 0 2px 4px -1px rgba(0, 0, 0, 0.02);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-4px);
    background: white;
    border-color: rgba(0, 0, 0, 0.2);
    box-shadow: 0 20px 40px -6px rgba(0, 0, 0, 0.08);
}

.service-icon {
    background: white;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    color: var(--primary-color);
}

.service-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    font-family: 'Syne', sans-serif;
    font-weight: 600;
}

.service-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.6;
}

/* -------------------------------------------------------------------------- */
/*                              PROCESS SECTION                               */
/* -------------------------------------------------------------------------- */
.process-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
    position: relative;
}

.process-grid::before {
    content: '';
    position: absolute;
    top: 120px;
    left: 15%;
    right: 15%;
    height: 1px;
    background: rgba(0, 0, 0, 0.1);
    z-index: -1;
}

.process-step {
    background: white;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    border-radius: 30px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.process-step h3 {
    font-family: 'Syne', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.process-step p {
    font-size: 0.95rem;
    opacity: 0.7;
    line-height: 1.6;
}

/* -------------------------------------------------------------------------- */
/*                              PROJECTS SECTION                              */
/* -------------------------------------------------------------------------- */
.projects-section .flex-between {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 3rem 0 1rem 0;
}

.projects-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

.project-card {
    cursor: pointer;
    flex-direction: column;
    display: flex;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 25px;
    transition: transform 0.3s ease;
    padding: 2.5rem 2rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(5px);
}

.project-card:hover {
    transform: scale(0.98);
}

.project-image img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Contrast fix */
.project-card:nth-child(2) .project-image {
    color: black !important;
}

.project-info {
    padding: 1rem 0 0;
}

.project-title {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 1.25rem;
    font-weight: 600;
    font-family: 'Syne', sans-serif;
    text-decoration: none;
    color: black;
}

.project-title:hover {
    color: #4a4a4a;
}

.project-title svg {
    padding: 2px;
    transition: transform 0.3s ease;
}

.project-title:hover svg {
    transform: rotate(45deg);
}

.project-info p {
    opacity: 0.5;
    font-size: 0.85rem;
    margin: 1rem 0;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.pill {
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 2px 10px;
    border-radius: 100px;
    font-size: 0.75rem;
    color: rgba(0, 0, 0, 0.7);
    font-weight: 500;
    transition: all 0.3s ease;
}

.link-arrow {
    text-decoration: none;
    color: black;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

/* -------------------------------------------------------------------------- */
/*                               PRICING SECTION                              */
/* -------------------------------------------------------------------------- */
.pricing-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
    justify-content: center;
}

.pricing-card {
    flex: 1 1 300px;
    max-width: 100%;
    background: radial-gradient(at 0% 0%, rgba(255, 255, 255, 0.7) 0%, transparent 50%),
        radial-gradient(at 100% 0%, rgba(255, 215, 0, 0.4) 0%, transparent 50%),
        radial-gradient(at 100% 100%, rgba(0, 0, 0, 0.05) 0%, transparent 50%),
        radial-gradient(at 0% 100%, rgba(255, 215, 0, 0.2) 0%, transparent 50%),
        #ffffff;
    padding: 5rem 3rem 3rem 4rem;
    border-radius: 50px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.pricing-card:last-child:nth-child(odd) {
    flex-grow: 1;
    max-width: 100%;
}

.pricing-card.featured {
    background: linear-gradient(135deg, #1a1a1a 0%, #111111 35%, #0a0a0a 65%, #000000 100%);
    color: white;
    transform: scale(1.05);
    z-index: 1;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.popular-tag {
    position: absolute;
    top: 25px;
    right: 25px;
    background: var(--accent-color);
    color: black;
    padding: 0.4rem 1rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
}

.pricing-card h3 {
    font-size: 1rem;
    margin-bottom: 1rem;
    opacity: 0.7;
}

.price {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 2.5rem;
    font-family: 'Syne', sans-serif;
}

.price span {
    font-size: 0.9rem;
    opacity: 0.4;
    font-weight: 400;
}

.price.contact {
    font-size: 2rem;
    margin-bottom: 3rem;
}

.pricing-card ul {
    list-style: none;
    text-align: left;
    width: 100%;
    margin-bottom: 3rem;
    flex-grow: 1;
}

.pricing-card ul li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.86rem;
    opacity: 0.8;
}

/* Match CTA Button in Pricing to correct layers */
.pricing-card .btn-nav::before {
    background: white;
}

/* -------------------------------------------------------------------------- */
/*                                 CTA BANNER                                 */
/* -------------------------------------------------------------------------- */
.cta-banner {
    margin-top: 50px;
    padding-bottom: 90px;
}

.cta-inner {
    background: linear-gradient(135deg, #1a1a1a 0%, #111111 35%, #0a0a0a 65%, #000000 100%);
    position: relative;
    overflow: hidden;
    color: rgb(255, 255, 255);
    padding: 8rem 2.5rem;
    border-radius: 80px;
    text-align: center;
    box-shadow: 0 40px 80px rgba(255, 138, 61, 0.3);
}

.cta-inner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    transform: rotate(-15deg);
    pointer-events: none;
}

.cta-inner h2 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
    line-height: 1.1;
}

.cta-inner p {
    opacity: 0.6;
    margin-bottom: 2rem;
    font-size: clamp(0.9rem, 1vw, 1rem);
}

/* -------------------------------------------------------------------------- */
/*                                   FOOTER                                   */
/* -------------------------------------------------------------------------- */
footer {
    padding: 40px 4px 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    width: 100%;
}

footer .container {
    margin-bottom: 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 2rem;
}

.footer-brand .logo {
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
}

.footer-brand p {
    opacity: 0.5;
    max-width: 300px;
    font-size: 0.85rem;
}

.socials {
    display: flex;
    gap: 15px;
    align-items: center;
}

.socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1.5px solid rgba(51, 51, 51, 0);
    border-radius: 50%;
    color: #000000;
    transition: 0.2s;
}

.socials a:hover {
    color: var(--accent-color);
}

.footer-links h4 {
    font-family: 'Syne', sans-serif;
    margin-bottom: 1.25rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
    font-size: 0.85rem;
}

.footer-links a {
    text-decoration: none;
    color: inherit;
    opacity: 0.5;
    transition: 0.2s;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 1rem;
    opacity: 0.4;
    font-size: 0.76rem;
    text-align: center;
}

/* -------------------------------------------------------------------------- */
/*                            RESPONSIVE DESIGN                               */
/* -------------------------------------------------------------------------- */

/* Large Desktops */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Laptops */
@media (max-width: 992px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .about-image {
        order: -1;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

    .footer-grid {
        gap: 2rem;
    }
}

/* Tablets (Mobile Menu Activates Here) */
@media (max-width: 768px) {
    .hero {
        padding: 5rem 0 0;
        margin-top: 3rem;
    }

    section {
        padding: 80px 0;
    }

    .headline {
        font-size: 3rem;
    }

    /* Activate Mobile Menu */
    .mobile-menu {
        display: flex;
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        max-width: 400px;
        height: 100vh;
        padding-top: 90px;
        background: rgba(255, 255, 255, 0.7);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-left: 1px solid rgba(255, 255, 255, 0.5);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.05);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: 2.5rem;
        transition: right 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
        z-index: 999;
    }

    .mobile-menu.active {
        right: 0;
    }

    .mobile-links {
        list-style: none;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2rem;
        width: 100%;
    }

    .mobile-links a {
        font-family: 'Syne', sans-serif;
        font-size: 1.25rem;
        font-weight: 500;
        text-decoration: none;
        color: black;
        transition: all 0.2s;
    }

    .mobile-links a:hover {
        opacity: 0.5;
        transform: scale(1.05);
    }

    .mobile-cta {
        margin-top: 1rem;
    }

    .menu-toggle {
        display: flex;
        z-index: 1001;
    }

    .nav-cta {
        display: none;
    }

    .nav-links {
        display: none;
    }

    /* Menu Toggle Animation */
    .menu-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    /* Layout Adjustments */
    .projects-grid {
        grid-template-columns: 1fr;
    }

    .cta-inner {
        padding: 6rem 2rem;
    }

    .cta-inner h2 {
        font-size: 2rem;
    }

    .pricing-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 1rem;
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .process-grid::before {
        display: none;
    }

    .stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        text-align: center;
        padding-top: 1rem;
    }

    .container,
    .about-section,
    .services-section {
        padding-bottom: 1rem;
    }

    .subheadline,
    .section-title {
        margin-bottom: 1rem;
    }

    .about-text p {
        margin-bottom: 1rem;
    }

    .pricing-card.featured {
        transform: none;
    }

    .services-grid,
    .projects-grid,
    .pricing-grid {
        margin-top: 1.5rem;
        gap: 1rem;
    }

    .btn {
        font-size: 0.8rem;
    }
}

@media (min-width: 576px) and (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .brands-grid {
        gap: 1.5rem;
    }

    .brands-grid span {
        font-size: 1rem;
    }

    .headline {
        font-size: 2.5rem;
    }

    .subheadline {
        font-size: 1.5rem;
    }
}

/* -------------------------------------------------------------------------- */
/*                            PREMIUM ANIMATIONS                              */
/* -------------------------------------------------------------------------- */

/* 1. ON LOAD ANIMATIONS (Hero, Header) */
@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
        filter: blur(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.92);
        filter: blur(10px);
    }

    to {
        opacity: 1;
        transform: scale(1);
        filter: blur(0);
    }
}

.animate-fade-down {
    animation: fadeDown 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-fade-up {
    opacity: 0;
    animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-scale-in {
    opacity: 0;
    animation: scaleIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* 2. SCROLL ANIMATIONS (Cards, Sections) */
/* We use Transitions here for performance and control via JS */

.scroll-reveal {
    opacity: 0;
    transform: translateY(30px) scale(0.98);
    filter: blur(8px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform, filter;
}

.scroll-scale {
    opacity: 0;
    transform: scale(0.95);
    filter: blur(8px);
    transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform, filter;
}

/* State when visible */
.scroll-reveal.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
}

.scroll-scale.is-visible {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
}

/* 3. STAGGER DELAYS (Handled via JS for robustness, but here as fallback/helper) */
/* No more complex nth-child rules here. We rely on JS to add .delay-100, etc. */