/* =====================================================
   PULSE MODEL AGENCY — URBAN STREET / GRAFFITI
   Background: #F5F5F5 (concrete white)
   Surface: #FFFFFF | Accent: #00C853 (electric green)
   Secondary: #FF1744 (spray red) | Text: #1A1A1A
   Splatter: #FFC107 (yellow)
   Fonts: Passion One (display), Rubik (body)
   ===================================================== */

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

:root {
    --primary: #1A1A1A;
    --bg: #F5F5F5;
    --surface: #FFFFFF;
    --accent: #00C853;
    --accent-dark: #00a844;
    --secondary: #FF1744;
    --text: #1A1A1A;
    --text-light: #555555;
    --white: #ffffff;
    --splatter: #FFC107;
    --border: #d0d0d0;
    --shadow: 0 4px 20px rgba(0,0,0,0.10);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.15);
    --shadow-sticker: 4px 4px 0px rgba(0,0,0,0.2);
    --radius: 4px;
    --radius-sm: 2px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-heading: 'Passion One', cursive;
    --font-body: 'Rubik', sans-serif;
}

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

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--bg);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    /* Subtle concrete texture via noise */
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100' height='100' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--accent-dark);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.1;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

h1 { font-size: clamp(2.8rem, 7vw, 5rem); }
h2 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.6rem); }

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-accent { color: var(--accent) !important; }
.text-center { text-align: center; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2.5rem; }

/* --- Spray Paint Text Effect --- */
.spray-text {
    text-shadow:
        2px 2px 0px rgba(0,0,0,0.3),
        -1px -1px 0px rgba(0,0,0,0.1);
}

/* --- Drip Text Effect --- */
.drip-text {
    position: relative;
    display: inline-block;
}

.drip-text::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 15%;
    width: 4px;
    height: 18px;
    background: var(--accent);
    border-radius: 0 0 50% 50%;
    opacity: 0.8;
}

.drip-text::before {
    content: '';
    position: absolute;
    bottom: -12px;
    right: 25%;
    width: 3px;
    height: 12px;
    background: var(--accent);
    border-radius: 0 0 50% 50%;
    opacity: 0.6;
}

