:root {
    --meh-primary: #2563eb;
    --meh-primary-dark: #1d4ed8;
    --meh-primary-soft: rgba(37, 99, 235, 0.12);
    --meh-secondary: #0f172a;
    --meh-accent: #22c55e;
    --meh-accent-soft: rgba(34, 197, 94, 0.12);
    --meh-muted: #64748b;
    --meh-surface: #f1f5f9;
    --meh-border: #e2e8f0;
    --meh-radius: 1.15rem;
    --meh-radius-lg: 1.5rem;
    --meh-shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
    --meh-shadow-lg: 0 24px 60px rgba(15, 23, 42, 0.12);
    --font-sans: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
}

* {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    color: var(--meh-secondary);
    background: #fff;
    overflow-x: hidden;
}

.skip-link {
    position: absolute;
    left: 1rem;
    top: -3rem;
    z-index: 2000;
    background: var(--meh-primary);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: 1rem;
}

.text-gradient {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 45%, #0ea5e9 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.brand-logo-mark {
    width: 2.5rem;
    height: auto;
    max-height: 2.75rem;
    border-radius: 0;
    display: block;
    flex-shrink: 0;
    box-shadow: none;
    object-fit: contain;
    background: transparent;
}

.brand-logo-full {
    height: 3.1rem;
    width: auto;
    max-width: 16rem;
    display: block;
    object-fit: contain;
}

.brand-text {
    letter-spacing: -0.02em;
    color: var(--meh-secondary);
    font-size: 1.15rem;
}

.navbar-brand:hover .brand-text {
    color: var(--meh-primary);
}

.landing-nav {
    backdrop-filter: blur(14px);
    background: rgba(255, 255, 255, 0.88) !important;
    border-bottom: 1px solid rgba(226, 232, 240, 0.9);
    padding-top: 0.7rem;
    padding-bottom: 0.7rem;
}

.landing-nav .nav-link {
    font-weight: 600;
    color: #334155;
    font-size: 0.95rem;
    padding: 0.45rem 0.85rem !important;
}

.landing-nav .nav-link:hover,
.landing-nav .nav-link:focus {
    color: var(--meh-primary);
}

.nav-cta {
    border-radius: 999px;
    font-weight: 700;
    padding-inline: 1.15rem !important;
}

.btn-primary {
    --bs-btn-bg: var(--meh-primary);
    --bs-btn-border-color: var(--meh-primary);
    --bs-btn-hover-bg: var(--meh-primary-dark);
    --bs-btn-hover-border-color: var(--meh-primary-dark);
    --bs-btn-active-bg: var(--meh-primary-dark);
    --bs-btn-active-border-color: var(--meh-primary-dark);
    font-weight: 700;
    border-radius: 0.85rem;
    box-shadow: 0 10px 24px rgba(37, 99, 235, 0.28);
}

.btn-outline-primary {
    --bs-btn-color: var(--meh-primary);
    --bs-btn-border-color: var(--meh-primary);
    --bs-btn-hover-bg: var(--meh-primary);
    --bs-btn-hover-border-color: var(--meh-primary);
    font-weight: 700;
    border-radius: 0.85rem;
}

.btn-outline-dark {
    border-radius: 0.85rem;
    font-weight: 700;
}

/* Hero */
.hero-section {
    position: relative;
    padding: 5.5rem 0 4.5rem;
    background:
        radial-gradient(ellipse 80% 60% at 100% 0%, rgba(37, 99, 235, 0.16), transparent 55%),
        radial-gradient(ellipse 50% 40% at 0% 80%, rgba(34, 197, 94, 0.08), transparent 50%),
        linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    width: 28rem;
    height: 28rem;
    right: -6rem;
    top: -4rem;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.18), transparent 70%);
    pointer-events: none;
    animation: pulse-glow 6s ease-in-out infinite;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.45rem 0.95rem;
    border-radius: 999px;
    background: var(--meh-primary-soft);
    color: var(--meh-primary);
    font-size: 0.875rem;
    font-weight: 700;
}

