/* ================================================
   PIXAL DESIGN STUDIO — Main Stylesheet
   Matches Figma: BHPKBUGKrHBxDUcUOmVXXk
   ================================================ */

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

:root {
    --bg:         #0c0b0b;
    --bg-alt:     #111010;
    --text:       #e5e2e1;
    --accent:     #e73544;
    --accent-alt: #ff5355;
    --muted:      #888;
    --border:     rgba(255,255,255,0.08);
    --white:      #ffffff;
    --font-display: 'Bebas Neue', sans-serif;
    --font-body:    'Epilogue', sans-serif;
    --font-mono:    'Space Grotesk', sans-serif;
    --container:  1240px;
    --pad-x:      100px;
    --radius:     12px;
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: default;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

/* ---- Custom Cursor ---- */
body { cursor: none; }
.cursor {
    position: fixed;
    width: 10px; height: 10px;
    background: var(--accent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, opacity 0.2s;
}
.cursor-follower {
    position: fixed;
    width: 32px; height: 32px;
    border: 1.5px solid var(--accent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: all 0.1s ease;
    opacity: 0.5;
}
a:hover ~ .cursor, button:hover ~ .cursor { width: 20px; height: 20px; }

/* ---- Container ---- */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--pad-x);
}

/* ---- Typography ---- */
.section-heading {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.5rem);
    letter-spacing: 0.02em;
    line-height: 1.1;
    color: var(--text);
}
.section-heading-xl {
    font-family: var(--font-display);
    font-size: clamp(4rem, 8vw, 7rem);
    letter-spacing: 0.01em;
    line-height: 1;
    color: var(--text);
}
.section-heading-xl.accent { color: var(--accent-alt); }
.accent { color: var(--accent); }

/* ---- Buttons ---- */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--accent);
    color: var(--white);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    padding: 14px 28px;
    border-radius: 20px;
    border: none;
    cursor: pointer;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
    text-decoration: none;
}
.btn-primary:hover {
    background: var(--accent-alt);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(231, 53, 68, 0.45);
}
.btn-primary.full-width { width: 100%; justify-content: center; }

.btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    color: var(--accent);
    width: 38px; height: 38px;
    border-radius: 10px;
    font-size: 1rem;
    flex-shrink: 0;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1.5px solid var(--text);
    color: var(--text);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.875rem;
    padding: 14px 28px;
    border-radius: 6px;
    transition: background var(--transition), color var(--transition), border-color var(--transition);
    letter-spacing: 0.05em;
}
.btn-outline:hover {
    background: var(--text);
    color: var(--bg);
}

.btn-nav-cta {
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent);
    border: 1.5px solid var(--accent);
    padding: 8px 20px;
    border-radius: 20px;
    transition: all var(--transition);
    letter-spacing: 0.04em;
}
.btn-nav-cta:hover {
    background: var(--accent);
    color: var(--white);
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-bottom: 1px solid var(--accent);
    padding-bottom: 2px;
    color: var(--text);
    transition: color var(--transition), gap var(--transition);
}
.link-arrow:hover { color: var(--accent); gap: 14px; }

/* ================================================
   HEADER / NAVBAR
   ================================================ */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    height: 80px;
    display: flex;
    align-items: center;
    transition: background var(--transition), backdrop-filter var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
    background: rgba(12, 11, 11, 0.92);
    backdrop-filter: blur(16px);
    box-shadow: 0 1px 0 var(--border);
}
.nav-container {
    max-width: var(--container);
    width: 100%;
    margin: 0 auto;
    padding: 0 var(--pad-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}
.logo {
    font-family: var(--font-display);
    font-size: 2rem;
    letter-spacing: 0.05em;
    color: var(--text);
    flex-shrink: 0;
}
.logo-dot { color: var(--accent); }

.main-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}
.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--muted);
    letter-spacing: 0.02em;
    position: relative;
    transition: color var(--transition);
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0; right: 0;
    height: 1px;
    background: var(--accent);
    transform: scaleX(0);
    transition: transform var(--transition);
    transform-origin: left;
}
.nav-link:hover { color: var(--text); }
.nav-link:hover::after { transform: scaleX(1); }

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.hamburger span {
    display: block;
    width: 24px; height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
    display: none;
    flex-direction: column;
    gap: 1.5rem;
    position: fixed;
    top: 80px; left: 0; right: 0;
    background: rgba(12,11,11,0.98);
    backdrop-filter: blur(20px);
    padding: 2rem var(--pad-x);
    border-bottom: 1px solid var(--border);
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s, opacity 0.35s;
    z-index: 999;
}
.mobile-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
    display: flex;
}
.mobile-nav-link {
    font-size: 1.5rem;
    font-family: var(--font-display);
    letter-spacing: 0.05em;
    color: var(--text);
    transition: color var(--transition);
}
.mobile-nav-link:hover { color: var(--accent); }
.mobile-cta { align-self: flex-start; margin-top: 0.5rem; }

