/* ===== Reset & Variables ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --purple: #7C3AED;
    --purple-light: #A78BFA;
    --purple-dark: #5B21B6;
    --amber: #F59E0B;
    --amber-light: #FCD34D;
    --bg: #050507;
    --bg-2: #0C0C12;
    --bg-3: #111118;
    --bg-card: rgba(255,255,255,0.03);
    --border: rgba(255,255,255,0.06);
    --border-hover: rgba(255,255,255,0.12);
    --text: #A1A1AA;
    --text-bright: #F4F4F5;
    --white: #FFFFFF;
    --radius: 20px;
    --radius-sm: 12px;
    --gradient: linear-gradient(135deg, var(--purple), var(--amber));
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Space Grotesk', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }

h1, h2, h3, h4 {
    font-family: 'Outfit', sans-serif;
    color: var(--text-bright);
    line-height: 1.15;
    letter-spacing: -0.02em;
}

a { text-decoration: none; color: inherit; transition: all 0.3s; }
img { max-width: 100%; display: block; }

/* Cursor glow */
.cursor-glow {
    position: fixed;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(124,58,237,0.07) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    transform: translate(-50%, -50%);
    transition: transform 0.1s;
}

/* Section label */
.section-label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--purple-light);
}

.section-label.center { justify-content: center; }

.label-line {
    width: 32px;
    height: 2px;
    background: var(--gradient);
    border-radius: 2px;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    font-family: inherit;
    border: none;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary {
    background: var(--gradient);
    color: var(--white);
    box-shadow: 0 4px 24px rgba(124,58,237,0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(124,58,237,0.5);
}

.btn-glass {
    background: rgba(255,255,255,0.05);
    color: var(--text-bright);
    border: 1px solid var(--border);
    backdrop-filter: blur(12px);
}

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

.btn-lg { padding: 18px 36px; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }

/* ===== Promo Bar ===== */
.promo-bar {
    background: var(--purple-dark);
    padding: 10px 0;
    overflow: hidden;
    position: relative;
    z-index: 101;
}

.promo-marquee { overflow: hidden; }

.promo-track {
    display: flex;
    gap: 24px;
    animation: promo-scroll 25s linear infinite;
    white-space: nowrap;
}

.promo-track span {
    font-size: 0.78rem;
    font-weight: 500;
    color: rgba(255,255,255,0.9);
    letter-spacing: 0.5px;
}

.promo-sep {
    opacity: 0.3;
}

@keyframes promo-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===== Navbar ===== */
.navbar {
    position: fixed;
    top: 36px;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 18px 0;
    transition: all 0.4s;
}

.navbar.scrolled {
    top: 0;
    padding: 12px 0;
    background: rgba(5,5,7,0.85);
    backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid var(--border);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-mark svg { width: 36px; height: 36px; }

.logo-img {
    height: 40px;
    width: auto;
    border-radius: 6px;
    object-fit: contain;
}

.logo-text {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-bright);
}

.logo-text .accent { color: var(--purple-light); }

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
}

.nav-links a {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text);
}

.nav-links a:hover { color: var(--white); }

.nav-cta {
    background: var(--gradient) !important;
    color: var(--white) !important;
    padding: 10px 24px !important;
    border-radius: 50px !important;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text);
    padding: 8px 16px;
    border: 1px solid var(--border);
    border-radius: 50px;
    transition: all 0.3s;
}

.nav-phone:hover {
    color: var(--text-bright);
    border-color: var(--border-hover);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-bright);
    transition: all 0.3s;
    border-radius: 2px;
}

/* ===== Hero ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
}

.hero-glow-1 {
    width: 600px;
    height: 600px;
    background: rgba(124,58,237,0.12);
    top: -100px;
    left: -100px;
}

.hero-glow-2 {
    width: 400px;
    height: 400px;
    background: rgba(245,158,11,0.08);
    bottom: 0;
    right: 10%;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    background: rgba(124,58,237,0.1);
    border: 1px solid rgba(124,58,237,0.2);
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--purple-light);
    margin-bottom: 28px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #34D399;
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.hero h1 {
    font-size: clamp(2.8rem, 5vw, 4.2rem);
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--white);
}

.hero h1 em {
    font-style: italic;
    color: var(--text);
}

.hero-highlight {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: 1.1rem;
    color: var(--text);
    max-width: 480px;
    margin-bottom: 36px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 14px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.hero-social-proof {
    display: flex;
    align-items: center;
    gap: 16px;
}

.avatar-stack {
    display: flex;
}

.avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.75rem;
    color: var(--white);
    border: 2px solid var(--bg);
    margin-left: -8px;
}

.avatar:first-child { margin-left: 0; }

.social-proof-text {
    font-size: 0.88rem;
    color: var(--text);
}

.social-proof-text strong { color: var(--text-bright); }

/* Hero images */
.hero-image-stack {
    position: relative;
    height: 520px;
}