/* --- Splatter Decorative Elements --- */
.splatter {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

.splatter-1 {
    width: 200px;
    height: 200px;
    background: radial-gradient(ellipse at center, var(--splatter) 0%, transparent 70%);
    top: 10%;
    right: -50px;
    opacity: 0.3;
    transform: rotate(15deg) scale(1.2);
}

.splatter-2 {
    width: 150px;
    height: 150px;
    background: radial-gradient(ellipse at center, var(--secondary) 0%, transparent 70%);
    bottom: 15%;
    left: -30px;
    opacity: 0.25;
    transform: rotate(-20deg);
}

.splatter-3 {
    width: 120px;
    height: 120px;
    background: radial-gradient(ellipse at center, var(--accent) 0%, transparent 70%);
    top: 40%;
    left: 5%;
    opacity: 0.2;
}

.splatter-hero-1 {
    width: 180px;
    height: 180px;
    background: radial-gradient(ellipse at center, var(--splatter) 0%, transparent 70%);
    top: 20%;
    right: 5%;
    opacity: 0.25;
}

.splatter-hero-2 {
    width: 140px;
    height: 140px;
    background: radial-gradient(ellipse at center, var(--secondary) 0%, transparent 70%);
    bottom: 10%;
    left: 3%;
    opacity: 0.2;
}

.splatter-cta-1 {
    width: 200px;
    height: 200px;
    background: radial-gradient(ellipse at center, var(--splatter) 0%, transparent 70%);
    top: 10%;
    left: -60px;
    opacity: 0.3;
}

.splatter-cta-2 {
    width: 160px;
    height: 160px;
    background: radial-gradient(ellipse at center, var(--accent) 0%, transparent 70%);
    bottom: 5%;
    right: -40px;
    opacity: 0.25;
}

/* --- Torn Edge Dividers --- */
.torn-divider {
    width: 100%;
    height: 30px;
    position: relative;
    overflow: hidden;
    margin: -1px 0;
}

.torn-divider::before {
    content: '';
    position: absolute;
    top: 0;
    left: -5%;
    width: 110%;
    height: 100%;
    background: var(--bg);
    clip-path: polygon(
        0% 60%, 2% 20%, 4% 70%, 6% 30%, 8% 65%, 10% 25%, 12% 55%, 14% 35%,
        16% 70%, 18% 20%, 20% 60%, 22% 40%, 24% 75%, 26% 15%, 28% 55%,
        30% 30%, 32% 65%, 34% 25%, 36% 70%, 38% 35%, 40% 60%, 42% 20%,
        44% 50%, 46% 30%, 48% 70%, 50% 25%, 52% 55%, 54% 40%, 56% 65%,
        58% 20%, 60% 60%, 62% 35%, 64% 75%, 66% 25%, 68% 55%, 70% 30%,
        72% 65%, 74% 20%, 76% 60%, 78% 40%, 80% 70%, 82% 25%, 84% 55%,
        86% 35%, 88% 65%, 90% 20%, 92% 55%, 94% 40%, 96% 70%, 98% 30%, 100% 60%,
        100% 100%, 0% 100%
    );
}

.torn-divider-top::before {
    clip-path: polygon(
        0% 100%, 2% 60%, 4% 100%, 6% 70%, 8% 100%, 10% 55%, 12% 100%, 14% 65%,
        16% 100%, 18% 50%, 20% 100%, 22% 60%, 24% 100%, 26% 55%, 28% 100%,
        30% 70%, 32% 100%, 34% 55%, 36% 100%, 38% 65%, 40% 100%, 42% 50%,
        44% 100%, 46% 60%, 48% 100%, 50% 55%, 52% 100%, 54% 70%, 56% 100%,
        58% 50%, 60% 100%, 62% 65%, 64% 100%, 66% 55%, 68% 100%, 70% 60%,
        72% 100%, 74% 50%, 76% 100%, 78% 65%, 80% 100%, 82% 55%, 84% 100%,
        86% 60%, 88% 100%, 90% 50%, 92% 100%, 94% 65%, 96% 100%, 98% 55%, 100% 100%,
        100% 0%, 0% 0%
    );
}

/* --- Torn Photo Effect --- */
.torn-photo {
    clip-path: polygon(
        0% 2%, 3% 0%, 7% 3%, 11% 1%, 15% 3%, 20% 0%, 25% 2%, 30% 0%, 35% 3%,
        40% 1%, 45% 2%, 50% 0%, 55% 3%, 60% 1%, 65% 2%, 70% 0%, 75% 3%,
        80% 1%, 85% 2%, 90% 0%, 95% 3%, 100% 1%,
        100% 97%, 97% 100%, 93% 97%, 89% 100%, 85% 98%, 80% 100%, 75% 97%,
        70% 100%, 65% 98%, 60% 100%, 55% 97%, 50% 100%, 45% 98%, 40% 100%,
        35% 97%, 30% 100%, 25% 98%, 20% 100%, 15% 97%, 10% 100%, 5% 98%, 0% 100%
    );
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border: 3px solid transparent;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    position: relative;
}

/* Sticker / Peeled effect CTAs */
.sticker-btn {
    box-shadow: var(--shadow-sticker);
    transform: rotate(-0.5deg);
    transition: all var(--transition);
}

.sticker-btn:hover {
    transform: rotate(0deg) translateY(-3px) !important;
    box-shadow: 6px 6px 0px rgba(0,0,0,0.25);
}

.sticker-btn::before {
    content: '';
    position: absolute;
    top: -2px;
    right: -2px;
    width: 16px;
    height: 16px;
    background: linear-gradient(135deg, transparent 50%, rgba(0,0,0,0.08) 50%);
    border-radius: 0 var(--radius) 0 0;
}

.btn-accent {
    background: var(--accent);
    color: var(--primary);
    border-color: var(--primary);
}

.btn-accent:hover {
    background: var(--accent-dark);
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 200, 83, 0.35);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--primary);
}

.btn-sm { padding: 10px 22px; font-size: 0.85rem; }
.btn-lg { padding: 16px 40px; font-size: 1.05rem; }
.btn-block { width: 100%; }

