:root {
    scroll-behavior: smooth;
    /* Brand Colors from App */
    --primary-color: #FF6B4A;
    --secondary-color: #f64547;
    --blue-color: #3c82f6;
    --yellow-color: #f59e0b;
    --purple-color: #8b5cf6;
    --dark-color: #434442;

    /* UI Colors */
    --bg-color: #FAF8F5;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --white: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Glassmorphism Header */
header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1100px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.logo {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.btn-download {
    background-color: var(--primary-color);
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-download:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 74, 0.3);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: radial-gradient(circle at top right, rgba(255, 107, 74, 0.1), transparent 40%),
        radial-gradient(circle at bottom left, rgba(60, 130, 246, 0.05), transparent 40%);
    padding-top: 80px;
}

.hero-content h1 {
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 20px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 40px;
}

/* Sections */
section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.section-title p {
    color: var(--text-secondary);
}

/* Cards */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background: var(--white);
    padding: 40px;
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid #f1f5f9;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 107, 74, 0.15);
    border-color: var(--primary-color);
}

.card i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 25px;
    display: block;
}

/* Showcase Section Refinement */
.showcase-scroll-container {
    display: flex;
    gap: 40px;
    overflow-x: auto;
    padding: 30px 0 60px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    /* IE and Edge */
}

.showcase-scroll-container::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari and Opera */
}

.showcase-item {
    flex: 0 0 240px;
    text-align: center;
}

.phone-frame {
    width: 240px;
    height: 480px;
    background: #000;
    border: 10px solid #1e293b;
    border-radius: 36px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    margin: 0 auto 20px;
    transition: all 0.5s ease;
}

.showcase-item:hover .phone-frame {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(255, 107, 74, 0.2);
    border-color: #334155;
}

.phone-frame img {
    width: 100%;
    height: 112%;
    /* Slightly taller for cropping */
    object-fit: cover;
    display: block;
    transform: translateY(-5%);
    /* Crop top status bar */
}

.showcase-item h3 {
    font-size: 18px;
    margin-bottom: 5px;
    font-weight: 700;
}

.showcase-item p {
    font-size: 13px;
    color: var(--text-secondary);
}

/* Compliance Sections */
.compliance {
    padding-top: 60px;
}

.compliance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.compliance-card {
    background: var(--white);
    border: 1px solid #f1f5f9;
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

.compliance-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.compliance-card p {
    color: var(--text-secondary);
}

.tag-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 10px 0 16px;
}

.tag-list li {
    background: rgba(255, 107, 74, 0.1);
    color: var(--primary-color);
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
}

.company-list {
    background: var(--white);
    border: 1px solid #f1f5f9;
    border-radius: 20px;
    padding: 20px 28px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

.company-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 14px 0;
    border-bottom: 1px dashed #e2e8f0;
}

.company-row:last-child {
    border-bottom: none;
}

.company-row span {
    color: var(--text-secondary);
}

.company-row strong {
    text-align: right;
    font-weight: 600;
}

.company-row a {
    color: var(--primary-color);
    text-decoration: none;
}

.company-row a:hover {
    text-decoration: underline;
}

footer {
    border-top: 1px solid #f1f5f9;
    background: #fff;
}

.footer-content {
    text-align: center;
    color: var(--text-secondary);
    padding: 50px 0;
}

.footer-content p {
    margin-bottom: 8px;
}

.footer-content strong {
    color: var(--text-primary);
}

.footer-content a {
    color: var(--primary-color);
    text-decoration: none;
}

.footer-content a:hover {
    text-decoration: underline;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}

/* Animations */
.reveal {
    opacity: 0;
    will-change: transform, opacity;
}

@media (max-width: 768px) {
    header {
        top: 10px;
        width: calc(100% - 20px);
        border-radius: 18px;
        padding: 12px 16px;
        gap: 10px;
    }

    .logo {
        font-size: 18px;
        gap: 6px;
        flex: 0 0 auto;
    }

    .nav-links {
        gap: 12px;
        font-size: 14px;
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 2px;
    }

    .btn-download {
        display: none;
    }

    .container {
        padding: 0 25px;
    }

    .hero-content h1 {
        font-size: 42px;
    }

    .showcase-item {
        flex: 0 0 220px;
    }

    .phone-frame {
        width: 220px;
        height: 440px;
        border-width: 8px;
    }

    .company-row {
        flex-direction: column;
        gap: 6px;
    }

    .company-row strong {
        text-align: left;
    }
}