/* ============================================================
   MrWolf Digital — Stylesheet
   Aesthetic: Dark luxury agency. Black canvas, crimson accent.
   Inspired by the MR WOLF DIGITAL logo identity.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,900;1,700&family=Syne:wght@400;500;600;700;800&display=swap');

/* ── TOKENS ── */
:root {
    /* Core palette */
    --black:      #08080a;
    --black-2:    #111115;
    --black-3:    #1a1a20;
    --black-4:    #242428;
    --red:        #d42b2b;
    --red-bright: #ff3333;
    --red-dim:    #8b1a1a;
    --red-glow:   rgba(212, 43, 43, 0.15);
    --red-glow-2: rgba(212, 43, 43, 0.06);
    --white:      #f5f3f0;
    --white-dim:  rgba(245, 243, 240, 0.6);
    --white-faint:rgba(245, 243, 240, 0.12);
    --border:     rgba(245, 243, 240, 0.08);
    --border-red: rgba(212, 43, 43, 0.3);

    /* Typography */
    --display: 'Playfair Display', Georgia, serif;
    --sans:    'Syne', sans-serif;

    /* Spacing */
    --section-pad: 120px 72px;
    --radius:  12px;
    --radius-lg: 20px;

    /* Transitions */
    --t: .3s ease;
    --t-slow: .6s ease;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    background: var(--black);
    color: var(--white);
    font-family: var(--sans);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--red-dim); border-radius: 2px; }

/* ── SELECTION ── */
::selection { background: var(--red); color: var(--white); }

/* ── NOISE TEXTURE OVERLAY ── */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
    opacity: .4;
}

/* ══════════════════════════════════════
   NAV
══════════════════════════════════════ */
.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 72px; height: 76px;
    background: rgba(8, 8, 10, 0.9);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.nav-logo {
    font-family: var(--display);
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 2px;
}
.nav-logo em {
    color: var(--red);
    font-style: normal;
}

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

.nav-links a {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--white-dim);
    transition: color var(--t);
    position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 1px;
    background: var(--red);
    transition: width var(--t);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
    background: var(--red) !important;
    color: var(--white) !important;
    padding: 10px 24px !important;
    border-radius: 4px;
    font-weight: 700 !important;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 12px !important;
    transition: background var(--t), box-shadow var(--t) !important;
    box-shadow: 0 0 0 0 var(--red-glow);
}
.nav-cta:hover {
    background: var(--red-bright) !important;
    box-shadow: 0 0 24px var(--red-glow) !important;
}
.nav-cta::after { display: none !important; }

/* ══════════════════════════════════════
   WHATSAPP FLOAT
══════════════════════════════════════ */
.wa-float {
    position: fixed;
    bottom: 32px; right: 32px;
    z-index: 200;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: #fff;
    padding: 14px 22px 14px 18px;
    border-radius: 50px;
    font-family: var(--sans);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: .5px;
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.35);
    transition: all var(--t);
    animation: waPulse 3s ease-in-out infinite;
}
.wa-float svg { width: 20px; height: 20px; fill: #fff; flex-shrink: 0; }
.wa-float:hover {
    background: #1da851;
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(37, 211, 102, 0.5);
    animation: none;
}
@keyframes waPulse {
    0%,100% { box-shadow: 0 8px 32px rgba(37,211,102,0.35); }
    50%      { box-shadow: 0 8px 40px rgba(37,211,102,0.6), 0 0 0 8px rgba(37,211,102,0.08); }
}
@media(max-width: 600px) {
    .wa-float { padding: 16px; border-radius: 50%; }
    .wa-float span { display: none; }
}

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 76px 72px 0;
    position: relative;
    overflow: hidden;
}

/* Red grid lines background */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(212,43,43,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212,43,43,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

/* Red glow bottom-right */
.hero::after {
    content: '';
    position: absolute;
    bottom: -100px; right: -100px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(212,43,43,0.12) 0%, transparent 70%);
    pointer-events: none;
}

.hero-left {
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 32px;
    animation: fadeUp .7s ease both;
}
.hero-eyebrow::before {
    content: '';
    width: 32px; height: 1px;
    background: var(--red);
}

.hero-title {
    font-family: var(--display);
    font-size: clamp(56px, 6.5vw, 96px);
    font-weight: 900;
    line-height: .95;
    letter-spacing: -2px;
    color: var(--white);
    animation: fadeUp .7s .1s ease both;
}
.hero-title em {
    color: var(--red);
    font-style: italic;
    display: block;
}

.hero-sub {
    font-size: 17px;
    line-height: 1.85;
    color: var(--white-dim);
    max-width: 460px;
    margin-top: 28px;
    font-weight: 400;
    animation: fadeUp .7s .2s ease both;
}

.hero-actions {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-top: 48px;
    animation: fadeUp .7s .3s ease both;
}