.hero-img {
    position: absolute;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0,0,0,0.5);
    border: 1px solid var(--border);
}

.hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-img-1 {
    width: 340px;
    height: 420px;
    top: 20px;
    right: 20px;
    z-index: 2;
    animation: float 6s ease-in-out infinite;
}

.hero-img-2 {
    width: 220px;
    height: 280px;
    bottom: 20px;
    left: 0;
    z-index: 3;
    animation: float 6s ease-in-out infinite 1s;
}

.hero-floating-card {
    position: absolute;
    bottom: 100px;
    right: 0;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    background: rgba(15,15,22,0.9);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border);
    border-radius: 14px;
    animation: float 6s ease-in-out infinite 2s;
}

.floating-card-icon {
    width: 36px;
    height: 36px;
    background: var(--gradient);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
}

.hero-floating-card strong {
    display: block;
    color: var(--text-bright);
    font-size: 1.1rem;
}

.hero-floating-card span {
    font-size: 0.78rem;
    color: var(--text);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* ===== Marquee ===== */
.marquee-section {
    padding: 32px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

.marquee-track {
    display: flex;
    overflow: hidden;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 40px;
    animation: marquee 30s linear infinite;
    white-space: nowrap;
}

.marquee-content span {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 4px;
    color: rgba(255,255,255,0.15);
}

.marquee-content .dot {
    width: 6px;
    height: 6px;
    background: var(--purple);
    border-radius: 50%;
    display: inline-block;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===== Services (Bento) ===== */
.services {
    padding: 140px 0;
}

.services-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
    align-items: end;
}

.services-header h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 800;
}

.services-header p {
    font-size: 1.05rem;
    color: var(--text);
    max-width: 420px;
}

.services-bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 16px;
}

.bento-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    min-height: 340px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: all 0.4s ease;
}

.bento-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
}

.bento-large { grid-column: 1; grid-row: 1 / 3; min-height: 696px; }
.bento-wide { grid-column: 2 / 4; }

.bento-img {
    position: absolute;
    inset: 0;
}

.bento-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.bento-card:hover .bento-img img {
    transform: scale(1.05);
}

.bento-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(5,5,7,0.95) 0%, rgba(5,5,7,0.4) 50%, rgba(5,5,7,0.1) 100%);
}

.bento-content {
    position: relative;
    z-index: 1;
    padding: 28px;
}

.bento-content h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.bento-content p {
    font-size: 0.9rem;
    color: var(--text);
    margin-bottom: 16px;
    line-height: 1.6;
}

.bento-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.bento-tags span {
    padding: 4px 12px;
    background: rgba(124,58,237,0.15);
    border: 1px solid rgba(124,58,237,0.2);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--purple-light);
}

/* ===== Process ===== */
.process {
    padding: 140px 0;
    background: var(--bg-2);
}

.process-title {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 800;
    margin-bottom: 64px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.p-step {
    position: relative;
    padding: 0 28px;
    border-left: 1px solid var(--border);
}

.p-step:first-child { border-left: none; padding-left: 0; }

.p-step-num {
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.p-step-body h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.p-step-body p {
    font-size: 0.9rem;
    color: var(--text);
    line-height: 1.7;
}

.p-step-line { display: none; }

/* ===== Work / Portfolio ===== */
.work {
    padding: 140px 0;
}

.work-header {
    margin-bottom: 60px;
}

.work-header h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 800;
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.work-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    cursor: pointer;
    transition: all 0.4s ease;
}

.work-item:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
}

.work-featured {
    grid-column: span 2;
}

.work-img {
    width: 100%;
    height: 360px;
    overflow: hidden;
}

.work-featured .work-img { height: 420px; }

.work-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.work-item:hover .work-img img {
    transform: scale(1.05);
}

.work-info {
    padding: 24px;
    background: var(--bg-2);
}