/* ================================================
   HERO SECTION
   ================================================ */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: radial-gradient(ellipse 80% 60% at 70% 40%, #1a0505 0%, #0c0b0b 60%);
}

.hero-bg-swirl {
    position: absolute;
    right: -5%;
    top: 5%;
    width: 58%;
    aspect-ratio: 1;
    background:
        radial-gradient(ellipse at center, rgba(180,30,30,0.12) 0%, transparent 60%),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 800'%3E%3Cdefs%3E%3CradialGradient id='rg' cx='50%25' cy='50%25'%3E%3Cstop offset='0%25' stop-color='%23333'/%3E%3Cstop offset='100%25' stop-color='%23111'/%3E%3C/radialGradient%3E%3C/defs%3E%3Cellipse cx='400' cy='400' rx='380' ry='380' fill='url(%23rg)'/%3E%3Cellipse cx='400' cy='320' rx='200' ry='280' fill='none' stroke='%23333' stroke-width='1' opacity='0.6'/%3E%3Cellipse cx='380' cy='360' rx='140' ry='200' fill='none' stroke='%23444' stroke-width='1' opacity='0.5'/%3E%3Cellipse cx='420' cy='380' rx='100' ry='140' fill='none' stroke='%23555' stroke-width='1' opacity='0.4'/%3E%3C/svg%3E") no-repeat center center;
    background-size: 100%;
    opacity: 0.9;
    animation: float 8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(2deg); }
    66% { transform: translateY(10px) rotate(-1deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 860px;
    text-align: center;
    padding: 0 2rem;
    animation: fadeUp 1s ease 0.2s both;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(40px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 8vw, 7rem);
    line-height: 1.05;
    letter-spacing: 0.01em;
    color: var(--text);
    margin-bottom: 1.5rem;
}
.hero-accent { color: var(--accent); display: block; }

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(229, 226, 225, 0.75);
    line-height: 1.7;
    max-width: 680px;
    margin: 0 auto 2.5rem;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    z-index: 2;
    animation: fadeUp 1s ease 0.8s both;
}
.hero-scroll-indicator span {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    color: var(--muted);
    writing-mode: horizontal-tb;
}
.scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, var(--accent), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
    0%, 100% { opacity: 0.4; transform: scaleY(1); }
    50%       { opacity: 1; transform: scaleY(1.2); }
}

/* ================================================
   MARQUEE STRIP
   ================================================ */
.marquee-strip {
    width: 100%;
    overflow: hidden;
    background: transparent;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 1rem 0;
    white-space: nowrap;
    position: relative;
}
.marquee-strip + .marquee-strip {
    border-top: none;
    padding-top: 0.5rem;
}
.marquee-track {
    display: inline-flex;
    gap: 0;
    animation: marquee 30s linear infinite;
}
.marquee-reverse .marquee-track {
    animation: marquee-rev 30s linear infinite;
}
@keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-33.33%); }
}
@keyframes marquee-rev {
    from { transform: translateX(-33.33%); }
    to   { transform: translateX(0); }
}
.marquee-item {
    font-family: var(--font-body);
    font-size: clamp(0.85rem, 1.5vw, 1.1rem);
    font-weight: 500;
    color: var(--muted);
    letter-spacing: 0.05em;
    padding: 0 2rem;
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
    text-transform: uppercase;
}
.marquee-star {
    color: var(--accent);
    font-size: 0.6rem;
}

/* ================================================
   ABOUT SECTION
   ================================================ */