.btn-primary {
    background: var(--red);
    color: var(--white);
    padding: 16px 32px;
    border-radius: 4px;
    font-family: var(--sans);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all var(--t);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 20px rgba(212,43,43,0.3);
}
.btn-primary:hover {
    background: var(--red-bright);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(212,43,43,0.5);
}

.btn-ghost {
    color: var(--white-dim);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color var(--t);
    border-bottom: 1px solid var(--white-faint);
    padding-bottom: 3px;
}
.btn-ghost:hover { color: var(--white); border-color: var(--white-dim); }

.hero-trust {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 56px;
    padding-top: 44px;
    border-top: 1px solid var(--border);
    animation: fadeUp .7s .4s ease both;
}
.trust-avs { display: flex; }
.trust-av {
    width: 34px; height: 34px;
    border-radius: 50%;
    border: 2px solid var(--black);
    background: var(--black-3);
    display: flex; align-items: center; justify-content: center;
    font-size: 12px; font-weight: 700;
    color: var(--red);
    margin-left: -8px;
}
.trust-av:first-child { margin-left: 0; }
.trust-copy { font-size: 13px; color: var(--white-dim); }
.trust-copy strong { color: var(--white); font-weight: 600; }

/* Hero right — dashboard card */
.hero-right {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0 80px;
    z-index: 1;
}
.hero-card-wrap { position: relative; width: 100%; max-width: 400px; }

.dashboard-card {
    background: var(--black-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: 0 24px 80px rgba(0,0,0,0.6), inset 0 1px 0 var(--white-faint);
}

.dc-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}
.dc-title { font-weight: 700; font-size: 14px; color: var(--white); }
.dc-live {
    display: flex; align-items: center; gap: 6px;
    font-size: 11px; font-weight: 700; letter-spacing: 1px;
    text-transform: uppercase; color: #22c55e;
}
.dc-live::before {
    content: '';
    width: 6px; height: 6px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse 2s ease infinite;
}

.dc-metric {
    background: var(--black-3);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    margin-bottom: 16px;
}
.dc-metric-label { font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--white-dim); margin-bottom: 8px; }
.dc-metric-val { font-family: var(--display); font-size: 40px; font-weight: 700; color: var(--white); line-height: 1; }
.dc-metric-val span { color: var(--red); }
.dc-metric-sub { font-size: 12px; color: var(--white-dim); margin-top: 6px; display: flex; align-items: center; gap: 6px; }
.dc-up { color: #22c55e; font-weight: 700; }

.dc-bar-group { margin-bottom: 16px; }
.dc-bar-label { display: flex; justify-content: space-between; font-size: 12px; color: var(--white-dim); margin-bottom: 8px; }
.dc-bar-label span:last-child { color: var(--white); font-weight: 600; }
.dc-bar-track { height: 6px; background: var(--black-4); border-radius: 100px; overflow: hidden; }
.dc-bar-fill { height: 100%; background: linear-gradient(90deg, var(--red-dim), var(--red)); border-radius: 100px; }

.dc-stats {
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}
.dc-stat-num { font-family: var(--display); font-size: 24px; color: var(--white); }
.dc-stat-num span { color: var(--red); }
.dc-stat-lbl { font-size: 11px; color: var(--white-dim); margin-top: 3px; letter-spacing: .5px; }

/* Floating tags */
.ftag {
    position: absolute;
    background: var(--black-2);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 600;
    color: var(--white);
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
    white-space: nowrap;
    animation: floatTag 4s ease-in-out infinite;
}
.ftag.t1 { top: 55px; right: -24px; animation-delay: 0s; }
.ftag.t2 { bottom: 90px; left: -28px; animation-delay: -2s; }
@keyframes floatTag {
    0%,100% { transform: translateY(0); }
    50%      { transform: translateY(-8px); }
}

/* ══════════════════════════════════════
   MARQUEE STRIP
══════════════════════════════════════ */
.strip {
    background: var(--red);
    padding: 13px 0;
    overflow: hidden;
    white-space: nowrap;
}
.strip-track {
    display: inline-flex;
    animation: marquee 18s linear infinite;
}
.strip-item {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    padding: 0 28px;
    display: flex;
    align-items: center;
    gap: 28px;
}
.strip-dot {
    width: 3px; height: 3px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
}

/* ══════════════════════════════════════
   SECTIONS — BASE
══════════════════════════════════════ */
.section { padding: var(--section-pad); position: relative; }

.sec-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 20px;
}
.sec-eyebrow::before {
    content: '';
    width: 28px; height: 1px;
    background: var(--red);
}

.sec-title {
    font-family: var(--display);
    font-size: clamp(40px, 4.5vw, 64px);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -1px;
    color: var(--white);
}
.sec-title em {
    color: var(--red);
    font-style: italic;
}