.hero-title {
    font-size: clamp(2.15rem, 5vw, 3.55rem);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -0.035em;
}

.hero-lead {
    font-size: 1.1rem;
    color: var(--meh-muted);
    line-height: 1.65;
    max-width: 36rem;
}

.hero-btn {
    min-width: 9.5rem;
}

.hero-visual {
    position: relative;
    padding: 0.75rem;
}

.hero-visual-3d {
    perspective: 1400px;
    padding: 1rem 0.5rem 1.5rem;
}

.hero-visual-3d .hero-img {
    border-radius: var(--meh-radius-lg);
    transform: rotateY(-5deg) rotateX(3deg);
    transform-style: preserve-3d;
    box-shadow:
        0 28px 60px rgba(15, 23, 42, 0.22),
        0 8px 20px rgba(37, 99, 235, 0.1),
        10px 16px 0 rgba(15, 23, 42, 0.04);
    transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.hero-visual-3d:hover .hero-img {
    transform: rotateY(-2deg) rotateX(1deg) translateY(-4px);
}

.hero-visual-3d .hero-browser-chrome {
    display: none;
}

.hero-img {
    width: 100%;
    height: auto;
    border-radius: var(--meh-radius-lg);
    box-shadow: var(--meh-shadow-lg);
    border: 1px solid rgba(226, 232, 240, 0.9);
    background: #fff;
    display: block;
}

.hero-float {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--meh-border);
    border-radius: 1rem;
    padding: 0.75rem 1rem;
    box-shadow:
        0 14px 32px rgba(15, 23, 42, 0.14),
        0 2px 0 rgba(255, 255, 255, 0.9) inset;
    backdrop-filter: blur(8px);
    animation: float-y 4.5s ease-in-out infinite;
    z-index: 3;
}

.hero-float i {
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 0.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.hero-float .tiny {
    display: block;
    font-size: 0.7rem;
    color: var(--meh-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.hero-float strong {
    font-size: 0.95rem;
}

.hero-float-sales {
    left: -0.5rem;
    top: 18%;
}

.hero-float-sales i {
    background: var(--meh-primary-soft);
    color: var(--meh-primary);
}

.hero-float-stock {
    right: -0.25rem;
    bottom: 16%;
    animation-delay: 1.2s;
}

.hero-float-stock i {
    background: var(--meh-accent-soft);
    color: var(--meh-accent);
}

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

.stat-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.5rem 0.9rem;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--meh-border);
    font-size: 0.85rem;
    font-weight: 700;
    color: #334155;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04);
}

.stat-pill i {
    color: var(--meh-primary);
}

/* Trust strip */
.trust-strip {
    padding: 1.25rem 0;
    background: var(--meh-secondary);
    color: #fff;
}

.trust-item {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    padding: 0.35rem 0;
}

.trust-item strong {
    font-size: 1rem;
    letter-spacing: -0.02em;
}

.trust-item span {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.65);
}

/* Sections */
.section-block {
    padding: 5rem 0;
}

.section-muted {
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}

.section-eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--meh-primary);
    margin-bottom: 0.75rem;
}

.section-title {
    font-weight: 800;
    letter-spacing: -0.03em;
    font-size: clamp(1.7rem, 3.5vw, 2.35rem);
    margin-bottom: 0.75rem;
}

.section-subtitle {
    color: var(--meh-muted);
    max-width: 38rem;
    margin: 0 auto;
    line-height: 1.65;
}

.section-head {
    margin-bottom: 3rem;
}

/* Products & Solutions */
.product-card {
    border: 1px solid var(--meh-border);
    border-radius: var(--meh-radius);
    background: #fff;
    box-shadow:
        0 10px 28px rgba(15, 23, 42, 0.06),
        0 1px 0 rgba(255, 255, 255, 0.85) inset;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease, opacity 0.28s ease, filter 0.28s ease;
}

.product-card > a {
    color: inherit;
}

.product-card-muted {
    opacity: 0.72;
    filter: saturate(0.85);
}

