:root {
    /* Logo Color Palette */
    --primary-color: #ff6b35;
    /* Orange from logo */
    --primary-dark: #e55a2b;
    --primary-light: #fff4f0;
    --secondary-color: #4dd4ac;
    /* Teal accent from logo */
    --navy-blue: #1e3a5f;
    /* Dark blue from logo background */
    --text-dark: #1e3a5f;
    /* Using navy for text */
    --text-medium: #526b8a;
    --text-light: #8999ab;
    --white: #ffffff;
    --off-white: #f9fafb;
    --success: #4dd4ac;
    --gradient: linear-gradient(135deg, #ff6b35 0%, #e55a2b 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.6;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-primary {
    color: var(--primary-color);
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(156, 39, 176, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(156, 39, 176, 0.4);
}

.btn-white {
    background: var(--white);
    color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-white:hover {
    transform: translateY(-2px);
    background: #fcfcfc;
}

/* Navbar */
.navbar {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 15px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo i {
    color: var(--primary-color);
}

.highlight {
    color: var(--primary-color);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    color: var(--text-medium);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--text-dark);
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
    background: var(--white);
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-bg-shape {
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(135deg, #f3e5f5 0%, #fff 100%);
    border-bottom-left-radius: 50%;
    z-index: 1;
    opacity: 0.5;
}

.badge {
    background: var(--primary-light);
    color: var(--primary-color);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    display: inline-block;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 30px;
    max-width: 500px;
}

.store-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #000;
    color: #fff;
    padding: 8px 18px;
    border-radius: 8px;
    text-decoration: none;
    transition: transform 0.3s;
}

.store-badge:hover {
    transform: translateY(-2px);
}

.store-badge i {
    font-size: 1.8rem;
}

.store-badge .text span {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
}

.store-badge .text {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.2;
}

.trust-indicators {
    margin-top: 30px;
    display: flex;
    gap: 20px;
    color: var(--text-medium);
    font-size: 0.9rem;
}

.trust-item i {
    color: var(--success);
    margin-right: 5px;
}

.hero-image img {
    width: 100%;
    max-width: 450px;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s;
}

.hero-image img:hover {
    transform: perspective(1000px) rotateY(0deg);
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background: var(--off-white);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.section-header p {
    color: var(--text-medium);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.icon-wrapper {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

.color-1 {
    background: #e3f2fd;
    color: #1976d2;
}

.color-2 {
    background: #fbe9e7;
    color: #ff5722;
}

.color-3 {
    background: #e8f5e9;
    color: #43a047;
}

.color-4 {
    background: #f3e5f5;
    color: #9c27b0;
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.25rem;
}

.feature-card p {
    color: var(--text-medium);
    font-size: 0.95rem;
}

/* Steps Section */
.steps-section {
    padding: 100px 0;
}

.row {
    display: flex;
    align-items: center;
    gap: 60px;
}

.col-text {
    flex: 1;
}

.col-image {
    flex: 1;
}

.step-list {
    margin-top: 40px;
}

.step-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step-desc h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.step-desc p {
    color: var(--text-medium);
    font-size: 0.95rem;
}

.rotate-left {
    transform: perspective(1000px) rotateY(15deg);
    max-width: 400px;
    margin: 0 auto;
    display: block;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
}

/* Modern CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e3a5f 0%, #2a4a6f 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1), transparent);
    border-radius: 50%;
}

.cta-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.cta-content-main {
    color: white;
}

.cta-badge {
    display: inline-block;
    background: rgba(255, 107, 53, 0.2);
    color: var(--primary-color);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.cta-content-main h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    line-height: 1.2;
}

.cta-content-main>p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

.cta-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 30px 0;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin: 0;
}

.cta-actions {
    margin-top: 30px;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.05rem;
}

.cta-mockup {
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 968px) {
    .cta-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cta-stats {
        grid-template-columns: 1fr;
    }

    .cta-mockup {
        margin-top: 40px;
    }
}

/* Footer */
.footer {
    background: #f8f9fa;
    padding: 60px 0 20px;
    border-top: 1px solid #eee;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    text-decoration: none;
    color: var(--primary-color);
}

.footer-brand p {
    color: var(--text-medium);
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: var(--text-medium);
    text-decoration: none;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.socials a {
    display: inline-block;
    width: 36px;
    height: 36px;
    background: white;
    border-radius: 50%;
    text-align: center;
    line-height: 36px;
    color: var(--text-medium);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    margin-left: 10px;
    transition: all 0.3s;
}

.socials a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #eee;
    color: var(--text-light);
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 968px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-bg-shape {
        width: 100%;
        height: 50%;
        bottom: 0;
        top: auto;
    }

    .hero-image {
        margin-top: 40px;
    }

    .row {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .nav-right {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        padding: 80px 40px;
        transition: all 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
        z-index: 999;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        display: flex;
        /* Override display: none */
    }

    .nav-right.active {
        right: 0;
    }

    .nav-links {
        flex-direction: column;
        align-items: center;
        gap: 40px;
        width: 100%;
        margin-bottom: 40px;
    }

    .nav-links a {
        font-size: 1.5rem;
        font-weight: 600;
        color: var(--text-dark);
    }

    .mobile-toggle {
        display: block;
        z-index: 1001;
        position: relative;
    }

    .mobile-toggle i {
        transition: transform 0.3s ease;
    }

    .mobile-toggle.active i::before {
        content: "\f00d";
        /* FontAwesome Close Icon */
    }

    .mobile-toggle.active i {
        transform: rotate(90deg);
    }

    /* Overlay background when menu is open */
    .menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.3);
        backdrop-filter: blur(4px);
        z-index: 998;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    body.menu-open {
        overflow: hidden;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* Update for Image Icons */
.icon-wrapper-img {
    height: 100px;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon-wrapper-img img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s;
}

.feature-card:hover .icon-wrapper-img img {
    transform: scale(1.1);
}

/* Enhanced CTA Section */
.cta-card {
    padding: 0;
    overflow: hidden;
    text-align: left;
}

.cta-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 20px;
}

.cta-card .cta-content {
    padding: 60px;
    padding-right: 0;
}

.cta-image {
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.cta-image img {
    max-width: 100%;
    margin-bottom: -40px;
    /* Peek effect */
    transform: rotate(-10deg) translateY(20px);
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.2));
    transition: transform 0.3s;
}

.cta-card:hover .cta-image img {
    transform: rotate(0deg) translateY(10px);
}

@media (max-width: 768px) {
    .cta-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cta-card .cta-content {
        padding: 40px;
        padding-bottom: 0;
    }

    .cta-content .download-badges {
        justify-content: center !important;
    }

    .cta-image img {
        margin-bottom: -20px;
        max-width: 80%;
    }
}

/* Coming Soon Badge */
.feature-card.coming-soon {
    position: relative;
    opacity: 0.8;
}

.coming-soon-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ff9800;
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(255, 152, 0, 0.3);
    z-index: 2;
}

/* App Showcase Section */
.showcase-section {
    padding: 100px 0;
    background: var(--white);
}

.showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Premium Phone Mockup */
.phone-wrapper {
    display: flex;
    justify-content: center;
    perspective: 2000px;
    position: relative;
}

/* Gradient Background Glow */
.phone-wrapper::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 700px;
    background: radial-gradient(circle at center, rgba(255, 107, 53, 0.15), transparent 70%);
    border-radius: 50%;
    z-index: -1;
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.phone-frame {
    width: 280px;
    height: 560px;
    background: linear-gradient(145deg, #2a2a2a 0%, #1a1a1a 100%);
    border-radius: 50px;
    padding: 12px;
    position: relative;
    transform: rotateY(-15deg) rotateX(5deg);
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow:
        -15px 20px 60px rgba(0, 0, 0, 0.5),
        inset 2px 0 8px rgba(255, 255, 255, 0.1),
        inset -2px 0 8px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.05),
        0 0 0 3px #1a1a1a,
        0 0 40px rgba(255, 107, 53, 0.2);
}

.phone-frame:hover {
    transform: rotateY(0deg) rotateX(0deg) translateY(-10px);
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.6),
        inset 2px 0 8px rgba(255, 255, 255, 0.15),
        inset -2px 0 8px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        0 0 0 3px #1a1a1a,
        0 0 60px rgba(255, 107, 53, 0.4);
}

/* Dynamic Island */
.phone-frame::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 26px;
    background: #000;
    border-radius: 25px;
    z-index: 10;
    box-shadow:
        inset 0 1px 3px rgba(255, 255, 255, 0.1),
        0 2px 8px rgba(0, 0, 0, 0.8);
}

/* Volume Buttons */
.phone-frame::after {
    content: '';
    position: absolute;
    top: 130px;
    left: -3px;
    width: 3px;
    height: 60px;
    background: linear-gradient(to bottom, #3a3a3a, #1a1a1a);
    border-radius: 3px 0 0 3px;
    box-shadow: inset 1px 0 2px rgba(255, 255, 255, 0.1);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 42px;
    overflow: hidden;
    position: relative;
    box-shadow:
        inset 0 0 0 2px #000,
        0 0 20px rgba(0, 0, 0, 0.3);
}

.phone-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease-in-out;
    will-change: opacity;
}

/* Showcase List */
.showcase-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.showcase-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
}

.showcase-item:hover,
.showcase-item.active {
    background: var(--off-white);
    transform: translateX(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.showcase-item .item-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.showcase-item h3 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.showcase-item p {
    color: var(--text-medium);
    font-size: 0.9rem;
    margin: 0;
}

@media (max-width: 968px) {
    .showcase-grid {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .phone-wrapper {
        margin-bottom: 40px;
    }
}

/* Logo Icon */
.logo-icon {
    width: 32px;
    height: 32px;
    margin-right: 8px;
    vertical-align: middle;
    border-radius: 8px;
}

/* Phone Mockup Adjustments for Different Sections */
.hero-image .phone-wrapper {
    transform: scale(0.9);
}

.col-image .phone-wrapper {
    transform: scale(0.85);
}

.mission-image .phone-wrapper {
    transform: scale(0.85);
    margin: 0 auto;
}

/* Remove previous image styles that conflict */
.hero-image img {
    filter: none;
    transform: none;
}