:root {
    /* --- BRAND COLORS --- */
    --primary: #FB5607;        /* Electric Orange/Red */
    --primary-rgb: 251, 86, 7;

    --secondary: #3A86FF;      /* Bright Blue */
    --secondary-rgb: 58, 134, 255;

    /* --- ACCENT COLORS --- */
    --accent-purple: #FF006E;  /* Hot Pink */
    --accent-purple-rgb: 255, 0, 110;

    --accent-neon: #8338EC;    /* Electric Purple */
    --accent-neon-rgb: 131, 56, 236;

    --accent-success: #06D6A0; /* Bright Mint Green */
    --accent-success-rgb: 6, 214, 160;

    --accent-gold: #FFBE0B;

    /* --- BACKGROUNDS --- */
    --bg-dark: #FFFFFF;        /* Pure White */
    
    --orb-1-color: #FB5607;    /* Orange Blob */
    --orb-2-color: #3A86FF;    /* Blue Blob */
    --orb-3-color: #FF006E;    /* Pink Blob */

    /* --- TEXT COLORS --- */
    --text-white: #001219;     /* Deep Navy Black */
    --text-gray: #5F6C7B;      /* Cool Gray */
    --text-light: white;

    /* --- GRADIENTS --- */
    --main-gradient: linear-gradient(135deg, var(--accent-purple) 0%, var(--primary) 100%);
    --text-gradient: linear-gradient(to right, var(--primary), var(--accent-purple));
    --logo-gradient: linear-gradient(to right, var(--secondary), var(--accent-purple));
    --card-shine: linear-gradient(to right, transparent, rgba(58, 134, 255, 0.08), transparent);

    /* --- GLASSMORPHISM --- */
    --glass-bg: rgba(255, 255, 255, 0.5);
    --glass-border: rgba(255, 255, 255, 0.8);
    --glass-highlight: rgba(255, 255, 255, 1);

    --tag-bg: rgba(58, 134, 255, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

.stitch-price {
    font-size: 65px !important;
    font-weight: 600 !important;
    color: var(--primary) !important;
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--bg-dark);
    color: var(--text-white);
    overflow-x: hidden;
    min-height: 100vh;
}

/* --- ANIMATED BACKGROUND --- */
.ambient-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--bg-dark);

    background-image:
        radial-gradient(circle at center, transparent 0%, var(--bg-dark) 90%),
        repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.03) 0px, rgba(255, 255, 255, 0.03) 1px, transparent 1px, transparent 4px),
        repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.03) 0px, rgba(255, 255, 255, 0.03) 1px, transparent 1px, transparent 4px);

    z-index: -2;
}

.orb {
    filter: blur(120px);
    opacity: 0.4;
}

/* --- 2. SEWING ANIMATION --- */
.sewing-container {
    position: absolute;
    top: 15%;
    left: 0;
    width: 100%;
    height: 400px;
    z-index: -1;
    opacity: 0.6;
    pointer-events: none;
}

.sewing-path path {
    stroke-dasharray: 20;
    stroke-dashoffset: 1000;
    animation: sewLine 10s linear infinite;
    filter: drop-shadow(0 0 5px var(--primary));
}

@keyframes sewLine {
    to {
        stroke-dashoffset: 0;
    }
}

.orb-1 {
    top: -10%;
    left: -10%;
    width: 50vw;
    height: 88vh;
    background: var(--orb-1-color);
    animation-delay: 0s;
}

.orb-2 {
    bottom: -10%;
    right: -10%;
    width: 60vw;
    height: 60vh;
    background: var(--orb-2-color);
    animation-delay: -5s;
}

.orb-3 {
    top: 40%;
    left: 40%;
    width: 30vw;
    height: 30vh;
    background: var(--orb-3-color);
    animation-delay: -10s;
}

@keyframes floatOrb {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(30px, 50px);
    }
}

.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    transition: 0.3s;
}

.nav-scrolled {
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
}

.logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--logo-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-items {
    display: flex;
    gap: 40px;
}

.nav-items a {
    color: var(--text-white);
    font-size: 1.3rem;
    opacity: 0.8;
    transition: 0.3s;
    text-decoration: none;
}

.nav-items a:hover {
    opacity: 1;
    color: var(--primary);
}

.nav-items a.active {
    color: var(--primary) !important;
}


.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-white);
    transition: transform 0.3s ease;
    z-index: 101;
}

.hamburger.active-icon {
    transform: rotate(90deg);
}