.product-card-muted:hover {
    opacity: 0.92;
    filter: saturate(1);
}

.product-card-muted .product-shot {
    filter: grayscale(0.15);
}

.btn-notify {
    background: #fff;
    border: 1px solid rgba(37, 99, 235, 0.35);
    color: var(--meh-primary);
    font-weight: 700;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.08);
}

.btn-notify:hover {
    background: var(--meh-primary-soft);
    border-color: var(--meh-primary);
    color: var(--meh-primary);
}

.product-actions .btn {
    pointer-events: auto;
}

.breadcrumb a {
    color: var(--meh-primary);
    text-decoration: none;
    font-weight: 600;
}

.breadcrumb-item.active {
    color: var(--meh-muted);
}

.product-card:hover {
    transform: translateY(-8px) rotateX(1.5deg);
    box-shadow:
        0 22px 48px rgba(15, 23, 42, 0.12),
        0 1px 0 rgba(255, 255, 255, 0.9) inset;
    border-color: rgba(37, 99, 235, 0.28);
}

.product-card.is-available {
    border-color: rgba(34, 197, 94, 0.35);
    box-shadow: 0 10px 32px rgba(34, 197, 94, 0.1);
}

.product-card.is-available:hover {
    border-color: rgba(34, 197, 94, 0.55);
}

.product-card.is-development {
    border-color: rgba(37, 99, 235, 0.22);
}

.product-card.is-planned {
    border-color: rgba(148, 163, 184, 0.45);
}

.product-card-featured {
    box-shadow: 0 12px 36px rgba(34, 197, 94, 0.12);
    border-color: rgba(34, 197, 94, 0.4);
}

.product-card .product-body {
    flex: 1;
}

.product-card .product-desc {
    min-height: 4.2em;
}

.products-roadmap-note {
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
    color: var(--meh-muted);
    font-size: 0.95rem;
    line-height: 1.65;
}

.product-media {
    position: relative;
    background:
        linear-gradient(145deg, rgba(37, 99, 235, 0.06), rgba(15, 23, 42, 0.02));
    overflow: hidden;
    aspect-ratio: 16 / 10;
}

.product-shot {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

.product-card:hover .product-shot {
    transform: scale(1.035);
}

.product-status-badge {
    position: absolute;
    top: 0.85rem;
    left: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 800;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--meh-border);
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.08);
    z-index: 2;
}

.product-status-badge .status-dot {
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 50%;
    display: inline-block;
}

.status-available {
    color: #15803d;
}

.status-available .status-dot {
    background: #22c55e;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.25);
}

.status-development {
    color: #1d4ed8;
}

.status-development .status-dot {
    background: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.25);
}

.status-planned {
    color: #475569;
}

.status-planned .status-dot {
    background: #94a3b8;
    box-shadow: 0 0 0 3px rgba(148, 163, 184, 0.3);
}

.status-soon {
    color: #a16207;
}

.status-soon .status-dot {
    background: #eab308;
    box-shadow: 0 0 0 3px rgba(234, 179, 8, 0.25);
}

.product-live-badge {
    position: absolute;
    top: 0.85rem;
    right: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(135deg, #16a34a, #22c55e);
    box-shadow: 0 8px 20px rgba(34, 197, 94, 0.4);
    z-index: 2;
}

.pulse-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: #fff;
    animation: live-pulse 1.6s ease-in-out infinite;
}

@keyframes live-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.55; transform: scale(0.85); }
}

