/* Tibhra Premium Website Styles */
:root {
    --primary: #4f46e5;
    --primary-light: #6366f1;
    --primary-dark: #3730a3;
    --secondary: #10b981;
    --accent: #f59e0b;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --bg-white: #ffffff;
    --bg-light: #f8fafc;
    --bg-dark: #0f172a;
    --border: #e2e8f0;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 32px;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --container: 1280px;
    --nav-height: 80px;
}

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

html {
    scroll-behavior: smooth;
}

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

h1,
h2,
h3,
h4,
.logo-text {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

ul {
    list-style: none;
}

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

.section {
    padding: 100px 0;
}

.page-banner {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--primary-dark) 100%);
    color: white;
    text-align: center;
}

.banner-container h1 {
    font-size: 56px;
    margin-bottom: 15px;
}

.banner-container p {
    font-size: 20px;
    opacity: 0.8;
}

.text-center {
    text-align: center;
}

.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
    border: none;
    gap: 10px;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 14px;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 18px;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 6px rgba(79, 70, 229, 0.3);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px rgba(79, 70, 229, 0.4);
}

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

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

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

.btn-white:hover {
    background: #f1f5f9;
    transform: translateY(-2px);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    z-index: 1000;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
    transition: 0.3s;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 40px;
}

.logo-text {
    font-size: 24px;
    color: var(--bg-dark);
}