.mobile-menu {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: auto;
    background: rgb(255, 255, 255);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    padding: 20px 0;
    gap: 15px;
    align-items: center;
    transform: translateY(-20px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.mobile-menu a {
    text-decoration: none;
    color: var(--text-gray);
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;

}

.mobile-menu.active a {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu.active a:nth-child(1) {
    transition-delay: 0.05s;
}

.mobile-menu.active a:nth-child(2) {
    transition-delay: 0.1s;
}

.mobile-menu.active a:nth-child(3) {
    transition-delay: 0.15s;
}

.mobile-menu.active a:nth-child(4) {
    transition-delay: 0.2s;
}

.mobile-menu.active a:nth-child(5) {
    transition-delay: 0.25s;
}

.mobile-menu.active a:nth-child(6) {
    transition-delay: 0.3s;
}

.mobile-menu a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

@media (max-width: 968px) {}


.btn-glass {
    padding: 10px 25px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-white);
    font-weight: 600;
    transition: 0.3s;
    cursor: pointer;
}

.btn-glass:hover {
    background: var(--main-gradient);
    border-color: transparent;
    box-shadow: 0 0 20px rgba(var(--primary-rgb), 0.4);
}

.hero-split {
    padding: 160px 5% 100px;
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text-side {
    z-index: 2;
}

.badge-pill {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(var(--primary-rgb), 0.1);
    border: 1px solid rgba(var(--primary-rgb), 0.3);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 25px;
}

.hero-text-side h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 4.5rem;
    line-height: 1;
    margin-bottom: 10px;
    font-weight: 700;
    color: var(--text-white);
}

.gradient-text {
    background: var(--text-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text-side h2 {
    font-size: 2.2rem;
    font-weight: 300;
    margin-bottom: 25px;
    color: var(--text-white);
    opacity: 0.9;
}

.hero-text-side p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-text-side .highlight {
    color: var(--primary);
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: rgba(var(--primary-rgb), 0.3);
    text-underline-offset: 5px;
}

.cta-wrapper {
    display: flex;
    align-items: center;
    gap: 30px;
}

.primary-btn {
    background: var(--main-gradient);
    border: none;
    box-shadow: 0 0 20px rgba(var(--primary-rgb), 0.4);
    padding: 15px 35px;
    font-size: 1rem;
    color: var(--text-light);
    cursor: pointer;
    text-decoration: none;
}

.primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(var(--primary-rgb), 0.6);
}

.secondary-btn {
    border: none;
    padding: 15px 35px;
    font-size: 1rem;
    color: var(--text-white);
    cursor: pointer;
    text-decoration: none;
    border: 2px dashed rgba(var(--primary-rgb), 1);
}

.secondary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(var(--primary-rgb), 0.6);
}

.trust-rating {
    display: flex;
    flex-direction: column;
    font-size: 0.85rem;
}

.stars {
    color: var(--accent-gold);
    letter-spacing: 2px;
    margin-bottom: 3px;
    font-size: 25px;
}

















/* --- BEFORE/AFTER COMPARISON SLIDER --- */
.hero-visual-side {
    position: relative;
}

.glass-frame {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.scroller-handle {
    pointer-events: auto !important;
    cursor: ew-resize;
}

.scroller-handle.active .scroller-icon {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 0 30px var(--primary);
    background: var(--text-white);
}

.img-layer {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.img-layer img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    user-select: none;
}

.img-layer.before {
    position: relative;
    width: 100%;
}

.img-layer.after {
    position: absolute;
    top: 0;
    width: 50%;
    z-index: 2;
}

.img-layer.after img {
    width: auto;
    max-width: none;
    height: 100%;
}

.layer-label {
    position: absolute;
    bottom: 30px;
    left: 30px;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    background: rgba(15, 12, 41, 0.8);
    color: var(--text-white);
    pointer-events: none;
}

.scroller-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 3px;
    background: var(--primary);
    z-index: 10;
    box-shadow: 0 0 15px var(--primary);
    transform: translateX(-50%);
    pointer-events: none;
}

.scroller-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    box-shadow: 0 0 20px rgba(var(--primary-rgb), 0.5);
    background: #fff;
}

.floating-badge {
    position: absolute;
    bottom: -70px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(var(--accent-success-rgb), 0.3);
    border-radius: 50px;
    padding: 10px 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-success);
    white-space: nowrap;
}