.product-body {
    padding: 1.35rem 1.35rem 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-icon {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 0.85rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--meh-primary-soft);
    color: var(--meh-primary);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.product-card.is-available .product-icon {
    background: var(--meh-accent-soft);
    color: #16a34a;
}

.product-card.is-development .product-icon {
    background: var(--meh-primary-soft);
    color: var(--meh-primary);
}

.product-card.is-planned .product-icon {
    background: #f1f5f9;
    color: #64748b;
}

.product-card.is-coming-soon .product-icon {
    background: #fef9c3;
    color: #a16207;
}

.product-title {
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 0;
    line-height: 1.3;
}

.product-desc {
    color: var(--meh-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.product-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.4rem 0.75rem;
    margin-top: auto;
}

.product-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.35rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: #334155;
    line-height: 1.35;
}

.product-features i {
    color: var(--meh-accent);
    margin-top: 0.1rem;
    flex-shrink: 0;
}

.product-card.is-coming-soon .product-features i,
.product-card.is-development .product-features i {
    color: var(--meh-primary);
}

.product-card.is-planned .product-features i {
    color: #94a3b8;
}

@media (max-width: 575.98px) {
    .product-features {
        grid-template-columns: 1fr;
    }
}

/* Feature / benefit cards */
.feature-card,
.benefit-card,
.pricing-card,
.offer-card,
.contact-card,
.faq-item {
    border: 1px solid var(--meh-border);
    border-radius: var(--meh-radius);
    background: #fff;
    box-shadow: 0 6px 24px rgba(15, 23, 42, 0.04);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.feature-card {
    padding: 1.5rem;
}

.feature-card:hover,
.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--meh-shadow);
    border-color: rgba(37, 99, 235, 0.25);
}

.feature-icon,
.benefit-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.9rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--meh-primary-soft);
    color: var(--meh-primary);
    font-size: 1.35rem;
    margin-bottom: 1rem;
}

.benefit-card {
    padding: 1.5rem;
    text-align: center;
}

.benefit-card .benefit-icon {
    margin-left: auto;
    margin-right: auto;
}

/* Pricing — 3-column plan grid */
.pricing-plan-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 2rem 1.6rem 1.75rem;
    border: 1px solid var(--meh-border);
    border-radius: var(--meh-radius);
    background: #fff;
    box-shadow:
        0 10px 28px rgba(15, 23, 42, 0.06),
        0 2px 0 rgba(255, 255, 255, 0.8) inset;
    transform-style: preserve-3d;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    overflow: hidden;
}

.pricing-plan-card:hover {
    transform: translateY(-8px) rotateX(1deg);
    box-shadow:
        0 22px 48px rgba(15, 23, 42, 0.12),
        0 2px 0 rgba(255, 255, 255, 0.9) inset;
    border-color: rgba(37, 99, 235, 0.28);
}

