@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --primary: #1a2744;
    --primary-light: #243352;
    --secondary: #2ec4b6;
    --accent: #38e8d8;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --text-light: #94a3b8;
    --bg-body: #f8fafc;
    --bg-white: #ffffff;
    --bg-alt: #f1f5f9;
    --success: #10b981;
    --danger: #ef4444;
    --warning: #f59e0b;
    --gradient: linear-gradient(135deg, var(--secondary), var(--accent));
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 25px 60px rgba(0, 0, 0, 0.12);
    --shadow-glow: 0 0 40px rgba(46, 196, 182, 0.15);
    --radius: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.navbar.scrolled {
    height: 68px;
    box-shadow: var(--shadow-sm);
    background: rgba(255, 255, 255, 0.95);
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--primary);
}

.nav-brand img {
    height: 120px;
    width: auto;
}

.nav-brand .brand-text span {
    color: var(--secondary);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.2rem;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-main);
    position: relative;
}

.nav-links a:hover {
    color: var(--secondary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: var(--transition);
    border-radius: 2px;
}

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

.nav-cta {
    background: var(--gradient) !important;
    color: #fff !important;
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    font-weight: 700 !important;
    border: none;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.nav-login {
    color: var(--text-muted) !important;
    font-weight: 500;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary);
}

/* HERO */
.hero {
    padding: 160px 0 100px;
    background: radial-gradient(ellipse at 80% 20%, rgba(46, 196, 182, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 20% 80%, rgba(26, 39, 68, 0.04) 0%, transparent 50%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(46, 196, 182, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    align-items: center;
    gap: 4rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(46, 196, 182, 0.1);
    color: var(--secondary);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(46, 196, 182, 0.15);
}

.hero-title {
    font-size: clamp(2.5rem, 5.5vw, 3.8rem);
    font-weight: 900;
    line-height: 1.08;
    margin-bottom: 1.5rem;
    color: var(--primary);
    letter-spacing: -0.02em;
}

.hero-title .gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 520px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--gradient);
    color: #fff !important;
    padding: 1rem 2rem;
    border-radius: 14px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    box-shadow: 0 8px 25px rgba(46, 196, 182, 0.25);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(46, 196, 182, 0.35);
}

.btn-secondary {
    background: transparent;
    color: var(--primary) !important;
    padding: 1rem 2rem;
    border-radius: 14px;
    font-weight: 700;
    border: 2px solid #e2e8f0;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    cursor: pointer;
    font-size: 1rem;
}

.btn-secondary:hover {
    border-color: var(--secondary);
    color: var(--secondary) !important;
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 3rem;
}

.stat-item .stat-num {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--primary);
}

.stat-item .stat-num span {
    color: var(--secondary);
}

.stat-item .stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.2rem;
}

/* MOCKUP */
.hero-visual {
    position: relative;
}

.mockup {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    border: 6px solid #f1f5f9;
    max-width: 380px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.mockup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient);
}

.mockup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0.5rem 0 2rem;
}

.mockup-brand {
    font-weight: 800;
    font-size: 0.85rem;
    color: var(--primary);
}

.mockup-brand span {
    color: var(--secondary);
}

