/* =============================================
   Fullmoonstar — Global Design System
   Dark space theme · Orange accent · Premium
   ============================================= */

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

/* ── Tokens ─────────────────────────────────── */
:root {
    --bg: #06060f;
    --bg-card: #0e0e1e;
    --bg-elevated: #13132a;
    --border: rgba(255, 255, 255, 0.07);
    --border-glow: rgba(255, 107, 35, 0.3);

    --primary: #FF6B35;
    --primary-dark: #d94e18;
    --primary-glow: rgba(255, 107, 35, 0.15);

    --text: #f0f0ff;
    --text-muted: #8888aa;
    --text-dim: #44445a;

    --gold: #FFB347;
    --star-white: #e8e8ff;

    --font-body: 'Inter', system-ui, sans-serif;
    --font-display: 'Space Grotesk', system-ui, sans-serif;

    --radius: 12px;
    --radius-lg: 20px;
    --shadow-card: 0 4px 32px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 40px rgba(255, 107, 35, 0.15);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.65;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ── Stars background ──────────────────────── */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 10%, rgba(255, 107, 35, 0.04) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(100, 80, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* ── Typography ─────────────────────────────── */
h1,
h2,
h3,
h4,
h5 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.15;
}

h1 {
    font-size: clamp(2.2rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.6rem);
}

h3 {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
}

.gradient-text {
    background: linear-gradient(135deg, #FF6B35 0%, #FFB347 50%, #ffe082 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── Layout ─────────────────────────────────── */
.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

section {
    position: relative;
    z-index: 1;
}

/* ── Navigation ─────────────────────────────── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(6, 6, 15, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    max-width: 1140px;
    margin: 0 auto;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: -0.02em;
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #FF6B35, #FFB347);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

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

.nav-links a {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--text);
}

.nav-cta {
    background: var(--primary);
    color: #fff !important;
    padding: 0.5rem 1.2rem;
    border-radius: 8px;
    font-weight: 600 !important;
    transition: background 0.2s !important;
}

.nav-cta:hover {
    background: var(--primary-dark) !important;
}

.nav-mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text);
    cursor: pointer;
    font-size: 1.4rem;
}

/* ── Buttons ─────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    transition: all 0.25s ease;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, #FF6B35, #e05520);
    color: #fff;
    box-shadow: 0 4px 20px rgba(255, 107, 35, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 107, 35, 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-glow);
}

/* ── Hero ────────────────────────────────────── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 0 5rem;
    position: relative;
    overflow: hidden;
}

.hero-bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
}

.hero-orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 107, 35, 0.12), transparent 70%);
    top: -100px;
    right: -100px;
}

.hero-orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(100, 80, 255, 0.08), transparent 70%);
    bottom: -50px;
    left: -50px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-glow);
    border: 1px solid var(--border-glow);
    padding: 0.4rem 1rem;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.hero-title {
    margin-bottom: 1.25rem;
    max-width: 800px;
}

.hero-sub {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 580px;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 0.2rem;
}

/* ── Star divider ────────────────────────────── */
.star-divider {
    text-align: center;
    color: var(--text-dim);
    font-size: 1.2rem;
    letter-spacing: 1rem;
    margin: 0.5rem 0;
}

/* ── Section headers ─────────────────────────── */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.section-title {
    margin-bottom: 1rem;
}

.section-sub {
    color: var(--text-muted);
    max-width: 520px;
    margin: 0 auto;
    font-size: 1.05rem;
}

/* ── Products grid ──────────────────────────── */
.products {
    padding: 6rem 0;
    background: linear-gradient(180deg, transparent 0%, rgba(14, 14, 30, 0.5) 50%, transparent 100%);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}

.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--card-color, var(--primary)), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.product-card:hover {
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.product-card:hover::before {
    opacity: 1;
}

.product-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
}

.product-status {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.25rem 0.6rem;
    border-radius: 100px;
    margin-bottom: 0.75rem;
}

.status-live {
    background: rgba(40, 200, 120, 0.12);
    color: #28c878;
}

.status-beta {
    background: rgba(255, 107, 35, 0.12);
    color: var(--primary);
}

.status-coming {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-muted);
}

.product-card h3 {
    margin-bottom: 0.6rem;
    font-size: 1.2rem;
}

.product-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.tag {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 0.72rem;
    padding: 0.2rem 0.6rem;
    border-radius: 6px;
}

.product-link {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 1rem;
    transition: gap 0.2s;
}

.product-link:hover {
    gap: 0.5rem;
}

/* ── Services ────────────────────────────────── */
.services {
    padding: 6rem 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.75rem;
    transition: all 0.3s;
}

.service-card:hover {
    border-color: var(--border-glow);
    box-shadow: 0 0 24px rgba(255, 107, 35, 0.08);
}

.service-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.88rem;
}

