:root {
    --estiq-charcoal: #2B2D40;
    --estiq-teal: #009688;
    --estiq-gold: #FFA726;
    --estiq-light: #F8F9FA;
    --estiq-white: #FFFFFF;
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--estiq-charcoal);
    line-height: 1.6;
    overflow-x: hidden;
}

.b2t {
  position: fixed !important;
  bottom: 21px;
  right: 21px;
  z-index: 99;
  opacity: 0.6;
  display: none;
}

.b2t:hover {
  background-color: #a9acc6;
}

/* Navbar */
.navbar-custom {
    background-color: var(--estiq-white);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-custom.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.navbar-brand {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--estiq-charcoal) !important;
    letter-spacing: -0.5px;
}

.navbar-brand span {
    color: var(--estiq-teal);
}

.nav-link {
    color: var(--estiq-charcoal) !important;
    font-weight: 500;
    margin: 0 0.75rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--estiq-teal) !important;
}
/*
.btn-primary-custom {
    background-color: var(--estiq-teal);
    border: none;
    color: var(--estiq-white);
    padding: 0.625rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary-custom:hover {
    background-color: #00796B;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 150, 136, 0.3);
}
*/
/* Hero Section */
.hero-section {
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-section .highlight {
    color: var(--estiq-teal);
    position: relative;
    display: inline-block;
}

.hero-section p.lead {
    font-size: 1.35rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    font-weight: 400;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
/*
.btn-hero-primary {
    background-color: var(--estiq-teal);
    color: var(--estiq-white);
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-hero-primary:hover {
    background-color: #00796B;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 150, 136, 0.4);
}

.btn-hero-secondary {
    background-color: transparent;
    color: var(--estiq-white);
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    border: 2px solid var(--estiq-white);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
    background-color: var(--estiq-white);
    color: var(--estiq-charcoal);
}
*/
.trust-badges {
    margin-top: 3rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    opacity: 0.8;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.trust-badge i {
    color: var(--estiq-teal);
    font-size: 1.25rem;
}

/* Stats Section */
.stats-section {
    background-color: var(--estiq-white);
    padding: 60px 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.05);
}

.stat-item {
    text-align: center;
    padding: 1rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--estiq-teal);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--estiq-charcoal);
    font-weight: 500;
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background-color: var(--estiq-light);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--estiq-charcoal);
    margin-bottom: 1rem;
}

.section-title p {
    font-size: 1.25rem;
    color: #6c757d;
    max-width: 700px;
    margin: 0 auto;
}

.feature-card {
    background: var(--estiq-white);
    border-radius: 12px;
    padding: 2.5rem;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--estiq-teal);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--estiq-teal) 0%, #00796B 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon i {
    font-size: 2rem;
    color: var(--estiq-white);
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--estiq-charcoal);
    margin-bottom: 1rem;
}

.feature-card p {
    color: #6c757d;
    font-size: 1.05rem;
    margin-bottom: 0;
}

/* Benefits Section */
.benefits-section {
    padding: 100px 0;
    background-color: var(--estiq-white);
}

.benefit-row {
    display: flex;
    align-items: center;
    margin-bottom: 5rem;
}

.benefit-content h3 {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--estiq-charcoal);
    margin-bottom: 1.5rem;
}

.benefit-content p {
    font-size: 1.15rem;
    color: #6c757d;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.benefit-list {
    list-style: none;
    padding: 0;
}

.benefit-list li {
    padding: 0.75rem 0;
    font-size: 1.05rem;
    color: var(--estiq-charcoal);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.benefit-list li i {
    color: var(--estiq-teal);
    font-size: 1.25rem;
    min-width: 24px;
}

.benefit-image {
    text-align: center;
}

.benefit-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* Pricing Section */
.pricing-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--estiq-light) 0%, var(--estiq-white) 100%);
}

.pricing-card {
    background: var(--estiq-white);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--estiq-teal);
}

.pricing-card.featured {
    border: 2px solid var(--estiq-teal);
    transform: scale(1.00);
}

.featured-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: linear-gradient(135deg, var(--estiq-gold) 0%, #FF8F00 100%);
    color: var(--estiq-white);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(255, 167, 38, 0.4);
}

.pricing-header h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--estiq-charcoal);
    margin-bottom: 0.5rem;
}

.pricing-subtitle {
    font-size: 0.95rem;
    color: #6c757d;
    margin-bottom: 1.5rem;
}

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

.price-amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--estiq-teal);
}

.price-period {
    font-size: 1.1rem;
    color: #6c757d;
    font-weight: 500;
}

.pricing-units {
    font-size: 1rem;
    color: var(--estiq-charcoal);
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding: 0.75rem 1rem;
    background-color: var(--estiq-light);
    border-radius: 8px;
    text-align: center;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.pricing-features li {
    padding: 0.75rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--estiq-charcoal);
}

.pricing-features li i {
    color: var(--estiq-teal);
    margin-top: 0.25rem;
    min-width: 16px;
}

.btn-pricing {
    width: 100%;
    padding: 1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-pricing-primary {
    background-color: var(--estiq-teal);
    border: none;
    color: var(--estiq-white);
}

.btn-pricing-primary:hover {
    background-color: #00796B;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 150, 136, 0.3);
}

.btn-pricing-secondary {
    background-color: transparent;
    border: 2px solid var(--estiq-teal);
    color: var(--estiq-teal);
}

.btn-pricing-secondary:hover {
    background-color: var(--estiq-teal);
    color: var(--estiq-white);
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--estiq-charcoal) 0%, #1a1c2e 100%);
    color: var(--estiq-white);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 150, 136, 0.2) 0%, transparent 70%);
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.35rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background-color: var(--estiq-white);
}

.testimonial-card {
    background: var(--estiq-light);
    border-radius: 12px;
    padding: 2.5rem;
    height: 100%;
    position: relative;
}

.quote-icon {
    font-size: 3rem;
    color: var(--estiq-teal);
    opacity: 0.2;
    position: absolute;
    top: 20px;
    left: 20px;
}

.testimonial-text {
    font-size: 1.1rem;
    color: var(--estiq-charcoal);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

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

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--estiq-teal) 0%, #00796B 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--estiq-white);
    font-size: 1.5rem;
    font-weight: 600;
}

.author-info h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--estiq-charcoal);
    margin-bottom: 0.25rem;
}

.author-info p {
    font-size: 0.95rem;
    color: #6c757d;
    margin: 0;
}

/* Footer */
.footer {
    background-color: var(--estiq-charcoal);
    color: var(--estiq-white);
    padding: 60px 0 30px;
}

.footer h5 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--estiq-teal);
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin-bottom: 0.75rem;
}

.footer ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer ul li a:hover {
    color: var(--estiq-teal);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 3rem;
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--estiq-white);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--estiq-teal);
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 992px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-section p.lead {
        font-size: 1.15rem;
    }

    .section-title h2 {
        font-size: 2.25rem;
    }

    .benefit-content h3 {
        font-size: 1.85rem;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .cta-content h2 {
        font-size: 2.25rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 80px 0 60px;
    }

    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
    }

    .trust-badges {
        flex-direction: column;
        align-items: flex-start;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .benefit-row {
        margin-bottom: 3rem;
    }
}