.mockup-gps {
    background: #f0fdf4;
    color: var(--success);
    padding: 0.35rem 0.7rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.gps-dot {
    width: 7px;
    height: 7px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.mockup-greeting {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.2rem;
}

.mockup-sub {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 2rem;
}

.mockup-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
}

.mockup-btn {
    padding: 1.2rem 0.8rem;
    border-radius: 14px;
    text-align: center;
    font-weight: 700;
    font-size: 0.85rem;
    transition: var(--transition);
    cursor: pointer;
}

.mockup-btn:hover {
    transform: scale(1.04);
}

.mb-in {
    background: #f0fdf4;
    color: var(--success);
    border: 1px solid #dcfce7;
}

.mb-out {
    background: #fef2f2;
    color: var(--danger);
    border: 1px solid #fee2e2;
}

.mb-pause {
    background: #fffbeb;
    color: var(--warning);
    border: 1px solid #fef3c7;
}

.mb-resume {
    background: #f0f9ff;
    color: var(--secondary);
    border: 1px solid #e0f2fe;
}

.mockup-status {
    margin-top: 1.5rem;
    background: var(--bg-alt);
    border-radius: 12px;
    padding: 0.8rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mockup-status .label {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.mockup-status .value {
    font-weight: 700;
    font-size: 0.8rem;
    color: var(--primary);
}

/* TRUST BAR */
.trust-bar {
    padding: 100px 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
}

.trust-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.trust-label {
    font-size: 0.85rem;
    color: var(--text-faint);
    font-weight: 700;
    margin-bottom: 4rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.trust-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 10px 0;
}

.trust-slider::before,
.trust-slider::after {
    content: "";
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.trust-slider::before {
    left: 0;
    background: linear-gradient(to right, #fff, transparent);
}

.trust-slider::after {
    right: 0;
    background: linear-gradient(to left, #fff, transparent);
}

.trust-track {
    display: flex;
    gap: 8rem;
    width: max-content;
    animation: scroll 40s linear infinite;
}

.trust-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 85px;
}

.trust-logo-item img {
    height: 100%;
    width: auto;
    max-width: 250px;
    object-fit: contain;
    transition: var(--transition);
}



.trust-logo-item.inv {
    opacity: 0.3;
    border: 1px dashed #cbd5e1;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    height: auto;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* SECTIONS */
.section {
    padding: 100px 0;
}

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

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-label {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 1rem;
    display: block;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.7;
}

/* FEATURES */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.feature-card {
    background: #fff;
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    transition: var(--transition);
    border: 1px solid #f1f5f9;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient);
    opacity: 0;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: rgba(46, 196, 182, 0.2);
}

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

.feature-icon {
    width: 56px;
    height: 56px;
    background: rgba(46, 196, 182, 0.1);
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
}

.feature-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--primary);
}

.feature-desc {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.6;
}

/* HOW IT WORKS */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
}

.steps-grid::before {
    content: '';
    position: absolute;
    top: 35px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--secondary), transparent);
    opacity: 0.2;
}

.step-card {
    text-align: center;
    position: relative;
}

.step-num {
    width: 70px;
    height: 70px;
    background: var(--bg-white);
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 900;
    font-size: 1.4rem;
    margin: 0 auto 1.5rem;
    border: 3px solid rgba(46, 196, 182, 0.2);
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.step-card:hover .step-num {
    background: var(--gradient);
    color: #fff;
    border-color: transparent;
    transform: scale(1.1);
}

.step-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

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

/* PRICING */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: start;
}

.pricing-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    border: 1px solid #f1f5f9;
    transition: var(--transition);
    position: relative;
}

.pricing-card.popular {
    border-color: var(--secondary);
    box-shadow: var(--shadow-glow);
    transform: scale(1.04);
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient);
    color: #fff;
    padding: 0.35rem 1.2rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

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

.pricing-price {
    margin-bottom: 2rem;
}

.pricing-price .amount {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary);
}