.pricing-plan-card.is-popular {
    border-color: var(--meh-primary);
    background:
        linear-gradient(180deg, rgba(37, 99, 235, 0.08) 0%, #fff 42%);
    box-shadow:
        0 0 0 1px var(--meh-primary),
        0 18px 44px rgba(37, 99, 235, 0.18);
    z-index: 1;
    transform: scale(1.03);
}

.pricing-plan-card.is-popular:hover {
    transform: scale(1.03) translateY(-6px);
}

.pricing-plan-card.is-value {
    border-color: rgba(34, 197, 94, 0.45);
    background:
        linear-gradient(180deg, rgba(34, 197, 94, 0.07) 0%, #fff 40%);
}

.plan-ribbon {
    position: absolute;
    top: 1rem;
    right: -2.35rem;
    transform: rotate(35deg);
    background: var(--meh-primary);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 0.35rem 3rem;
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.35);
    z-index: 2;
}

.pricing-plan-card.is-value .plan-ribbon {
    background: var(--meh-accent);
    box-shadow: 0 6px 16px rgba(34, 197, 94, 0.35);
}

.plan-top .price-badge {
    margin-bottom: 0.65rem;
}

.plan-price {
    padding: 0.85rem 0;
    border-top: 1px dashed var(--meh-border);
    border-bottom: 1px dashed var(--meh-border);
}

/* Pricing (legacy helpers kept for compatibility) */
.pricing-main {
    padding: 2rem;
    border-color: rgba(37, 99, 235, 0.2);
    box-shadow: var(--meh-shadow);
}

.price-badge {
    background: var(--meh-primary-soft);
    color: var(--meh-primary);
    font-weight: 700;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
    padding: 0.65rem 0;
    border-bottom: 1px dashed var(--meh-border);
}

.price-row .label {
    color: var(--meh-muted);
    font-weight: 600;
    font-size: 0.95rem;
    flex: 1 1 auto;
    min-width: 0;
}

.price-row .value {
    font-weight: 800;
    font-size: 1.15rem;
    white-space: nowrap;
    flex: 0 0 auto;
    text-align: right;
}

.price-row-monthly .value {
    font-size: 1.5rem;
}

.price-row-monthly .value small {
    font-size: 0.85rem;
    color: var(--meh-muted);
    font-weight: 600;
    margin-left: 0.2rem;
    white-space: nowrap;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    margin-bottom: 0.65rem;
    font-weight: 500;
}

.pricing-features i {
    color: var(--meh-accent);
    margin-top: 0.15rem;
}

/* Offers */
.offer-card {
    position: relative;
    padding: 2rem 1.75rem 1.75rem;
    overflow: hidden;
}

.offer-card.is-popular {
    border-color: var(--meh-primary);
    box-shadow: 0 0 0 1px var(--meh-primary), var(--meh-shadow-lg);
    background:
        linear-gradient(180deg, rgba(37, 99, 235, 0.06) 0%, #fff 38%);
}

.offer-card-head {
    padding-right: 4.5rem;
}

.offer-ribbon {
    position: absolute;
    top: 1rem;
    right: -2.4rem;
    transform: rotate(35deg);
    background: var(--meh-primary);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 0.35rem 3rem;
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.35);
    z-index: 2;
}

.off-badge {
    display: inline-flex;
    align-items: center;
    background: var(--meh-accent);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    white-space: nowrap;
    position: relative;
    z-index: 1;
}

.offer-price-block {
    background: var(--meh-surface);
    border-radius: 1rem;
    padding: 1rem 1.15rem;
}

.offer-price-block .original {
    color: var(--meh-muted);
    font-size: 0.9rem;
    margin: 0;
}

.offer-price-block .now {
    font-size: 1.35rem;
    margin: 0.25rem 0;
}

.offer-price-block .now strong {
    color: var(--meh-primary);
    font-size: 1.55rem;
}

.offer-price-block .save {
    color: #15803d;
    font-weight: 700;
    font-size: 0.95rem;
}

.offer-breakdown li {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.55rem 0;
    border-bottom: 1px solid var(--meh-border);
    font-size: 0.95rem;
}

.offer-breakdown li span {
    color: var(--meh-muted);
}

.offer-breakdown li.total {
    border-bottom: 0;
    padding-top: 0.85rem;
    font-size: 1.05rem;
}

.offer-breakdown li.total strong {
    color: var(--meh-primary);
}

/* FAQ */
.faq-accordion .faq-item {
    margin-bottom: 0.85rem;
    overflow: hidden;
}

.faq-accordion .accordion-button {
    font-weight: 700;
    box-shadow: none !important;
    background: #fff;
    color: var(--meh-secondary);
}

.faq-accordion .accordion-button:not(.collapsed) {
    color: var(--meh-primary);
    background: rgba(37, 99, 235, 0.04);
}

.faq-accordion .accordion-button::after {
    background-size: 1rem;
}

.faq-accordion .accordion-body {
    line-height: 1.65;
}

/* Contact */
.contact-card {
    padding: 1.75rem;
}

.contact-channel {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 0.9rem 1rem;
    border-radius: 1rem;
    border: 1px solid var(--meh-border);
    text-decoration: none;
    color: inherit;
    margin-bottom: 0.85rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.contact-channel:hover {
    border-color: rgba(37, 99, 235, 0.35);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.08);
    transform: translateY(-2px);
    color: inherit;
}

.contact-channel strong {
    display: block;
    font-size: 0.95rem;
}

.contact-channel small {
    color: var(--meh-muted);
}

.channel-icon {
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 0.8rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.channel-icon.whatsapp {
    background: var(--meh-accent-soft);
    color: #16a34a;
}

.channel-icon.phone {
    background: var(--meh-primary-soft);
    color: var(--meh-primary);
}

.channel-icon.email {
    background: #fef3c7;
    color: #d97706;
}

.form-control {
    border-radius: 0.8rem;
    border-color: var(--meh-border);
    padding: 0.7rem 0.9rem;
}

.form-control:focus {
    border-color: var(--meh-primary);
    box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.15);
}

.form-label {
    font-weight: 600;
    font-size: 0.9rem;
}

/* Footer */
.landing-footer {
    background: linear-gradient(180deg, #0b1220 0%, var(--meh-secondary) 100%);
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.65);
    max-width: 22rem;
    line-height: 1.6;
}

.footer-heading {
    color: #fff;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.footer-links li {
    margin-bottom: 0.45rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: #fff;
}

.footer-social {
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 0.7rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    text-decoration: none;
    transition: background 0.2s ease;
}

.footer-social:hover {
    background: var(--meh-primary);
    color: #fff;
}

.footer-social[aria-label="Facebook"]:hover {
    background: #1877f2;
}

.footer-social[aria-label="Instagram"]:hover {
    background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af);
}