.floating-badge i {
    color: var(--accent-neon);
    filter: drop-shadow(0 0 3px var(--accent-neon));
    font-size: 1.1rem;
}

.animate-float {
    animation: badgeFloat 3s ease-in-out infinite;
}

@keyframes badgeFloat {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-5px);
    }
}





















/* --- SERVICES GRID --- */
.services-section {
    padding: 50px 5% 100px;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: var(--text-white);
}

.section-title p {
    color: var(--text-gray);
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    border-radius: 24px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    height: 100%;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid transparent;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: var(--card-shine);
    transform: skewX(-25deg);
    transition: 0.5s;
}

.service-card:hover {
    border: 2px dashed var(--primary);
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 30px rgba(var(--primary-rgb), 0.15);
}

.service-card:hover::before {
    left: 150%;
}

.card-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: var(--primary);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-white);
}

.service-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin-bottom: 25px;
    line-height: 1.6;
}

.detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    font-size: 0.8rem;
    padding: 6px 14px;
    border-radius: 20px;
    background: var(--tag-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-white);
}

.stats-container {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin: 80px 0;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-num {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-white);
    display: block;
}

.stat-label {
    color: var(--text-gray);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}























/* --- WHY CHOOSE US (BENTO GRID) --- */
.why-us-section {
    padding: 100px 5%;
    position: relative;
}

.glow-spot {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(var(--primary-rgb), 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: -1;
    pointer-events: none;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(200px, auto);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.bento-card {
    border-radius: 24px;
    padding: 35px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease;
    border: 1px solid transparent;
}

.bento-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.span-1 {
    grid-column: span 1;
}

.span-2 {
    grid-column: span 2;
}

.span-3 {
    grid-column: span 3;
}

.row-2 {
    grid-row: span 2;
}

.bento-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bento-content.centered {
    align-items: center;
    text-align: center;
}

.bento-card h3 {
    font-size: 1.4rem;
    margin: 15px 0 10px;
    color: var(--text-white);
}

.bento-card p {
    font-size: 0.95rem;
    color: var(--text-gray);
}

.icon-glow {
    width: 50px;
    height: 50px;
    background: rgba(var(--primary-rgb), 0.1);
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 0 15px rgba(var(--primary-rgb), 0.2);
}

.icon-glow.purple {
    background: rgba(var(--accent-purple-rgb), 0.1);
    color: var(--accent-purple);
    box-shadow: 0 0 15px rgba(var(--accent-purple-rgb), 0.2);
}

.icon-glow.green {
    background: rgba(var(--accent-success-rgb), 0.1);
    color: var(--accent-success);
    box-shadow: 0 0 15px rgba(var(--accent-success-rgb), 0.2);
}

.huge-icon {
    font-size: 4rem;
    color: rgb(0 0 0 / 31%);
    margin-bottom: 20px;
}

.speed-visual {
    margin-top: 25px;
    background: rgba(0, 0, 0, 0.2);
    padding: 15px;
    border-radius: 12px;
}

.bar-label {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--text-gray);
    margin-bottom: 5px;
}

.progress-track {
    background: rgba(255, 255, 255, 0.1);
    height: 8px;
    border-radius: 4px;
    margin-bottom: 10px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    border-radius: 4px;
    animation: loadBar 2s ease-out forwards;
}

.progress-fill.competitor {
    width: 30%;
    background: #555;
}

.progress-fill.us {
    width: 95%;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    box-shadow: 0 0 10px var(--primary);
}

@keyframes loadBar {
    from {
        width: 0;
    }
}

.scanner-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary);
    box-shadow: 0 0 10px var(--primary);
    animation: scan 3s infinite linear;
    opacity: 0.5;
}

@keyframes scan {
    0% {
        top: 0;
    }

    50% {
        top: 100%;
        opacity: 0;
    }

    100% {
        top: 0;
    }
}

.verified-badge {
    margin-top: 20px;
    padding: 8px 20px;
    background: rgba(var(--accent-success-rgb), 0.1);
    color: var(--accent-success);
    border: 1px solid rgba(var(--accent-success-rgb), 0.3);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
}

.marquee-wrapper {
    width: 100%;
    padding-top: 25px;
    padding-bottom: 25px;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-content {
    display: inline-block;
    animation: scrollLeft 20s linear infinite;
}

.marquee-content span {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-white);
    text-shadow: 0 0 15px rgba(var(--primary-rgb), 0.4);
    margin: 0 40px;
    display: inline-block;
    cursor: default;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.marquee-wrapper:hover .marquee-content {
    animation-play-state: paused;
}

.marquee-content span:hover {
    color: var(--primary);
    text-shadow: 0 0 25px var(--primary), 0 0 50px var(--primary);
    transform: scale(1.1);
    opacity: 1;
}

@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(80px);
    transition: opacity 0.8s ease, transform 0.3s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}


