/* --- Top Bar --- */
.top-bar {
    background: var(--primary);
    color: var(--white);
    font-size: 0.8rem;
    padding: 8px 0;
    position: relative;
    z-index: 1001;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.top-bar-left {
    display: flex;
    gap: 20px;
}

.top-bar-left a {
    color: rgba(255,255,255,0.8);
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-bar-left a:hover { color: var(--accent); }

.top-bar-right {
    display: flex;
    gap: 14px;
}

.top-bar-right a {
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
}

.top-bar-right a:hover { color: var(--accent); }

/* --- Navbar --- */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(245, 245, 245, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 3px solid var(--primary);
    transition: all var(--transition);
    padding: 12px 0;
}

.navbar.scrolled {
    background: rgba(245, 245, 245, 0.98);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.navbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-brand {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.brand-pulse {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--primary);
    letter-spacing: 0.05em;
    text-shadow: 3px 3px 0px var(--accent);
}

.brand-dot {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--secondary);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary);
    padding: 8px 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    transition: color var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 16px;
    right: 16px;
    height: 3px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent);
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.nav-cta { margin-left: 12px; }

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: 3px solid var(--primary);
    padding: 8px;
    cursor: pointer;
    border-radius: var(--radius);
}

.hamburger-line {
    width: 24px;
    height: 3px;
    background: var(--primary);
    transition: all var(--transition);
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* --- Hero --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    /* Jagged clip on model image */
    clip-path: polygon(
        0% 0%, 100% 0%, 100% 92%,
        97% 95%, 94% 91%, 90% 96%, 86% 92%, 82% 97%, 78% 93%, 74% 96%,
        70% 91%, 66% 95%, 62% 92%, 58% 97%, 54% 93%, 50% 96%,
        46% 91%, 42% 95%, 38% 92%, 34% 97%, 30% 93%, 26% 96%,
        22% 91%, 18% 95%, 14% 92%, 10% 97%, 6% 93%, 3% 96%, 0% 92%
    );
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26,26,26,0.85) 0%, rgba(26,26,26,0.5) 50%, rgba(26,26,26,0.7) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    padding: 120px 0 100px;
    max-width: 800px;
}

.hero-badge {
    display: inline-block;
    background: var(--accent);
    color: var(--primary);
    padding: 8px 24px;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: 3px solid var(--primary);
    box-shadow: 3px 3px 0px var(--primary);
    margin-bottom: 20px;
    transform: rotate(-1deg);
}

.hero-title {
    color: var(--white);
    margin-bottom: 20px;
    font-size: clamp(3.5rem, 9vw, 6rem);
    text-shadow:
        4px 4px 0px rgba(0,0,0,0.4),
        -2px -2px 0px rgba(0, 200, 83, 0.2);
}

.hero-subtitle {
    color: rgba(255,255,255,0.85);
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    max-width: 600px;
    margin-bottom: 30px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--accent);
    text-shadow: 2px 2px 0px rgba(0,0,0,0.3);
}

.hero-stat-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.hero-scroll a {
    color: var(--white);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

/* --- Sections --- */
.section {
    padding: 80px 0;
    position: relative;
}

.section-dark {
    background: var(--primary);
}

.section-dark h2,
.section-dark h3,
.section-dark h4 {
    color: var(--white);
}

.section-dark p,
.section-dark .section-subtitle {
    color: rgba(255,255,255,0.7);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-badge {
    display: inline-block;
    background: var(--splatter);
    color: var(--primary);
    padding: 6px 20px;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: 2px solid var(--primary);
    box-shadow: 2px 2px 0px var(--primary);
    margin-bottom: 16px;
    transform: rotate(-1deg);
}

.section-title {
    margin-bottom: 12px;
}

.section-subtitle {
    color: var(--text-light);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
}

/* --- Models Grid --- */
.models-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.model-card {
    background: var(--surface);
    border: 4px solid var(--primary);
    overflow: hidden;
    transition: all var(--transition);
    transform: rotate(var(--card-rotate, 0deg));
    box-shadow: 5px 5px 0px var(--primary);
    position: relative;
}

.model-card:hover {
    transform: rotate(0deg) translateY(-8px);
    box-shadow: 8px 8px 0px var(--primary);
}

.model-img-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/5;
}

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

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

.model-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26,26,26,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition);
}

.model-card:hover .model-overlay {
    opacity: 1;
}

.model-info {
    padding: 16px 20px;
    border-top: 3px solid var(--primary);
}

.model-name {
    font-size: 1.2rem;
    margin-bottom: 2px;
}

