/* ===========================
   AGENCY-STYLE LANDING PAGE
   Pure black, single accent, centered
=========================== */

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

@font-face {
    font-family: 'NCL Neovibes';
    src: url('fonts/NCLNeovibes-Demo.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* ===========================
   VARIABLES
=========================== */

:root {
    --bg: #000000;
    --bg-card: #0d0d0d;
    --bg-elevated: #141414;
    --bg-muted: #0a0a0a;

    --accent: #FF5C00;
    --accent-light: #FF7A33;
    --accent-glow: rgba(255, 92, 0, 0.4);
    --accent-subtle: rgba(255, 92, 0, 0.08);

    --green: #22c55e;
    --red: #ef4444;

    --text: #f5f5f5;
    --text-muted: #888888;
    --text-dim: #555555;

    --border: rgba(255, 255, 255, 0.07);
    --border-light: rgba(255, 255, 255, 0.12);

    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 22px;
    --radius-full: 999px;

    --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --ease-smooth: cubic-bezier(0.16, 1, 0.3, 1);

    --max-w: 800px;
    --max-w-wide: 1000px;
}

/* ===========================
   RESET
=========================== */

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(to right, rgba(255, 255, 255, 0.09) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.09) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -2;
    pointer-events: none;
}

a { color: inherit; text-decoration: none; }
img { width: 100%; display: block; }
button { border: none; cursor: pointer; font-family: inherit; background: none; color: inherit; }
ul { list-style: none; }

::selection { background: var(--accent); color: #fff; }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 50px; }

/* ===========================
   SECTION BASE
=========================== */

section {
    width: min(var(--max-w), 90%);
    margin: 0 auto;
    padding: 60px 0;
}

/* ===========================
   PILL LABEL (uppercase micro-tag)
=========================== */

.pill-label {
    display: inline-block;
    padding: 6px 18px;
    border-radius: var(--radius-full);
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 28px;
}

/* Section heading style — mixed weights with italic accent */
section h2, .hero h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.15;
}

section h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    margin-bottom: 20px;
}

section h2 em, .hero h1 em {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--accent);
    font-weight: 400;
}

.section-sub {
    color: var(--text-muted);
    font-size: 0.95rem;
    max-width: 520px;
    line-height: 1.7;
    margin-bottom: 50px;
}

/* Centered sections */
.hero, .comparison, .faq, .projects, .contact {
    text-align: center;
}

.about {
    text-align: center;
}

.section-sub {
    margin-left: auto;
    margin-right: auto;
}

/* ===========================
   BUTTONS
=========================== */

.btn-solid {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--radius-full);
    background: var(--accent);
    color: #fff;
    font-weight: 600;
    font-size: 0.88rem;
    transition: transform 0.3s var(--ease-spring),
                box-shadow 0.3s, background 0.3s;
    border: none;
    cursor: pointer;
}

.btn-solid:hover {
    transform: scale(1.04);
    background: var(--accent-light);
    box-shadow: 0 12px 40px var(--accent-glow);
}

.btn-solid.small {
    padding: 10px 24px;
    font-size: 0.82rem;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--radius-full);
    background: transparent;
    color: var(--text);
    font-weight: 600;
    font-size: 0.88rem;
    border: 1px solid var(--border-light);
    transition: transform 0.3s var(--ease-spring),
                border-color 0.3s, background 0.3s;
}

.btn-outline:hover {
    transform: scale(1.04);
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.04);
}

/* ===========================
   LOADER
=========================== */

.loader {
    position: fixed;
    inset: 0;
    background: var(--bg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    gap: 24px;
}

.loader-bar-track {
    width: 140px;
    height: 2px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    overflow: hidden;
}

.loader-bar {
    width: 0%;
    height: 100%;
    background: var(--accent);
    border-radius: 10px;
}

.loader-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.03em;
    opacity: 0;
    transform: translateY(8px);
}

/* ===========================
   NAVBAR — Centered floating pill
=========================== */

header {
    position: fixed;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: auto;
    opacity: 0;
    pointer-events: none;
}

header.visible {
    opacity: 1;
    pointer-events: all;
}

