/* ============================================
   STUNSLOW MEDIA - Main Stylesheet
   ============================================ */

/* --- CSS VARIABLES --- */
:root {
    --bg-void: #02040a;
    --bg-panel: #0a0f1a;
    --bg-card: #0d1322;
    --bg-card-hover: #111827;
    --primary: #3b82f6;
    --primary-dark: #2563eb;
    --primary-glow: rgba(59, 130, 246, 0.4);
    --accent: #8b5cf6;
    --cyan: #06b6d4;
    --green: #22c55e;
    --text-white: #ffffff;
    --text-gray: #94a3b8;
    --text-muted: #64748b;
    --border-subtle: rgba(255,255,255,0.06);
    --border-light: rgba(255,255,255,0.1);
    --card-radius: 16px;
    --font-heading: 'Orbitron', system-ui, sans-serif;
    --font-body: 'Inter', system-ui, sans-serif;
    --transition: all 0.3s ease;
}

/* --- RESET & BASE --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
    overflow-x: hidden;
}

html.menu-open,
html.menu-open body {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
}

body {
    background-color: var(--bg-void);
    font-family: var(--font-body);
    color: var(--text-white);
    overflow-x: hidden;
    line-height: 1.6;
    min-height: 100vh;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    list-style: none;
}

/* --- BACKGROUND EFFECTS --- */
.bg-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    z-index: 0;
}

/* Subtle corner accents - very soft color wash */
.bg-glow {
    position: fixed;
    pointer-events: none;
    z-index: 0;
}

.bg-glow-1 {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse 80% 50% at 0% 0%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 100% 0%, rgba(139, 92, 246, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse 50% 50% at 0% 100%, rgba(6, 182, 212, 0.05) 0%, transparent 50%);
}

.bg-glow-2,
.bg-glow-3 {
    display: none;
}

/* --- LAYOUT --- */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
    width: 100%;
}

.container-sm {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.section {
    padding: 100px 0;
}

.section-sm {
    padding: 60px 0;
}

/* --- ANIMATIONS --- */
@keyframes borderRotate {
    100% { transform: rotate(360deg); }
}

@keyframes float-tech {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes funnel-spin {
    0% { transform: perspective(1000px) rotateX(60deg) rotateZ(0deg); }
    100% { transform: perspective(1000px) rotateX(60deg) rotateZ(360deg); }
}

@keyframes rise {
    0% { opacity: 0; transform: translateY(0) scale(0.5); }
    50% { opacity: 1; }
    100% { opacity: 0; transform: translateY(-150px) scale(1); }
}

@keyframes spin-flat {
    from { transform: translateX(-50%) rotateX(75deg) rotate(0deg); }
    to { transform: translateX(-50%) rotateX(75deg) rotate(360deg); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
    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; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* --- HEADER --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(2, 4, 10, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
    padding: 14px 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo styles */
.logo {
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.logo:hover {
    opacity: 0.8;
}

.logo-img {
    height: 16px;
    width: auto;
}

.nav {
    display: flex;
    gap: 8px;
    align-items: center;
}

.nav-link {
    color: var(--text-gray);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 10px 16px;
    border-radius: 8px;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-white);
    background: rgba(255,255,255,0.05);
}

.nav-cta {
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: var(--text-white);
    font-weight: 600;
    margin-left: 8px;
}

.nav-cta:hover {
    background: rgba(59, 130, 246, 0.25);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
}

/* Mobile menu button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: var(--transition);
    z-index: 1001;
}

.mobile-menu-btn:hover {
    background: rgba(255,255,255,0.05);
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--text-white);
    transition: var(--transition);
    border-radius: 2px;
}

/* Mobile nav */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(2, 4, 10, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.mobile-nav.active {
    display: flex;
}

/* Transform hamburger to X when menu is open */
.menu-open .mobile-menu-btn {
    z-index: 1001;
}

.menu-open .mobile-menu-btn span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-open .mobile-menu-btn span:nth-child(2) {
    opacity: 0;
}

.menu-open .mobile-menu-btn span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Hide separate close button */
.mobile-close {
    display: none;
}

.mobile-nav a {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-white);
    padding: 12px 24px;
    border-radius: 12px;
    transition: var(--transition);
}

.mobile-nav a:hover {
    color: var(--primary);
    background: rgba(59, 130, 246, 0.1);
}

.mobile-close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 2rem;
    cursor: pointer;
    padding: 8px;
    line-height: 1;
    z-index: 1000;
}

@media (max-width: 600px) {
    .mobile-close {
        top: 16px;
        right: 1.4rem;
    }
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 3px;
}

h1 {
    font-size: clamp(2rem, 5vw, 2.55rem);
    line-height: 1.2;
    letter-spacing: 0.08em;
}

h2 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    letter-spacing: 0.06em;
}

h3 {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    letter-spacing: 0.04em;
}

h4 {
    font-size: 1rem;
    letter-spacing: 2px;
}

p {
    color: var(--text-gray);
    line-height: 1.7;
}

.gradient-text {
    background: linear-gradient(135deg, #fff 20%, #a78bfa 50%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight-blue {
    color: var(--primary);
}

.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
.text-gray { color: var(--text-gray); }

/* --- BUTTONS --- */
.btn {
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-heading);
    padding: 16px 32px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    text-decoration: none;
}

.btn-sm {
    padding: 12px 24px;
    font-size: 0.8rem;
}

.btn-lg {
    padding: 18px 40px;
    font-size: 0.9rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(59, 130, 246, 0.5);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--border-light);
    color: var(--text-white);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

.btn-ghost {
    background: rgba(255,255,255,0.05);
    color: var(--text-white);
}

.btn-ghost:hover {
    background: rgba(255,255,255,0.1);
}

.btn-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* --- CARDS --- */
.card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--card-radius);
    padding: 32px;
    transition: var(--transition);
}

.card:hover {
    border-color: var(--border-light);
    transform: translateY(-4px);
}

/* Magic border cards */
.magic-card {
    background: rgba(11, 16, 33, 0.6);
    border-radius: var(--card-radius);
    position: relative;
    padding: 2px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(20px);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.magic-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.magic-card::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        from 0deg,
        transparent 0deg,
        transparent 60deg,
        var(--primary) 100deg,
        var(--cyan) 140deg,
        var(--accent) 180deg,
        transparent 220deg
    );
    animation: borderRotate 4s linear infinite;
    z-index: 0;
}