.about-section {
    padding: 8rem var(--pad-x);
    max-width: var(--container);
    margin: 0 auto;
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.about-image {
    position: relative;
}
.about-img-placeholder {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 4px;
    overflow: hidden;
    background: #1a1718;
    position: relative;
}
.about-img-inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.team-visual {
    position: relative;
    width: 300px;
    height: 300px;
}
.team-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), #7b1520);
    opacity: 0.3;
}
.t1 { width: 200px; height: 200px; top: 50px; left: 50px; }
.t2 { width: 140px; height: 140px; top: 20px; left: 120px; opacity: 0.2; }
.t3 { width: 100px; height: 100px; top: 160px; left: 40px; opacity: 0.15; }
.team-label {
    position: absolute;
    bottom: 20px; left: 50%;
    transform: translateX(-50%);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    color: var(--muted);
    text-transform: uppercase;
    white-space: nowrap;
}

.about-text { padding-left: 2rem; }
.about-text .section-heading { margin-bottom: 1.5rem; }
.about-body {
    font-size: 1.05rem;
    color: rgba(229, 226, 225, 0.7);
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* ================================================
   STATS SECTION
   ================================================ */
.stats-section {
    background: var(--bg-alt);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 5rem 0;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}
.stat-item {
    text-align: center;
    position: relative;
}
.stat-item + .stat-item::before {
    content: '';
    position: absolute;
    left: 0; top: 10%; bottom: 10%;
    width: 1px;
    background: var(--border);
}
.stat-number {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 6vw, 5rem);
    color: var(--text);
    line-height: 1;
    margin-bottom: 0.5rem;
    letter-spacing: 0.01em;
}
.stat-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--muted);
    text-transform: uppercase;
}

/* ================================================
   SERVICES SECTION
   ================================================ */
.services-section {
    padding: 8rem 0;
    background: #0a0909;
    position: relative;
    overflow: hidden;
}
.services-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(0deg, transparent, transparent 59px, rgba(255,255,255,0.02) 60px),
        repeating-linear-gradient(90deg, transparent, transparent 59px, rgba(255,255,255,0.02) 60px);
    pointer-events: none;
    opacity: 0.6;
}

/* Topographic lines overlay */
.services-section::before {
    content: '';
    position: absolute;
    right: 0; top: 0; bottom: 0;
    width: 55%;
    background:
        radial-gradient(ellipse 80% 60% at 80% 50%, rgba(231,53,68,0.04) 0%, transparent 70%);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='600' height='800'%3E%3Cellipse cx='400' cy='400' rx='350' ry='300' fill='none' stroke='rgba(255,255,255,0.04)' stroke-width='1'/%3E%3Cellipse cx='380' cy='420' rx='280' ry='240' fill='none' stroke='rgba(255,255,255,0.04)' stroke-width='1'/%3E%3Cellipse cx='420' cy='380' rx='210' ry='180' fill='none' stroke='rgba(255,255,255,0.04)' stroke-width='1'/%3E%3Cellipse cx='400' cy='400' rx='140' ry='120' fill='none' stroke='rgba(255,255,255,0.04)' stroke-width='1'/%3E%3Cellipse cx='400' cy='400' rx='70' ry='60' fill='none' stroke='rgba(255,255,255,0.04)' stroke-width='1'/%3E%3C/svg%3E") no-repeat center center;
    background-size: cover;
    pointer-events: none;
}

.services-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 4rem;
    gap: 3rem;
}
.services-title-wrap { flex-shrink: 0; }
.services-desc {
    max-width: 320px;
    font-size: 1.05rem;
    color: rgba(229,226,225,0.65);
    line-height: 1.7;
    padding-bottom: 0.5rem;
}

.services-list {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}
.service-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2.5rem 1.5rem;
    border-top: 1px solid var(--border);
    cursor: pointer;
    transition: background var(--transition), padding-left var(--transition);
    position: relative;
    overflow: hidden;
}
.service-item:last-child { border-bottom: 1px solid var(--border); }
.service-item::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 0;
    background: rgba(231,53,68,0.06);
    transition: width var(--transition);
}
.service-item:hover::before { width: 100%; }
.service-item:hover { padding-left: 2.5rem; }