.nav-inner {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 10px 10px 10px 14px;
    background: rgba(12, 12, 12, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    transition: background 0.3s, box-shadow 0.3s;
}

header.scrolled .nav-inner {
    background: rgba(8, 8, 8, 0.95);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.nav-logo-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    color: #fff;
    flex-shrink: 0;
}

.nav-logo {
    font-family: 'NCL Neovibes', sans-serif;
    font-size: 1.3rem;
    letter-spacing: 0.02em;
    color: var(--text);
    flex-shrink: 0;
    margin-bottom: -2px; /* optical alignment for custom fonts */
}

.nav-logo span {
    color: var(--accent);
}

nav {
    display: flex;
    gap: 22px;
}

nav a {
    color: var(--text-dim);
    font-weight: 500;
    font-size: 0.78rem;
    transition: color 0.3s;
    position: relative;
    white-space: nowrap;
}

nav a:hover, nav a.active {
    color: var(--text-muted);
}

.nav-cta {
    padding: 8px 20px;
    border-radius: var(--radius-full);
    background: var(--accent);
    color: #fff;
    font-weight: 600;
    font-size: 0.78rem;
    white-space: nowrap;
    transition: transform 0.3s var(--ease-spring),
                box-shadow 0.3s, background 0.3s;
}

.nav-cta:hover {
    transform: scale(1.06);
    background: var(--accent-light);
    box-shadow: 0 6px 20px var(--accent-glow);
}

.menu-btn {
    display: none;
    font-size: 1.4rem;
    color: var(--text);
    padding: 4px;
}

/* ===========================
   HERO
=========================== */

.hero {
    padding-top: 150px;
    padding-bottom: 40px;
    position: relative;
    overflow: visible;
}

/* Chatbox */
.hero-chatbox {
    max-width: 650px;
    width: 90%;
    margin: 0 auto 40px;
    background: #111111;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 24px;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 10;
}

.chatbox-input-area {
    font-size: 1.15rem;
    color: var(--text);
    font-family: 'Inter', sans-serif;
}

.chat-cursor {
    font-weight: 300;
    color: var(--text-muted);
    animation: blink 1s step-end infinite;
    margin-left: 2px;
}

@keyframes blink {
    50% { opacity: 0; }
}

.chatbox-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-tools-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
    font-size: 0.95rem;
    transition: color 0.3s;
}

.chat-tools-btn i {
    font-size: 1.2rem;
}

.chat-tools-btn:hover {
    color: var(--text);
}

.chat-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chat-mic-btn, .chat-audio-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: background 0.3s, color 0.3s;
    font-size: 1.1rem;
}

.chat-audio-btn {
    background: rgba(255, 255, 255, 0.12);
    color: var(--text);
}

.chat-mic-btn:hover, .chat-audio-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--text);
}

/* Social proof */
.social-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 32px;
}

.avatar-stack {
    display: flex;
}

.avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 700;
    color: #fff;
    margin-left: -8px;
}

.avatar:first-child { margin-left: 0; }

.proof-text {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    color: var(--text-muted);
}

.stars {
    color: #facc15;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

/* Headline */
.hero h1 {
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    margin-bottom: 22px;
    line-height: 1.1;
}

.hero-sub {
    color: var(--text-muted);
    font-size: 0.92rem;
    max-width: 480px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

/* CTA buttons */
.hero-ctas {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

/* Radial glow */
.hero-glow {
    width: 500px;
    height: 320px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin-top: -120px;
    border-radius: 50%;
    background: radial-gradient(ellipse at center,
        rgba(255, 120, 40, 0.35) 0%,
        rgba(255, 80, 10, 0.18) 30%,
        rgba(180, 50, 0, 0.06) 55%,
        transparent 75%);
    filter: blur(40px);
    pointer-events: none;
    position: relative;
    z-index: 0;
    animation: glowPulse 5s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { transform: translateX(-50%) scale(1); opacity: 0.7; }
    50% { transform: translateX(-50%) scale(1.08); opacity: 1; }
}

/* ===========================
   REVIEWS MARQUEE
=========================== */

.reviews-wrapper {
    width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    overflow: hidden;
    margin-top: 100px; /* Space from buttons */
    padding: 30px 0;
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    z-index: 5;
}

.reviews-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: marqueeRight 35s linear infinite;
}

@keyframes marqueeRight {
    0% { transform: translateX(calc(-50% - 15px)); }
    100% { transform: translateX(0); }
}

.review-card {
    width: 400px;
    background: rgba(18, 18, 18, 0.4);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 92, 0, 0.2);
    border-radius: 28px;
    padding: 32px;
    position: relative;
    flex-shrink: 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    text-align: left;
}

/* Subtle inner glow for card */
.review-card::before {
    content: '';
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 120px;
    background: radial-gradient(ellipse at center, rgba(255, 92, 0, 0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}

.review-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
}

.review-close:hover {
    background: rgba(255, 255, 255, 0.15);
    color: var(--text);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
}

.review-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg);
    font-size: 1.4rem;
}

