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

:root {
    --bg: #fbfbfd;
    --surface: #ffffff;
    --surface-2: rgba(255, 255, 255, 0.75);
    --ink: #0b1220;
    --muted: #5b6472;
    --muted-2: #7a8493;
    --border: rgba(15, 23, 42, 0.12);
    --shadow: 0 16px 40px rgba(2, 6, 23, 0.10);

    --accent: #2563eb;
    --accent-2: #06b6d4;
    --accent-ink: #0b1220;

    --radius: 18px;
    --radius-sm: 12px;
    --container: 1120px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
        'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    -webkit-font-smoothing: antialiased;
    color: var(--ink);
    background-color: var(--bg);
    line-height: 1.6;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 1rem;
}

/* Gradient Text */
.gradient-text { display: inline; }

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

.eyebrow {
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted-2);
    margin-bottom: 0.75rem;
}

/* Buttons */
.btn {
    padding: 0.8rem 1.1rem;
    border-radius: 999px;
    font-size: 1rem;
    font-weight: 600;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: var(--ink);
    color: #ffffff;
    box-shadow: 0 10px 26px rgba(2, 6, 23, 0.25);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 40px rgba(2, 6, 23, 0.25);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    border-color: var(--border);
    color: var(--ink);
    background-color: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.9);
    border-color: rgba(15, 23, 42, 0.18);
    transform: translateY(-1px);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(251, 251, 253, 0.72);
    backdrop-filter: blur(14px);
    z-index: 1000;
    border-bottom: 1px solid var(--border);
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    cursor: pointer;
}

.logo-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(255, 255, 255, 0.65);
    border: 1px solid var(--border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
}

.logo-icon svg {
    width: 1.45rem;
    height: 1.45rem;
    display: block;
}

.logo-text {
    font-size: 1.15rem;
    font-weight: bold;
    color: var(--ink);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--ink);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-dark);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: white;
    padding: 1rem;
    flex-direction: column;
    gap: 1rem;
    z-index: 999;
}

.mobile-link {
    color: var(--ink);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem;
}

/* Hero Section */
.hero {
    margin-top: 70px;
    padding: 5rem 0 3.5rem;
    background:
           radial-gradient(1200px 500px at 20% 0%, rgba(37, 99, 235, 0.10), transparent 60%),
        radial-gradient(900px 420px at 90% 10%, rgba(6, 182, 212, 0.10), transparent 55%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.65), rgba(255, 255, 255, 0));
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-title {
    font-size: 3.1rem;
    font-weight: 860;
    line-height: 1.2;
    color: var(--ink);
    margin: 0;
    max-width: 18ch;
}

.hero-title-accent {
    display: block;
    color: var(--accent);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--muted);
    margin: 0;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-visual { display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 0.75rem; }

.hero-shot {
    /* Use the dashboard's native aspect ratio and show at full native width when possible */
    width: min(1910px, 100%);
    aspect-ratio: 1910 / 950;
    border-radius: var(--radius);
    background: var(--surface);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    overflow: hidden;
    position: relative;
}

.hero-caption {
    margin-top: 0.75rem;
    text-align: center;
    color: var(--muted);
    font-weight: 600;
}

.hero-shot-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    background: var(--surface);
}

.hero-shot-fallback {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 2rem;
    color: var(--muted);
    font-weight: 600;
    text-align: center;
    background:
        radial-gradient(700px 260px at 15% 15%, rgba(37, 99, 235, 0.12), transparent 60%),
        radial-gradient(700px 260px at 85% 35%, rgba(6, 182, 212, 0.10), transparent 55%),
        linear-gradient(180deg, rgba(255,255,255,0.9), rgba(255,255,255,0.65));
}

.hero-shot-img:where(img) { background: transparent; }

/* Screenshot frames */
.shots-section {
    padding: 2.5rem 1rem 0;
}

.shots-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;

    .shot-figure {
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 0.65rem;
    }

    .shot-caption {
        font-size: 0.95rem;
        color: var(--muted);
        text-align: center;
    }
}