.work-cat {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(124,58,237,0.12);
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--purple-light);
    margin-bottom: 10px;
}

.work-info h3 {
    font-size: 1.15rem;
    margin-bottom: 6px;
}

.work-info p {
    font-size: 0.88rem;
    color: var(--text);
}

/* ===== Stats Banner ===== */
.stats-banner {
    padding: 80px 0;
    background: var(--bg-2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.stats-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.stat-item { text-align: center; flex: 1; }

.stat-num {
    font-family: 'Outfit', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
}

.stat-plus {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-desc {
    display: block;
    font-size: 0.85rem;
    color: var(--text);
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: var(--border);
}

/* ===== About ===== */
.about {
    padding: 140px 0;
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-images {
    position: relative;
    height: 550px;
}

.about-img-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 320px;
    height: 420px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    z-index: 1;
}

.about-img-secondary {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 260px;
    height: 340px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    z-index: 2;
}

.about-img-main img,
.about-img-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-badge-card {
    position: absolute;
    bottom: 140px;
    left: 200px;
    z-index: 3;
}

.abc-inner {
    background: rgba(15,15,22,0.9);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 20px 28px;
    text-align: center;
}

.abc-number {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.abc-text {
    font-size: 0.82rem;
    color: var(--text);
    line-height: 1.4;
}

.about-text h2 {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 24px;
}

.about-lead {
    font-size: 1.05rem;
    color: var(--text);
    margin-bottom: 16px;
    line-height: 1.8;
}

.about-text > p {
    color: var(--text);
    margin-bottom: 16px;
}

.about-features {
    margin-top: 36px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.af-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.af-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(124,58,237,0.1);
    border: 1px solid rgba(124,58,237,0.2);
    border-radius: 12px;
    color: var(--purple-light);
}

.af-icon svg { width: 20px; height: 20px; }

.af-item h4 {
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.af-item p {
    font-size: 0.88rem;
    color: var(--text);
}

/* ===== Testimonials ===== */
.testimonials {
    padding: 140px 0;
    background: var(--bg-2);
}

.testi-title {
    text-align: center;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 800;
    margin-bottom: 60px;
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.testi-card {
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all 0.35s ease;
}

.testi-card.featured {
    border-color: rgba(124,58,237,0.3);
    background: rgba(124,58,237,0.05);
}

.testi-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
}

.testi-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 20px;
}

.testi-card blockquote {
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 24px;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testi-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 0.85rem;
}

.testi-author strong {
    display: block;
    color: var(--text-bright);
    font-size: 0.92rem;
}

.testi-author span {
    font-size: 0.78rem;
    color: var(--text);
}

/* ===== CTA ===== */
.cta {
    position: relative;
    padding: 140px 0;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
}

.cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(5,5,7,0.88);
    backdrop-filter: blur(4px);
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 1.1rem;
    color: var(--text);
    margin-bottom: 32px;
}

/* ===== Contact ===== */
.contact {
    padding: 140px 0;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-left h2 {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 16px;
}

.contact-left > p {
    color: var(--text);
    margin-bottom: 40px;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cc-item {
    display: flex;
    gap: 16px;
    align-items: center;
    padding: 16px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    transition: border-color 0.3s;
}

.cc-item:hover { border-color: var(--border-hover); }

.cc-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(124,58,237,0.1);
    border-radius: 12px;
    color: var(--purple-light);
}

.cc-icon svg { width: 20px; height: 20px; }

.cc-item strong { display: block; color: var(--text-bright); font-size: 0.9rem; }
.cc-item p { font-size: 0.85rem; color: var(--text); }

/* Form */
.contact-right {
    background: var(--bg-2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-bright);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-bright);
    font-family: inherit;
    font-size: 0.92rem;
    outline: none;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--purple);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23A1A1AA' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.form-group textarea { resize: vertical; min-height: 110px; }

/* ===== Footer ===== */
.footer {
    padding: 80px 0 32px;
    background: var(--bg-2);
    border-top: 1px solid var(--border);
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 64px;
}

.footer-brand p {
    color: var(--text);
    margin-top: 16px;
    font-size: 0.88rem;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col h4 {
    font-size: 0.88rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-bright);
}

.footer-col a {
    font-size: 0.85rem;
    color: var(--text);
}

.footer-col a:hover { color: var(--purple-light); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--text);
}

.footer-credits { opacity: 0.5; }

/* ===== Trust Badges ===== */
.trust-badges {
    padding: 48px 0;
    border-bottom: 1px solid var(--border);
}

.badges-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
}

.badge-item:hover {
    border-color: var(--border-hover);
    transform: translateY(-2px);
}

.badge-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(124,58,237,0.1);
    border: 1px solid rgba(124,58,237,0.15);
    border-radius: 14px;
    color: var(--purple-light);
}