.service-left {
    display: flex;
    align-items: center;
    gap: 2rem;
    position: relative;
    z-index: 1;
}
.service-num {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--accent);
    font-weight: 400;
    min-width: 2rem;
}
.service-name {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--text);
    font-weight: 400;
    letter-spacing: 0.02em;
}
.service-arrow-btn {
    width: 64px; height: 64px;
    background: var(--accent);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--white);
    flex-shrink: 0;
    transition: transform var(--transition), box-shadow var(--transition);
    position: relative;
    z-index: 1;
}
.service-item:hover .service-arrow-btn {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 8px 30px rgba(231,53,68,0.4);
}

/* ================================================
   PORTFOLIO SECTION
   ================================================ */
.portfolio-section {
    padding: 8rem 0;
    background: var(--bg);
}
.portfolio-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 4rem;
    flex-wrap: wrap;
    gap: 1.5rem;
}
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 4rem;
    align-items: start;
}
.portfolio-card { position: relative; }
.portfolio-card.offset { margin-top: 4rem; }

.portfolio-img {
    width: 100%;
    aspect-ratio: 588 / 265.5;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    margin-bottom: 1.25rem;
    cursor: pointer;
}
.portfolio-visual {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pv-ring {
    position: absolute;
    width: 55%;
    aspect-ratio: 1;
    border-radius: 50%;
    border: 1.5px solid;
    opacity: 0.4;
}
.pv-dot {
    width: 12%;
    aspect-ratio: 1;
    border-radius: 50%;
    opacity: 0.7;
}
.portfolio-label {
    position: absolute;
    top: 16px; left: 16px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    background: rgba(0,0,0,0.5);
    padding: 4px 10px;
    border-radius: 4px;
    backdrop-filter: blur(4px);
}
.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: rgba(231,53,68,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition);
}
.portfolio-hover-icon {
    width: 60px; height: 60px;
    border-radius: 50%;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    transform: scale(0.8);
    transition: transform var(--transition);
}
.portfolio-img:hover .portfolio-overlay { opacity: 1; }
.portfolio-img:hover .portfolio-hover-icon { transform: scale(1); }

.portfolio-title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--text);
    margin-bottom: 0.4rem;
    letter-spacing: 0.02em;
}
.portfolio-subtitle {
    font-size: 0.95rem;
    color: var(--muted);
    line-height: 1.5;
}

/* ================================================
   TESTIMONIALS SECTION
   ================================================ */
.testimonials-section {
    padding: 8rem 0;
    background: var(--bg-alt);
    position: relative;
    overflow: hidden;
}
.testimonial-gradient {
    position: absolute;
    right: 0; top: 0; bottom: 0;
    width: 33%;
    background: linear-gradient(to left, rgba(231,53,68,0.08), transparent);
    pointer-events: none;
}
.testimonial-grid {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--pad-x);
    display: grid;
    grid-template-columns: 288px 1fr;
    gap: 6rem;
    align-items: center;
}
.client-portrait {
    position: relative;
}
.client-visual {
    width: 100%;
    aspect-ratio: 3 / 4;
    border-radius: 8px;
    background: linear-gradient(135deg, #1a0a10, #2d1015);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.cv-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 40%, rgba(231,53,68,0.2), transparent 60%);
}
.cv-initials {
    font-family: var(--font-display);
    font-size: 5rem;
    color: rgba(229,226,225,0.1);
    position: relative;
    z-index: 1;
}

.quote-icon {
    font-family: Georgia, serif;
    font-size: 8rem;
    line-height: 0.5;
    color: var(--accent);
    margin-bottom: 1.5rem;
    opacity: 0.8;
}
.testimonial-quote {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    line-height: 1.7;
    color: var(--text);
    font-style: normal;
    margin-bottom: 2rem;
    font-weight: 400;
}
.author-name {
    font-family: var(--font-display);
    font-size: 1.2rem;
    letter-spacing: 0.08em;
    color: var(--text);
    margin-bottom: 0.25rem;
}
.author-role {
    font-size: 0.85rem;
    color: var(--muted);
    letter-spacing: 0.05em;
}

/* ================================================
   CONTACT SECTION
   ================================================ */
.contact-section {
    padding: 8rem 0;
    background: var(--bg);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: start;
}
.contact-left .section-heading-xl { margin-bottom: 1.5rem; }
.contact-intro {
    font-size: 1.05rem;
    color: rgba(229,226,225,0.7);
    line-height: 1.7;
    margin-bottom: 3rem;
}
.contact-info { display: flex; flex-direction: column; gap: 2rem; }
.ci-item { display: flex; flex-direction: column; gap: 0.5rem; }
.ci-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--accent);
    text-transform: uppercase;
}
.ci-value {
    font-size: 0.95rem;
    color: rgba(229,226,225,0.75);
    line-height: 1.7;
}
.ci-value a { color: inherit; transition: color var(--transition); }
.ci-value a:hover { color: var(--accent); }

