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

:root {
    --gradient-primary: linear-gradient(135deg, #f7971e 0%, #ffd200 100%);
    --gradient-secondary: linear-gradient(135deg, #e65c00 0%, #f9d423 100%);
    --gradient-warm: linear-gradient(135deg, #ff6b35 0%, #f7971e 100%);
    --gradient-green: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    --gradient-orange: linear-gradient(135deg, #f7971e 0%, #ffd200 100%);
    --gradient-dark: linear-gradient(135deg, #c45a00 0%, #e68a00 100%);
    --gradient-sky: linear-gradient(135deg, #ffb347 0%, #ffcc33 100%);
    --gradient-text: linear-gradient(135deg, #e65c00 0%, #f7971e 50%, #ffd200 100%);
    --color-primary: #e65c00;
    --color-primary-light: #f7971e;
    --white-glass: rgba(255, 255, 255, 0.85);
    --white-glass-subtle: rgba(255, 255, 255, 0.6);
    --border-glass: rgba(255, 255, 255, 0.3);
    --shadow-soft: 0 4px 30px rgba(0, 0, 0, 0.06);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 20px 60px rgba(0, 0, 0, 0.12);
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 12px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 96px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #1a1a2e;
    background: #ffffff;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

#features,
#how-it-works,
#whatsapp,
#tracking,
#pricing,
#about {
    scroll-margin-top: 96px;
}

.gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-blue,
.gradient-text-orange {
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-green {
    background: var(--gradient-green);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-warm {
    background: var(--gradient-warm);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Rainbow gradient for headings */
.gradient-text-rainbow {
    background: linear-gradient(90deg, #e65c00 0%, #f7971e 18%, #ffd200 35%, #38ef7d 52%, #11998e 70%, #f093fb 85%, #e65c00 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: rainbow-shift 3s linear infinite;
}
@keyframes rainbow-shift {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

/* ========== NAVBAR ========== */
.saas-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0,0,0,0.04);
    transition: all 0.3s ease;
}

.saas-navbar.scrolled {
    padding: 10px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

.saas-navbar .navbar-brand {
    font-weight: 800;
    font-size: 1.5rem;
    color: #1a1a2e;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.saas-navbar .navbar-brand .brand-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
}

.brand-logo-image {
    display: block;
    object-fit: cover;
    flex-shrink: 0;
    border-radius: 10px;
}

.saas-navbar .navbar-brand .brand-logo-image {
    width: 36px;
    height: 36px;
}

.saas-navbar .nav-link {
    color: #555;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 18px !important;
    transition: color 0.2s;
}

.saas-navbar .nav-link:hover { color: var(--color-primary); }

.btn-cta {
    background: var(--gradient-primary);
    color: white !important;
    border: none;
    padding: 10px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(230, 92, 0, 0.35);
    color: white;
}

.btn-cta-outline {
    background: transparent;
    color: var(--color-primary) !important;
    border: 2px solid var(--color-primary);
    padding: 10px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-cta-outline:hover {
    background: var(--gradient-primary);
    color: white !important;
    border-color: transparent;
    transform: translateY(-2px);
}

.btn-cta-white {
    background: white;
    color: var(--color-primary) !important;
    border: none;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-cta-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255,255,255,0.3);
}

.btn-cta-lg {
    padding: 14px 40px;
    font-size: 1.1rem;
}

/* Floating WhatsApp FAB (SaaS site) */
.saas-floating-whatsapp {
    position: fixed !important;
    bottom: 24px !important;
    left: 24px !important;
    z-index: 1000 !important;
    width: 56px !important;
    height: 56px !important;
    border-radius: 50% !important;
    background: #25d366 !important;
    color: white !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.45) !important;
    text-decoration: none !important;
    transition: transform 0.2s, box-shadow 0.2s !important;
}
.saas-floating-whatsapp:hover {
    color: white !important;
    transform: scale(1.05) !important;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5) !important;
}
.saas-floating-whatsapp i { font-size: 1.6rem !important; }
@media (max-width: 768px) {
    .saas-floating-whatsapp { bottom: 20px !important; left: 20px !important; width: 52px !important; height: 52px !important; }
}
@media (max-width: 480px) {
    .saas-floating-whatsapp { bottom: 16px !important; left: 16px !important; width: 48px !important; height: 48px !important; }
}

/* ========== HERO ========== */
.hero-section {
    padding: 160px 0 100px;
    position: relative;
    background: white;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(247,151,30,0.1) 0%, transparent 70%);
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,210,0,0.06) 0%, transparent 70%);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    color: #666;
    line-height: 1.7;
    max-width: 580px;
    font-weight: 400;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.hero-actions {
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    background: rgba(230, 92, 0, 0.1);
    color: #c45a00;
}

.hero-preview {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-hover);
    border: 1px solid rgba(0,0,0,0.08);
    background: #f8f9fb;
}

.hero-preview img,
.hero-preview .preview-placeholder {
    width: 100%;
    display: block;
}

.preview-placeholder {
    padding: 60px 40px;
    background: linear-gradient(135deg, #f8f9fb 0%, #eef1f8 100%);
    text-align: center;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 48px;
}

.hero-stat {
    text-align: left;
}

.hero-stat-value {
    font-size: 2rem;
    font-weight: 800;
}

.hero-stat-label {
    font-size: 0.85rem;
    color: #888;
    font-weight: 500;
    margin-top: 2px;
}

/* ========== SECTION STYLES ========== */
.section {
    padding: 100px 0;
    position: relative;
}

.section-light { background: #ffffff; }
.section-soft { background: #f8f9fb; }

.section-gradient {
    background: var(--gradient-primary);
    color: white;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
}

.section-tag-blue,
.section-tag-orange {
    background: rgba(230,92,0,0.12);
    color: #c45a00;
}

.section-tag-green {
    background: rgba(56,239,125,0.1);
    color: #11998e;
}

.section-tag-white {
    background: rgba(255,255,255,0.2);
    color: white;
}

.section-heading {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.section-desc {
    font-size: 1.1rem;
    color: #777;
    max-width: 640px;
    line-height: 1.7;
}

.section-desc-white {
    color: rgba(255,255,255,0.85);
}

/* ========== FEATURE CARDS ========== */
.feature-card {
    background: var(--white-glass);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    opacity: 0;
    transition: opacity 0.3s;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: transparent;
}

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

.feature-card-purple::before { background: var(--gradient-primary); }
.feature-card-blue::before { background: var(--gradient-secondary); }
.feature-card-green::before { background: var(--gradient-green); }
.feature-card-warm::before { background: var(--gradient-warm); }
.feature-card-orange::before { background: var(--gradient-orange); }
.feature-card-sky::before { background: var(--gradient-sky); }

.feature-icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 24px;
    color: white;
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.feature-card p {
    color: #777;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0;
}

.feature-card .feature-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: gap 0.3s;
}

.feature-card .feature-link:hover { gap: 10px; }

/* ========== HOW IT WORKS ========== */
.steps-timeline {
    position: relative;
}

.step-item {
    display: flex;
    gap: 32px;
    margin-bottom: 48px;
    align-items: flex-start;
}

.step-number {
    width: 64px;
    height: 64px;
    min-width: 64px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
}

.step-content h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.step-content p {
    color: #777;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0;
}

/* ========== FEATURE DETAIL SECTIONS ========== */
.feature-detail {
    display: flex;
    align-items: center;
    gap: 60px;
}

.feature-detail-visual {
    flex: 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: #f8f9fb;
    padding: 40px;
    min-height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-detail-content { flex: 1; }

.feature-detail-content h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.feature-detail-content p {
    color: #666;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 24px;
}

.feature-bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
}

.feature-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    font-size: 0.95rem;
    color: #555;
}

.feature-bullets li i {
    font-size: 1.1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.visual-mockup {
    width: 100%;
    border-radius: var(--radius-md);
    border: 1px solid rgba(0,0,0,0.08);
    background: white;
    padding: 24px;
    box-shadow: var(--shadow-soft);
}

.mockup-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 16px;
    border-bottom: 1px solid #eee;
    margin-bottom: 16px;
}

.preview-url {
    display: inline-block;
    max-width: calc(100% - 92px);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    vertical-align: middle;
}

.logo-strip-wrap {
    row-gap: 14px;
}

.logo-strip-image {
    max-height: 26px;
    width: auto;
    object-fit: contain;
}

.logo-strip-note {
    max-width: 520px;
}

.mockup-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

/* ========== PRICING ========== */
.pricing-card {
    background: white;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.pricing-card.popular {
    border: 2px solid var(--color-primary);
    box-shadow: 0 10px 40px rgba(230,92,0,0.15);
}

.pricing-popular-tag {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: 4px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.pricing-price {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 4px;
}

.pricing-period {
    font-size: 0.9rem;
    color: #aaa;
    margin-bottom: 24px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.95rem;
    color: #555;
}

.pricing-features li i { font-size: 1rem; }

/* ========== TESTIMONIALS ========== */
.testimonial-card {
    background: white;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: var(--radius-lg);
    padding: 36px;
    transition: all 0.3s ease;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}

.testimonial-stars {
    color: #ffd200;
    font-size: 1rem;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    color: white;
}

.testimonial-name {
    font-weight: 700;
    font-size: 0.95rem;
}

.testimonial-role {
    font-size: 0.8rem;
    color: #aaa;
}

/* ========== CTA SECTION ========== */
.cta-section {
    padding: 100px 0;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
}

.cta-desc {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 36px;
    max-width: 500px;
}

/* ========== FOOTER ========== */
.saas-footer {
    padding: 80px 0 40px;
    background: #fafbfd;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.footer-brand {
    font-weight: 800;
    font-size: 1.3rem;
    color: #1a1a2e;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-brand .brand-logo-image {
    width: 32px;
    height: 32px;
}

.footer-desc {
    color: #888;
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 300px;
}

.footer-heading {
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #1a1a2e;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li { margin-bottom: 10px; }

.footer-links a {
    color: #888;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

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

.footer-bottom {
    padding-top: 32px;
    margin-top: 48px;
    border-top: 1px solid rgba(0,0,0,0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    color: #aaa;
    font-size: 0.85rem;
    margin: 0;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0,0,0,0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    text-decoration: none;
    transition: all 0.2s;
}

.footer-social a:hover {
    background: var(--gradient-primary);
    color: white;
}

/* ========== ANIMATIONS ========== */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

/* ========== RESPONSIVE ========== */
@media (max-width: 991px) {
    .feature-detail {
        flex-direction: column;
        gap: 40px;
    }
    .feature-detail.reverse { flex-direction: column; }
    .hero-stats { gap: 24px; }
    .section { padding: 72px 0; }
    .hero-title { font-size: clamp(1.9rem, 4vw, 2.8rem); }
    .section-heading { font-size: clamp(1.6rem, 3vw, 2.2rem); }
    .section-desc { font-size: 1rem; }
    .pricing-price { font-size: 2.4rem; }
    .cta-title { font-size: clamp(1.6rem, 3vw, 2.2rem); }
    .cta-desc { font-size: 1rem; }
}

@media (max-width: 767px) {
    html { scroll-padding-top: 84px; }
    #features,
    #how-it-works,
    #whatsapp,
    #tracking,
    #pricing,
    #about {
        scroll-margin-top: 84px;
    }
    .hero-section { padding: 100px 0 50px; }
    .hero-section .row.align-items-center {
        text-align: center;
    }
    .hero-title { font-size: 1.5rem; line-height: 1.2; }
    .hero-subtitle {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-left: auto;
        margin-right: auto;
    }
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 12px !important;
    }
    .hero-actions .btn-cta-lg,
    .hero-actions .btn-cta-outline {
        width: 100%;
        justify-content: center;
    }
    .hero-badges { margin-top: 20px; }
    .hero-badges { justify-content: center; }
    .hero-badge { font-size: 0.75rem; padding: 6px 12px; }
    .hero-stats {
        flex-wrap: wrap;
        gap: 16px;
        margin-top: 28px;
        justify-content: center;
    }
    .hero-stat {
        min-width: 92px;
        text-align: center;
    }
    .hero-stat-value { font-size: 1.25rem; }
    .hero-stat-label { font-size: 0.75rem; }
    .hero-preview {
        max-width: 420px;
        margin: 0 auto;
    }
    .preview-placeholder {
        padding: 30px 18px;
    }
    .section { padding: 56px 0; }
    .section-heading { font-size: 1.35rem; margin-bottom: 14px; }
    .section-desc { font-size: 0.9rem; }
    .section-tag { font-size: 0.7rem; padding: 5px 12px; }
    .step-item { flex-direction: column; gap: 12px; }
    .step-content h4 { font-size: 1.05rem; }
    .step-content p { font-size: 0.85rem; }
    .step-number { width: 48px; height: 48px; min-width: 48px; font-size: 1.2rem; }
    .feature-detail-visual { min-height: 200px; padding: 20px; }
    .feature-card,
    .testimonial-card,
    .pricing-card {
        padding: 28px 22px;
    }
    .feature-card h3 { font-size: 1.1rem; }
    .feature-card p { font-size: 0.85rem; }
    .feature-card .feature-link { font-size: 0.8rem; }
    .feature-bullets li { font-size: 0.85rem; }
    .pricing-name { font-size: 0.95rem; }
    .pricing-price { font-size: 2rem; }
    .pricing-period { font-size: 0.8rem; }
    .pricing-features li { font-size: 0.85rem; }
    .testimonial-text { font-size: 0.9rem; }
    .testimonial-name { font-size: 0.85rem; }
    .testimonial-role { font-size: 0.75rem; }
    .cta-title { font-size: 1.4rem; }
    .cta-desc { font-size: 0.9rem; margin-bottom: 24px; }
    .pricing-trial-pill {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
        gap: 6px !important;
        padding: 10px 16px !important;
    }
    .mockup-header {
        flex-wrap: wrap;
        justify-content: center;
    }
    .preview-url {
        max-width: calc(100% - 12px);
        margin-left: 0 !important;
    }
    .logo-strip-wrap {
        justify-content: center;
    }
    .logo-strip-image {
        max-height: 22px;
    }
    .logo-strip-note {
        text-align: center;
        max-width: none;
    }
    .footer-brand { font-size: 1.1rem; }
    .footer-desc { font-size: 0.85rem; }
    .footer-heading { font-size: 0.8rem; }
    .footer-links a { font-size: 0.8rem; }
    .footer-bottom p { font-size: 0.8rem; }

    /* Footer: centre on phones */
    .saas-footer .row.g-5,
    .saas-footer .row.g-4 {
        text-align: center;
    }
    .saas-footer .footer-brand {
        justify-content: center;
    }
    .saas-footer .footer-desc {
        margin-left: auto;
        margin-right: auto;
    }
    .saas-footer .footer-heading,
    .saas-footer .footer-links {
        text-align: center;
    }
    .saas-footer .footer-bottom {
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }
    .saas-footer .footer-social {
        justify-content: center;
    }

    /* Smaller, compact navbar CTA on phones */
    .saas-navbar .btn-cta {
        padding: 6px 14px;
        font-size: 0.75rem;
        border-radius: 999px;
        box-shadow: none;
        white-space: nowrap;
    }
    .saas-navbar .btn-cta i { font-size: 0.85rem; }
    .saas-navbar .navbar-brand { font-size: 1.2rem; }
    .saas-navbar .nav-link { font-size: 0.85rem; padding: 6px 12px !important; }
    .saas-navbar .container > .d-flex {
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .hero-section { padding: 92px 0 46px; }
    .preview-placeholder {
        padding: 24px 14px;
    }
    .visual-mockup {
        padding: 18px;
    }
    .logo-strip-image {
        max-height: 20px;
    }
}