.model-specialty {
    font-size: 0.85rem;
    color: var(--accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* --- Services Grid --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: rgba(255,255,255,0.05);
    border: 2px solid rgba(255,255,255,0.15);
    padding: 30px 24px;
    text-align: center;
    transition: all var(--transition);
    position: relative;
}

.section-dark .service-card:hover {
    border-color: var(--accent);
    background: rgba(0, 200, 83, 0.08);
    transform: translateY(-4px);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--accent);
    border: 3px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--primary);
    margin: 0 auto 16px;
    transform: rotate(-3deg);
    box-shadow: 3px 3px 0px rgba(0,0,0,0.3);
}

.service-title {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.service-desc {
    font-size: 0.9rem;
}

/* --- Services Detail (graffiti numbered) --- */
.services-detail-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.service-detail-card {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    background: var(--surface);
    border: 3px solid var(--primary);
    padding: 30px;
    box-shadow: 5px 5px 0px rgba(0,0,0,0.15);
    transition: all var(--transition);
}

.service-detail-card:hover {
    transform: translateX(8px);
    box-shadow: 8px 8px 0px rgba(0,0,0,0.2);
}

.service-detail-number {
    position: relative;
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.graffiti-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary);
    position: relative;
    z-index: 2;
    text-shadow: 2px 2px 0px var(--accent);
}

.splatter-behind {
    position: absolute;
    inset: -10px;
    background: radial-gradient(ellipse at center, var(--splatter) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0.5;
    z-index: 1;
}

.service-detail-card:nth-child(2) .splatter-behind { background: radial-gradient(ellipse at center, var(--accent) 0%, transparent 70%); opacity: 0.3; }
.service-detail-card:nth-child(3) .splatter-behind { background: radial-gradient(ellipse at center, var(--secondary) 0%, transparent 70%); opacity: 0.3; }
.service-detail-card:nth-child(4) .splatter-behind { background: radial-gradient(ellipse at center, var(--splatter) 0%, transparent 70%); opacity: 0.5; }
.service-detail-card:nth-child(5) .splatter-behind { background: radial-gradient(ellipse at center, var(--accent) 0%, transparent 70%); opacity: 0.3; }
.service-detail-card:nth-child(6) .splatter-behind { background: radial-gradient(ellipse at center, var(--secondary) 0%, transparent 70%); opacity: 0.3; }

.service-detail-content h3 {
    margin-bottom: 8px;
}

.service-detail-content p {
    margin-bottom: 12px;
}

.service-detail-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--accent);
    color: var(--primary);
    font-size: 1rem;
    border: 2px solid var(--primary);
    margin-bottom: 10px;
}

.service-link {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.service-link:hover {
    color: var(--accent-dark);
    gap: 10px;
}

/* --- Split Content --- */
.split-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.split-image {
    position: relative;
}

.split-image img {
    width: 100%;
    border: 4px solid var(--primary);
    box-shadow: 8px 8px 0px var(--primary);
}

.check-list {
    margin: 20px 0 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text);
    font-weight: 500;
}

.check-list li i {
    font-size: 1rem;
}

/* --- Process Grid --- */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.process-step {
    text-align: center;
    padding: 30px 20px;
    border: 2px solid rgba(255,255,255,0.15);
    transition: all var(--transition);
    position: relative;
}

.process-step:hover {
    border-color: var(--accent);
    background: rgba(0, 200, 83, 0.05);
}

.process-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 12px;
}

/* --- Industries Grid --- */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.industry-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px;
    background: var(--surface);
    border: 3px solid var(--primary);
    font-weight: 600;
    transition: all var(--transition);
    box-shadow: 3px 3px 0px rgba(0,0,0,0.1);
}

.industry-item:hover {
    transform: translateY(-3px);
    box-shadow: 5px 5px 0px rgba(0,0,0,0.15);
    border-color: var(--accent);
}

.industry-item i {
    font-size: 1.4rem;
}

