/* ═══════════════════════════════════════════════ */
/*  UNICO APPS — Global Styles                    */
/*  Modern / Minimalist / Wow Factor               */
/* ═══════════════════════════════════════════════ */

:root {
    /* Colors */
    --bg: #09090b;
    --bg-subtle: #111113;
    --bg-card: #151518;
    --bg-card-hover: #1c1c21;
    --border: #27272a;
    --border-subtle: #1e1e22;

    --text: #fafafa;
    --text-secondary: #a1a1aa;
    --text-muted: #71717a;

    --accent: #6d5cff;
    --accent-light: #8b7dff;
    --accent-dark: #5544dd;
    --accent-glow: rgba(109, 92, 255, 0.15);

    --gradient-1: #6d5cff;
    --gradient-2: #c084fc;
    --gradient-3: #f472b6;

    --success: #22c55e;
    --info: #3b82f6;

    /* Spacing */
    --section-padding: 120px;
    --container-width: 1200px;

    /* Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    /* Transitions */
    --ease-smooth: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ═══════════════════════════════════════════════ */
/*  RESET & BASE                                   */
/* ═══════════════════════════════════════════════ */

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--bg);
    overflow-x: hidden;
}

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

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

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
}

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

/* ═══════════════════════════════════════════════ */
/*  TYPOGRAPHY                                     */
/* ═══════════════════════════════════════════════ */

h1, h2, h3, h4 {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.title-gradient {
    background: linear-gradient(135deg, var(--gradient-1), var(--gradient-2), var(--gradient-3));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ═══════════════════════════════════════════════ */
/*  NAVBAR                                         */
/* ═══════════════════════════════════════════════ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.4s var(--ease-smooth);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(9, 9, 11, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
    padding: 10px 0;
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.54rem;
    font-weight: 700;
    z-index: 1001;
}

.logo-icon {
    color: var(--accent);
    font-size: 1.32rem;
}

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

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s var(--ease-smooth);
}

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

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    padding: 10px 24px;
    background: var(--accent);
    color: white;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.3s var(--ease-smooth);
}

.nav-cta:hover {
    background: var(--accent-light);
    transform: translateY(-1px);
    box-shadow: 0 8px 30px rgba(109, 92, 255, 0.3);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s var(--ease-smooth);
}

/* ═══════════════════════════════════════════════ */
/*  HERO                                           */
/* ═══════════════════════════════════════════════ */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 24px 80px;
    max-width: var(--container-width);
    margin: 0 auto;
    gap: 60px;
}

.hero-bg {
    position: fixed;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: -1;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.4;
    will-change: transform;
    contain: layout style;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: var(--gradient-1);
    top: -200px;
    right: -100px;
    animation: orbFloat1 20s ease-in-out infinite;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: var(--gradient-2);
    bottom: -150px;
    left: -150px;
    animation: orbFloat2 25s ease-in-out infinite;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: var(--gradient-3);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: orbFloat3 18s ease-in-out infinite;
}

@keyframes orbFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-80px, 60px) scale(1.1); }
    66% { transform: translate(40px, -40px) scale(0.9); }
}

@keyframes orbFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(60px, -80px) scale(1.15); }
    66% { transform: translate(-40px, 40px) scale(0.85); }
}

@keyframes orbFloat3 {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.3); }
}

.grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--accent-glow);
    border: 1px solid rgba(109, 92, 255, 0.2);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--accent-light);
    margin-bottom: 28px;
    animation: fadeInUp 0.8s var(--ease-smooth) both;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}

.hero-title {
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    margin-bottom: 24px;
    animation: fadeInUp 0.8s var(--ease-smooth) 0.1s both;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 500px;
    animation: fadeInUp 0.8s var(--ease-smooth) 0.2s both;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 56px;
    animation: fadeInUp 0.8s var(--ease-smooth) 0.3s both;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 28px;
    animation: fadeInUp 0.8s var(--ease-smooth) 0.4s both;
}

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

.stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1;
}

.stat-plus {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}

/* ═══════════════════════════════════════════════ */
/*  HERO VISUAL (PHONE MOCKUPS)                    */
/* ═══════════════════════════════════════════════ */

.hero-visual {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 580px;
    animation: fadeIn 1s var(--ease-smooth) 0.5s both;
}