.pricing-price .period {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.pricing-price .note {
    font-size: 0.8rem;
    color: var(--text-light);
    display: block;
    margin-top: 0.3rem;
}

.pricing-features {
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.pricing-features li i {
    color: var(--secondary);
    font-size: 0.8rem;
}

.pricing-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 0.9rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.pricing-btn-outline {
    background: transparent;
    border: 2px solid #e2e8f0;
    color: var(--primary);
}

.pricing-btn-outline:hover {
    border-color: var(--secondary);
    color: var(--secondary);
}

.pricing-btn-fill {
    background: var(--gradient);
    color: #fff;
    box-shadow: 0 6px 20px rgba(46, 196, 182, 0.2);
}

.pricing-btn-fill:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(46, 196, 182, 0.3);
}

/* TESTIMONIAL */
.testimonial-card {
    background: var(--primary);
    color: #fff;
    border-radius: var(--radius-xl);
    padding: 4rem;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 250px;
    height: 250px;
    background: var(--secondary);
    filter: blur(100px);
    opacity: 0.15;
}

.testimonial-quote {
    font-size: 1.3rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
    font-weight: 400;
}

.testimonial-quote::before {
    content: '"';
    font-size: 4rem;
    color: var(--secondary);
    opacity: 0.4;
    line-height: 0;
    vertical-align: -1.5rem;
    margin-right: 0.3rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    color: #fff;
}

.testimonial-name {
    font-weight: 700;
    font-size: 0.95rem;
}

.testimonial-role {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* FAQ */
.faq-list {
    max-width: 750px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #f1f5f9;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem 0;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-family: inherit;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--secondary);
}

.faq-question i {
    transition: transform 0.3s;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--secondary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer p {
    padding: 0 0 1.5rem;
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 0.95rem;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

/* FINAL CTA */
.cta-section {
    padding: 100px 0;
}

.cta-box {
    background: var(--primary);
    border-radius: var(--radius-xl);
    padding: 5rem 3rem;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(26, 39, 68, 0.2);
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -40%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: var(--secondary);
    filter: blur(120px);
    opacity: 0.15;
}

.cta-box::after {
    content: '';
    position: absolute;
    bottom: -40%;
    right: -10%;
    width: 250px;
    height: 250px;
    background: var(--accent);
    filter: blur(100px);
    opacity: 0.1;
}

.cta-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.cta-desc {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    position: relative;
    z-index: 1;
    line-height: 1.7;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.btn-white {
    background: #fff !important;
    color: var(--primary) !important;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.btn-ghost {
    background: transparent;
    color: #fff !important;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    border: 2px solid rgba(255, 255, 255, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    transition: var(--transition);
    cursor: pointer;
    font-size: 1rem;
}

.btn-ghost:hover {
    border-color: var(--secondary);
    background: rgba(255, 255, 255, 0.05);
}

/* FOOTER */
.footer {
    background: #fff;
    padding: 80px 0 40px;
    border-top: 1px solid #f1f5f9;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand .footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.footer-brand .footer-logo img {
    height: 30px;
}

.footer-brand .footer-logo span {
    color: var(--secondary);
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
    max-width: 280px;
    line-height: 1.6;
}

.footer-col h4 {
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 1.2rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.footer-col a {
    display: block;
    color: var(--text-muted);
    font-size: 0.9rem;
    padding: 0.3rem 0;
}

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

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid #f1f5f9;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-bottom a {
    color: var(--secondary);
    font-weight: 600;
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

.footer-socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-alt);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-socials a:hover {
    background: var(--gradient);
    color: #fff;
}

/* ANIMATIONS */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s ease-out;
}

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

.animate-up {
    animation: fadeUp 0.8s ease-out forwards;
}

.animate-right {
    animation: fadeRight 0.8s ease-out 0.2s forwards;
    opacity: 0;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes fadeRight {
    from {
        opacity: 0;
        transform: translateX(40px)
    }

    to {
        opacity: 1;
        transform: translateX(0)
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1
    }

    50% {
        transform: scale(1.5);
        opacity: .5
    }

    100% {
        transform: scale(1);
        opacity: 1
    }
}

@keyframes float {

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

    50% {
        transform: translateY(-10px)
    }
}

.mockup {
    animation: float 6s ease-in-out infinite;
}

/* RESPONSIVE */
@media(max-width:1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .hero-desc {
        margin: 0 auto 2.5rem;
    }

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

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

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

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

    .steps-grid::before {
        display: none;
    }

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

    .pricing-card.popular {
        transform: scale(1.02);
    }

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

@media(max-width:768px) {
    .navbar {
        padding: 0 1rem;
    }

    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: #fff;
        flex-direction: column;
        padding: 2rem;
        transition: 0.4s;
        gap: 1.5rem;
    }

    .nav-links.active {
        left: 0;
    }

    .hamburger {
        display: block;
    }

    .hero {
        padding: 130px 0 60px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

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

    .pricing-card.popular {
        transform: none;
    }

    .testimonial-card {
        padding: 2.5rem 1.5rem;
    }

    .cta-box {
        padding: 3rem 1.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
}