/* --- Testimonials --- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.testimonial-card {
    background: rgba(255,255,255,0.06);
    border: 3px solid rgba(255,255,255,0.15);
    padding: 30px 24px;
    transition: all var(--transition);
    transform: rotate(var(--card-rotate, 0deg));
    position: relative;
}

.testimonial-card:hover {
    transform: rotate(0deg) translateY(-5px);
    border-color: var(--accent);
}

.testimonial-quote {
    font-size: 1.8rem;
    color: var(--accent);
    margin-bottom: 12px;
}

.testimonial-text {
    font-size: 0.95rem;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 20px;
}

.testimonial-author strong {
    display: block;
    font-size: 0.95rem;
    color: var(--white);
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--accent);
}

/* --- CTA Section --- */
.cta-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26,26,26,0.85);
    z-index: 2;
}

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

.cta-title {
    color: var(--white);
    margin-bottom: 16px;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
}

.cta-subtitle {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* --- Page Hero --- */
.page-hero {
    position: relative;
    padding: 160px 0 100px;
    overflow: hidden;
}

.page-hero-sm {
    padding: 140px 0 80px;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26,26,26,0.8);
    z-index: 2;
}

.page-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
}

.page-hero-title {
    color: var(--white);
    margin-bottom: 12px;
    font-size: clamp(3rem, 7vw, 5rem);
    text-shadow: 4px 4px 0px rgba(0,0,0,0.4);
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    font-weight: 500;
}

.breadcrumb a {
    color: var(--accent);
}

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

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

.stat-card {
    text-align: center;
    padding: 30px 20px;
    border: 2px solid rgba(255,255,255,0.15);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.6);
}

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

.value-card {
    background: var(--surface);
    border: 3px solid var(--primary);
    padding: 30px 24px;
    text-align: center;
    transition: all var(--transition);
    transform: rotate(var(--card-rotate, 0deg));
    box-shadow: 4px 4px 0px rgba(0,0,0,0.12);
}

.value-card:hover {
    transform: rotate(0deg) translateY(-5px);
    box-shadow: 6px 6px 0px rgba(0,0,0,0.18);
}

.value-icon {
    font-size: 2rem;
    margin-bottom: 16px;
}

.value-card h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.value-card p {
    font-size: 0.9rem;
}

/* --- Team --- */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.team-card {
    background: rgba(255,255,255,0.06);
    border: 4px solid var(--white);
    overflow: hidden;
    transition: all var(--transition);
    transform: rotate(var(--card-rotate, 0deg));
    box-shadow: 5px 5px 0px rgba(0,0,0,0.3);
}

.team-card:hover {
    transform: rotate(0deg) translateY(-6px);
    box-shadow: 8px 8px 0px rgba(0,0,0,0.35);
}

.team-img-wrap {
    aspect-ratio: 1/1;
    overflow: hidden;
}

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

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

.team-info {
    padding: 20px;
    border-top: 3px solid var(--white);
}

.team-info h3 {
    font-size: 1.15rem;
    color: var(--white);
    margin-bottom: 2px;
}

.team-info span {
    font-size: 0.85rem;
    font-weight: 600;
}

.team-info p {
    font-size: 0.85rem;
    margin-top: 8px;
    color: rgba(255,255,255,0.6);
}

/* --- Pricing --- */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: start;
}

.pricing-card {
    background: var(--surface);
    border: 3px solid var(--primary);
    overflow: hidden;
    transition: all var(--transition);
    transform: rotate(var(--card-rotate, 0deg));
    box-shadow: 5px 5px 0px rgba(0,0,0,0.12);
    position: relative;
    /* Torn-edge look */
    clip-path: polygon(
        0% 1%, 2% 0%, 5% 2%, 8% 0%, 12% 1%, 15% 0%, 18% 2%, 22% 0%,
        25% 1%, 30% 0%, 35% 2%, 40% 0%, 45% 1%, 50% 0%, 55% 2%, 60% 0%,
        65% 1%, 70% 0%, 75% 2%, 80% 0%, 85% 1%, 90% 0%, 95% 2%, 98% 0%, 100% 1%,
        100% 98%, 98% 100%, 95% 98%, 92% 100%, 88% 98%, 85% 100%, 82% 98%,
        78% 100%, 75% 98%, 70% 100%, 65% 98%, 60% 100%, 55% 98%, 50% 100%,
        45% 98%, 40% 100%, 35% 98%, 30% 100%, 25% 98%, 20% 100%, 15% 98%,
        10% 100%, 5% 98%, 2% 100%, 0% 98%
    );
}

.pricing-card:hover {
    transform: rotate(0deg) translateY(-8px);
    box-shadow: 8px 8px 0px rgba(0,0,0,0.18);
}