.phone-mockup {
    width: 280px;
    height: 560px;
    background: #1a1a1f;
    border-radius: 36px;
    border: 2px solid var(--border);
    overflow: hidden;
    position: relative;
    box-shadow:
        0 0 0 1px rgba(255,255,255,0.05),
        0 25px 80px rgba(0,0,0,0.5),
        0 0 60px rgba(109, 92, 255, 0.08);
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 28px;
    background: #1a1a1f;
    border-radius: 0 0 18px 18px;
    z-index: 10;
}

.phone-main {
    z-index: 2;
    animation: phoneFloat 6s ease-in-out infinite;
}

.phone-secondary {
    position: absolute;
    right: -30px;
    top: 60px;
    transform: scale(0.85) rotate(5deg);
    z-index: 1;
    opacity: 0.8;
    animation: phoneFloat2 7s ease-in-out infinite;
}

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

@keyframes phoneFloat2 {
    0%, 100% { transform: scale(0.85) rotate(5deg) translateY(0); }
    50% { transform: scale(0.85) rotate(5deg) translateY(-20px); }
}

.phone-screen {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* App Preview Styles */
.app-preview {
    padding: 40px 16px 0;
    height: 100%;
    background: #0f0f13;
    font-size: 0.7rem;
}

.app-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.app-bar-title {
    font-weight: 700;
    font-size: 1rem;
}

.app-greeting {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.app-card-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 20px;
}

.app-mini-card {
    padding: 12px;
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.accent-blue {
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.accent-green {
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.mini-icon {
    font-size: 1.2rem;
}

.app-mini-card span {
    color: var(--text-muted);
    font-size: 0.65rem;
}

.app-mini-card strong {
    color: var(--text);
    font-size: 0.75rem;
}

.app-section-title {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.app-doctor-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    margin-bottom: 8px;
    border: 1px solid var(--border-subtle);
}

.doctor-avatar {
    font-size: 1.8rem;
}

.doctor-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.doctor-info strong {
    font-size: 0.75rem;
}

.doctor-info span {
    font-size: 0.65rem;
    color: var(--text-muted);
}

.doctor-rating {
    font-size: 0.6rem;
}

.app-btn-small {
    padding: 4px 10px;
    background: var(--accent);
    border: none;
    border-radius: 100px;
    color: white;
    font-size: 0.6rem;
    font-weight: 600;
    cursor: pointer;
}

.app-bottom-nav {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-around;
    padding: 12px 0;
    background: rgba(15, 15, 19, 0.95);
    border-top: 1px solid var(--border-subtle);
    font-size: 1.1rem;
}

.bnav-item {
    opacity: 0.4;
}

.bnav-item.active {
    opacity: 1;
}

/* Commerce App */
.app-promo-banner {
    background: linear-gradient(135deg, var(--gradient-1), var(--gradient-2));
    padding: 10px;
    border-radius: var(--radius-md);
    text-align: center;
    font-size: 0.7rem;
    font-weight: 600;
    margin-bottom: 14px;
}

.app-category-row {
    display: flex;
    gap: 6px;
    margin-bottom: 14px;
    overflow-x: auto;
}

.cat-chip {
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 0.6rem;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    white-space: nowrap;
    color: var(--text-muted);
}

.cat-chip.active {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
}

.app-product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 60px;
}

.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 10px;
    text-align: center;
}

.product-img {
    font-size: 2rem;
    margin-bottom: 4px;
}

.product-name {
    display: block;
    font-size: 0.65rem;
    color: var(--text-muted);
}

.product-price {
    font-size: 0.75rem;
    color: var(--accent-light);
}

/* Floating Badges */
.floating-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    z-index: 10;
    will-change: transform;
}

.badge-ios {
    top: 30px;
    left: 10px;
    color: var(--text);
    animation: badgeFloat 4s ease-in-out infinite;
}

.badge-android {
    bottom: 60px;
    right: 10px;
    color: #22c55e;
    animation: badgeFloat 4.5s ease-in-out infinite 1s;
}

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

/* ═══════════════════════════════════════════════ */
/*  BUTTONS                                        */
/* ═══════════════════════════════════════════════ */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s var(--ease-smooth);
    border-radius: 100px;
    font-size: 0.95rem;
    white-space: nowrap;
}

