:root {
    --primary: #00C896;
    /* Vibrant Teal/Green */
    --primary-dark: #00A67E;
    --secondary: #1A1A1A;
    /* Dark Grey */
    --accent: #FFD166;
    /* Soft Yellow for highlights */
    --bg-light: #F8F9FA;
    --bg-white: #FFFFFF;
    --text-main: #2D3436;
    --text-muted: #636E72;
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
    --radius-lg: 24px;
    --radius-md: 16px;
    --font-main: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    color: var(--text-main);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navbar */
.navbar {
    padding: 24px 0;
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 100;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary);
    text-decoration: none;
    z-index: 101;
}

.dot {
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--secondary);
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--primary);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    z-index: 101;
    color: var(--secondary);
}

/* Mobile Menu Styles */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        justify-content: center;
        transition: right 0.3s ease-in-out;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        backdrop-filter: blur(10px);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 24px;
    }
}

/* Buttons */
.btn-primary {
    background-color: var(--secondary);
    color: var(--bg-white);
    padding: 12px 28px;
    border-radius: 50px;
    border: none;
    font-weight: 600;
    font-family: var(--font-main);
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.5s;
    z-index: -1;
}

.btn-primary:hover::after {
    transform: translateX(100%);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    background-color: #000;
}

.btn-secondary {
    background-color: transparent;
    color: var(--secondary);
    padding: 12px 28px;
    border-radius: 50px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    font-weight: 600;
    font-family: var(--font-main);
    cursor: pointer;
    transition: all 0.2s;
}

.btn-secondary:hover {
    border-color: var(--secondary);
    background-color: rgba(0, 0, 0, 0.02);
}

/* Hero Section */
.hero {
    padding: 160px 0 100px;
    background: radial-gradient(circle at top right, rgba(0, 200, 150, 0.1), transparent 40%),
        radial-gradient(circle at bottom left, rgba(255, 209, 102, 0.1), transparent 40%);
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before,
.hero::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary), var(--accent));
    opacity: 0.05;
    z-index: -1;
    animation: float-bg 10s infinite alternate;
}

.hero::before {
    top: -50px;
    right: -50px;
}

.hero::after {
    bottom: -50px;
    left: -50px;
    animation-delay: 5s;
}

@keyframes float-bg {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    100% {
        transform: translate(30px, 30px) rotate(10deg);
    }
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.badge {
    background-color: rgba(0, 200, 150, 0.1);
    color: var(--primary-dark);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero p {
    font-size: 20px;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 480px;
}

.cta-group {
    display: flex;
    gap: 16px;
}

/* Phone Mockup */
.phone-mockup {
    width: 320px;
    height: 640px;
    background: var(--secondary);
    border-radius: 48px;
    padding: 12px;
    margin: 0 auto;
    box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.3);
    position: relative;
    transform: rotate(-5deg);
    transition: transform 0.5s ease;
}

.phone-mockup:hover {
    transform: rotate(0deg) scale(1.02);
}

.screen {
    background: #fff;
    width: 100%;
    height: 100%;
    border-radius: 36px;
    overflow: hidden;
    position: relative;
}

.app-ui-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f6f8fd 0%, #f1f4f9 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.scan-frame {
    width: 220px;
    height: 220px;
    border: 2px solid rgba(0, 200, 150, 0.3);
    border-radius: 24px;
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
    background: rgba(0, 200, 150, 0.05);
    box-shadow: 0 0 30px rgba(0, 200, 150, 0.1);
}

.scan-frame::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid var(--primary);
    border-radius: 28px;
    opacity: 0.5;
    animation: pulse-border 2s infinite;
}

.scan-frame::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    box-shadow: 0 0 20px var(--primary);
    animation: scan 2s infinite ease-in-out;
}

@keyframes scan {
    0% {
        top: 0;
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        top: 100%;
        opacity: 0;
    }
}

@keyframes pulse-border {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.2;
    }

    100% {
        transform: scale(1);
        opacity: 0.5;
    }
}

.scan-text {
    font-weight: 600;
    color: var(--primary-dark);
}

