/* ==========================================================================
   TINT PLUG — Custom Design System
   Hot Pink + Deep Purple | Bold | Aggressive | Premium
   ========================================================================== */

/* ---------- DESIGN TOKENS ---------- */
:root {
    /* Brand Colors */
    --pink: #FF1493;
    --pink-dark: #D1117A;
    --pink-light: #FF69B4;
    --pink-glow: rgba(255, 20, 147, 0.5);
    --purple: #6B00B3;
    --purple-deep: #1A0033;
    --purple-dark: #0D001A;
    --purple-mid: #2D0054;
    --purple-light: #9B30FF;

    /* Neutrals */
    --white: #ffffff;
    --gray-100: #f8f9fb;
    --gray-200: #e8e9f0;
    --gray-300: #c9cad4;
    --gray-400: #a0a1b0;
    --gray-500: #74758a;
    --gray-600: #4e4f66;
    --dark: #0a0014;

    /* Typography */
    --font: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-alt: 'Space Grotesk', monospace;

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    --space-5xl: 8rem;

    /* Radius */
    --r-sm: 6px;
    --r-md: 10px;
    --r-lg: 16px;
    --r-xl: 24px;
    --r-full: 9999px;

    /* Transitions */
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --t-fast: 150ms var(--ease);
    --t-base: 300ms var(--ease);
    --t-slow: 600ms var(--ease);
}

/* ---------- RESET ---------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font);
    color: var(--gray-300);
    background: var(--purple-dark);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    line-height: 1.6;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--t-fast);
}

ul,
ol {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* ---------- NOISE OVERLAY ---------- */
.noise {
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px;
}

/* ---------- LAYOUT ---------- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ---------- GRADIENT TEXT ---------- */
.gradient-text {
    background: linear-gradient(135deg, var(--pink) 0%, var(--pink-light) 40%, var(--purple-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.accent {
    color: var(--pink);
}

/* ---------- SECTION HEADERS ---------- */
.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.section-tag {
    display: inline-block;
    font-family: var(--font-alt);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--pink);
    margin-bottom: var(--space-md);
    padding: 0.35rem 1rem;
    border: 1px solid rgba(255, 20, 147, 0.3);
    border-radius: var(--r-full);
    background: rgba(255, 20, 147, 0.06);
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: var(--space-md);
}

.section-sub {
    font-size: 1.05rem;
    color: var(--gray-400);
    max-width: 550px;
    margin: 0 auto;
}

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    font-family: var(--font);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--r-lg);
    transition: all var(--t-base);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn svg {
    flex-shrink: 0;
}

.btn--glow {
    background: linear-gradient(135deg, var(--pink) 0%, var(--pink-dark) 100%);
    color: var(--white);
    box-shadow: 0 0 30px var(--pink-glow), 0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn--glow:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 50px var(--pink-glow), 0 8px 25px rgba(0, 0, 0, 0.4);
}

.btn--glow::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.15) 50%, transparent 100%);
    opacity: 0;
    transition: opacity var(--t-base);
}

.btn--glow:hover::after {
    opacity: 1;
}

.btn--ghost {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.25);
}

.btn--ghost:hover {
    border-color: var(--pink);
    color: var(--pink-light);
    background: rgba(255, 20, 147, 0.08);
    transform: translateY(-3px);
}

.btn--full {
    width: 100%;
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1.25rem 0;
    transition: all var(--t-base);
}

.header.scrolled {
    background: rgba(10, 0, 20, 0.92);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 0.75rem 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4), 0 1px 0 rgba(255, 20, 147, 0.1);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 101;
}

.nav__logo-img {
    height: 42px;
    width: 42px;
    border-radius: var(--r-md);
    object-fit: cover;
}

.nav__logo-text {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.02em;
}

.nav__links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav__links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--t-fast);
    position: relative;
}

.nav__links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--pink);
    transition: width var(--t-base);
    border-radius: 2px;
}

.nav__links a:hover {
    color: var(--white);
}

.nav__links a:hover::after {
    width: 100%;
}

.nav__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--pink-light);
    padding: 0.5rem 1.1rem;
    border: 1px solid rgba(255, 20, 147, 0.3);
    border-radius: var(--r-full);
    transition: all var(--t-base);
}

.nav__cta:hover {
    background: rgba(255, 20, 147, 0.12);
    border-color: var(--pink);
    color: var(--white);
}

.nav__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
    z-index: 200;
}

.nav__burger span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--t-base);
}

/* ---------- MOBILE MENU ---------- */
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 149;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--t-base);
}