.card-inner {
    background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-panel) 100%);
    border-radius: 14px;
    padding: 1.2rem;
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Card variations */
.magic-card:nth-child(2)::before { animation-direction: reverse; filter: hue-rotate(20deg); }
.magic-card:nth-child(3)::before { filter: hue-rotate(40deg); animation-duration: 5s; }
.magic-card:nth-child(4)::before { animation-direction: reverse; filter: hue-rotate(60deg); animation-duration: 6s; }

/* --- ICON BOX --- */
.icon-box {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    flex-shrink: 0;
}

.icon-box svg {
    width: 24px;
    height: 24px;
    stroke: var(--primary);
    stroke-width: 2;
    fill: none;
}

.icon-box-sm {
    width: 40px;
    height: 40px;
}

.icon-box-sm svg {
    width: 20px;
    height: 20px;
}

.icon-box-lg {
    width: 64px;
    height: 64px;
}

.icon-box-lg svg {
    width: 28px;
    height: 28px;
}

/* --- SECTION HEADERS --- */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header p {
    margin-top: 16px;
    font-size: 1.1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-label {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 16px;
}

/* --- PAGE HERO --- */
.page-hero {
    padding: 160px 0 80px;
    text-align: center;
}

.page-hero h1 {
    margin-bottom: 20px;
}

.page-hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* --- AVAILABILITY BADGE --- */
.availability-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.85rem;
    color: #4ade80;
    margin-bottom: 24px;
}

.availability-dot {
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

/* --- FEATURE LIST --- */
.feature-list {
    margin-bottom: 24px;
    flex-grow: 1;
}

.feature-list li {
    margin-bottom: 12px;
    color: var(--text-gray);
    font-size: 0.9rem;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.feature-list li svg {
    width: 16px;
    height: 16px;
    stroke: var(--cyan);
    stroke-width: 2.5;
    flex-shrink: 0;
    margin-top: 4px;
}

/* --- GRIDS --- */
.grid {
    display: grid;
    gap: 24px;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* --- FORMS --- */
.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-white);
    margin-bottom: 8px;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 14px 18px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 10px;
    color: var(--text-white);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--text-muted);
}

.form-textarea {
    min-height: 150px;
    resize: vertical;
}

.form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 18px;
    padding-right: 48px;
}

/* --- FOOTER --- */
.footer {
    border-top: 1px solid var(--border-subtle);
    padding: 60px 0 40px;
    margin-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand p {
    margin-top: 16px;
    font-size: 0.9rem;
    max-width: 280px;
}

.footer-brand .logo-img {
    height: 16px;
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.footer-links a {
    display: block;
    color: var(--text-muted);
    font-size: 0.9rem;
    padding: 6px 0;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--text-white);
    padding-left: 4px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid var(--border-subtle);
}

.footer-copy {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    color: white;
}

.footer-social svg {
    width: 18px;
    height: 18px;
}

/* --- MESSENGER FLOAT --- */
.messenger-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #0084ff 0%, #00c6ff 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 20px rgba(0, 132, 255, 0.4);
    z-index: 900;
    transition: var(--transition);
    animation: bounce 2s infinite;
}

.messenger-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(0, 132, 255, 0.6);
    animation: none;
}

.messenger-float svg {
    width: 28px;
    height: 28px;
}

/* --- BRANDS LOGOS --- */
.brands-section {
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    padding: 50px 0;
}

.brands-label {
    text-align: center;
    margin-bottom: 28px;
    font-size: 0.8rem;
    letter-spacing: 3px;
    color: var(--text-muted);
    text-transform: uppercase;
}