.review-header span {
    font-size: 1.15rem;
    color: var(--text-muted);
    font-weight: 500;
}

.review-text {
    font-size: 1.4rem;
    color: #fff;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 36px;
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: -0.02em;
}

.review-rating {
    display: flex;
    gap: 14px;
}

.rate-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 1.4rem;
    transition: 0.3s ease;
}

.rate-circle.active {
    background: #fff;
    color: var(--accent);
    box-shadow: 0 0 25px rgba(255, 92, 0, 0.25);
    border-color: #fff;
}

/* Trust section */
.trust-section {
    margin-top: 40px;
    position: relative;
    z-index: 2;
}

.trust-label {
    font-size: 0.72rem;
    color: var(--text-dim);
    letter-spacing: 0.06em;
    margin-bottom: 28px;
}

.trust-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 42px;
    flex-wrap: wrap;
}

.trust-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-dim);
    font-size: 0.85rem;
    font-weight: 500;
    opacity: 0.4;
    transition: opacity 0.4s, color 0.4s;
    cursor: default;
}

.trust-logo i {
    font-size: 1.3rem;
}

.trust-logo:hover {
    opacity: 1;
    color: var(--text);
}

/* ===========================
   ABOUT
=========================== */

.about {
    width: min(var(--max-w-wide), 90%);
}

.about h2 {
    margin-bottom: 40px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    text-align: left;
    align-items: center;
}

.about-text p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.85;
    margin-bottom: 28px;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mini-stat {
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--bg-card);
    text-align: center;
    transition: border-color 0.4s, transform 0.4s var(--ease);
}

.mini-stat:hover {
    border-color: rgba(255, 92, 0, 0.2);
    transform: translateY(-3px);
}

.mini-stat h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: -0.04em;
    margin-bottom: 4px;
}

.mini-stat p {
    color: var(--text-muted);
    font-size: 0.82rem;
}

/* ===========================
   PROJECTS
=========================== */

.projects {
    width: min(var(--max-w-wide), 90%);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    text-align: left;
}

.project-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform 0.5s var(--ease-smooth), box-shadow 0.5s, border-color 0.5s;
    display: flex;
    flex-direction: column;
}

.project-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.5);
    border-color: var(--border-light);
}

.project-img {
    aspect-ratio: 4/3;
    overflow: hidden;
    background: #0a0a0a;
}

.project-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-smooth), filter 0.6s;
    filter: grayscale(30%);
}

.project-card:hover .project-img img {
    transform: scale(1.05);
    filter: grayscale(0%);
}

.project-body {
    padding: 22px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.project-body h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.project-body > p {
    color: var(--text-muted);
    font-size: 0.82rem;
    line-height: 1.6;
    margin-bottom: 14px;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 14px;
}

.project-tags span {
    padding: 4px 12px;
    border-radius: var(--radius-full);
    background: var(--accent-subtle);
    color: var(--accent-light);
    font-size: 0.7rem;
    font-weight: 500;
    border: 1px solid rgba(255, 92, 0, 0.12);
}

.project-link {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--accent);
    font-weight: 600;
    font-size: 0.82rem;
    transition: color 0.3s;
}

.project-link:hover { color: var(--accent-light); }
.project-link i { transition: transform 0.3s var(--ease-spring); }
.project-link:hover i { transform: translate(3px, -3px); }

/* ===========================
   COMPARISON
=========================== */

.comparison {
    width: min(var(--max-w-wide), 90%);
}