/* ══════════════════════════════════════
   NICHES
══════════════════════════════════════ */
.niches { background: var(--black-2); }

.niches-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 60px;
}

.niche-card {
    background: var(--black-3);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 52px 48px;
    position: relative;
    overflow: hidden;
    transition: border-color var(--t), transform var(--t);
    cursor: default;
}
.niche-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--red), transparent);
    transform: scaleX(0);
    transition: transform .5s ease;
}
.niche-card::after {
    content: attr(data-num);
    position: absolute;
    bottom: -20px; right: 24px;
    font-family: var(--display);
    font-size: 120px;
    font-weight: 900;
    color: var(--red-glow-2);
    line-height: 1;
    pointer-events: none;
    transition: color var(--t);
}
.niche-card:hover { border-color: var(--border-red); transform: translateY(-4px); }
.niche-card:hover::before { transform: scaleX(1); }
.niche-card:hover::after { color: var(--red-glow); }

.niche-icon {
    width: 52px; height: 52px;
    background: var(--red-glow);
    border: 1px solid var(--border-red);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
    margin-bottom: 28px;
}
.niche-name {
    font-family: var(--display);
    font-size: 36px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.05;
}
.niche-desc {
    font-size: 15px;
    line-height: 1.85;
    color: var(--white-dim);
}
.niche-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 28px;
    padding: 7px 16px;
    background: var(--red-glow);
    border: 1px solid var(--border-red);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .5px;
    color: var(--red-bright);
}

/* ══════════════════════════════════════
   SERVICES
══════════════════════════════════════ */
.services { background: var(--black); }

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

.svc-card {
    background: var(--black-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 30px;
    transition: all var(--t);
    position: relative;
    overflow: hidden;
}
.svc-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: var(--red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--t);
}
.svc-card:hover {
    border-color: var(--border-red);
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}
.svc-card:hover::before { transform: scaleX(1); }

.svc-icon {
    width: 44px; height: 44px;
    background: var(--red-glow);
    border: 1px solid var(--border-red);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
    margin-bottom: 20px;
}
.svc-name {
    font-weight: 700;
    font-size: 16px;
    color: var(--white);
    margin-bottom: 10px;
    letter-spacing: .3px;
}
.svc-desc {
    font-size: 14px;
    line-height: 1.75;
    color: var(--white-dim);
}

/* ══════════════════════════════════════
   PRICING
══════════════════════════════════════ */
.pricing { background: var(--black-2); }

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 60px;
    align-items: start;
}

.price-card {
    background: var(--black-3);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px 36px;
    transition: box-shadow var(--t);
}
.price-card:hover { box-shadow: 0 20px 60px rgba(0,0,0,0.5); }

.price-card.featured {
    background: var(--red);
    border-color: var(--red);
    transform: scale(1.04);
    box-shadow: 0 24px 60px rgba(212,43,43,0.4);
    position: relative;
    overflow: hidden;
}
.price-card.featured::before {
    content: 'MOST POPULAR';
    position: absolute;
    top: 20px; right: -30px;
    background: var(--black);
    color: var(--red-bright);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 2px;
    padding: 5px 40px;
    transform: rotate(45deg);
}
.price-card.featured .price-tag,
.price-card.featured .price-period,
.price-card.featured .price-feats li,
.price-card.featured .feat-check { color: rgba(255,255,255,0.8); }
.price-card.featured .price-amount { color: #fff; }
.price-card.featured .price-divider { background: rgba(255,255,255,0.15); }

.price-tag {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--white-dim);
    margin-bottom: 20px;
}
.price-amount {
    font-family: var(--display);
    font-size: 60px;
    font-weight: 900;
    line-height: 1;
    color: var(--white);
}
.price-amount sup {
    font-family: var(--sans);
    font-size: 24px;
    font-weight: 600;
    vertical-align: super;
}
.price-period { font-size: 13px; color: var(--white-dim); margin-top: 6px; margin-bottom: 28px; }
.price-divider { height: 1px; background: var(--border); margin-bottom: 24px; }
.price-feats { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.price-feats li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--white-dim); }
.feat-check { color: var(--red); font-weight: 800; font-size: 14px; flex-shrink: 0; margin-top: 1px; }

.price-btn {
    display: block;
    text-align: center;
    padding: 14px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all var(--t);
    text-decoration: none;
}
.price-btn-outline {
    border: 1px solid var(--border-red);
    color: var(--red-bright);
}
.price-btn-outline:hover {
    background: var(--red-glow);
    border-color: var(--red);
}
.price-btn-dark {
    background: var(--black);
    color: var(--red-bright);
}
.price-btn-dark:hover { background: var(--black-3); }

.price-note {
    text-align: center;
    color: var(--white-dim);
    font-size: 13px;
    margin-top: 24px;
}