.footer-social[aria-label="WhatsApp"]:hover {
    background: #22c55e;
}

.whatsapp-float {
    position: fixed;
    right: 1.25rem;
    bottom: 1.25rem;
    width: 3.4rem;
    height: 3.4rem;
    border-radius: 999px;
    background: #22c55e;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.65rem;
    box-shadow: 0 12px 30px rgba(34, 197, 94, 0.45);
    z-index: 1050;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    animation: wa-pulse 2.4s ease-in-out infinite;
}

.whatsapp-float::after {
    content: "";
    position: absolute;
    inset: -4px;
    border-radius: inherit;
    border: 2px solid rgba(34, 197, 94, 0.45);
    animation: wa-ring 2.4s ease-out infinite;
    pointer-events: none;
}

.whatsapp-float:hover {
    color: #fff;
    transform: translateY(-3px) scale(1.06);
    box-shadow: 0 16px 36px rgba(34, 197, 94, 0.55);
    animation: none;
}

@keyframes wa-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.04); }
}

@keyframes wa-ring {
    0% { transform: scale(0.92); opacity: 0.8; }
    100% { transform: scale(1.35); opacity: 0; }
}

/* Reveal animations */
.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.65s ease, transform 0.65s ease;
    transition-delay: var(--reveal-delay, 0s);
}

.reveal.in-view {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay {
    transition-delay: 0.15s;
}

@media (max-width: 991.98px) {
    .hero-section {
        padding-top: 3.5rem;
        padding-bottom: 3rem;
    }

    .hero-float {
        display: none;
    }

    .hero-visual-3d .hero-img,
    .hero-visual-3d .hero-browser-chrome,
    .hero-visual-3d:hover .hero-img,
    .hero-visual-3d:hover .hero-browser-chrome {
        transform: none;
    }

    .section-block {
        padding: 3.75rem 0;
    }

    .pricing-plan-card.is-popular,
    .pricing-plan-card.is-popular:hover {
        transform: none;
    }

    .plan-ribbon,
    .offer-ribbon {
        display: none;
    }

    .offer-card-head {
        padding-right: 0;
    }

    .pricing-plan-card.is-popular,
    .offer-card.is-popular {
        outline: 2px solid var(--meh-primary);
    }
}

@media (max-width: 575.98px) {
    .hero-pills {
        flex-direction: column;
        align-items: flex-start;
    }

    .pricing-main {
        padding: 1.35rem;
    }

    .price-row {
        gap: 0.5rem;
    }

    .price-row .label {
        font-size: 0.85rem;
        line-height: 1.25;
    }

    .price-row .value {
        font-size: 1rem;
    }

    .price-row-monthly .value {
        font-size: 1.15rem;
    }

    .price-row-monthly .value small {
        font-size: 0.75rem;
        margin-left: 0.15rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}