.brands-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #334155;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition);
}

.brand-logo:hover {
    color: #64748b;
}

.brand-logo svg {
    width: 24px;
    height: 24px;
    opacity: 0.7;
}

/* --- TESTIMONIALS --- */
.testimonial-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    letter-spacing: 3px;
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
    margin: 0 auto;
}

.stars {
    color: #fbbf24;
    font-size: 1.1rem;
    letter-spacing: 4px;
}

.testimonial-quote {
    font-size: 1.2rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 24px;
}

.testimonial-name {
    font-weight: 600;
    color: var(--text-white);
}

.testimonial-role {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* --- FAQ --- */
.faq-item {
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--border-light);
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    background: var(--bg-card);
    border: none;
    color: var(--text-white);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: var(--transition);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.faq-question:hover {
    background: var(--bg-card-hover);
}

.faq-question svg {
    width: 20px;
    height: 20px;
    stroke: var(--text-muted);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.is-open .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.faq-item.is-open .faq-answer {
    max-height: 500px;
}

.faq-answer-inner {
    padding: 20px 24px 20px;
    color: var(--text-gray);
    line-height: 1.7;
}

/* --- PROCESS STEPS --- */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    position: relative;
}

.process-grid::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent), var(--cyan), var(--primary));
    opacity: 0.3;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-panel) 100%);
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    position: relative;
    z-index: 2;
    transition: var(--transition);
}

.process-step:hover .process-number {
    border-color: var(--primary);
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.3);
    transform: scale(1.1);
}

.process-step h4 {
    margin-bottom: 12px;
}

.process-step p {
    font-size: 0.9rem;
}

/* --- METRICS --- */
.metrics-grid {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.metric {
    text-align: center;
}

.metric-value {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--cyan) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.metric-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 4px;
}

/* --- TEAM --- */
.team-card {
    text-align: center;
}

.team-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: white;
    border: 4px solid var(--bg-panel);
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.2);
}

.team-card h4 {
    margin-bottom: 4px;
}

.team-card .role {
    color: var(--primary);
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.team-card p {
    font-size: 0.9rem;
}

/* --- PORTFOLIO --- */
.portfolio-card {
    position: relative;
    border-radius: var(--card-radius);
    overflow: hidden;
    aspect-ratio: 16/10;
    background: var(--bg-card);
}

.portfolio-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-card:hover .portfolio-image {
    transform: scale(1.05);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(2,4,10,0.95) 0%, rgba(2,4,10,0.5) 50%, transparent 100%);
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay h4 {
    margin-bottom: 8px;
}

.portfolio-overlay p {
    font-size: 0.9rem;
    margin-bottom: 16px;
}

/* --- RESPONSIVE --- */
@media (max-width: 1100px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .process-grid::before { display: none; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
    .nav { display: none; }
    .mobile-menu-btn { display: flex; }

    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .grid-2 { grid-template-columns: 1fr; }

    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-brand p { margin: 16px auto 0; }
    .footer-brand .logo { justify-content: center; }
    .footer-bottom { flex-direction: column; gap: 16px; }

    .metrics-grid { gap: 32px; }
    .metric-value { font-size: 2rem; }

    h1 { font-size: 1.3rem; }
    h2 { font-size: 1.2rem; }
}

@media (max-width: 600px) {
    .container {
        padding: 0 1.4rem;
    }

    .testimonial-quote {
        font-size: 1rem;
    }

    .metric-value {
        font-size: 1.5rem;
    }

    .metric-label {
        font-size: 0.8rem;
    }

    .section { padding: 60px 0; }
    .page-hero { padding: 120px 0 60px; }

    .grid-4, .grid-3 { grid-template-columns: 1fr; }
    .process-grid { grid-template-columns: 1fr; gap: 24px; }

    .btn { width: 100%; }
    .btn-group { flex-direction: column; }

    .brands-grid { gap: 24px; }

    .messenger-float {
        width: 54px;
        height: 54px;
        bottom: 16px;
        right: 16px;
    }

    .messenger-float svg {
        width: 24px;
        height: 24px;
    }

    .logo-img {
        height: 12px;
    }

    .header {
        padding: 16px 0;
    }

    .header.scrolled {
        padding: 12px 0;
    }
}

/* Utility classes */
.mt-40 { margin-top: 40px; }
.mb-24 { margin-bottom: 24px; }

/* CTA section paragraph */
.cta-text {
    max-width: 500px;
    margin: 16px auto 32px;
}

/* Centered button group */
.btn-group-center {
    justify-content: center;
    margin-top: 32px;
}

/* Full width button */
.btn-full {
    width: 100%;
}

/* Testimonial metrics with border */
.testimonial-metrics {
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--border-subtle);
}

/* Small icon in button */
.btn-icon {
    width: 18px;
    height: 18px;
}

/* Note/disclaimer text */
.note-text {
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-muted);
}