.btn-primary {
    padding: 14px 32px;
    background: var(--accent);
    color: white;
    box-shadow: 0 4px 20px rgba(109, 92, 255, 0.3);
}

.btn-primary:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 40px rgba(109, 92, 255, 0.4);
}

.btn-ghost {
    padding: 14px 32px;
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border);
}

.btn-ghost:hover {
    color: var(--text);
    border-color: var(--text-muted);
    background: rgba(255,255,255,0.03);
}

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

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

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

.btn-lg {
    padding: 18px 40px;
    font-size: 1rem;
}

/* ═══════════════════════════════════════════════ */
/*  BRANDS MARQUEE                                 */
/* ═══════════════════════════════════════════════ */

.brands-section {
    padding: 60px 0;
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    overflow: hidden;
    content-visibility: auto;
    contain-intrinsic-size: auto 200px;
}

.brands-label {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 28px;
}

.marquee {
    overflow: hidden;
    white-space: nowrap;
}

.marquee-track {
    display: inline-flex;
    align-items: center;
    gap: 40px;
    animation: marquee 30s linear infinite;
}

.marquee-item {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-muted);
    opacity: 0.5;
    transition: opacity 0.3s;
}

.marquee-item:hover {
    opacity: 1;
}

.marquee-dot {
    color: var(--accent);
    opacity: 0.3;
    font-size: 0.6rem;
}

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

/* ═══════════════════════════════════════════════ */
/*  SECTIONS COMMON                                */
/* ═══════════════════════════════════════════════ */

.section {
    padding: var(--section-padding) 0;
    position: relative;
    content-visibility: auto;
    contain-intrinsic-size: auto 800px;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent-light);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    margin-bottom: 20px;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ═══════════════════════════════════════════════ */
/*  FEATURES GRID (APPS SECTION)                   */
/* ═══════════════════════════════════════════════ */

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feature-card {
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    transition: all 0.4s var(--ease-smooth);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(109, 92, 255, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.feature-card:hover {
    border-color: rgba(109, 92, 255, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

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

.feature-card-large {
    grid-column: span 3;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 24px;
    padding: 40px;
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(109, 92, 255, 0.05) 100%);
    border-color: rgba(109, 92, 255, 0.15);
}

.feature-card-large h3 {
    font-size: 1.5rem;
}

.feature-icon-wrap {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-glow);
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.feature-card-large .feature-icon-wrap {
    width: 60px;
    height: 60px;
    margin-bottom: 0;
}

.feature-icon {
    font-size: 1.5rem;
}

.feature-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.feature-platforms {
    display: flex;
    gap: 10px;
    position: relative;
    z-index: 1;
}

.platform-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-secondary);
}

/* ═══════════════════════════════════════════════ */
/*  INDUSTRIES                                     */
/* ═══════════════════════════════════════════════ */

.section-industries {
    background: var(--bg-subtle);
}

.industries-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.industry-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all 0.4s var(--ease-smooth);
}

.industry-card:hover {
    border-color: rgba(109, 92, 255, 0.2);
    transform: translateY(-6px);
    box-shadow: 0 30px 80px rgba(0,0,0,0.2);
}

.industry-visual {
    padding: 24px 24px 0;
}

.industry-mockup {
    background: var(--bg);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    overflow: hidden;
    border: 1px solid var(--border-subtle);
    border-bottom: none;
}

.mock-header {
    padding: 14px 16px;
    font-weight: 700;
    font-size: 0.85rem;
}