/* --- IMPACT STATS SECTION --- */
.impact-stats-section {
    position: relative;
    padding: 60px 5%;
    margin-top: -50px;
    z-index: 10;
}

.stats-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(var(--primary-rgb), 0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px 30px;
    border-radius: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px dashed rgba(255, 255, 255, 0.2);
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 15px 30px rgba(var(--primary-rgb), 0.15);
}

.stat-icon {
    font-size: 2.5rem;
    background: rgba(255, 255, 255, 0.5);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.stat-text h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 5px;
    background: var(--main-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-text p {
    font-size: 0.9rem;
    color: var(--text-gray);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {}



















/* --- PORTFOLIO SECTION --- */
.portfolio-section {
    padding: 100px 5%;
    position: relative;
}

.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 25px;
    border-radius: 50px;
    border: 1px solid rgba(var(--primary-rgb), 0.3);
    background: transparent;
    color: var(--text-gray);
    font-size: 0.95rem;
    cursor: pointer;
    transition: 0.3s;
    font-family: 'Outfit', sans-serif;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    box-shadow: 0 5px 15px rgba(var(--primary-rgb), 0.3);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 300px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 30px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .overlay {
    opacity: 1;
}

.overlay-content {
    transform: translateY(20px);
    transition: transform 0.3s ease;
    width: 100%;
    color: #fff;
}

.gallery-item:hover .overlay-content {
    transform: translateY(0);
}

.overlay-content h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.overlay-content p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

.icon-btn {
    position: absolute;
    right: 0;
    bottom: 5px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary);
    border: none;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 0 15px rgba(var(--primary-rgb), 0.5);
}

.view-more-container {
    text-align: center;
    margin-top: 60px;
}

@media (max-width: 768px) {}


















.lightbox {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(8px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 0;
}

.lightbox-content {
    display: block;
    max-width: 90%;
    max-height: 80vh;
    width: auto;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
    animation: zoomIn 0.3s;
    object-fit: contain;
}

@keyframes zoomIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

#lightbox-caption {
    margin-top: 20px;
    text-align: center;
    color: #ccc;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    width: 100%;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
    line-height: 1;
    z-index: 10001;
}

.lightbox-close:hover {
    color: var(--primary);
}










/* --- PRICING SECTION --- */
.pricing-section {
    padding: 100px 5%;
    position: relative;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 60px;
    align-items: center;
}

.pricing-card {
    padding: 40px 30px;
    border-radius: 24px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.pricing-card.popular {
    border: 1px solid var(--primary);
    box-shadow: 0 0 30px rgba(var(--primary-rgb), 0.15);
    transform: scale(1.05);
    z-index: 2;
}

.popular-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 5px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(var(--primary-rgb), 0.4);
}

.card-header {
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.card-header h3 {
    font-size: 1.5rem;
    color: var(--text-white);
    margin-bottom: 5px;
}

.card-header p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.price {
    margin-top: 20px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    color: var(--text-white);
    font-size: 3.5rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.currency {
    font-size: 1.5rem;
    align-self: flex-start;
    margin-top: 10px;
}

.unit {
    font-size: 0.9rem;
    color: var(--text-gray);
    font-weight: 400;
    align-self: flex-end;
    margin-bottom: 8px;
}

.feature-list {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
}

.feature-list li {
    margin-bottom: 15px;
    color: var(--text-gray);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-list li i {
    color: var(--accent-success);
    font-size: 1.1rem;
}

.full-width {
    width: 100%;
    justify-content: center;
}

.agency-banner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 30px 40px;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.agency-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.agency-content i {
    font-size: 2.5rem;
    color: var(--accent-purple);
}

.agency-content h3 {
    color: var(--text-white);
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.agency-content p {
    color: var(--text-gray);
    font-size: 0.9rem;
}




/* --- REAL EMBROIDERY EFFECT (SVG) --- */

.price-patch {
    border-radius: 12px;
    padding: 10px;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0px;
    border: 2px dashed rgba(255, 255, 255, 0.2);
}

.stitch-svg {
    width: 140px;
    height: 90px;
}

.stitch-text {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 60px;
    fill: transparent;
    stroke: var(--thread);
    stroke-width: 2px;
    stroke-dasharray: 4 3;
    stroke-linecap: round;
    filter: drop-shadow(2px 2px 1px rgba(0, 0, 0, 0.5));
    stroke-dashoffset: 100;
    animation: sewPrice 1.5s ease-out forwards;
    transition: 0.3s;
}

.price-patch .currency,
.price-patch .unit {
    color: rgba(0, 0, 0, 0.6);
    font-family: 'Space Grotesk', sans-serif;
}

@keyframes sewPrice {
    to {
        stroke-dashoffset: 0;
    }
}

.pricing-card:hover .stitch-text {
    filter: drop-shadow(0 0 5px var(--thread));
    transition: 0.3s;
}









/* --- REVIEWS SECTION (Static Lift) --- */
.reviews-section {
    padding: 100px 5%;
    position: relative;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.review-card {
    padding: 35px;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px dashed rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.932);
}

.review-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    background: rgb(255, 255, 255);
}

.card-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
}

.stars {
    color: var(--accent-gold);
    font-size: 1.5rem;
    letter-spacing: 2px;
}

.platform-badge img {
    width: 50px;
    height: 50px;
    opacity: 1;
}

.review-text {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 30px;
    font-style: italic;
    flex-grow: 1;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.name-block h4 {
    font-size: 1.1rem;
    color: var(--text-white);
    margin-bottom: 2px;
    font-weight: 600;
}

.name-block .company {
    font-size: 0.85rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}







/* --- FAQ SECTION: THE GOLDEN THREAD --- */
.faq-section {
    padding: 100px 5%;
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.faq-wrapper {
    position: relative;
    padding-left: 30px;
}

.timeline-thread {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 10px;
    width: 2px;
    background: rgba(var(--primary-rgb), 0.3);
    z-index: 0;
}

.faq-item {
    position: relative;
    margin-bottom: 25px;
}

.thread-node {
    position: absolute;
    top: 25px;
    left: -24px;
    width: 12px;
    height: 12px;
    background: var(--bg-dark);
    border: 2px solid var(--text-gray);
    border-radius: 50%;
    z-index: 1;
    transition: 0.3s ease;
    box-shadow: 0 0 0 4px var(--bg-dark);
}

.faq-item.active .thread-node {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 0 0 4px var(--bg-dark), 0 0 15px var(--primary);
}

.faq-card {
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-item.active .faq-card {
    border-color: rgba(var(--primary-rgb), 0.5);
    background: rgba(255, 255, 255, 1);
}

.faq-header {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-header h3 {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-white);
    margin: 0;
}

.faq-icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: var(--primary);
    transition: 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    background: var(--primary);
    color: #fff;
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.8;
}

.faq-body p {
    padding: 0 25px 25px;
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}









.contact-section {
    padding: 100px 5%;
    position: relative;
}

.contact-container {
    max-width: 1000px;
    margin: 0 auto;
}

.contact-card {
    border-radius: 24px;
    overflow: hidden;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
}

.contact-info {
    padding: 50px;
    background: rgba(var(--primary-rgb), 0.05);
    position: relative;
    display: flex;
    flex-direction: column;
}

.contact-info h2 {
    font-size: 2rem;
    margin: 15px 0 10px;
    color: var(--text-white);
}

.contact-info p {
    color: var(--text-gray);
    margin-bottom: 40px;
    line-height: 1.6;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.icon-box {
    width: 45px;
    height: 45px;
    background: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.info-item .label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-gray);
    margin-bottom: 2px;
}

.info-item .link,
.info-item .text {
    font-size: 1rem;
    color: var(--text-white);
    font-weight: 500;
    text-decoration: none;
    transition: 0.3s;
}

.info-item .link:hover {
    color: var(--primary);
}

.needle-deco {
    margin-top: auto;
    font-size: 3rem;
    color: rgba(0, 0, 0, 0.05);
    align-self: flex-end;
    transform: rotate(-45deg);
}

.form-wrapper {
    padding: 50px;
    background: rgba(255, 255, 255, 0.02);
}

.input-group {
    position: relative;
    margin-bottom: 30px;
}

.input-group input,
.input-group textarea,
.input-group select {
    width: 100%;
    padding: 12px 12px;
    border-radius: 6px;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    color: var(--text-white);
    background: rgb(163 162 162 / 13%);
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    outline: none;
    transition: 0.3s;
    border: 2px dashed transparent;
}

.input-group label {
    position: absolute;
    top: 12px;
    left: 15px;
    font-size: 1rem;
    color: var(--text-gray);
    pointer-events: none;
    transition: 0.3s ease all;
    padding: 0px 5px;
    border-radius: 2px;
}

.input-group input:focus,
.input-group textarea:focus,
.input-group select:focus {
    border: 2px dashed var(--primary);
}

.input-group input:focus~label,
.input-group input:not(:placeholder-shown)~label,
.input-group textarea:focus~label,
.input-group textarea:not(:placeholder-shown)~label {
    top: -10px;
    font-size: 0.85rem;
    color: var(--text-light);
    background-color: var(--primary);
}

.input-group select {
    color: black;
}

.input-group select:focus {
    color: black;
}


@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
    }

    .contact-info {
        padding: 30px;
    }

    .form-wrapper {
        padding: 30px;
    }

    .needle-deco {
        display: none;
    }
}







/* --- FOOTER SECTION (LIGHT THEME) --- */
.footer-section {
    position: relative;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.4) 100%);
    backdrop-filter: blur(10px);
    padding: 80px 5% 30px;
    margin-top: 80px;
    color: var(--text-white);
    border-top: 1px solid #80808000;
}


.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    margin-bottom: 20px;
    display: inline-block;
}

.footer-brand p {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--text-white);
    background: rgba(0, 0, 0, 0.05);
    font-size: 1.1rem;
    transition: 0.3s;
    text-decoration: none;
}