.shot {
    position: relative;
    border-radius: var(--radius);
    background: var(--surface);
    border: 1px solid var(--border);
    overflow: hidden;
    box-shadow: 0 14px 30px rgba(2, 6, 23, 0.08);
    min-height: 220px;

    .js-lightbox {
        cursor: pointer;
    }

    .js-lightbox .shot-img,
    .js-lightbox .hero-shot-img {
        filter: grayscale(1) brightness(0.78);
        transition: filter 0.18s ease, transform 0.18s ease;
    }

    .js-lightbox:hover .shot-img,
    .js-lightbox:hover .hero-shot-img {
        filter: grayscale(0.75) brightness(0.86);
        transform: scale(1.01);
    }

    .js-lightbox::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(2, 6, 23, 0.32);
        pointer-events: none;
        z-index: 2;
    }

    .js-lightbox::after {
        content: "Click to View";
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        padding: 0.65rem 0.9rem;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.92);
        border: 1px solid rgba(15, 23, 42, 0.18);
        color: var(--ink);
        font-weight: 700;
        font-size: 0.95rem;
        pointer-events: none;
        z-index: 3;
    }

    .js-lightbox:focus-visible {
        outline: none;
        box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.18);
    }
}

.shot-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.shot-fallback {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 1.5rem;
    text-align: center;
    color: var(--muted);
    font-weight: 600;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.92), rgba(255,255,255,0.75)),
            radial-gradient(700px 260px at 20% 10%, rgba(37, 99, 235, 0.12), transparent 60%);
}

    /* Lightbox (full-screen viewer) */
    .lightbox {
        position: fixed;
        inset: 0;
        display: none;
        place-items: center;
        padding: 2rem 1rem;
        background: rgba(2, 6, 23, 0.82);
        z-index: 2000;
    }

    .lightbox.is-open {
        display: grid;
    }

    .lightbox-figure {
        margin: 0;
        width: min(1100px, 94vw);
        max-height: 86vh;
        display: grid;
        gap: 0.75rem;
    }

    .lightbox-img {
        width: 100%;
        height: min(72vh, 740px);
        object-fit: contain;
        border-radius: var(--radius);
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.12);
    }

    .lightbox-caption {
        color: rgba(255, 255, 255, 0.86);
        text-align: center;
        font-weight: 600;
    }

    .lightbox-close {
        position: fixed;
        top: 18px;
        right: 18px;
        width: 44px;
        height: 44px;
        border-radius: 999px;
        border: 1px solid rgba(255, 255, 255, 0.18);
        background: rgba(255, 255, 255, 0.10);
        color: rgba(255, 255, 255, 0.95);
        font-size: 28px;
        line-height: 0;
        cursor: pointer;
    }

    .lightbox-close:hover {
        background: rgba(255, 255, 255, 0.16);
    }

/* shots-note intentionally unused on public pages */

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Features Section */
.features {
    padding: 5rem 1rem;
    background: transparent;
}

.section-title {
    font-size: 2.75rem;
    font-weight: 860;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--ink);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--muted);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}
.pricing-amount {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin: 0.6rem 0 0.9rem;
}

.price-old {
    color: var(--muted);
    text-decoration: line-through;
    font-weight: 700;
    font-size: 0.95rem;
}

.price-new {
    color: var(--ink);
    font-weight: 900;
    font-size: 1.4rem;
}

.deal-badge {
    display: inline-block;
    margin-top: 0.5rem;
    background: linear-gradient(90deg, rgba(37,99,235,0.12), rgba(6,182,212,0.06));
    color: var(--accent);
    border-radius: 999px;
    padding: 0.3rem 0.6rem;
    font-weight: 800;
    font-size: 0.85rem;
    border: 1px solid rgba(37,99,235,0.14);
}

.pillar {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.4rem;
    box-shadow: 0 12px 26px rgba(2, 6, 23, 0.06);
}

.pillar-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    color: var(--accent);
    background: rgba(79, 70, 229, 0.10);
    border: 1px solid rgba(79, 70, 229, 0.16);
    margin-bottom: 0.9rem;
}

