/* ==========================================================================
   MARROW CREATIVE PRESET PREMIUM CORE UI ENGINE
   ========================================================================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    scroll-behavior: smooth;
}
body {
    background-color: #060608;
    color: #E5E7EB;
    line-height: 1.65;
    overflow-x: hidden;
    letter-spacing: -0.1px;
    opacity: 0;
    animation: bodyFadeIn 0.6s ease forwards;
}
@keyframes bodyFadeIn { to { opacity: 1; } }

/* Accessibility: skip link, visible only on keyboard focus */
.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    background: #FF541E;
    color: #FFF;
    padding: 14px 24px;
    z-index: 2000;
    text-decoration: none;
    font-weight: 700;
    border-radius: 0 0 6px 0;
}
.skip-link:focus { left: 0; }

/* Navigation */
header {
    padding: 24px 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    background-color: rgba(6, 6, 8, 0.85);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}
.logo-link { display: flex; align-items: center; text-decoration: none; }
.brand-logo-img { height: 40px; width: auto; object-fit: contain; transition: transform 0.3s ease; }
.logo-link:hover .brand-logo-img { transform: scale(1.05); }

nav a {
    position: relative;
    display: inline-block;
    color: #9CA3AF;
    text-decoration: none;
    margin-left: 40px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: color 0.2s ease, transform 0.2s ease;
    padding-bottom: 4px;
}
nav a::after {
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    width: 0; height: 2px;
    background-color: #FF541E;
    transition: width 0.3s ease;
}
nav a:hover { color: #FF541E; transform: scale(1.08); }
nav a:hover::after { width: 100%; }

/* Hamburger toggle - hidden on desktop */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}
.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: #FFF;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Section layout */
.section { padding: 160px 10%; }
.dark-bg { background-color: #0B0B0E !important; }
.section-title {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 70px;
    padding-left: 30px;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    color: #FFFFFF;
    line-height: 1.1;
    position: relative;
    opacity: 0;
    transition: opacity 0.5s ease 0.3s;
}
.section-title::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 6px;
    background-color: #FF541E;
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible .section-title { opacity: 1; }
.reveal.visible .section-title::before { transform: scaleY(1); }
.section-title-plain { padding-left: 0; }
.section-title-plain::before { display: none; }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(35px); transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Hero */
.hero { padding: 240px 10% 200px 10%; text-align: center; background: radial-gradient(circle at top, #14141A 0%, #060608 65%); position: relative; overflow: hidden; }
.hero::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 900px; height: 900px;
    background: radial-gradient(circle, rgba(255, 84, 30, 0.16) 0%, rgba(255, 84, 30, 0) 70%);
    transform: translate(-50%, -50%) scale(1);
    animation: heroGlow 12s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}
.hero > * { position: relative; z-index: 1; }
@keyframes heroGlow {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.7; }
    50% { transform: translate(-52%, -48%) scale(1.15); opacity: 1; }
}
.hero-badge {
    background: rgba(255, 84, 30, 0.1); color: #FF541E; display: inline-block; padding: 8px 16px;
    border-radius: 30px; font-size: 13px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
    margin-bottom: 35px; border: 1px solid rgba(255, 84, 30, 0.2);
    opacity: 0; animation: fadeInUp 0.8s ease forwards;
}
.hero h1 {
    font-size: 92px; font-weight: 900; letter-spacing: -3.5px; margin-bottom: 35px; line-height: 1.02;
    text-transform: uppercase; color: #FFFFFF;
    opacity: 0; animation: fadeInUp 0.8s ease forwards; animation-delay: 0.15s;
}
.accent-text { color: #FF541E; }
.hero p {
    font-size: 22px; color: #9CA3AF; max-width: 850px; margin: 0 auto 60px auto; line-height: 1.6;
    opacity: 0; animation: fadeInUp 0.8s ease forwards; animation-delay: 0.3s;
}
.hero-actions {
    display: flex; gap: 20px; justify-content: center; align-items: center;
    opacity: 0; animation: fadeInUp 0.8s ease forwards; animation-delay: 0.45s;
}
@keyframes fadeInUp { from { opacity: 0; transform: translateY(25px); } to { opacity: 1; transform: translateY(0); } }

/* Buttons */
.cta-btn {
    padding: 22px 45px; text-decoration: none; font-weight: 800; border-radius: 4px;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.2s ease, box-shadow 0.3s ease;
    letter-spacing: 1px; text-transform: uppercase; display: inline-block; font-size: 14px;
}
.cta-btn.primary {
    background-color: #FF541E; color: #FFFFFF;
    animation: pulseGlow 2.5s ease-in-out infinite;
}
.cta-btn.primary:hover { background-color: #E04310; transform: translateY(-3px) scale(1.03); animation: none; }
@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 0 rgba(255, 84, 30, 0.4); }
    70% { box-shadow: 0 0 0 14px rgba(255, 84, 30, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 84, 30, 0); }
}
.cta-btn.secondary { background-color: transparent; color: #FFFFFF; border: 1px solid rgba(255, 255, 255, 0.15); }
.cta-btn.secondary:hover { background-color: rgba(255, 255, 255, 0.05); border-color: #FFFFFF; transform: translateY(-3px) scale(1.03); }

/* Foundation cards */
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 40px; }
.card {
    background-color: #0B0B0E; padding: 60px 45px; border-radius: 6px; border: 1px solid #14141A;
    opacity: 0; transform: translateY(24px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.4s ease;
}
.reveal.visible .grid .card { opacity: 1; transform: translateY(0); }
.grid .card:nth-child(2) { transition-delay: 0.1s; }
.grid .card:nth-child(3) { transition-delay: 0.2s; }
.grid .card:nth-child(4) { transition-delay: 0.3s; }
.card:hover, .reveal.visible .grid .card:hover { border-color: rgba(255, 84, 30, 0.3); transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,0,0,0.35); }
.card-icon { font-size: 32px; display: inline-block; transition: transform 0.4s ease; }
.card:hover .card-icon { transform: scale(1.2) rotate(-5deg); }
.card h3 { margin-bottom: 20px; font-size: 24px; font-weight: 800; color: #FFFFFF; text-transform: uppercase; letter-spacing: -0.5px; }

/* Services stack */
.vertical-stack { display: flex; flex-direction: column; gap: 16px; max-width: 1200px; margin: 0 auto; }
.service-link { text-decoration: none; display: block; }
.stacked-row {
    background-color: #060608; padding: 45px 50px; border-radius: 6px; border: 1px solid #14141A;
    display: flex; justify-content: space-between; align-items: center;
    position: relative; overflow: hidden;
    opacity: 0; transform: translateY(24px);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible .vertical-stack .stacked-row { opacity: 1; transform: translateY(0); }
.vertical-stack > .service-link:nth-child(2) .stacked-row { transition-delay: 0.1s; }
.vertical-stack > .service-link:nth-child(3) .stacked-row { transition-delay: 0.2s; }
.vertical-stack > .service-link:nth-child(4) .stacked-row { transition-delay: 0.3s; }
.vertical-stack > .service-link:nth-child(5) .stacked-row { transition-delay: 0.4s; }
.vertical-stack > .service-link:nth-child(6) .stacked-row { transition-delay: 0.5s; }
.stacked-row::after {
    content: '';
    position: absolute; left: 0; bottom: 0;
    width: 100%; height: 2px;
    background-color: #FF541E;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.service-meta { display: flex; align-items: center; gap: 35px; }
.service-num { font-size: 16px; font-weight: 800; color: #374151; transition: color 0.3s ease; }
.stacked-row h3 { font-size: 26px; font-weight: 800; color: #FFFFFF; text-transform: uppercase; margin: 0; letter-spacing: -0.5px; }
.arrow-icon { font-size: 26px; color: #374151; transition: transform 0.3s ease, color 0.3s ease; }
.service-link:hover .stacked-row,
.reveal.visible .vertical-stack .service-link:hover .stacked-row { border-color: #FF541E; background-color: #0E0E12; transform: scale(1.008) translateX(4px); }
.service-link:hover .stacked-row::after { transform: scaleX(1); }
.service-link:hover .arrow-icon { color: #FF541E; transform: translateX(10px); }
.service-link:hover .service-num { color: #FF541E; }

/* Process steps */
.process-container { display: flex; flex-direction: column; gap: 30px; max-width: 1200px; margin: 0 auto; }
.process-step {
    background-color: #0B0B0E; border: 1px solid #14141A; padding: 50px; border-radius: 6px;
    display: flex; gap: 40px; align-items: flex-start;
    transition: border-color 0.3s ease, transform 0.3s ease;
}
.process-step:hover { border-color: rgba(255, 84, 30, 0.25); transform: translateX(6px); }
.step-number { font-size: 42px; font-weight: 900; color: #FF541E; line-height: 1; }

/* Standalone portfolio grid */
.portfolio-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(380px, 1fr)); gap: 40px; }
.portfolio-card { background: #060608; border-radius: 6px; overflow: hidden; border: 1px solid #14141A; transition: transform 0.3s ease, border-color 0.3s ease; }
.portfolio-card:hover { transform: translateY(-6px); border-color: rgba(255, 84, 30, 0.2); }
.portfolio-img-wrapper { width: 100%; height: 300px; background: #14141A; overflow: hidden; }
.portfolio-img-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.portfolio-card:hover .portfolio-img-wrapper img { transform: scale(1.08); }
.portfolio-details { padding: 35px; }
.portfolio-details h3 { font-size: 22px; text-transform: uppercase; color: #FFFFFF; margin-bottom: 12px; }

/* "Companies Trusting Us" grid on the homepage */
.portfolio-compact-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 25px; margin-top: 40px; }
.portfolio-compact-card {
    background: #0B0B0E; border: 1px solid #14141A; border-radius: 6px; overflow: hidden; display: flex; flex-direction: column; text-align: left;
    opacity: 0; transform: translateY(24px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s ease, border-color 0.3s ease;
}
.reveal.visible .portfolio-compact-grid .portfolio-compact-card { opacity: 1; transform: translateY(0); }
.portfolio-compact-grid .portfolio-compact-card:nth-child(2) { transition-delay: 0.1s; }
.portfolio-compact-grid .portfolio-compact-card:nth-child(3) { transition-delay: 0.2s; }
.portfolio-compact-grid .portfolio-compact-card:nth-child(4) { transition-delay: 0.3s; }
.portfolio-compact-grid .portfolio-compact-card:nth-child(5) { transition-delay: 0.4s; }
.portfolio-compact-grid .portfolio-compact-card:nth-child(6) { transition-delay: 0.5s; }
.portfolio-compact-grid .portfolio-compact-card:nth-child(n+7) { transition-delay: 0.6s; }
.portfolio-compact-card:hover,
.reveal.visible .portfolio-compact-grid .portfolio-compact-card:hover { transform: translateY(-6px); border-color: rgba(255, 84, 30, 0.3); }
.portfolio-compact-img-wrapper { width: 100%; height: 220px; background: #030304; display: flex; align-items: center; justify-content: center; overflow: hidden; padding: 12px; border-bottom: 1px solid #14141A; position: relative; }
.portfolio-compact-img-wrapper img { max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; border-radius: 4px; transition: transform 0.5s ease; }
.portfolio-compact-card:hover .portfolio-compact-img-wrapper img { transform: scale(1.12); }
.portfolio-compact-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(6, 6, 8, 0) 45%, rgba(6, 6, 8, 0.94) 100%);
    display: flex; align-items: flex-end; justify-content: center;
    padding: 16px;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}
.portfolio-compact-overlay span {
    color: #FFF; font-weight: 800; text-transform: uppercase; letter-spacing: 0.5px; font-size: 15px; text-align: center;
    transform: translateY(8px);
    transition: transform 0.4s ease;
}
.portfolio-compact-card:hover .portfolio-compact-overlay { opacity: 1; }
.portfolio-compact-card:hover .portfolio-compact-overlay span { transform: translateY(0); }
.portfolio-compact-details { padding: 20px; flex-grow: 1; display: flex; flex-direction: column; justify-content: space-between; }
.portfolio-compact-details h3 { font-size: 16px; font-weight: 800; text-transform: uppercase; color: #FFF; margin: 0 0 8px 0; letter-spacing: 0.5px; }
.portfolio-compact-details p { font-size: 14px; color: #9CA3AF; line-height: 1.6; margin: 0; }

/* Animated stats counters */
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; max-width: 1000px; margin: 0 auto; text-align: center; }
.stat-item { padding: 20px; }
.stat-number { font-size: 56px; font-weight: 900; color: #FF541E; line-height: 1; display: block; }
.stat-number.stat-landed { animation: statLand 0.5s cubic-bezier(0.34, 1.56, 0.64, 1); }
@keyframes statLand { 0% { transform: scale(1); } 45% { transform: scale(1.18); } 100% { transform: scale(1); } }
.stat-label { color: #9CA3AF; text-transform: uppercase; letter-spacing: 1px; font-size: 13px; margin-top: 12px; }

/* Testimonials */
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; max-width: 1200px; margin: 0 auto; }
.testimonial-card {
    background: #060608; border: 1px solid #14141A; border-radius: 8px; padding: 40px;
    opacity: 0; transform: translateY(24px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s ease, border-color 0.3s ease;
}
.reveal.visible .testimonial-grid .testimonial-card { opacity: 1; transform: translateY(0); }
.testimonial-grid .testimonial-card:nth-child(2) { transition-delay: 0.1s; }
.testimonial-grid .testimonial-card:nth-child(3) { transition-delay: 0.2s; }
.testimonial-card:hover,
.reveal.visible .testimonial-grid .testimonial-card:hover { transform: translateY(-6px); border-color: rgba(255, 84, 30, 0.3); }
.testimonial-stars { color: #FF541E; font-size: 16px; margin-bottom: 20px; letter-spacing: 3px; }
.testimonial-quote { color: #D1D5DB; font-size: 16px; line-height: 1.7; margin-bottom: 25px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 15px; }
.testimonial-avatar {
    width: 44px; height: 44px; border-radius: 50%; background: #FF541E; color: #FFF;
    display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 16px;
}
.testimonial-name { color: #FFF; font-weight: 700; font-size: 14px; }
.testimonial-role { color: #6B7280; font-size: 13px; }

/* Forms */
.form-container { max-width: 750px; margin: 0 auto; background: #060608; padding: 60px; border-radius: 6px; border: 1px solid #14141A; text-align: left; }
.form-row-split { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 700px) { .form-row-split { grid-template-columns: 1fr 1fr; } }
.form-group { margin-bottom: 30px; }
.form-group label { display: block; margin-bottom: 12px; font-size: 11px; color: #4B5563; text-transform: uppercase; letter-spacing: 1.5px; font-weight: 700; }
.form-group input, .form-group textarea {
    width: 100%; padding: 16px; background: #0B0B0E; border: 1px solid #14141A; color: #FFFFFF;
    border-radius: 4px; font-size: 16px; transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}
.form-group input:focus, .form-group textarea:focus { border-color: #FF541E; background-color: #060608; outline: none; box-shadow: 0 0 0 3px rgba(255, 84, 30, 0.15); }
.submit-btn { width: 100%; background: #FFFFFF; color: #060608; padding: 20px; border: none; font-weight: 800; border-radius: 4px; cursor: pointer; transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease; font-size: 14px; text-transform: uppercase; letter-spacing: 1px; }
.submit-btn:hover { background: #FF541E; color: #FFFFFF; transform: translateY(-2px) scale(1.02); }
.submit-btn:active { transform: translateY(0); }
.hp-field { position: absolute; left: -9999px; top: -9999px; }
.status-success { color: #10B981; background: #064E3B; padding: 12px; border-radius: 4px; margin-bottom: 20px; font-size: 14px; animation: fadeInUp 0.4s ease; }
.status-error { color: #EF4444; background: #451A03; padding: 12px; border-radius: 4px; margin-bottom: 20px; font-size: 14px; animation: fadeInUp 0.4s ease; }

/* Contact page sidebar cards */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 50px; max-width: 1200px; margin: 0 auto; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1.3fr; } }
.contact-card { background: #0B0B0E; border: 1px solid #14141A; border-radius: 6px; padding: 25px 30px; margin-bottom: 20px; }
.contact-card h4 { color: #FF541E; text-transform: uppercase; font-size: 12px; letter-spacing: 1.5px; margin-bottom: 10px; }
.contact-card p { color: #D1D5DB; font-size: 15px; }

/* WhatsApp float */
.whatsapp-float {
    position: fixed; bottom: 40px; right: 40px; background-color: #25D366; color: white; padding: 16px 28px;
    border-radius: 50px; text-decoration: none; font-weight: 700; font-size: 13px; letter-spacing: 1px;
    text-transform: uppercase; box-shadow: 0 12px 35px rgba(37, 211, 102, 0.25); z-index: 999;
    transition: transform 0.2s ease, background-color 0.2s ease; display: flex; align-items: center; gap: 10px;
    animation: floatBob 3s ease-in-out infinite;
}
.whatsapp-float:hover { transform: translateY(-4px) scale(1.03); background-color: #1EBE56; animation-play-state: paused; }
@keyframes floatBob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }

/* Page-load progress bar (index.php) */
.page-progress-bar {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 3px;
    transform-origin: left center;
    transform: scaleX(0);
    background: linear-gradient(90deg, #FF541E, #FF8A5C);
    z-index: 3000;
    transition: transform 0.3s ease, opacity 0.4s ease;
}
.page-progress-bar.done { opacity: 0; }

/* Back to top button */
.back-to-top {
    position: fixed;
    bottom: 40px;
    left: 40px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #14141A;
    border: 1px solid #1F1F24;
    color: #FFF;
    font-size: 18px;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease, background-color 0.2s ease;
}
.back-to-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.back-to-top:hover { background: #FF541E; }

/* Page hero (about.php, faq.php) */
.about-hero, .faq-hero { background: linear-gradient(180deg, #121216 0%, #0A0A0C 100%); padding: 120px 10% 80px 10%; text-align: left; }
.about-hero h1, .faq-hero h1 { font-size: 56px; font-weight: 900; text-transform: uppercase; letter-spacing: -1.5px; margin-bottom: 25px; color: #FFF; }
.about-hero h1 span, .faq-hero h1 span { color: #E63946; }
.about-hero p, .faq-hero p { font-size: 22px; color: #9CA3AF; max-width: 850px; line-height: 1.7; }

/* About page timeline */
.timeline-container { max-width: 900px; margin: 60px 0; }
.timeline-step { border-left: 2px solid #1F1F24; padding-left: 35px; position: relative; padding-bottom: 50px; }
.timeline-step::before { content: ''; position: absolute; left: -6px; top: 0; width: 10px; height: 10px; border-radius: 50%; background-color: #E63946; }
.timeline-step h3 { font-size: 22px; font-weight: 800; text-transform: uppercase; color: #FFF; margin-bottom: 10px; }
.timeline-step p { color: #9CA3AF; font-size: 16px; max-width: 750px; }

/* Services focus block */
.focus-block { background: linear-gradient(180deg, #121216 0%, #0A0A0C 100%); padding: 140px 10%; border-bottom: 1px solid #1F1F24; }
.back-btn { display: inline-flex; align-items: center; color: #9CA3AF; text-decoration: none; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 50px; transition: color 0.2s; }
.back-btn:hover { color: #E63946; }
.focus-title { font-size: 56px; font-weight: 900; color: #FFFFFF; margin-bottom: 40px; text-transform: uppercase; letter-spacing: -1px; line-height: 1.1; }
.focus-title span { color: #E63946; }
.focus-text h4 { color: #E63946; text-transform: uppercase; font-size: 13px; letter-spacing: 2px; margin-bottom: 15px; margin-top: 50px; font-weight: 800; }
.focus-text p { font-size: 20px; color: #D1D5DB; max-width: 900px; line-height: 1.7; }
.focus-cta { display: inline-block; font-size: 15px; margin-top: 50px; border: 2px solid #FFFFFF; padding: 18px 40px; border-radius: 4px; transition: all 0.3s; text-decoration: none; color: #0A0A0C; background: #FFFFFF; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; }
.focus-cta:hover { background: #E63946; border-color: #E63946; color: #FFFFFF; transform: translateY(-2px) scale(1.03); }
.price-card { background-color: #121216; padding: 60px 40px; border-radius: 8px; border: 1px solid #1F1F24; text-align: center; transition: transform 0.3s ease, border-color 0.3s ease; }
.price-card:hover { transform: translateY(-6px); }
.price-card.premium { border-color: #E63946; }
.price-headline { font-size: 26px; font-weight: 900; color: #FFFFFF; margin: 20px 0; text-transform: uppercase; }

/* FAQ accordion */
.faq-container { max-width: 900px; margin: 0 auto; display: flex; flex-direction: column; gap: 25px; }
.faq-item { background-color: #121216; border: 1px solid #1F1F24; border-radius: 8px; overflow: hidden; transition: border-color 0.3s ease, transform 0.3s ease; }
.faq-item:hover { border-color: rgba(255, 84, 30, 0.3); transform: translateX(4px); }
.faq-question {
    width: 100%;
    display: flex; align-items: center; justify-content: space-between; gap: 20px;
    background: none; border: none; margin: 0; cursor: pointer; text-align: left;
    padding: 35px 40px;
    font-family: inherit; color: inherit;
}
.faq-question-text { font-size: 22px; font-weight: 800; color: #FFF; text-transform: uppercase; letter-spacing: -0.5px; }
.faq-icon { position: relative; width: 20px; height: 20px; flex-shrink: 0; }
.faq-icon::before, .faq-icon::after {
    content: '';
    position: absolute; top: 50%; left: 50%;
    background-color: #FF541E;
    transform: translate(-50%, -50%);
}
.faq-icon::before { width: 16px; height: 2px; }
.faq-icon::after { width: 2px; height: 16px; transition: transform 0.3s ease; }
.faq-item.open .faq-icon::after { transform: translate(-50%, -50%) rotate(90deg) scale(0.001); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1); }
.faq-answer p { color: #9CA3AF; font-size: 16px; line-height: 1.6; padding: 0 40px 35px 40px; }

/* Privacy policy content */
.policy-content { max-width: 800px; margin: 0 auto; }
.policy-content h2 { color: #FFF; font-size: 22px; margin: 40px 0 15px 0; text-transform: uppercase; letter-spacing: -0.5px; }
.policy-content p, .policy-content li { color: #9CA3AF; font-size: 16px; line-height: 1.7; margin-bottom: 12px; }
.policy-content ul { padding-left: 20px; }

/* 404 page */
.error-code { font-size: 120px; font-weight: 900; color: #FF541E; line-height: 1; }
.error-heading { color: #FFF; font-size: 32px; text-transform: uppercase; margin: 20px 0; letter-spacing: -0.5px; }
.error-text { color: #9CA3AF; font-size: 18px; max-width: 500px; margin-bottom: 40px; }

/* Responsive */
@media (max-width: 900px) {
    .nav-toggle { display: flex; }
    nav#siteNav {
        position: fixed;
        top: 0; right: -100%;
        width: 75%;
        max-width: 320px;
        height: 100vh;
        background: #0B0B0E;
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 40px;
        gap: 28px;
        transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
        box-shadow: -20px 0 60px rgba(0,0,0,0.5);
        display: flex;
    }
    nav#siteNav.nav-open { right: 0; }
    nav#siteNav a {
        margin-left: 0; font-size: 15px;
        opacity: 0;
        transform: translateX(20px);
        transition: opacity 0.4s ease, transform 0.4s ease, color 0.2s ease;
    }
    nav#siteNav.nav-open a { opacity: 1; transform: translateX(0); }
    nav#siteNav.nav-open a:nth-child(1) { transition-delay: 0.15s; }
    nav#siteNav.nav-open a:nth-child(2) { transition-delay: 0.25s; }
    nav#siteNav.nav-open a:nth-child(3) { transition-delay: 0.35s; }
    nav#siteNav.nav-open a:nth-child(4) { transition-delay: 0.45s; }
    nav#siteNav.nav-open a:nth-child(5) { transition-delay: 0.55s; }
    nav#siteNav.nav-open a:nth-child(6) { transition-delay: 0.65s; }

    .section { padding: 100px 6%; }
    .hero { padding: 180px 6% 140px 6%; }
    .hero h1 { font-size: 52px; letter-spacing: -2px; }
    .hero p { font-size: 18px; }
    .hero-actions { flex-direction: column; gap: 14px; }
    .cta-btn { width: 100%; text-align: center; }
    .section-title { font-size: 34px; margin-bottom: 50px; }
    .stacked-row { padding: 30px; }
    .stacked-row h3 { font-size: 18px; }
    .process-step { flex-direction: column; gap: 20px; padding: 35px; }
    .form-container { padding: 35px; }
    .back-to-top { left: 20px; bottom: 20px; width: 42px; height: 42px; }
    .whatsapp-float { right: 20px; bottom: 20px; padding: 12px 20px; font-size: 12px; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation: none !important; transition: none !important; }
    body, .hero-badge, .hero h1, .hero p, .hero-actions, .reveal,
    .hero::before, .section-title, .section-title::before,
    .grid .card, .vertical-stack .stacked-row, .testimonial-grid .testimonial-card,
    .portfolio-compact-grid .portfolio-compact-card,
    nav#siteNav a {
        opacity: 1 !important;
        transform: none !important;
    }
    .section-title::before { transform: scaleY(1) !important; }
}