.pricing-featured {
    border-color: var(--accent);
    box-shadow: 6px 6px 0px var(--accent);
    z-index: 2;
    transform: rotate(var(--card-rotate, 0deg)) scale(1.05);
}

.pricing-featured:hover {
    transform: rotate(0deg) scale(1.05) translateY(-8px);
}

.pricing-badge {
    background: var(--accent);
    color: var(--primary);
    text-align: center;
    padding: 8px;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-bottom: 3px solid var(--primary);
}

.pricing-header {
    padding: 30px 24px 20px;
    text-align: center;
    border-bottom: 2px dashed var(--border);
}

.pricing-name {
    font-size: 1.6rem;
    margin-bottom: 12px;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 6px;
    margin-bottom: 4px;
}

.pricing-currency {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-light);
}

.pricing-amount {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
}

.pricing-period {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 8px;
}

.pricing-desc {
    font-size: 0.9rem;
}

.pricing-features {
    padding: 20px 24px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--text);
    border-bottom: 1px solid var(--border);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li i {
    font-size: 0.85rem;
    color: var(--accent);
}

.pricing-footer {
    padding: 16px 24px 28px;
}

/* --- Events --- */
.events-month-nav {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 20px;
}

.month-btn {
    padding: 8px 18px;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    background: var(--surface);
    color: var(--primary);
    border: 2px solid var(--primary);
    cursor: pointer;
    transition: all var(--transition);
    box-shadow: 2px 2px 0px var(--primary);
}

.month-btn:hover,
.month-btn.active {
    background: var(--accent);
    color: var(--primary);
    box-shadow: 3px 3px 0px var(--primary);
}

.events-filters {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 30px;
}

.filter-btn {
    padding: 8px 18px;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--border);
    cursor: pointer;
    transition: all var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

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

.event-card {
    background: var(--surface);
    border: 3px solid var(--primary);
    padding: 24px;
    cursor: pointer;
    transition: all var(--transition);
    box-shadow: 4px 4px 0px rgba(0,0,0,0.1);
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 6px 6px 0px rgba(0,0,0,0.15);
    border-color: var(--accent);
}

.event-date {
    font-size: 0.8rem;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.event-card h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.event-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 12px;
    font-size: 0.85rem;
    color: var(--text-light);
}

.event-meta i {
    margin-right: 6px;
    color: var(--accent);
}

.event-category-tag {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 4px 12px;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.events-empty {
    text-align: center;
    padding: 60px 20px;
}

.events-empty i {
    font-size: 3rem;
    color: var(--border);
    margin-bottom: 16px;
}

/* --- Modal --- */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(26,26,26,0.8);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--surface);
    border: 4px solid var(--primary);
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 8px 8px 0px var(--primary);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    background: var(--secondary);
    color: var(--white);
    border: 2px solid var(--primary);
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    z-index: 2;
}

.modal-close:hover {
    background: var(--primary);
    transform: rotate(90deg);
}

.modal-body {
    padding: 30px;
}

.modal-badge {
    display: inline-block;
    background: var(--accent);
    color: var(--primary);
    padding: 4px 14px;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border: 2px solid var(--primary);
    margin-bottom: 12px;
}

.modal-title {
    font-size: 1.8rem;
    margin-bottom: 16px;
}

.modal-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.modal-meta i {
    color: var(--accent);
    margin-right: 8px;
}

.modal-desc {
    margin-bottom: 20px;
    line-height: 1.7;
}

.modal-details {
    border-top: 2px solid var(--border);
    padding-top: 16px;
    margin-bottom: 20px;
}

.modal-detail-item {
    padding: 6px 0;
    font-size: 0.9rem;
}

.modal-detail-item strong {
    margin-right: 6px;
    color: var(--primary);
}