.pillar-icon svg {
    width: 22px;
    height: 22px;
}

.pillar h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.pillar p {
    color: var(--muted);
    font-size: 0.98rem;
    margin-bottom: 0.9rem;
}

.text-link {
    color: var(--accent);
    text-decoration: none;
    font-weight: 700;
}

.text-link:hover { text-decoration: underline; }

.features-cta {
    margin-top: 1.5rem;
    padding: 1.25rem;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.features-cta p { margin: 0; color: var(--muted); }

/* Legacy feature grid styles removed from homepage */

/* White Label Section */
.whitelabel {
    padding: 5rem 1rem;
    background: transparent;
}

.whitelabel-row {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 1.25rem;
    align-items: start;
}

.whitelabel-card {
    border-radius: var(--radius);
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 1.25rem;
    box-shadow: 0 12px 26px rgba(2, 6, 23, 0.06);
}

.tight-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    color: var(--muted);
    margin-bottom: 1rem;
}

.whitelabel-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.whitelabel-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.whitelabel-benefits {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.whitelabel-benefits li {
    color: var(--text-dark);
    font-size: 1.1rem;
    padding: 0.5rem 0;
}

.whitelabel-note {
    background: var(--bg-lighter);
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    border-radius: 0.5rem;
    color: var(--text-dark);
}

.whitelabel-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
    background: linear-gradient(135deg, rgba(167, 139, 250, 0.1), rgba(244, 114, 182, 0.1), rgba(59, 130, 246, 0.1));
    border-radius: 1rem;
    font-size: 5rem;
    animation: float 6s ease-in-out infinite;
}

/* Pricing Section */
.pricing {
    padding: 5rem 1rem;
    background: transparent;
}

.nonprofit-banner {
    text-align: center;
    padding: 1rem;
    background: rgba(79, 70, 229, 0.06);
    border: 1px solid rgba(79, 70, 229, 0.18);
    border-radius: var(--radius);
    margin-bottom: 3rem;
}

.nonprofit-banner p {
    font-size: 1.1rem;
    color: var(--ink);
}

@keyframes pulse-banner { 0%, 100% { opacity: 1; } 50% { opacity: 0.88; } }

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.pricing-card {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    background: var(--surface);
}

.pricing-card:hover {
    border-color: rgba(15, 23, 42, 0.18);
    box-shadow: 0 18px 44px rgba(2, 6, 23, 0.10);
}

.pricing-card.featured {
    border-color: rgba(79, 70, 229, 0.26);
    box-shadow: 0 22px 60px rgba(2, 6, 23, 0.14);
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-weight: bold;
    font-size: 0.9rem;
    white-space: nowrap;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--ink);
}

.pricing-desc {
    color: var(--muted);
    margin-bottom: 1.5rem;
}

.pricing-amount {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--ink);
}

.period {
    color: var(--muted);
    font-size: 0.95rem;
}

.pricing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.pricing-features li {
    color: var(--ink);
    font-size: 0.95rem;
}

.pricing-card button {
    width: 100%;
    margin-bottom: 1.5rem;
}

.custom-solution {
    background: rgba(255, 255, 255, 0.6);
    border-left: 4px solid var(--accent);
    padding: 2rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.custom-solution h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--ink);
}

.custom-solution p {
    color: var(--muted);
}

/* Contact Section */
.contact {
    padding: 5rem 1rem;
    background: transparent;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--ink);
}

.form-group input,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(37, 99, 235, 0.45);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.contact-form button {
    margin-top: 1rem;
    width: 100%;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-card {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.65);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(14, 165, 233, 0.1);
}

.contact-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.contact-email {
    font-size: 1.1rem;
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    word-break: break-all;
    margin-bottom: 0.5rem;
    display: block;
}

.contact-card p {
    color: var(--muted);
    font-size: 0.95rem;
}

.contact-card ul {
    list-style: none;
    color: var(--muted);
    font-size: 0.95rem;
}