.comparison h2 {
    margin-bottom: 50px;
}

.compare-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    text-align: left;
}

.compare-header {
    padding: 14px 24px;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.compare-header.muted {
    background: var(--bg-muted);
    color: var(--text-dim);
    border: 1px solid var(--border);
    border-bottom: none;
    font-style: italic;
}

.compare-header.highlighted {
    background: linear-gradient(135deg, rgba(255, 92, 0, 0.12), rgba(255, 92, 0, 0.04));
    color: var(--text);
    border: 1px solid rgba(255, 92, 0, 0.2);
    border-bottom: none;
}

.header-badge {
    color: var(--accent);
    font-size: 1.1rem;
    display: flex;
}

.compare-card {
    padding: 28px 24px;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
}

.muted-card {
    background: var(--bg-muted);
    border: 1px solid var(--border);
    border-top: none;
}

.highlighted-card {
    background: linear-gradient(180deg, rgba(255, 92, 0, 0.06), rgba(255, 92, 0, 0.02));
    border: 1px solid rgba(255, 92, 0, 0.15);
    border-top: none;
    box-shadow: 0 8px 40px rgba(255, 92, 0, 0.06);
}

.compare-card ul {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.compare-card li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.88rem;
    color: var(--text-muted);
}

.x-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(239, 68, 68, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.x-icon i {
    font-size: 0.8rem;
    color: var(--red);
}

.check-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(34, 197, 94, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.check-icon i {
    font-size: 0.8rem;
    color: var(--green);
}

.highlighted-card li {
    color: var(--text);
}

/* ===========================
   PRICING
=========================== */

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 92, 0, 0.3);
}

.pricing-card.popular {
    background: linear-gradient(180deg, var(--bg-elevated) 0%, var(--bg-card) 100%);
    border: 1px solid rgba(255, 92, 0, 0.3);
    box-shadow: 0 20px 40px rgba(255, 92, 0, 0.08);
}

.popular-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.price-header {
    margin-bottom: 20px;
}

.price-badge {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.05);
    padding: 4px 12px;
    border-radius: 12px;
    margin-bottom: 16px;
}

.price-badge.accent {
    color: var(--accent);
    background: rgba(255, 92, 0, 0.1);
}

.price-header h3 {
    font-size: 1.6rem;
    margin-bottom: 12px;
}

.price {
    font-size: 1.8rem;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    color: #fff;
}

.price-bestfor {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 24px;
}

.price-bestfor strong {
    color: #fff;
}

.price-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin-bottom: 30px;
}

.price-features {
    list-style: none;
    margin-bottom: 40px;
}

.price-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.price-features li i {
    color: var(--accent);
    font-size: 1.1rem;
    margin-top: 2px;
}

/* ===========================
   FAQ
=========================== */

.faq h2 {
    margin-bottom: 50px;
}

.faq-list {
    max-width: 700px;
    margin: 0 auto;
    text-align: left;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-item:first-child {
    border-top: 1px solid var(--border);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text);
    text-align: left;
    transition: color 0.3s;
    gap: 16px;
}

.faq-question:hover { color: var(--accent); }

.faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.4s var(--ease-smooth),
                border-color 0.3s, background 0.3s;
}

.faq-icon i {
    font-size: 0.9rem;
    transition: transform 0.4s var(--ease-smooth);
}

.faq-item.open .faq-icon {
    border-color: var(--accent);
    background: var(--accent-subtle);
}

.faq-item.open .faq-icon i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s var(--ease-smooth),
                padding 0.5s var(--ease-smooth);
    padding: 0 0 0 0;
}

.faq-item.open .faq-answer {
    max-height: 300px;
    padding-bottom: 24px;
}

.faq-answer p {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.75;
}

/* ===========================
   CONTACT
=========================== */

.contact {
    width: min(var(--max-w-wide), 90%);
    padding-bottom: 60px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 28px;
    text-align: left;
    align-items: start;
}

.contact-info, .contact-form {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px;
}

.contact-info h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 28px;
    letter-spacing: -0.02em;
}

.info-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 22px;
}