/* ── CTA Banner ──────────────────────────────── */
.cta-section {
    padding: 6rem 0;
}

.cta-box {
    background: linear-gradient(135deg, rgba(255, 107, 35, 0.08) 0%, rgba(100, 80, 255, 0.06) 100%);
    border: 1px solid var(--border-glow);
    border-radius: 24px;
    padding: 4rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '🌕';
    position: absolute;
    font-size: 20rem;
    opacity: 0.03;
    top: -5rem;
    right: -3rem;
    pointer-events: none;
}

.cta-box h2 {
    margin-bottom: 1rem;
}

.cta-box p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ── Client Results (Marquee) ─────────────────── */
.testimonials-strip {
    padding: 4.5rem 0;
    position: relative;
    overflow: hidden;
}

/* Edge fade masks */
.testimonials-strip::before,
.testimonials-strip::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 120px;
    z-index: 4;
    pointer-events: none;
}
.testimonials-strip::before {
    left: 0;
    background: linear-gradient(90deg, var(--bg) 0%, transparent 100%);
}
.testimonials-strip::after {
    right: 0;
    background: linear-gradient(-90deg, var(--bg) 0%, transparent 100%);
}

/* Header */
.strip-header {
    text-align: center;
    padding: 0 1.5rem;
    margin-bottom: 2.5rem;
}
.strip-header h2 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 5vw, 2.75rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 0.5rem;
}
.strip-header p {
    color: var(--text-muted);
    font-size: 0.93rem;
    max-width: 420px;
    margin: 0 auto;
}

/* Row container */
.strip-rows {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.strip-row {
    display: flex;
    overflow: hidden;
    width: 100%;
}

/* Track — must be min-width:max-content for horizontal scroll */
.strip-track {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
    min-width: max-content;
    will-change: transform;
}

.strip-track.go-left  { animation: fmLeft  34s linear infinite; }
.strip-track.go-right { animation: fmRight 40s linear infinite; }
.strip-row:hover .strip-track { animation-play-state: paused; }

@keyframes fmLeft {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
@keyframes fmRight {
    from { transform: translateX(-50%); }
    to   { transform: translateX(0); }
}

/* Card */
.ugc-card {
    flex-shrink: 0;
    width: 290px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1.35rem;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    position: relative;
    overflow: hidden;
    transition: border-color 0.22s, transform 0.22s;
}
.ugc-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), rgba(255,107,35,0));
    opacity: 0;
    transition: opacity 0.22s;
    pointer-events: none;
}
.ugc-card:hover {
    border-color: rgba(255, 107, 35, 0.25);
    transform: translateY(-2px);
}
.ugc-card:hover::after { opacity: 1; }

.ugc-stars {
    font-size: 0.75rem;
    color: var(--gold);
    letter-spacing: 3px;
}

/* ROI headline — bold orange, prominent */
.ugc-roi {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
}

.ugc-quote {
    font-size: 0.82rem;
    line-height: 1.65;
    color: #a8a8c4;
    font-style: italic;
    flex: 1;
}

.ugc-author {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border);
    margin-top: 0.2rem;
}
.ugc-avatar {
    width: 30px; height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}
.ugc-meta strong {
    display: block;
    font-size: 0.79rem;
    font-weight: 600;
    color: var(--text);
    line-height: 1.25;
}
.ugc-meta span {
    font-size: 0.69rem;
    color: var(--text-muted);
}

/* ── Footer ──────────────────────────────────── */

footer {
    border-top: 1px solid var(--border);
    padding: 3rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.88rem;
    margin: 0.75rem 0 1.25rem;
    max-width: 280px;
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.social-btn {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: all 0.2s;
}

.social-btn:hover {
    border-color: var(--primary);
    background: var(--primary-glow);
}

.footer-col h4 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

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

.footer-col ul li {
    margin-bottom: 0.6rem;
}

.footer-col ul a {
    color: var(--text-muted);
    font-size: 0.88rem;
    transition: color 0.2s;
}

.footer-col ul a:hover {
    color: var(--primary);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    font-size: 0.8rem;
    color: var(--text-dim);
    flex-wrap: wrap;
    gap: 0.5rem;
}

/* ── Page-specific (legal, contact) ──────────── */
.page-hero {
    padding: 8rem 0 4rem;
    text-align: center;
}

.page-hero p {
    color: var(--text-muted);
    margin-top: 0.75rem;
    font-size: 1rem;
}

.prose {
    max-width: 760px;
    margin: 0 auto;
    padding: 3rem 0 6rem;
}

.prose h2 {
    font-size: 1.3rem;
    margin: 2.5rem 0 0.75rem;
    color: var(--text);
}

.prose p,
.prose li {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 0.75rem;
}

.prose ul {
    padding-left: 1.5rem;
}

.prose strong {
    color: var(--text);
}

.prose .highlight-box {
    background: var(--primary-glow);
    border: 1px solid var(--border-glow);
    border-radius: var(--radius);
    padding: 1.25rem 1.5rem;
    margin: 1.5rem 0;
}

/* Contact form */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
    padding: 3rem 0 6rem;
}