.contact-card ul li {
    padding: 0.25rem 0;
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 3rem 1rem 1rem;
}

.footer .logo-text {
    color: rgba(255, 255, 255, 0.96);
}

.footer .logo-icon {
    background: rgba(255, 255, 255, 0.10);
    border-color: rgba(255, 255, 255, 0.20);
    color: var(--accent);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: rgba(255, 255, 255, 0.92);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.contact-link {
    color: #93c5fd !important;
    word-break: break-all;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
}

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

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(14px); }
    to { opacity: 1; transform: translateY(0); }
}

[data-reveal] {
    opacity: 0;
    transform: translateY(14px);
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

@media (prefers-reduced-motion: reduce) {
    * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
    [data-reveal] { opacity: 1 !important; transform: none !important; }
}

/* Features page styles */
.page { padding-top: 70px; }

.page-hero {
    padding: 4.5rem 0 2.5rem;
    background:
        radial-gradient(1100px 480px at 15% 0%, rgba(79, 70, 229, 0.10), transparent 60%),
        radial-gradient(900px 420px at 90% 10%, rgba(6, 182, 212, 0.10), transparent 55%);
}

.page-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 1.25rem;
    align-items: start;
}

.page-title {
    font-size: 3rem;
    line-height: 1.12;
    margin-bottom: 0.75rem;
}

.page-subtitle {
    color: var(--muted);
    font-size: 1.1rem;
    max-width: 54ch;
}

.page-hero-actions { margin-top: 1.25rem; display: flex; gap: 0.75rem; flex-wrap: wrap; }

.shots {
    display: grid;
    gap: 0.75rem;
}

.shots .shot { min-height: 160px; }

.detail { padding: 3rem 0; }

.detail-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 1.25rem;
    align-items: start;
}

.detail-title { font-size: 1.6rem; margin-bottom: 0.5rem; }
.detail-lede { color: var(--muted); margin-bottom: 1rem; }

.detail-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    color: var(--muted);
}

.detail-list strong { color: var(--ink); }

.detail-panel {
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.65);
    border: 1px solid var(--border);
    padding: 1.25rem;
    box-shadow: 0 14px 30px rgba(2, 6, 23, 0.06);
}

.detail-panel h3 { margin-bottom: 0.5rem; }
.detail-panel p { color: var(--muted); }

.chips { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.9rem; }
.chip {
    font-size: 0.85rem;
    padding: 0.4rem 0.6rem;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.8);
    color: var(--ink);
}

.catalog { padding: 3rem 0 4rem; }
.catalog-head { text-align: center; max-width: 780px; margin: 0 auto 1.5rem; }
.catalog-title { font-size: 2rem; margin-bottom: 0.35rem; }
.catalog-subtitle { color: var(--muted); }

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.catalog-item {
    border-radius: var(--radius);
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 1.1rem;
    box-shadow: 0 12px 26px rgba(2, 6, 23, 0.05);
}

.catalog-item h3 { font-size: 1.05rem; margin-bottom: 0.45rem; }
.catalog-item p { color: var(--muted); }

.catalog-cta {
    margin-top: 1.5rem;
    border-radius: var(--radius);
    background: rgba(79, 70, 229, 0.06);
    border: 1px solid rgba(79, 70, 229, 0.18);
    padding: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.catalog-cta-text { color: var(--ink); margin: 0; }

/* Responsive Design */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu.active {
        display: flex;
    }

    .hero { padding: 2.5rem 0 2rem; }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .hero-title { font-size: 2.15rem; max-width: none; }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .shots-grid { grid-template-columns: 1fr; }
    .pillars { grid-template-columns: 1fr; }
    .whitelabel-row { grid-template-columns: 1fr; }
    .features-cta { flex-direction: column; align-items: stretch; }
    .page-hero-grid { grid-template-columns: 1fr; }
    .detail-grid { grid-template-columns: 1fr; }
    .catalog-grid { grid-template-columns: 1fr; }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .features {
        padding: 3rem 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .nav-links {
        gap: 0.5rem;
    }
}