/* --- Contact --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
}

.contact-form {
    margin-top: 20px;
}

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

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 6px;
    letter-spacing: 0.05em;
}

.required { color: var(--secondary); }

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text);
    background: var(--surface);
    border: 3px solid var(--primary);
    transition: all var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 3px 3px 0px var(--accent);
}

.form-error {
    display: none;
    color: var(--secondary);
    font-size: 0.8rem;
    margin-top: 4px;
    font-weight: 600;
}

.form-group.error .form-error,
.form-checkbox.error .form-error {
    display: block;
}

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

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px;
}

.form-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 3px;
    accent-color: var(--accent);
}

.form-checkbox label {
    font-size: 0.85rem;
    font-weight: 400;
    text-transform: none;
    color: var(--text-light);
}

.form-success {
    text-align: center;
    padding: 30px;
    border: 3px solid var(--accent);
    background: rgba(0, 200, 83, 0.05);
}

.form-success i {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 12px;
}

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

.contact-info-card {
    background: var(--surface);
    border: 3px solid var(--primary);
    padding: 24px;
    box-shadow: 4px 4px 0px rgba(0,0,0,0.1);
}

.contact-info-card h3 {
    font-size: 1.2rem;
    margin-bottom: 16px;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-info-list li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.contact-info-list li i {
    font-size: 1.1rem;
    margin-top: 3px;
}

.contact-info-list li strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    text-transform: uppercase;
    color: var(--primary);
}

.contact-info-list li p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

.contact-social {
    display: flex;
    gap: 12px;
}

.contact-social a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: var(--white);
    font-size: 1rem;
    border: 2px solid var(--primary);
    transition: all var(--transition);
}

.contact-social a:hover {
    background: var(--accent);
    color: var(--primary);
}

.contact-map {
    border: 3px solid var(--primary);
    overflow: hidden;
    box-shadow: 4px 4px 0px rgba(0,0,0,0.1);
}

/* --- FAQ --- */
.faq-wrapper {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
    align-items: start;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    border: 3px solid var(--primary);
    background: var(--surface);
    overflow: hidden;
    transition: all var(--transition);
    box-shadow: 3px 3px 0px rgba(0,0,0,0.08);
}

.faq-item.active {
    border-color: var(--accent);
    box-shadow: 4px 4px 0px var(--accent);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary);
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    gap: 12px;
}

.faq-question i {
    font-size: 0.9rem;
    color: var(--accent);
    transition: transform var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer p {
    padding: 0 20px 18px;
    font-size: 0.95rem;
    line-height: 1.7;
}

.faq-sidebar {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-sidebar-card {
    background: var(--surface);
    border: 3px solid var(--primary);
    padding: 24px;
    box-shadow: 4px 4px 0px rgba(0,0,0,0.1);
}

.faq-sidebar-card h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.faq-sidebar-card p {
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.faq-sidebar-card p i {
    margin-right: 8px;
}

/* --- Error Page --- */
.error-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: var(--bg);
}

.error-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.error-code {
    font-family: var(--font-heading);
    font-size: clamp(8rem, 20vw, 14rem);
    font-weight: 900;
    line-height: 1;
    color: var(--primary);
    margin-bottom: 10px;
    text-shadow: 6px 6px 0px var(--accent), -3px -3px 0px var(--secondary);
}

.error-title {
    font-size: 2rem;
    margin-bottom: 16px;
}

.error-text {
    max-width: 500px;
    margin: 0 auto 30px;
    font-size: 1rem;
}

.error-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* --- Legal Content --- */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h2 {
    font-size: 1.5rem;
    margin: 30px 0 12px;
    padding-bottom: 8px;
    border-bottom: 3px solid var(--accent);
}

.legal-content h3 {
    font-size: 1.15rem;
    margin: 20px 0 8px;
}

.legal-content p,
.legal-content li {
    font-size: 0.95rem;
    line-height: 1.8;
}

.legal-content ul {
    list-style: disc;
    padding-left: 24px;
    margin-bottom: 16px;
}

.legal-content ul li {
    margin-bottom: 6px;
}

.legal-updated {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 30px;
    padding: 10px 16px;
    border-left: 4px solid var(--accent);
    background: rgba(0, 200, 83, 0.05);
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0 24px;
    font-size: 0.9rem;
    border: 2px solid var(--primary);
}

.legal-table th,
.legal-table td {
    padding: 10px 14px;
    text-align: left;
    border: 1px solid var(--border);
}

.legal-table th {
    background: var(--primary);
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.85rem;
}

.legal-table td {
    background: var(--surface);
}

/* --- Footer --- */
.footer {
    background: var(--primary);
    padding: 70px 0 30px;
    position: relative;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand {
    display: inline-block;
    margin-bottom: 16px;
}

.footer-brand .brand-pulse {
    text-shadow: 3px 3px 0px var(--accent);
}

.footer-desc {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 16px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    transition: all var(--transition);
}

.footer-social a:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(0, 200, 83, 0.1);
}

.footer-heading {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--accent);
    display: inline-block;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    transition: all var(--transition);
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 6px;
}

.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    align-items: flex-start;
}

