/* Premium Variables */
:root {
    /* Palette */
    --primary-color: #0F172A;
    /* Slate 900 - Deep Navy/Black */
    --primary-light: #1E293B;
    /* Slate 800 */
    --accent-color: #10B981;
    /* Emerald 500 - Trust/Success */
    --accent-hover: #059669;
    /* Emerald 600 */
    --text-main: #334155;
    /* Slate 700 */
    --text-light: #64748B;
    /* Slate 500 */
    --bg-body: #F8FAFC;
    /* Slate 50 */
    --bg-white: #FFFFFF;
    --border-color: #E2E8F0;
    /* Slate 200 */

    /* Effects */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --radius-md: 8px;
    --radius-lg: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    /* Typography */
    --font-main: 'Inter', sans-serif;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--text-main);
    background-color: var(--bg-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-light);
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--bg-white);
    box-shadow: 0 4px 6px rgba(16, 185, 129, 0.2);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 12px rgba(16, 185, 129, 0.3);
}

.btn-white {
    background-color: var(--bg-white);
    color: var(--accent-color);
}

.btn-white:hover {
    background-color: #f0fdf4;
    transform: translateY(-2px);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.9rem;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.full-width {
    width: 100%;
}

/* Header */
.header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 16px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--accent-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.logo-text .highlight {
    color: var(--accent-color);
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-list a:not(.btn) {
    font-weight: 500;
    color: var(--text-main);
    transition: var(--transition);
}

.nav-list a:not(.btn):hover {
    color: var(--accent-color);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding: 80px 0 100px;
    background: radial-gradient(circle at top right, #f1f5f9 0%, #ffffff 50%);
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.badge-trust {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #ecfdf5;
    color: var(--accent-hover);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 540px;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
}

.trust-indicators {
    display: flex;
    gap: 24px;
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

.trust-indicators i {
    color: #fbbf24;
    /* Amber for stars */
    margin-right: 6px;
}

.hero-visual {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: visible;
}

.image-wrapper img {
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
}

.floating-card {
    position: absolute;
    background: var(--bg-white);
    padding: 16px 24px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 16px;
    animation: float 6s ease-in-out infinite;
}

.card-1 {
    top: 40px;
    left: -40px;
}

.card-2 {
    bottom: 40px;
    right: -20px;
    animation-delay: 2s;
}

.floating-card i {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.floating-card div {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.floating-card strong {
    color: var(--primary-color);
}

.floating-card span {
    font-size: 0.85rem;
    color: var(--text-light);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Benefits Section */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
}

.benefit-item {
    background-color: var(--bg-white);
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.benefit-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: transparent;
}

.benefit-icon {
    width: 56px;
    height: 56px;
    background-color: #f1f5f9;
    color: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 24px;
    transition: var(--transition);
}

.benefit-item:hover .benefit-icon {
    background-color: var(--accent-color);
    color: var(--bg-white);
}

.benefit-item h3 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.benefit-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Pricing Section */
.pricing-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.crlv-section {
    background-color: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.crlv-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.crlv-header h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 12px;
}

.badge {
    background-color: #ecfdf5;
    color: var(--accent-hover);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.crlv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 16px;
}

.crlv-card {
    background-color: #f8fafc;
    border-radius: 8px;
    padding: 12px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid transparent;
}

.crlv-card:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
    transform: scale(1.05);
}

.crlv-card .state {
    display: block;
    font-weight: 800;
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.crlv-card .price {
    font-size: 0.9rem;
    color: var(--accent-hover);
    font-weight: 600;
}

.crlv-card:hover .price {
    color: #6ee7b7;
}

.services-box {
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    position: sticky;
    top: 100px;
}

.services-header h3 {
    font-size: 1.75rem;
    margin-bottom: 8px;
}

.services-header p {
    color: #94a3b8;
    margin-bottom: 32px;
}

.premium-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
}

.premium-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.list-content {
    display: flex;
    flex-direction: column;
}

.list-content strong {
    font-size: 1.1rem;
}

.list-content span {
    font-size: 0.85rem;
    color: #94a3b8;
}

.list-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent-color);
}

/* Testimonials */
.testimonials {
    background-color: #f8fafc;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.testimonial-card {
    background-color: var(--bg-white);
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.stars {
    color: #fbbf24;
    margin-bottom: 16px;
    font-size: 0.9rem;
}

.testimonial-card p {
    font-style: italic;
    color: var(--text-main);
    margin-bottom: 24px;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.client-avatar {
    width: 40px;
    height: 40px;
    background-color: #e2e8f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
}

.client-info div {
    display: flex;
    flex-direction: column;
    font-size: 0.9rem;
}

.client-info strong {
    color: var(--primary-color);
}

/* Why Choose Me */
.why-choose {
    background-color: var(--bg-white);
}

.why-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-list {
    margin: 32px 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.why-list li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.why-list i {
    color: var(--accent-color);
    margin-top: 4px;
}

.why-visual {
    background-color: #f1f5f9;
    height: 400px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
    color: #cbd5e1;
}

/* CTA Final */
.cta-final {
    background-color: var(--accent-color);
    text-align: center;
    color: var(--bg-white);
}

.cta-final h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.cta-final p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: #94a3b8;
    padding: 80px 0 24px;
}

.footer-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand h3 {
    color: var(--bg-white);
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.footer-brand p {
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 48px;
    height: 48px;
    background-color: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
    color: var(--bg-white);
}

.social-links a:hover {
    background-color: var(--accent-color);
    transform: translateY(-4px);
}

.footer-contact h4 {
    color: var(--bg-white);
    font-size: 1.25rem;
    margin-bottom: 24px;
}

.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 968px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .pricing-wrapper {
        grid-template-columns: 1fr;
    }

    .services-box {
        position: static;
        order: -1;
        /* Show services first on mobile or keep below? Let's keep below usually, but maybe top is better for conversion? Keeping standard below for now. */
        order: 0;
    }

    .why-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .header-container {
        position: relative;
    }

    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--bg-white);
        padding: 24px;
        box-shadow: var(--shadow-lg);
        display: none;
        border-bottom: 1px solid var(--border-color);
    }

    .nav.active {
        display: block;
    }

    .nav-list {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-actions {
        align-items: center;
    }

    .card-1 {
        left: 0;
    }

    .card-2 {
        right: 0;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }
}