.navbar-links {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-weight: 600;
    color: var(--text-muted);
    font-size: 15px;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

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

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

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.navbar-toggler {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
}

.navbar-toggler span {
    width: 24px;
    height: 2px;
    background: var(--text-main);
    transition: 0.3s;
}

/* Hero Premium */
.hero-premium {
    padding: calc(var(--nav-height) + 100px) 0 120px;
    background: radial-gradient(circle at top right, rgba(79, 70, 229, 0.05), transparent 40%),
        radial-gradient(circle at bottom left, rgba(16, 185, 129, 0.05), transparent 40%);
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

.badge-new {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(79, 70, 229, 0.1);
    color: var(--primary);
    border-radius: 100px;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 580px;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 20px;
}

.trust-avatars {
    display: flex;
}

.trust-avatars img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid white;
    margin-left: -12px;
}

.trust-avatars img:first-child {
    margin-left: 0;
}

.trust-plus {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    border: 3px solid white;
    margin-left: -12px;
}

.hero-visual {
    position: relative;
}

.floating-mockup {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.phone-case {
    background: #0f172a;
    border-radius: 40px;
    padding: 12px;
    box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.3);
    border: 8px solid #1e293b;
}

.phone-screen {
    border-radius: 24px;
    overflow: hidden;
    background: #fff;
    aspect-ratio: 9/19;
}

.phone-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.floating-card {
    position: absolute;
    background: white;
    padding: 16px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 10;
    animation: float 4s ease-in-out infinite;
}

.floating-card.c-1 {
    top: 20%;
    left: -60px;
    animation-delay: 0s;
}

.floating-card.c-2 {
    bottom: 15%;
    right: -60px;
    animation-delay: 2s;
}

.floating-card i {
    font-size: 24px;
}

.c-1 i {
    color: var(--secondary);
}

.c-2 i {
    color: var(--primary);
}

.floating-card span {
    font-weight: 700;
    display: block;
    line-height: 1;
}

.floating-card small {
    color: var(--text-muted);
    font-size: 12px;
}

@keyframes float {

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

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

/* Stats Bar */
.stats-bar {
    background: var(--bg-dark);
    color: white;
    padding: 60px 0;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-num {
    display: block;
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--primary-light);
}

.stat-label {
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Benefits */
.section-tag {
    display: inline-block;
    color: var(--primary);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    margin-bottom: 15px;
}

.section-title {
    font-size: 42px;
    margin-bottom: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-desc {
    color: var(--text-muted);
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 60px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.benefit-card {
    padding: 40px;
    border-radius: var(--radius-md);
    background: var(--bg-white);
    border: 1px solid var(--border);
    transition: 0.3s;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.benefit-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 24px;
}

.bg-indigo {
    background: #e0e7ff;
    color: #4338ca;
}

.bg-emerald {
    background: #d1fae5;
    color: #065f46;
}

.bg-amber {
    background: #fef3c7;
    color: #92400e;
}

.bg-rose {
    background: #ffe4e6;
    color: #9f1239;
}

/* Categories Premium Grid */
.categories-grid-premium {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 24px;
}

.cat-card-premium {
    background: white;
    padding: 30px;
    border-radius: var(--radius-md);
    text-align: center;
    border: 1px solid var(--border);
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cat-card-premium:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.cat-icon-wrap {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}

.cat-icon-wrap img {
    width: 44px;
    height: 44px;
    object-fit: contain;
}

.cat-name {
    display: block;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 5px;
}

.cat-count {
    font-size: 14px;
    color: var(--text-muted);
}

/* Split Section */
.split-wrapper {
    display: flex;
}

.split-side {
    width: 50%;
    padding: 100px 80px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    min-height: 600px;
}

.customer-side {
    background: var(--bg-dark);
    color: white;
}

.provider-side {
    background: var(--primary);
    color: white;
}

.split-content {
    position: relative;
    z-index: 2;
    max-width: 480px;
}

.split-tag {
    display: block;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    opacity: 0.8;
}

.split-side h2 {
    font-size: 44px;
    margin-bottom: 30px;
}

.split-list {
    margin-bottom: 40px;
}

.split-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 18px;
}

.split-list i {
    color: var(--secondary);
}

.split-img {
    position: absolute;
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
    width: 350px;
    opacity: 0.3;
    z-index: 1;
    transition: 0.5s;
}

.split-side:hover .split-img {
    transform: translateY(-50%) scale(1.1);
    opacity: 0.6;
}

.split-img img {
    width: 100%;
    border-radius: 20px;
}

/* CTA Section */
.cta-glass-card {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    border-radius: var(--radius-lg);
    padding: 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-cta-content h2 {
    font-size: 48px;
    margin-bottom: 24px;
}

.cta-cta-content p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
}

.store-btn {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 24px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: white;
    transition: 0.3s;
}

.store-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.store-btn i {
    font-size: 28px;
}

.store-btn span {
    font-size: 11px;
    display: block;
    opacity: 0.8;
}

.store-btn strong {
    font-size: 18px;
    display: block;
}

.cta-phones {
    position: relative;
    height: 480px;
}

.cta-phones img {
    position: absolute;
    width: 240px;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.cta-phones .p-1 {
    z-index: 2;
    bottom: 0;
    left: 0;
}

.cta-phones .p-2 {
    z-index: 1;
    top: 0;
    right: 0;
    transform: scale(0.9);
    opacity: 0.8;
}

/* Smart Bar */
.smart-bar {
    position: sticky;
    top: 0;
    width: 100%;
    background: var(--bg-dark);
    color: white;
    padding: 12px 20px;
    z-index: 2000;
}

.smart-bar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.smart-bar-close {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

.smart-bar-info {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.smart-bar-icon img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
}

.smart-bar-title {
    display: block;
    font-weight: 700;
    font-size: 14px;
}

.smart-bar-subtitle {
    font-size: 11px;
    opacity: 0.7;
}

.smart-bar-btn {
    background: var(--primary);
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
}

/* Footer */
.site-footer {
    background: #020617;
    color: #94a3b8;
    padding: 100px 0 0;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr) 1.5fr;
    gap: 40px;
    margin-bottom: 80px;
}

.footer-brand .logo-text {
    color: white;
    margin-bottom: 20px;
    display: block;
}

.footer-tagline {
    margin: 20px 0;
    max-width: 300px;
    line-height: 1.7;
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.footer-social a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-heading {
    color: white;
    margin-bottom: 24px;
    font-size: 18px;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a:hover {
    color: white;
}

.footer-badges {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.badge-link img {
    height: 44px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 0;
    font-size: 14px;
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-subtitle {
        margin: 0 auto 40px;
    }

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

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

    .floating-card.c-1 {
        left: 0;
    }

    .floating-card.c-2 {
        right: 0;
    }

    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 60px;
    }

    .footer-brand,
    .footer-download {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .navbar-links {
        display: none;
    }

    .navbar-toggler {
        display: flex;
    }

    .split-wrapper {
        flex-direction: column;
    }

    .split-side {
        width: 100%;
        padding: 60px 24px;
    }

    .cta-glass-card {
        grid-template-columns: 1fr;
        padding: 40px;
        text-align: center;
    }

    .cta-buttons {
        justify-content: center;
        flex-direction: column;
    }

    .cta-phones {
        display: none;
    }

    .hero-title {
        font-size: 44px;
    }

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

    .hidden-desktop {
        display: block;
    }
}

@media (min-width: 769px) {
    .hidden-desktop {
        display: none !important;
    }
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: white;
    z-index: 2001;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 30px;
    box-shadow: var(--shadow-lg);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.close-menu {
    font-size: 32px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-link {
    display: block;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-main);
}

.mobile-cta {
    margin-top: 40px;
}

.btn-block {
    width: 100%;
}