.badge-icon svg { width: 22px; height: 22px; }

.badge-item strong {
    display: block;
    font-size: 0.9rem;
    color: var(--text-bright);
    margin-bottom: 2px;
}

.badge-item p {
    font-size: 0.78rem;
    color: var(--text);
    line-height: 1.4;
}

/* ===== Product Categories ===== */
.products {
    padding: 120px 0;
}

.products-title {
    text-align: center;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 800;
    margin-bottom: 60px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.product-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.4s ease;
    display: block;
}

.product-card:hover {
    border-color: var(--purple);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(124,58,237,0.15);
}

.product-img {
    height: 280px;
    overflow: hidden;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-img img {
    transform: scale(1.08);
}

.product-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: var(--bg-2);
}

.product-info h3 {
    font-size: 1.05rem;
    font-weight: 600;
}

.product-arrow {
    font-size: 1.4rem;
    color: var(--purple-light);
    transition: transform 0.3s;
}

.product-card:hover .product-arrow {
    transform: translateX(4px);
}

/* ===== WhatsApp Float ===== */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    z-index: 99;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37,211,102,0.5);
}

/* ===== Footer Socials ===== */
.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text);
    transition: all 0.3s;
}

.footer-socials a:hover {
    color: var(--purple-light);
    border-color: var(--purple);
    background: rgba(124,58,237,0.1);
}

/* ===== Animations ===== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .badges-grid { grid-template-columns: repeat(2, 1fr); }
    .product-grid { grid-template-columns: repeat(2, 1fr); }

    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-right { display: none; }
    .hero-sub { margin: 0 auto 36px; }
    .hero-actions { justify-content: center; }
    .hero-social-proof { justify-content: center; }

    .services-header { grid-template-columns: 1fr; }
    .services-bento { grid-template-columns: repeat(2, 1fr); }
    .bento-large { grid-column: span 2; grid-row: auto; min-height: 400px; }
    .bento-wide { grid-column: span 2; }

    .process-steps { grid-template-columns: repeat(2, 1fr); gap: 32px; }
    .p-step { border-left: none; padding-left: 0; }

    .work-grid { grid-template-columns: repeat(2, 1fr); }
    .work-featured { grid-column: span 2; }

    .about-layout { grid-template-columns: 1fr; gap: 48px; }
    .about-images { height: 400px; }

    .contact-layout { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(5,5,7,0.97);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 28px;
        z-index: 999;
    }

    .nav-links.active { display: flex; }
    .nav-links a { font-size: 1.3rem; color: var(--text-bright); }
    .nav-phone span { display: none; }
    .badges-grid { grid-template-columns: 1fr 1fr; }
    .product-grid { grid-template-columns: 1fr; }
    .product-img { height: 220px; }

    .hamburger { display: flex; }
    .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .hamburger.active span:nth-child(2) { opacity: 0; }
    .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

    .services-bento { grid-template-columns: 1fr; }
    .bento-large, .bento-wide { grid-column: span 1; min-height: 360px; }

    .process-steps { grid-template-columns: 1fr; }

    .work-grid { grid-template-columns: 1fr; }
    .work-featured { grid-column: span 1; }
    .work-featured .work-img { height: 280px; }
    .work-img { height: 260px; }

    .stats-grid { flex-direction: column; gap: 32px; }
    .stat-divider { width: 60px; height: 1px; }

    .testi-grid { grid-template-columns: 1fr; }
    .about-images { height: 350px; }
    .about-img-main { width: 240px; height: 320px; }
    .about-img-secondary { width: 200px; height: 260px; }

    .footer-top { grid-template-columns: 1fr 1fr; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

    .form-row { grid-template-columns: 1fr; }
    .cursor-glow { display: none; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 2.2rem; }
    .hero-actions { flex-direction: column; align-items: center; }
    .footer-top { grid-template-columns: 1fr; }
    .badges-grid { grid-template-columns: 1fr; }
    .whatsapp-float { bottom: 20px; right: 20px; width: 54px; height: 54px; }
}