.footer-contact li i {
    color: var(--accent);
    margin-top: 4px;
}

.footer-contact li a {
    color: rgba(255,255,255,0.6);
}

.footer-contact li a:hover {
    color: var(--accent);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
    margin-bottom: 0;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
}

.footer-legal a:hover {
    color: var(--accent);
}

/* --- Back to Top --- */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--accent);
    color: var(--primary);
    border: 3px solid var(--primary);
    font-size: 1.1rem;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 3px 3px 0px var(--primary);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 5px 5px 0px var(--primary);
}

/* --- Cookie Banner --- */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1500;
    background: var(--primary);
    border-top: 3px solid var(--accent);
    padding: 16px 20px;
    transform: translateY(100%);
    transition: transform 0.5s ease;
}

.cookie-banner.visible {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-content p {
    color: rgba(255,255,255,0.8);
    font-size: 0.85rem;
    margin-bottom: 0;
}

.cookie-content p a {
    color: var(--accent);
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 10px;
}

/* ===================================================
   RESPONSIVE
   =================================================== */

@media (max-width: 1024px) {
    .models-grid { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .industries-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .hamburger { display: flex; }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 360px;
        height: 100vh;
        background: var(--bg);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 30px 30px;
        gap: 0;
        transition: right 0.4s ease;
        z-index: 1100;
        border-left: 4px solid var(--primary);
        box-shadow: -10px 0 30px rgba(0,0,0,0.2);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-link {
        font-size: 1.3rem;
        padding: 12px 0;
        width: 100%;
        border-bottom: 2px solid var(--border);
    }

    .nav-link::after { display: none; }

    .nav-cta {
        margin-left: 0;
        margin-top: 16px;
    }

    .split-content { grid-template-columns: 1fr; gap: 30px; }
    .pricing-grid { grid-template-columns: 1fr; }
    .pricing-card { transform: rotate(0deg) !important; clip-path: none; }
    .pricing-featured { transform: scale(1) !important; }
    .contact-grid { grid-template-columns: 1fr; }
    .faq-wrapper { grid-template-columns: 1fr; }
    .events-grid { grid-template-columns: repeat(2, 1fr); }
    .models-grid { grid-template-columns: repeat(2, 1fr); }

    .hero-content { padding: 100px 0 80px; }
    .hero-title { font-size: clamp(2.8rem, 8vw, 4.5rem); }

    .top-bar-left { display: none; }

    .service-detail-card { flex-direction: column; gap: 16px; }
    .service-detail-number { width: 60px; height: 60px; }
    .graffiti-number { font-size: 2.2rem; }

    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .footer-legal { flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 480px) {
    .models-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: 1fr; }
    .process-grid { grid-template-columns: 1fr; }
    .industries-grid { grid-template-columns: 1fr; }
    .events-grid { grid-template-columns: 1fr; }

    .hero-stats { flex-direction: column; gap: 16px; }
    .hero-actions { flex-direction: column; }
    .cta-actions { flex-direction: column; }
    .error-actions { flex-direction: column; }
    .form-row { grid-template-columns: 1fr; }

    .model-card { transform: rotate(0deg) !important; }
    .testimonial-card { transform: rotate(0deg) !important; }
    .value-card { transform: rotate(0deg) !important; }
    .team-card { transform: rotate(0deg) !important; }

    .section { padding: 60px 0; }
    .page-hero { padding: 130px 0 70px; }
}

/* Breadcrumbs */
.breadcrumbs { padding: 80px 0 12px 0; font-size: 0.85rem; opacity: 0.7; }
.breadcrumbs-list { display: flex; list-style: none; margin: 0; padding: 0; gap: 8px; }
.breadcrumbs-list li:not(:last-child)::after { content: "/"; margin-left: 8px; opacity: 0.5; }
.breadcrumbs-list a { text-decoration: none; color: inherit; }
.breadcrumbs-list a:hover { text-decoration: underline; }
.breadcrumbs-list li[aria-current] { opacity: 0.6; }