/* ══════════════════════════════════════
   PROCESS
══════════════════════════════════════ */
.process { background: var(--black); }

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 72px;
    position: relative;
}
.process-grid::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 12.5%; right: 12.5%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-red), var(--border-red), transparent);
}

.proc-step { padding: 0 28px; text-align: center; }
.proc-num {
    width: 56px; height: 56px;
    background: var(--black-2);
    border: 1px solid var(--border-red);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--display);
    font-size: 20px;
    font-weight: 700;
    color: var(--red);
    margin: 0 auto 28px;
    position: relative; z-index: 1;
    transition: all var(--t);
}
.proc-step:hover .proc-num {
    background: var(--red);
    color: var(--white);
    box-shadow: 0 0 20px var(--red-glow);
}
.proc-title { font-weight: 700; font-size: 16px; color: var(--white); margin-bottom: 10px; }
.proc-desc { font-size: 13px; color: var(--white-dim); line-height: 1.75; }

/* ══════════════════════════════════════
   CONTACT
══════════════════════════════════════ */
.contact { background: var(--black-2); }

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

.contact-left .sec-title { margin-bottom: 20px; }
.contact-left p { font-size: 16px; line-height: 1.85; color: var(--white-dim); margin-bottom: 40px; }

.contact-link {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    font-size: 15px;
    color: var(--white-dim);
    transition: color var(--t);
    text-decoration: none;
}
.contact-link:hover { color: var(--white); }
.cl-icon {
    width: 44px; height: 44px;
    background: var(--red-glow);
    border: 1px solid var(--border-red);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    transition: background var(--t);
}
.contact-link:hover .cl-icon { background: var(--red); }

/* Form */
.contact-form {
    background: var(--black-3);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 44px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    box-shadow: 0 32px 80px rgba(0,0,0,0.4);
}

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

.form-grp { display: flex; flex-direction: column; gap: 7px; }
.form-grp label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--white-dim);
}
.form-grp input,
.form-grp select,
.form-grp textarea {
    background: var(--black-2);
    border: 1px solid var(--border);
    color: var(--white);
    padding: 13px 16px;
    font-family: var(--sans);
    font-size: 15px;
    border-radius: 8px;
    outline: none;
    transition: border-color var(--t), background var(--t);
    appearance: none;
    -webkit-appearance: none;
}
.form-grp select option { background: var(--black-2); }
.form-grp input:focus,
.form-grp select:focus,
.form-grp textarea:focus {
    border-color: var(--red);
    background: var(--black);
}
.form-grp input::placeholder,
.form-grp textarea::placeholder { color: var(--white-faint); }
.form-grp textarea { resize: vertical; min-height: 120px; }

.form-msg {
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
}
.form-msg.success { background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.3); color: #4ade80; }
.form-msg.error   { background: rgba(212,43,43,0.1); border: 1px solid var(--border-red); color: var(--red-bright); }

.form-submit {
    background: var(--red);
    color: var(--white);
    padding: 16px;
    border-radius: 6px;
    font-family: var(--sans);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    width: 100%;
    transition: all var(--t);
    box-shadow: 0 4px 20px rgba(212,43,43,0.3);
    margin-top: 4px;
}
.form-submit:hover {
    background: var(--red-bright);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(212,43,43,0.5);
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.footer {
    background: var(--black);
    border-top: 1px solid var(--border);
    padding: 40px 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-logo {
    font-family: var(--display);
    font-size: 18px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
}
.footer-logo em { color: var(--red); font-style: normal; }

.footer-copy { font-size: 13px; color: var(--white-dim); }

.footer-links {
    display: flex; gap: 28px; list-style: none;
}
.footer-links a {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--white-dim);
    transition: color var(--t);
}
.footer-links a:hover { color: var(--red); }

/* ══════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════ */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: none; }
}
@keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
@keyframes pulse {
    0%,100% { opacity: 1; transform: scale(1); }
    50%      { opacity: .5; transform: scale(.7); }
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .8s ease, transform .8s ease;
}
.reveal.on {
    opacity: 1;
    transform: none;
}

/* ══════════════════════════════════════
   MOBILE
══════════════════════════════════════ */
@media(max-width: 1024px) {
    :root { --section-pad: 80px 32px; }
    .nav { padding: 0 24px; }
    .nav-links { display: none; }
    .hero { grid-template-columns: 1fr; padding: 100px 32px 60px; }
    .hero-right { display: none; }
    .niches-grid,
    .services-grid,
    .pricing-grid,
    .process-grid,
    .contact-grid { grid-template-columns: 1fr; }
    .price-card.featured { transform: none; }
    .process-grid::before { display: none; }
    .footer { flex-direction: column; gap: 20px; text-align: center; padding: 32px 24px; }
    .footer-links { justify-content: center; }
    .form-row { grid-template-columns: 1fr; }
}