.bg-blue { background: linear-gradient(135deg, #3b82f6, #1d4ed8); }
.bg-teal { background: linear-gradient(135deg, #14b8a6, #0d9488); }
.bg-green { background: linear-gradient(135deg, #22c55e, #16a34a); }
.bg-orange { background: linear-gradient(135deg, #f97316, #ea580c); }

.mock-body {
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.mock-item {
    padding: 10px 14px;
    background: var(--bg-subtle);
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.industry-content {
    padding: 28px;
}

.industry-emoji {
    font-size: 2rem;
    margin-bottom: 12px;
}

.industry-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.industry-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

.industry-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.industry-features li {
    font-size: 0.85rem;
    color: var(--text-muted);
    padding-left: 20px;
    position: relative;
}

.industry-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent);
}

/* ═══════════════════════════════════════════════ */
/*  WEB SECTION                                    */
/* ═══════════════════════════════════════════════ */

.web-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.web-content .section-tag,
.web-content .section-title {
    text-align: left;
}

.web-content .section-desc {
    margin: 0 0 40px;
    text-align: left;
}

.web-checklist {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.check-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.check-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(34, 197, 94, 0.15);
    border-radius: 50%;
    color: var(--success);
}

.check-item div strong {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.check-item div span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Browser Mockup */
.web-visual {
    position: relative;
}

.browser-mockup {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0,0,0,0.3);
}

.browser-bar {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    background: var(--bg-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.browser-dots {
    display: flex;
    gap: 6px;
}

.browser-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.browser-dots span:nth-child(1) { background: #ef4444; }
.browser-dots span:nth-child(2) { background: #eab308; }
.browser-dots span:nth-child(3) { background: #22c55e; }

.browser-url {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: var(--bg);
    border-radius: 6px;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.browser-content {
    padding: 24px;
}

.web-hero-mock {
    min-height: 280px;
}

.web-mock-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.web-mock-logo {
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.web-mock-links {
    display: flex;
    gap: 12px;
}

.web-mock-links span {
    width: 40px;
    height: 6px;
    background: var(--border);
    border-radius: 3px;
}

.web-mock-headline .line-long {
    width: 80%;
    height: 16px;
    background: var(--border);
    border-radius: 8px;
    margin-bottom: 10px;
}

.web-mock-headline .line-medium {
    width: 55%;
    height: 16px;
    background: var(--border);
    border-radius: 8px;
    margin-bottom: 24px;
}

.web-mock-cta {
    width: 120px;
    height: 32px;
    background: var(--accent);
    border-radius: 100px;
    margin-bottom: 32px;
    opacity: 0.7;
}

.web-mock-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.web-mock-card {
    padding: 16px;
    background: var(--bg);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-subtle);
}

.wmc-icon {
    width: 28px;
    height: 28px;
    background: var(--accent-glow);
    border-radius: 6px;
    margin-bottom: 10px;
}

.wmc-lines div {
    height: 6px;
    background: var(--border);
    border-radius: 3px;
    margin-bottom: 6px;
}

.wmc-lines div:first-child { width: 80%; }
.wmc-lines div:last-child { width: 60%; }

.web-stack-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
    justify-content: center;
}

.ws-badge {
    padding: 8px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-muted);
}

/* ═══════════════════════════════════════════════ */
/*  PROCESS TIMELINE                               */
/* ═══════════════════════════════════════════════ */

.process-timeline {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.process-line {
    display: none;
}

.process-step {
    position: relative;
    padding: 36px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    transition: all 0.4s var(--ease-smooth);
}

.process-step:hover {
    border-color: rgba(109, 92, 255, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.step-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gradient-1), var(--gradient-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 16px;
    opacity: 0.7;
}

.step-content h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.step-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ═══════════════════════════════════════════════ */
/*  PRICING                                        */
/* ═══════════════════════════════════════════════ */

.section-pricing {
    background: var(--bg-subtle);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    padding: 36px;
    transition: all 0.4s var(--ease-smooth);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.pricing-featured {
    border-color: var(--accent);
    background: linear-gradient(135deg, var(--bg-card), rgba(109, 92, 255, 0.08));
    transform: scale(1.05);
    box-shadow: 0 20px 60px rgba(109, 92, 255, 0.15);
}

.pricing-featured:hover {
    transform: scale(1.05) translateY(-4px);
}

.pricing-popular {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 16px;
    background: linear-gradient(135deg, var(--gradient-1), var(--gradient-2));
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 100px;
    white-space: nowrap;
}

.pricing-header {
    margin-bottom: 28px;
}

.pricing-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent-light);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.pricing-name {
    font-size: 1.6rem;
    margin: 8px 0;
}

.pricing-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
}

.pf-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.pf-check {
    color: var(--success);
    font-weight: 700;
}

/* ═══════════════════════════════════════════════ */
/*  TESTIMONIALS                                   */
/* ═══════════════════════════════════════════════ */

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    transition: all 0.4s var(--ease-smooth);
}

.testimonial-card:hover {
    border-color: rgba(109, 92, 255, 0.15);
    transform: translateY(-4px);
}

.testimonial-stars {
    margin-bottom: 16px;
    font-size: 0.85rem;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

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

.author-avatar {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-glow);
    color: var(--accent-light);
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
}

.testimonial-author strong {
    display: block;
    font-size: 0.85rem;
}

.testimonial-author span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ═══════════════════════════════════════════════ */
/*  FAQ                                             */
/* ═══════════════════════════════════════════════ */

.section-faq {
    background: linear-gradient(180deg, rgba(17, 17, 19, 0.4), transparent);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.faq-card {
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    transition: border-color 0.3s var(--ease-smooth), transform 0.3s var(--ease-smooth);
}

.faq-card:hover {
    border-color: rgba(109, 92, 255, 0.2);
    transform: translateY(-2px);
}

.faq-question {
    font-size: 1.15rem;
    margin-bottom: 14px;
}

.faq-answer {
    color: var(--text-secondary);
    font-size: 0.96rem;
    line-height: 1.7;
}

/* ═══════════════════════════════════════════════ */
/*  CTA / CONTACT                                  */
/* ═══════════════════════════════════════════════ */

.section-cta {
    background: var(--bg-subtle);
}

.cta-wrap {
    position: relative;
    padding: 60px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.cta-bg-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.cta-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
}

.cta-orb-1 {
    width: 400px;
    height: 400px;
    background: var(--gradient-1);
    top: -200px;
    right: -100px;
}

.cta-orb-2 {
    width: 300px;
    height: 300px;
    background: var(--gradient-3);
    bottom: -150px;
    left: -100px;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
    margin-bottom: 40px;
}

.cta-title {
    margin-bottom: 16px;
}

.cta-form {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

.form-group label {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    color: var(--text);
    outline: none;
    transition: all 0.3s;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

.form-group select {
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%2371717a' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

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

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

/* ═══════════════════════════════════════════════ */
/*  FOOTER                                         */
/* ═══════════════════════════════════════════════ */

.footer {
    padding: 60px 0 30px;
    border-top: 1px solid var(--border-subtle);
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 44px;
}

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

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-col h4 {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text);
}

.footer-col a {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 10px;
    transition: color 0.3s;
}

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

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid var(--border-subtle);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ═══════════════════════════════════════════════ */
/*  ANIMATIONS                                     */
/* ═══════════════════════════════════════════════ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Reveal on scroll */
[data-reveal] {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.7s var(--ease-smooth);
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered children */
[data-reveal]:nth-child(2) { transition-delay: 0.1s; }
[data-reveal]:nth-child(3) { transition-delay: 0.2s; }
[data-reveal]:nth-child(4) { transition-delay: 0.3s; }
[data-reveal]:nth-child(5) { transition-delay: 0.4s; }
[data-reveal]:nth-child(6) { transition-delay: 0.5s; }

/* ═══════════════════════════════════════════════ */
/*  CURSOR GLOW (WOW FACTOR)                       */
/* ═══════════════════════════════════════════════ */

.cursor-glow {
    position: fixed;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(109, 92, 255, 0.06), transparent 70%);
    pointer-events: none;
    z-index: 0;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s;
}

/* ═══════════════════════════════════════════════ */
/*  RESPONSIVE                                     */
/* ═══════════════════════════════════════════════ */

@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 140px;
    }

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

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

    .hero-actions {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        min-height: 500px;
    }

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

    .feature-card-large {
        grid-column: span 2;
    }

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

    .web-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .web-content .section-tag,
    .web-content .section-title,
    .web-content .section-desc {
        text-align: center;
    }

    .web-content .section-desc {
        margin: 0 auto 40px;
    }

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

    .pricing-featured:hover {
        transform: translateY(-4px);
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 80px;
    }

    /* ── Hamburger button (single span + ::before/::after) ── */
    .nav-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        background: rgba(255, 255, 255, 0.07);
        border-radius: 8px;
        z-index: 1001;
        padding: 0;
        flex-direction: row;
        gap: 0;
    }

    .nav-toggle span {
        position: relative;
        display: block;
        width: 22px;
        height: 2px;
        background-color: var(--text);
        border-radius: 99px;
        transition: 0.3s var(--ease-smooth);
    }

    .nav-toggle span::before,
    .nav-toggle span::after {
        position: absolute;
        content: "";
        left: 0;
        width: 100%;
        height: 2px;
        background-color: var(--text);
        border-radius: 99px;
        transition: 0.3s var(--ease-smooth);
    }

    .nav-toggle span::before { transform: translateY(-7px); }
    .nav-toggle span::after  { transform: translateY(7px); }

    .nav-toggle.active span          { height: 0; }
    .nav-toggle.active span::before  { transform: rotate(45deg); }
    .nav-toggle.active span::after   { transform: rotate(-45deg); }

    /* ── Mobile Menu Overlay ── */
    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        height: 100dvh;
        background: rgba(0, 0, 0, 0.92);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 24px;
        padding: 92px 24px 72px;
        box-sizing: border-box;
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        overflow-y: auto;
        overscroll-behavior: contain;
    }

    /* Subtle grid texture */
    .nav-links::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image:
            linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
            linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
        background-size: 46px 46px;
        pointer-events: none;
        opacity: 0.5;
    }

    /* Accent orbs */
    .nav-links::after {
        content: '';
        position: absolute;
        inset: 0;
        background:
            radial-gradient(circle at 85% 10%, rgba(109, 92, 255, 0.2), transparent 30%),
            radial-gradient(circle at 12% 88%, rgba(244, 114, 182, 0.12), transparent 28%);
        pointer-events: none;
    }

    .nav-links.open {
        opacity: 1;
        visibility: visible;
        pointer-events: all;
    }

    /* ── Nav links — default (off-screen, alternating sides) ── */
    .nav-link {
        position: relative;
        isolation: isolate;
        font-size: clamp(1.44rem, 6.3vw, 2.3rem);
        font-family: 'Space Grotesk', sans-serif;
        font-weight: 700;
        letter-spacing: -0.04em;
        width: auto;
        text-align: center;
        padding: 11px 28px;
        margin-bottom: 0;
        color: #ffffff;
        border-radius: 100px;
        opacity: 0;
        transition: opacity 0.28s ease, transform 0.28s ease;
        z-index: 1;
        will-change: transform;
    }

    /* Desktop underline: off */
    .nav-link::after { display: none; }

    .nav-link::before,
    .nav-cta::before {
        content: '';
        position: absolute;
        inset: 6px 7px;
        border-radius: 999px;
        background: var(--accent);
        opacity: 0;
        transform: scale(0.96);
        transition: opacity 0.12s linear, transform 0.12s ease-out;
        z-index: -1;
        pointer-events: none;
    }

    /* Kill desktop hover styles leaking into mobile */
    .nav-link:hover,
    .nav-cta:hover {
        color: #ffffff;
        background: transparent;
        box-shadow: none;
    }

    /* Fast pill hover for every item */
    .nav-links.open .nav-link:hover::before,
    .nav-links.open .nav-cta:hover::before {
        opacity: 1;
        transform: scale(1);
    }

    /* ODD  → slide in from LEFT */
    .nav-link:nth-of-type(odd)  { transform: translateX(-50%); }

    /* EVEN → slide in from RIGHT */
    .nav-link:nth-of-type(even) { transform: translateX(50%); }

    /* Active: rounded purple pill on selected item */
    .nav-link.active-link,
    .nav-cta.active-link {
        color: #ffffff;
    }

    .nav-link.active-link::before,
    .nav-cta.active-link::before {
        opacity: 1;
        transform: scale(1);
    }

    /* ── Open state: reset transforms, fade in ── */
    .nav-links.open .nav-link {
        opacity: 1;
        transform: translateX(0);
    }

    /* Stagger delays */
    .nav-links.open .nav-link:nth-of-type(1) { transition-delay: 0.12s; }
    .nav-links.open .nav-link:nth-of-type(2) { transition-delay: 0.18s; }
    .nav-links.open .nav-link:nth-of-type(3) { transition-delay: 0.24s; }
    .nav-links.open .nav-link:nth-of-type(4) { transition-delay: 0.30s; }

    /* ── CTA in mobile: same style as nav-link ── */
    .nav-cta {
        all: unset;
        position: relative;
        isolation: isolate;
        font-size: clamp(1.44rem, 6.3vw, 2.3rem);
        font-family: 'Space Grotesk', sans-serif;
        font-weight: 700;
        letter-spacing: -0.04em;
        width: auto;
        text-align: center;
        padding: 11px 28px;
        margin-bottom: 0;
        color: #ffffff;
        border-radius: 100px;
        opacity: 0;
        cursor: pointer;
        transition: opacity 0.28s ease, transform 0.28s ease;
        z-index: 1;
        transform: translateX(-50%);
        will-change: transform;
    }

    .nav-links.open .nav-cta {
        opacity: 1;
        transform: translateX(0);
        transition-delay: 0.36s;
    }

    .hero-title {
        font-size: clamp(2.2rem, 8vw, 3rem);
    }

    .hero-visual {
        min-height: 420px;
    }

    .phone-mockup {
        width: 220px;
        height: 440px;
    }

    .phone-secondary {
        right: -10px;
        top: 40px;
    }

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

    .feature-card-large {
        grid-column: span 1;
        grid-template-columns: 1fr;
        text-align: center;
    }

    .feature-platforms {
        justify-content: center;
    }

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

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

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

    .process-timeline {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

    .cta-wrap {
        padding: 36px 24px;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 16px;
    }

    .stat-divider {
        display: none;
    }

    .footer-links {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .hero {
        padding-top: 120px;
    }

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

    .btn {
        justify-content: center;
    }

    .hero-stats {
        justify-content: space-around;
    }

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

    .floating-badge {
        display: none;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* ═══════════════════════════════════════════════ */
/*  SMOOTH SCROLL BAR                              */
/* ═══════════════════════════════════════════════ */

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg);
}

::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-muted);
}

/* ═══════════════════════════════════════════════ */
/*  SELECTION                                      */
/* ═══════════════════════════════════════════════ */

::selection {
    background: rgba(109, 92, 255, 0.3);
    color: white;
}

/* ═══════════════════════════════════════════════ */
/*  WHATSAPP FLOATING BUTTON                       */
/* ═══════════════════════════════════════════════ */

.wa-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 12px;
}

.wa-btn {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
    transition: transform 0.3s var(--ease-bounce), box-shadow 0.3s;
    cursor: pointer;
    flex-shrink: 0;
}

.wa-btn:hover {
    transform: scale(1.12);
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.55);
}

.wa-icon {
    width: 32px;
    height: 32px;
    position: relative;
    z-index: 2;
}

/* Ping / Pulse animation */
.wa-ping {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: #25D366;
    animation: waPing 2.5s cubic-bezier(0, 0, 0.2, 1) infinite;
    z-index: 1;
}

@keyframes waPing {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    75%, 100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

/* Speech bubble */
.wa-bubble {
    background: var(--bg-card, #151518);
    color: var(--text, #fafafa);
    border: 1px solid var(--border, #27272a);
    padding: 12px 18px;
    border-radius: 14px 14px 4px 14px;
    font-size: 0.85rem;
    font-weight: 500;
    line-height: 1.4;
    white-space: nowrap;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    opacity: 0;
    transform: translateX(12px) scale(0.9);
    transition: opacity 0.4s var(--ease-smooth, ease), transform 0.4s var(--ease-smooth, ease);
    pointer-events: none;
}

.wa-bubble.visible {
    opacity: 1;
    transform: translateX(0) scale(1);
}

@media (max-width: 480px) {
    .wa-float {
        bottom: 20px;
        right: 20px;
    }

    .wa-btn {
        width: 52px;
        height: 52px;
    }

    .wa-icon {
        width: 28px;
        height: 28px;
    }

    .wa-bubble {
        font-size: 0.78rem;
        padding: 10px 14px;
    }
}

/* ═══════════════════════════════════════════════ */
/*  LANDING PAGES                                  */
/* ═══════════════════════════════════════════════ */

.landing-hero {
    min-height: auto;
    padding: 160px 0 80px;
}

.landing-hero .hero-content {
    max-width: 720px;
}

.landing-hero .hero-visual {
    display: none;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.breadcrumb a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb a:hover {
    color: var(--accent-light);
}

.breadcrumb span {
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .landing-hero {
        padding: 120px 0 60px;
    }
}

/* ═══════════════════════════════════════════════ */
/*  REDUCED MOTION                                 */
/* ═══════════════════════════════════════════════ */

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