.info-row > i {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-subtle);
    color: var(--accent);
    font-size: 1.1rem;
    flex-shrink: 0;
    border: 1px solid rgba(255, 92, 0, 0.12);
}

.info-row h4 { font-size: 0.88rem; margin-bottom: 2px; font-weight: 600; }
.info-row p { color: var(--text-muted); font-size: 0.82rem; }
.info-row p a { color: var(--text-muted); transition: color 0.3s; }
.info-row p a:hover { color: var(--accent); }

.socials {
    display: flex;
    gap: 10px;
    margin-top: 24px;
}

.socials a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    font-size: 1rem;
    transition: background 0.3s, border-color 0.3s, transform 0.3s var(--ease-spring);
}

.socials a:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: translateY(-3px);
}

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

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--border);
    outline: none;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text);
    font-family: inherit;
    font-size: 0.88rem;
    resize: none;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(255, 92, 0, 0.08);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--text-dim);
}

.contact-form .btn-solid {
    align-self: flex-start;
}

/* ===========================
   FOOTER
=========================== */

footer {
    padding: 70px 0 36px;
    border-top: 1px solid var(--border);
}

.footer-inner {
    width: min(var(--max-w), 90%);
    margin: auto;
    text-align: center;
}

.footer-top {
    margin-bottom: 32px;
}

.footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 14px;
}

.footer-name {
    font-family: 'NCL Neovibes', sans-serif;
    font-size: 1.6rem;
    letter-spacing: 0.02em;
}

.footer-name span { color: var(--accent); }

.footer-top p {
    max-width: 420px;
    margin: 0 auto;
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.6;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 24px;
}

.footer-links a {
    color: var(--text-dim);
    font-size: 0.82rem;
    transition: color 0.3s;
}

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

.footer-social {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    font-size: 0.95rem;
    transition: background 0.3s, border-color 0.3s, transform 0.3s var(--ease-spring);
}

.footer-social a:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: translateY(-3px);
}

.copyright {
    color: var(--text-dim);
    font-size: 0.75rem;
}

/* ===========================
   SCROLL TOP
=========================== */

.scroll-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--accent);
    color: white;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s, transform 0.3s var(--ease-spring);
    z-index: 500;
    box-shadow: 0 6px 18px var(--accent-glow);
}

.scroll-top.show { opacity: 1; visibility: visible; }
.scroll-top:hover { transform: translateY(-3px); }

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

@media (max-width: 1024px) {
    .compare-grid { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; gap: 60px; }
    .hero h1 { font-size: 3.5rem; }
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
    .projects-grid { grid-template-columns: repeat(2, 1fr); }
    .compare-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    .about-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
    nav {
        position: absolute;
        top: 60px;
        left: 50%;
        transform: translateX(-50%);
        width: max-content;
        flex-direction: column;
        background: rgba(12, 12, 12, 0.97);
        backdrop-filter: blur(20px);
        border-radius: var(--radius-md);
        padding: 18px 28px;
        gap: 14px;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
        border: 1px solid var(--border);
        transform: translateX(-50%) translateY(-8px);
    }

    nav.active {
        opacity: 1;
        visibility: visible;
        pointer-events: all;
        transform: translateX(-50%) translateY(0);
    }

    .menu-btn { display: flex; }
    .nav-cta { display: none; }

    .hero h1 { font-size: 2rem; }
    .hero-glow { width: 320px; height: 200px; }

    .compare-grid { grid-template-columns: 1fr; }
    .projects-grid { grid-template-columns: 1fr; }

    .trust-logos { gap: 24px; }
    .trust-logo span { display: none; }
    .trust-logo i { font-size: 1.6rem; }

    .hero-ctas { flex-direction: column; gap: 10px; }
    .btn-solid, .btn-outline { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
    section { padding: 60px 0; }
    .hero { padding-top: 120px; }
    .hero h1 { font-size: 1.7rem; }
    section h2 { font-size: 1.5rem; }
    .contact-info, .contact-form { padding: 24px 20px; }
    .about-stats { flex-direction: row; flex-wrap: wrap; }
    .mini-stat { flex: 1 1 120px; padding: 16px; }
    .mini-stat h3 { font-size: 1.5rem; }
}

/* ===========================
   REDUCED MOTION
=========================== */

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}