/* Features Section */
.features {
    padding: 100px 0;
    background: var(--bg-white);
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    font-size: 42px;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 18px;
    color: var(--text-muted);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.feature-card {
    padding: 40px;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
    background: #fff;
    box-shadow: var(--shadow-md);
}

.icon-box {
    font-size: 40px;
    margin-bottom: 24px;
    display: inline-block;
    padding: 16px;
    background: #fff;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    color: var(--primary);
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
}

.feature-card p {
    color: var(--text-muted);
}

/* Details Section */
.details {
    padding: 100px 0;
}

.details-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.check-list {
    list-style: none;
    margin-top: 40px;
}

.check-list li {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
}

.check-icon {
    width: 32px;
    height: 32px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.detail-visual {
    position: relative;
    height: 500px;
    background: #f0f2f5;
    border-radius: 40px;
}

.floating-card {
    position: absolute;
    background: #fff;
    padding: 20px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 16px;
    animation: float 6s infinite ease-in-out;
}

.card-1 {
    top: 20%;
    left: -20px;
    width: 240px;
}

.card-2 {
    bottom: 20%;
    right: -20px;
    width: 220px;
    animation-delay: 3s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Footer */
.footer {
    background: var(--secondary);
    color: #fff;
    padding: 80px 0 40px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.footer-brand h3 {
    font-size: 24px;
    margin-bottom: 8px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
}

/* Responsive */
@media (max-width: 968px) {
    .hero h1 {
        font-size: 48px;
    }

    .hero-container,
    .details-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .phone-mockup {
        margin: 60px auto 0;
    }

    .cta-group {
        justify-content: center;
    }

    .check-list li {
        text-align: left;
    }

    .detail-visual {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 36px;
    }

    gap: 32px;
}

.feature-card {
    padding: 40px;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
    background: #fff;
    box-shadow: var(--shadow-md);
}

.icon-box {
    font-size: 40px;
    margin-bottom: 24px;
    display: inline-block;
    padding: 16px;
    background: #fff;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    color: var(--primary);
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
}

.feature-card p {
    color: var(--text-muted);
}

/* Details Section */
.details {
    padding: 100px 0;
}

.details-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.check-list {
    list-style: none;
    margin-top: 40px;
}

.check-list li {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
}

.check-icon {
    width: 32px;
    height: 32px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.detail-visual {
    position: relative;
    height: 500px;
    background: #f0f2f5;
    border-radius: 40px;
}

.floating-card {
    position: absolute;
    background: #fff;
    padding: 20px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 16px;
    animation: float 6s infinite ease-in-out;
}

.card-1 {
    top: 20%;
    left: -20px;
    width: 240px;
}

.card-2 {
    bottom: 20%;
    right: -20px;
    width: 220px;
    animation-delay: 3s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Footer */
.footer {
    background: var(--secondary);
    color: #fff;
    padding: 80px 0 40px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.footer-brand h3 {
    font-size: 24px;
    margin-bottom: 8px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
}

/* Responsive */
@media (max-width: 968px) {
    .hero h1 {
        font-size: 48px;
    }

    .hero-container,
    .details-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .phone-mockup {
        margin: 60px auto 0;
    }

    .cta-group {
        justify-content: center;
    }

    .check-list li {
        text-align: left;
    }

    .detail-visual {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 36px;
    }

    .cta-group {
        flex-direction: column;
    }

    .nav-container {
        flex-direction: column;
        gap: 16px;
    }
}

/* Live Impact Section */
.live-impact {
    padding: 80px 0;
    background: var(--bg-white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    text-align: center;
}

.stat-card {
    padding: 40px;
    background: var(--bg-light);
    border-radius: 24px;
    transition: transform 0.3s;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-icon {
    font-size: 48px;
    color: var(--primary);
    margin-bottom: 16px;
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 8px;
    font-family: monospace;
    /* For digital counter look */
}

/* How It Works Section */
.how-it-works {
    padding: 100px 0;
    background: radial-gradient(circle at center, rgba(0, 200, 150, 0.05), transparent 70%);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    text-align: center;
}

.step-card {
    position: relative;
    padding: 40px;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--accent);
    color: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin: 0 auto 24px;
    font-size: 18px;
}

.step-icon {
    font-size: 64px;
    color: var(--primary);
    margin-bottom: 24px;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: var(--bg-white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.testimonial-card {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 24px;
    position: relative;
}

.user-avatar {
    width: 60px;
    height: 60px;
    background: #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    background: linear-gradient(45deg, var(--primary), var(--primary-dark));
    margin-bottom: 20px;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 20px;
    color: var(--text-muted);
}

.stars {
    color: var(--accent);
    font-size: 18px;
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background: var(--bg-light);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    margin-bottom: 16px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    padding: 24px;
    text-align: left;
    background: none;
    border: none;
    font-size: 18px;
    font-weight: 600;
    font-family: var(--font-main);
    color: var(--secondary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
}

.faq-answer p {
    padding-bottom: 24px;
    color: var(--text-muted);
}

.faq-item.active .faq-answer {
    max-height: 200px;
    /* Adjust as needed */
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-question i {
    transition: transform 0.3s;
}

/* Newsletter Section */
.newsletter {
    padding: 100px 0;
}

.newsletter-container {
    background: var(--secondary);
    border-radius: 40px;
    padding: 80px 40px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.newsletter-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 200, 150, 0.2), transparent 70%);
    border-radius: 50%;
}

.newsletter-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter h2 {
    font-size: 42px;
    margin-bottom: 16px;
}

.newsletter p {
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.8);
}

.newsletter-form {
    display: flex;
    gap: 16px;
}

.newsletter-form input {
    flex: 1;
    padding: 16px 24px;
    border-radius: 50px;
    border: none;
    font-family: var(--font-main);
    font-size: 16px;
}

.newsletter-form button {
    background: var(--primary);
    color: #fff;
}

.newsletter-form button:hover {
    background: var(--primary-dark);
}

@media (max-width: 600px) {
    .newsletter-form {
        flex-direction: column;
    }
}