.social-btn:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(var(--primary-rgb), 0.4);
}

.footer-col h4 {
    color: var(--text-white);
    margin-bottom: 25px;
    font-size: 1.1rem;
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.95rem;
    transition: 0.3s;
    display: inline-block;
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background: linear-gradient(to right, var(--primary) 60%, transparent 40%);
    background-size: 6px 2px;
    transition: 0.3s;
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.footer-links a:hover::after {
    width: 100%;
}

.footer-newsletter .input-group input {
    background: rgba(255, 255, 255, 0.5);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.legal-links {
    display: flex;
    gap: 20px;
}

.legal-links a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.3s;
}

.legal-links a:hover {
    color: var(--primary);
}

.footer-contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-contact-list li {
    display: flex;
    align-items: center;
    gap: 15px;
}

.icon-circle {
    width: 40px;
    height: 40px;
    background: rgba(var(--primary-rgb), 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: 0.3s;
}

.footer-contact-list li:hover .icon-circle {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
}

.contact-text {
    display: flex;
    flex-direction: column;
}

.contact-text .label {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--text-gray);
    letter-spacing: 0.5px;
    font-weight: 600;
}

.contact-text a,
.contact-text span {
    font-size: 0.95rem;
    color: var(--text-white);
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.contact-text a:hover {
    color: var(--primary);
}





@media (max-width: 968px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text-side {
        padding-bottom: 50px;
    }

    .hero-visual-side {
        height: 400px;
    }

    .cta-wrapper {
        justify-content: center;
    }

    .glass-frame {
        transform: rotateY(0);
    }

    .hero-text-side h1 {
        font-size: 3rem;
    }

    .bento-grid {
        grid-template-columns: 1fr;
    }

    .span-2,
    .span-3 {
        grid-column: span 1;
    }

    .row-2 {
        grid-row: span 1;
    }

    .huge-icon {
        font-size: 3rem;
    }

    .nav-items {
        display: none;
    }

    .grid-container {
        grid-template-columns: 1fr;
    }

    .stats-container {
        gap: 30px;
        flex-direction: column;
    }

    .nav-items {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .desktop-only {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .filter-container {
        width: 100%;
        overflow: auto;
        flex-wrap: nowrap !important;
    }

}


@media (max-width: 768px) {
    .faq-wrapper {
        padding-left: 0;
    }

    .timeline-thread,
    .thread-node {
        display: none;
    }

    .pricing-card.popular {
        transform: scale(1);
    }

    .agency-banner {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }

    .agency-content {
        flex-direction: column;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item {
        height: 250px;
    }

    .stats-container {
        grid-template-columns: 1fr;
    }

    .stat-card {
        justify-content: center;
        text-align: center;
        flex-direction: column;
        padding: 40px 20px;
    }
}


@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .primary-btn {
        font-size: 0.8rem;
    }

    /* .orb-1 {
        height: 160vw;
    } */
}