.mobile-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 340px;
    height: 100vh;
    height: 100dvh;
    background: linear-gradient(180deg, var(--purple-deep) 0%, var(--purple-dark) 100%);
    padding: 1.5rem;
    transform: translateX(100%);
    transition: transform var(--t-base);
    z-index: 150;
    display: flex;
    flex-direction: column;
    border-left: 1px solid rgba(255, 20, 147, 0.15);
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-menu__logo {
    height: 40px;
    width: 40px;
    border-radius: var(--r-md);
    object-fit: cover;
}

.mobile-menu__close {
    color: var(--gray-400);
    padding: 0.25rem;
    transition: color var(--t-fast);
}

.mobile-menu__close:hover {
    color: var(--white);
}

.mobile-menu__links {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.mobile-menu__links a {
    display: block;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--gray-300);
    padding: 0.85rem 0.75rem;
    border-radius: var(--r-md);
    transition: all var(--t-fast);
}

.mobile-menu__links a:hover {
    color: var(--white);
    background: rgba(255, 20, 147, 0.1);
}

.mobile-menu__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: linear-gradient(135deg, var(--pink) 0%, var(--pink-dark) 100%);
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
    border-radius: var(--r-lg);
    margin-top: auto;
    box-shadow: 0 0 25px var(--pink-glow);
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg,
            rgba(10, 0, 20, 0.88) 0%,
            rgba(10, 0, 20, 0.82) 40%,
            rgba(10, 0, 20, 0.88) 80%,
            rgba(10, 0, 20, 1) 100%);
    z-index: 1;
}

.hero__glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--pink-glow) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    filter: blur(80px);
    animation: glow-pulse 4s ease-in-out infinite alternate;
}

@keyframes glow-pulse {
    0% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(0.9);
    }

    100% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 8rem 1.5rem 4rem;
    max-width: 800px;
}

.hero__badge {
    display: inline-block;
    font-family: var(--font-alt);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--pink-light);
    margin-bottom: 1.5rem;
    padding: 0.4rem 1.25rem;
    border: 1px solid rgba(255, 20, 147, 0.35);
    border-radius: var(--r-full);
    background: rgba(255, 20, 147, 0.08);
}

.hero__title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 900;
    line-height: 1.05;
    color: var(--white);
    margin-bottom: 1.25rem;
    letter-spacing: -0.03em;
}

.hero__sub {
    font-size: clamp(1rem, 2.2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.65);
    max-width: 550px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.hero__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero__scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.hero__scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--pink), transparent);
    animation: scroll-line 2s ease-in-out infinite;
}

@keyframes scroll-line {

    0%,
    100% {
        opacity: 0.3;
        transform: scaleY(0.5);
    }

    50% {
        opacity: 1;
        transform: scaleY(1);
    }
}

/* ==========================================================================
   SERVICES
   ========================================================================== */
.services {
    padding: var(--space-5xl) 0;
    background: var(--purple-dark);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(107, 0, 179, 0.2), transparent 70%);
    filter: blur(100px);
    pointer-events: none;
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.service-card {
    position: relative;
    padding: 2.5rem 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--r-xl);
    transition: all var(--t-base);
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.08), transparent 60%);
    opacity: 0;
    transition: opacity var(--t-base);
    border-radius: var(--r-xl);
}

.service-card:hover {
    border-color: rgba(255, 20, 147, 0.2);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 40px rgba(255, 20, 147, 0.08);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card__number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-family: var(--font-alt);
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(255, 20, 147, 0.25);
    letter-spacing: 0.05em;
}

.service-card__icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.15) 0%, rgba(107, 0, 179, 0.15) 100%);
    border-radius: var(--r-lg);
    margin-bottom: 1.5rem;
    color: var(--pink);
}

.service-card__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.service-card__desc {
    font-size: 0.9rem;
    color: var(--gray-400);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-card__link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--pink);
    transition: all var(--t-fast);
}

.service-card__link:hover {
    color: var(--pink-light);
    letter-spacing: 0.04em;
}

/* ==========================================================================
   STATS
   ========================================================================== */
.stats {
    padding: var(--space-3xl) 0;
    background: linear-gradient(135deg, var(--purple-mid) 0%, var(--purple-deep) 100%);
    border-top: 1px solid rgba(255, 20, 147, 0.1);
    border-bottom: 1px solid rgba(255, 20, 147, 0.1);
}

.stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat__number {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1;
    display: inline;
}

.stat__plus,
.stat__percent,
.stat__star {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--pink);
}