/* Form */
.form-alert {
    padding: 1rem 1.5rem;
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    font-weight: 500;
}
.form-alert.success {
    background: rgba(46,204,113,0.1);
    border: 1px solid rgba(46,204,113,0.3);
    color: #2ecc71;
}
.form-alert.error {
    background: rgba(231,53,68,0.1);
    border: 1px solid rgba(231,53,68,0.3);
    color: var(--accent);
}
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--muted);
    text-transform: uppercase;
}
.form-group input,
.form-group textarea {
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 0.95rem;
    padding: 14px 18px;
    width: 100%;
    transition: border-color var(--transition), background var(--transition);
    outline: none;
    resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(229,226,225,0.25); }
.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--accent);
    background: rgba(231,53,68,0.04);
}

/* ================================================
   FOOTER
   ================================================ */
.site-footer {
    background: #080707;
    border-top: 1px solid var(--border);
    padding: 5rem 0 2rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 4rem;
    margin-bottom: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--border);
}
.footer-logo {
    font-family: var(--font-display);
    font-size: 2.5rem;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}
.footer-tagline {
    font-size: 0.95rem;
    color: var(--muted);
    margin-bottom: 2rem;
    line-height: 1.5;
}
.footer-socials { display: flex; gap: 1rem; flex-wrap: wrap; }
.social-link {
    width: 40px; height: 40px;
    border: 1px solid var(--border);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--muted);
    letter-spacing: 0.05em;
    transition: all var(--transition);
}
.social-link:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(231,53,68,0.08);
}
.footer-col-title {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--accent);
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}
.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.footer-nav a {
    font-size: 0.9rem;
    color: var(--muted);
    transition: color var(--transition);
    line-height: 1.4;
}
.footer-nav a:hover { color: var(--text); }
.footer-contact-col p {
    font-size: 0.875rem;
    color: rgba(229,226,225,0.6);
    line-height: 1.7;
}
.footer-contact-col a { color: inherit; transition: color var(--transition); }
.footer-contact-col a:hover { color: var(--accent); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.8rem;
    color: rgba(229,226,225,0.35);
    letter-spacing: 0.05em;
}
.footer-bottom a { color: inherit; transition: color var(--transition); }
.footer-bottom a:hover { color: var(--muted); }

/* ================================================
   SCROLL REVEAL ANIMATIONS
   ================================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1100px) {
    :root { --pad-x: 48px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 3rem; }
    .stat-item:nth-child(3)::before { display: none; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

@media (max-width: 900px) {
    :root { --pad-x: 28px; }
    .about-grid, .contact-grid, .testimonial-grid { grid-template-columns: 1fr; gap: 3rem; }
    .about-text { padding-left: 0; }
    .portfolio-grid { grid-template-columns: 1fr; gap: 2rem; }
    .portfolio-card.offset { margin-top: 0; }
    .services-header { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
    .portfolio-header { flex-direction: column; align-items: flex-start; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .main-nav, .btn-nav-cta { display: none; }
    .hamburger { display: flex; }
    .mobile-nav { display: flex; }
    .mobile-nav.open { display: flex; }
}

@media (max-width: 600px) {
    :root { --pad-x: 20px; }
    .hero-title { font-size: clamp(2.8rem, 10vw, 4rem); }
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .stat-item::before { display: none; }
    .service-name { font-size: 1.8rem; }
    .section-heading-xl { font-size: clamp(3rem, 12vw, 5rem); }
    .services-section { padding: 5rem 0; }
    .about-section, .portfolio-section, .testimonials-section, .contact-section { padding: 5rem 0; }
}