.contact-info h3 {
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.contact-item-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-glow);
    border: 1px solid var(--border-glow);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-item-text span {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    display: block;
    margin-bottom: 0.15rem;
}

.contact-item-text p {
    color: var(--text);
    margin: 0;
}

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

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

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 0.4rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text);
    font-family: var(--font-body);
    font-size: 0.9rem;
    padding: 0.75rem 1rem;
    transition: border-color 0.2s;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group select option {
    background: var(--bg-elevated);
}

/* ── Responsive — Mobile-First ───────────────── */

/* ── Large tablets / small laptops (≤1024px) ── */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .contact-grid {
        gap: 2.5rem;
    }
}

/* ── Tablets / landscape phones (≤768px) ────── */
@media (max-width: 768px) {

    /* Nav */
    .nav-inner {
        padding: 0.875rem 1rem;
    }

    .nav-links {
        display: none;
    }

    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: rgba(6, 6, 15, 0.98);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid var(--border);
        padding: 1.5rem 1rem;
        gap: 1.25rem;
        z-index: 99;
    }

    .nav-mobile-toggle {
        display: flex;
    }

    /* Hero */
    .hero {
        padding: 7rem 0 4rem;
        text-align: center;
    }

    .hero-badge {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-title {
        max-width: 100%;
    }

    .hero-sub {
        font-size: 1rem;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
        margin-bottom: 3rem;
    }

    .hero-stats {
        justify-content: center;
        gap: 2rem;
    }

    .hero-orb-1 {
        width: 300px;
        height: 300px;
    }

    .hero-orb-2 {
        width: 200px;
        height: 200px;
    }

    /* Sections */
    .products {
        padding: 4rem 0;
    }

    .services {
        padding: 4rem 0;
    }

    .cta-section {
        padding: 4rem 0;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }

    /* Grids */
    .products-grid {
        grid-template-columns: 1fr;
    }

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

    /* CTA */
    .cta-box {
        padding: 3rem 1.5rem;
    }

    .cta-box::before {
        display: none;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    /* Contact */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-form {
        padding: 1.75rem 1.25rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    /* Legal pages */
    .page-hero {
        padding: 6rem 0 2.5rem;
    }

    .prose {
        padding: 2rem 0 4rem;
    }
}

/* ── Phones (≤640px) ─────────────────────────── */
@media (max-width: 640px) {
    .container {
        padding: 0 1rem;
    }

    /* Hero */
    .hero {
        padding: 6rem 0 3rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 1.6rem;
    }

    /* Cards */
    .product-card {
        padding: 1.5rem;
    }

    .service-card {
        padding: 1.25rem;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }

    .footer-social {
        flex-wrap: wrap;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    /* CTA */
    .cta-box {
        padding: 2.5rem 1.25rem;
        border-radius: 16px;
    }

    .cta-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-actions .btn {
        text-align: center;
        justify-content: center;
    }

    /* Nav */
    .nav-logo span {
        font-size: 1.05rem;
    }
}

/* ── Small phones (≤480px) ───────────────────── */
@media (max-width: 480px) {
    html {
        font-size: 15px;
    }

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

    .hero-badge {
        font-size: 0.7rem;
        padding: 0.35rem 0.8rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .stat-item {
        align-items: center;
    }

    .products-grid,
    .services-grid {
        gap: 1rem;
    }

    .product-card {
        padding: 1.25rem;
    }

    .cta-box {
        padding: 2rem 1rem;
    }

    .footer-grid {
        gap: 1.5rem;
    }

    .contact-form {
        padding: 1.25rem 1rem;
    }

    .page-hero {
        padding: 5.5rem 0 2rem;
    }

    .prose {
        padding: 1.5rem 0 3rem;
    }

    .prose .highlight-box {
        padding: 1rem 1.25rem;
    }
}

/* ── Animations ──────────────────────────────── */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(255, 107, 35, 0.2);
    }

    50% {
        box-shadow: 0 0 40px rgba(255, 107, 35, 0.4);
    }
}

.float {
    animation: float 4s ease-in-out infinite;
}

/* Fade-in on scroll */
.fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}