.stat__label {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* ==========================================================================
   GALLERY / WORK
   ========================================================================== */
.work {
    padding: var(--space-5xl) 0;
    background: var(--purple-dark);
}

.work__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 280px;
    gap: 1rem;
}

.work__item {
    position: relative;
    border-radius: var(--r-xl);
    overflow: hidden;
    cursor: pointer;
}

.work__item--tall {
    grid-row: span 2;
}

.work__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

.work__item:hover img {
    transform: scale(1.08);
}

.work__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.85) 0%, rgba(107, 0, 179, 0.85) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--t-base);
    color: var(--white);
}

.work__item:hover .work__overlay {
    opacity: 1;
}

/* LIGHTBOX */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--t-base);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox__close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    color: var(--white);
    padding: 0.5rem;
    transition: transform var(--t-fast);
}

.lightbox__close:hover {
    transform: scale(1.15);
}

.lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--white);
    padding: 1rem;
    transition: all var(--t-fast);
}

.lightbox__nav:hover {
    color: var(--pink);
    transform: translateY(-50%) scale(1.1);
}

.lightbox__nav--prev {
    left: 1rem;
}

.lightbox__nav--next {
    right: 1rem;
}

.lightbox__body {
    max-width: 90vw;
    max-height: 90vh;
}

.lightbox__img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: var(--r-lg);
}

/* ==========================================================================
   ABOUT
   ========================================================================== */
.about {
    padding: var(--space-5xl) 0;
    background: linear-gradient(180deg, var(--purple-dark) 0%, var(--purple-deep) 100%);
}

.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about__image {
    position: relative;
    border-radius: var(--r-xl);
    overflow: hidden;
}

.about__image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--r-xl);
}

.about__image::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid rgba(255, 20, 147, 0.2);
    border-radius: var(--r-xl);
    pointer-events: none;
}

.about__image-badge {
    position: absolute;
    bottom: 1.25rem;
    left: 1.25rem;
    font-family: var(--font-alt);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--white);
    padding: 0.4rem 1rem;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border-radius: var(--r-full);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.about__content .section-tag {
    margin-bottom: 0.75rem;
}

.about__content .section-title {
    text-align: left;
    margin-bottom: 1.5rem;
}

.about__content p {
    font-size: 1rem;
    color: var(--gray-400);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.about__content strong {
    color: var(--white);
}

.about__features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.about__feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-300);
}

.about__feature svg {
    color: var(--pink);
    flex-shrink: 0;
}

/* ==========================================================================
   REVIEWS
   ========================================================================== */
.reviews {
    padding: var(--space-5xl) 0;
    background: var(--dark);
}

.reviews__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.review-card {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--r-xl);
    transition: all var(--t-base);
}

.review-card:hover {
    border-color: rgba(255, 20, 147, 0.2);
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
}

.review-card__stars {
    font-size: 1.1rem;
    color: #fbbf24;
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
}

.review-card blockquote {
    font-size: 0.95rem;
    font-style: italic;
    color: var(--gray-300);
    line-height: 1.75;
    margin-bottom: 1.25rem;
}

.review-card__author {
    display: flex;
    flex-direction: column;
}

.review-card__name {
    font-weight: 600;
    color: var(--white);
    font-size: 0.9rem;
}

.review-card__via {
    font-size: 0.8rem;
    color: var(--gray-500);
}

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact {
    padding: var(--space-5xl) 0;
    background: linear-gradient(180deg, var(--dark) 0%, var(--purple-deep) 100%);
}

.contact__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact__info .section-tag {
    margin-bottom: 0.75rem;
}

.contact__info .section-title {
    text-align: left;
    margin-bottom: 1rem;
}

.contact__info>p {
    color: var(--gray-400);
    font-size: 1rem;
    margin-bottom: 2rem;
}

.contact__cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact__card {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--r-lg);
    transition: all var(--t-base);
}

.contact__card:hover {
    border-color: rgba(255, 20, 147, 0.2);
    background: rgba(255, 20, 147, 0.04);
    transform: translateX(6px);
}

.contact__card-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--pink) 0%, var(--purple) 100%);
    border-radius: var(--r-md);
    color: var(--white);
    flex-shrink: 0;
}

.contact__card h4 {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.2rem;
}

.contact__card p,
.contact__card a {
    font-size: 0.9rem;
    color: var(--gray-400);
    line-height: 1.6;
}

.contact__card a:hover {
    color: var(--pink-light);
}

.contact__cta-box {
    display: flex;
    align-items: stretch;
}

.contact__cta-inner {
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.08), rgba(107, 0, 179, 0.08));
    border: 1px solid rgba(255, 20, 147, 0.15);
    border-radius: var(--r-xl);
    text-align: center;
    width: 100%;
}

.contact__cta-inner h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.contact__cta-inner>p {
    color: var(--gray-400);
    margin-bottom: 2rem;
}

.contact__btns {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
    background: var(--purple-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: var(--space-4xl) 0 var(--space-xl);
}

.footer__top {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer__logo-img {
    height: 50px;
    width: 50px;
    border-radius: var(--r-md);
    object-fit: cover;
    margin-bottom: 1rem;
}

.footer__tagline {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.7;
    max-width: 300px;
}

.footer__col h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.footer__col ul {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer__col li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--gray-500);
}

.footer__col li svg {
    color: var(--gray-600);
    flex-shrink: 0;
}

.footer__col a {
    transition: color var(--t-fast);
}

.footer__col a:hover {
    color: var(--pink-light);
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    font-size: 0.8rem;
    color: var(--gray-600);
}

.footer__credit a {
    color: var(--pink);
    transition: color var(--t-fast);
}

.footer__credit a:hover {
    color: var(--pink-light);
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s var(--ease);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger */
.services__grid .reveal:nth-child(1) {
    transition-delay: 0.1s;
}

.services__grid .reveal:nth-child(2) {
    transition-delay: 0.2s;
}

.services__grid .reveal:nth-child(3) {
    transition-delay: 0.3s;
}

.reviews__grid .reveal:nth-child(1) {
    transition-delay: 0.1s;
}

.reviews__grid .reveal:nth-child(2) {
    transition-delay: 0.2s;
}

.reviews__grid .reveal:nth-child(3) {
    transition-delay: 0.3s;
}

.work__grid .reveal:nth-child(1) {
    transition-delay: 0.05s;
}

.work__grid .reveal:nth-child(2) {
    transition-delay: 0.1s;
}

.work__grid .reveal:nth-child(3) {
    transition-delay: 0.15s;
}

.work__grid .reveal:nth-child(4) {
    transition-delay: 0.2s;
}

.stats__grid .reveal:nth-child(1) {
    transition-delay: 0.1s;
}

.stats__grid .reveal:nth-child(2) {
    transition-delay: 0.2s;
}

.stats__grid .reveal:nth-child(3) {
    transition-delay: 0.3s;
}

.stats__grid .reveal:nth-child(4) {
    transition-delay: 0.4s;
}

/* Hero entrance */
.anim-fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s var(--ease) forwards;
}

.anim-delay-1 {
    animation-delay: 0.2s;
}

.anim-delay-2 {
    animation-delay: 0.4s;
}

.anim-delay-3 {
    animation-delay: 0.6s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services__grid .service-card:last-child {
        grid-column: span 2;
        max-width: 50%;
        margin: 0 auto;
    }

    .stats__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .footer__top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {

    .nav__links,
    .nav__cta {
        display: none;
    }

    .nav__burger {
        display: flex;
    }

    .hero__content {
        padding: 7rem 1.25rem 3rem;
    }

    .hero__scroll {
        display: none;
    }

    .services__grid {
        grid-template-columns: 1fr;
    }

    .services__grid .service-card:last-child {
        grid-column: span 1;
        max-width: 100%;
    }

    .stats__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .work__grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 240px;
    }

    .work__item--tall {
        grid-row: span 1;
    }

    .about__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about__content .section-title {
        text-align: center;
    }

    .about__content {
        text-align: center;
    }

    .about__features {
        justify-items: center;
    }

    .about__image img {
        height: 280px;
    }

    .reviews__grid {
        grid-template-columns: 1fr;
    }

    .contact__wrapper {
        grid-template-columns: 1fr;
    }

    .contact__info .section-title {
        text-align: center;
    }

    .contact__info {
        text-align: center;
    }

    .footer__top {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer__tagline {
        margin: 0 auto;
    }

    .footer__col ul {
        align-items: center;
    }

    .footer__bottom {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    /* Mobile logo */
    .nav__logo-text {
        font-size: 1.15rem;
    }

    .nav__logo-img {
        height: 36px;
        width: 36px;
    }
}

@media (max-width: 480px) {
    .hero__title {
        font-size: clamp(2rem, 10vw, 2.8rem);
    }

    .stats__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .stat__number {
        font-size: 2rem;
    }

    .about__features {
        grid-template-columns: 1fr;
    }

    .btn {
        padding: 0.85rem 1.5rem;
        font-size: 0.9rem;
    }
}