/* Liquetax - High Conversion Landing Page Styles */
:root {
    --primary-blue: #0A2A52;   /* Trust Blue */
    --royal-blue: #1e5a8e;
    --teal: #0D9488;           /* Modern Teal */
    --saffron: #FF9933;        /* Indian Saffron CTA */
    --white: #ffffff;
    --light-grey: #f8f9fa;
    --text-dark: #333333;
    --soft-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --card-radius: 18px;
}

.text-saffron { color: var(--saffron) !important; }
.text-teal { color: var(--teal) !important; }

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    background-color: var(--white);
    margin: 0;
    overflow-x: hidden;
}

/* Header & Navigation */
.header-top-bar {
    background: var(--primary-blue);
    color: white;
    font-size: 0.8rem;
    font-weight: 500;
}

.top-bar-info i {
    color: var(--saffron);
}

.main-header {
    background: #ffffff;
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
    padding: 12px 0;
    border-bottom: 2px solid var(--light-grey);
}

.nav-link {
    color: var(--primary-blue) !important;
    font-weight: 600;
    padding: 8px 16px !important;
    transition: 0.3s;
    border-radius: 8px;
}

.nav-link:hover {
    background: rgba(13, 148, 136, 0.08);
    color: var(--teal) !important;
}

.btn-whatsapp {
    background: #25d366;
    color: white !important;
    border-radius: 50px;
    padding: 8px 22px !important;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
    transition: 0.3s;
}

.btn-whatsapp:hover {
    background: #20bd5a;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.3);
}

.btn-call {
    background: var(--saffron);
    color: white !important;
    border-radius: 50px;
    padding: 8px 22px !important;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.btn-call:hover {
    background: #FF8811;
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(255, 153, 51, 0.3);
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.navbar-brand img {
    height: 45px;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #0A2A52 0%, #1e5a8e 100%);
    color: white;
    padding: 80px 0 140px;
    position: relative;
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: 80px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.hero-title span {
    color: var(--saffron);
    display: inline;
}

.hero-pillars {
    font-size: 1rem;
    font-weight: 600;
}

.pillar-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 20px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: 0.3s;
    color: #ffffff;
}

.pillar-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.hero-subtitle {
    font-size: 1.35rem;
    font-weight: 500;
    margin-bottom: 30px;
    line-height: 1.5;
    color: #ffffff;
}

.hero-subtitle .text-teal {
    color: #5eead4 !important; /* Brighter teal for contrast on dark blue */
    font-weight: 700;
}

.hero-trust-badges {
    margin-bottom: 35px;
    font-size: 1.1rem;
    font-weight: 600;
}

.hero-trust-badges span {
    margin-right: 15px;
}

.hero-btns {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.btn-hero-primary {
    background: linear-gradient(90deg, #FF9933 0%, #FFB366 100%);
    color: white;
    border: none;
    padding: 15px 35px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 10px 20px rgba(255, 153, 51, 0.3);
    transition: 0.3s;
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 15px 35px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: 0.3s;
    backdrop-filter: blur(5px);
}

.btn-hero-primary:hover, .btn-hero-secondary:hover {
    transform: translateY(-5px);
    color: white;
}

.trust-stats {
    display: flex;
    gap: 30px;
    margin-top: 40px;
    font-size: 0.95rem;
    font-weight: 500;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.trust-item i {
    color: var(--saffron);
}

.hero-illustration {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* Features Strip */
.features-strip {
    background: white;
    padding: 30px 0;
    border-bottom: 1px solid #f0f0f0;
}

.feature-box {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 700;
    color: var(--primary-blue);
    font-size: 1.1rem;
}

.feature-box i {
    font-size: 1.5rem;
    color: var(--teal);
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background: #fff;
}

.service-category-card {
    background: white;
    border-radius: 20px;
    padding: 35px;
    height: 100%;
    border: 1px solid #eee;
    transition: 0.4s;
    display: flex;
    flex-direction: column;
}

.service-category-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--soft-shadow);
    border-color: var(--teal);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.category-header i {
    font-size: 2rem;
    color: var(--teal);
}

.category-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin: 0;
}

.service-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    flex-grow: 1;
}

.service-list li {
    padding: 8px 0;
    font-size: 0.95rem;
    color: #555;
    position: relative;
    padding-left: 25px;
}

.service-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--teal);
}

.btn-view-details {
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    font-weight: 700;
    border-radius: 10px;
    padding: 10px;
    transition: 0.3s;
    text-align: center;
    text-decoration: none;
}

.btn-view-details:hover {
    background: var(--primary-blue);
    color: white;
}

/* Highlighted Category (GeM) */
.highlight-category {
    border: 2px solid var(--saffron);
    background: linear-gradient(to bottom, #fff, #fff9f2);
}

.highlight-category .category-header i {
    color: var(--saffron);
}

.highlight-category .service-list li::before {
    color: var(--saffron);
}

.btn-view-details-saffron {
    background: var(--saffron);
    color: white;
    font-weight: 700;
    border-radius: 10px;
    padding: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(255, 153, 51, 0.3);
    text-decoration: none;
    transition: 0.3s;
}

.btn-view-details-saffron:hover {
    background: #e68a2e;
    color: white;
    transform: scale(1.02);
}

/* Business Journey */
.business-journey {
    padding: 100px 0;
    background: #fdfdfd;
    position: relative;
    border-bottom: 1px solid #eee;
}

.journey-wrapper {
    position: relative;
    margin-top: 50px;
}

.journey-line {
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: #e0e0e0;
    z-index: 1;
}

.journey-step {
    text-align: center;
    position: relative;
    z-index: 2;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: var(--primary-blue);
    transition: 0.3s;
}

.journey-step h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.journey-step p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

.highlight-step .step-icon {
    background: var(--saffron);
    color: white;
    border-color: var(--saffron);
    box-shadow: 0 10px 20px rgba(255, 153, 51, 0.3);
    transform: scale(1.1);
}

.highlight-step h3 {
    color: var(--saffron);
    font-weight: 800;
}

@media (max-width: 991px) {
    .journey-line { display: none; }
    .journey-step { margin-bottom: 30px; }
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background: #f8f9fa;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.client-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.client-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.client-info h5 {
    font-weight: 700;
    margin: 0;
    font-size: 1.1rem;
    color: var(--primary-blue);
}

.client-info p {
    margin: 0;
    font-size: 0.85rem;
    color: #666;
}

.testimonial-text {
    font-style: italic;
    color: #444;
}

/* Lead Section */
.lead-section {
    padding: 80px 0;
    background: var(--primary-blue);
    color: white;
}

.lead-form-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 50px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-title {
    font-weight: 800;
    font-size: 2rem;
    margin-bottom: 10px;
}

.form-subtitle {
    margin-bottom: 30px;
    opacity: 0.8;
}

.form-control, .form-select {
    height: 55px;
    border-radius: 12px;
    padding: 10px 20px;
    border: none;
    margin-bottom: 20px;
}

.btn-submit {
    background: var(--saffron);
    color: white;
    height: 55px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    width: 100%;
    border: none;
    box-shadow: 0 10px 20px rgba(255, 153, 51, 0.3);
}

.form-security {
    font-size: 0.85rem;
    margin-top: 15px;
    opacity: 0.8;
}

/* Trust Badges Strip */
.trust-badges-strip {
    background: white;
    padding: 30px 0;
    border-bottom: 1px solid #eee;
}

.badge-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 700;
    color: #444;
}

.badge-item i {
    color: var(--teal);
    font-size: 1.5rem;
}

.google-rating {
    color: #fbbc05;
    font-weight: 800;
}

/* Sticky Mobile CTA */
.sticky-mobile-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
    z-index: 1001;
    padding: 10px;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

@media (max-width: 768px) {
    .sticky-mobile-cta {
        display: grid;
    }
}

.sticky-btn-call {
    background: var(--saffron);
    color: white;
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    font-weight: 700;
    text-decoration: none;
}

.sticky-btn-wa {
    background: #25d366;
    color: white;
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    font-weight: 700;
    text-decoration: none;
}

/* Footer */
.main-footer {
    background: #041221;
    color: white;
    padding: 60px 0 30px;
}

.footer-info-bar {
    background: var(--primary-blue);
    padding: 15px 0;
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
}

/* GeM Promotional Strip */
.gem-promo-strip {
    background: linear-gradient(90deg, #1e5a8e 0%, #0A2A52 100%);
    padding: 40px 0;
    color: white;
}

.gem-promo-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.gem-promo-card h3 {
    color: var(--saffron);
    font-weight: 800;
}

.btn-gem-cta {
    background: var(--saffron);
    color: white;
    font-weight: 700;
    padding: 12px 30px;
    border-radius: 10px;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s;
}

.btn-gem-cta:hover {
    background: #e68a2e;
    color: white;
    transform: scale(1.05);
}

.cert-box {
    transition: 0.3s;
    background: #fdfdfd;
}

.cert-box:hover {
    border-color: var(--teal) !important;
    background: white;
    box-shadow: 0 10px 20px rgba(13, 148, 136, 0.05);
}

.btn-teal {
    background: var(--teal);
    color: white;
    font-weight: 700;
    padding: 10px 25px;
    border-radius: 8px;
    transition: 0.3s;
}

.btn-teal:hover {
    background: #0b7a6f;
    color: white;
    transform: translateY(-2px);
}

/* Animations */


[data-aos] {
    opacity: 0;
    transition-property: opacity, transform;
}

[data-aos].aos-animate {
    opacity: 1;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-title { font-size: 2.5rem; }
    .hero-btns { flex-direction: column; }
    .hero-wave svg { height: 40px; }
    .lead-form-box { padding: 30px 20px; }
}

/* Comparison Section */
.comparison-section {
    padding: 100px 0;
    background: var(--light-grey);
}

.comparison-table-wrapper {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--soft-shadow);
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 15px;
}

.comparison-table th {
    padding: 20px;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-blue);
    border-bottom: 2px solid #eee;
}

.comparison-table td {
    padding: 20px;
    background: #fff;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    text-align: center;
    vertical-align: middle;
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 600;
    color: var(--primary-blue);
    border-left: 1px solid #eee;
    border-radius: 10px 0 0 10px;
    width: 40%;
}

.comparison-table td:last-child {
    border-right: 1px solid #eee;
    border-radius: 0 10px 10px 0;
}

.liquetax-col {
    background: rgba(13, 148, 136, 0.05) !important;
    border-left: 2px solid var(--teal) !important;
    border-right: 2px solid var(--teal) !important;
    position: relative;
}

tr:first-child .liquetax-col { border-top: 2px solid var(--teal) !important; }
tr:last-child .liquetax-col { border-bottom: 2px solid var(--teal) !important; }

.liquetax-col i {
    color: var(--teal);
    font-size: 1.2rem;
}

.others-col {
    color: #999;
}

.comparison-badge {
    background: var(--teal);
    color: white;
    font-size: 0.75rem;
    padding: 4px 12px;
    border-radius: 50px;
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    z-index: 10;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: white;
}

.accordion-item {
    border: 1px solid #eee;
    border-radius: 12px !important;
    margin-bottom: 15px;
    overflow: hidden;
}

.accordion-button {
    font-weight: 600;
    color: var(--primary-blue);
    padding: 20px;
}

.accordion-button:not(.collapsed) {
    background-color: rgba(13, 148, 136, 0.05);
    color: var(--teal);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--teal);
}

.accordion-body {
    padding: 20px;
    color: #555;
    line-height: 1.6;
}

/* Guarantee Section */
.guarantee-section {
    background: linear-gradient(135deg, #0A2A52 0%, #0D9488 100%);
    padding: 60px 0;
    color: white;
    text-align: center;
}

.guarantee-box {
    border: 2px dashed rgba(255, 255, 255, 0.3);
    padding: 40px;
    border-radius: 20px;
}

.guarantee-icon {
    font-size: 3rem;
    color: var(--saffron);
    margin-bottom: 20px;
}

/* Audit Additions */
.hero-pricing-badge span {
    font-size: 0.9rem;
    box-shadow: 0 5px 15px rgba(255, 153, 51, 0.3);
}

.bg-saffron { background-color: var(--saffron); }
.bg-teal { background-color: var(--teal); }

.btn-outline-teal {
    border: 2px solid var(--teal);
    color: var(--teal);
    font-weight: 700;
    padding: 12px 25px;
    border-radius: 10px;
    transition: 0.3s;
}

.btn-outline-teal:hover {
    background: var(--teal);
    color: white;
}

.founder-card img {
    border: 5px solid white;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.case-card {
    transition: 0.3s;
    background: white;
}

.case-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--soft-shadow);
    border-color: var(--teal) !important;
}

.growth-timeline {
    position: relative;
    padding-left: 10px;
}

.growth-timeline::before {
    content: '';
    position: absolute;
    left: 34px;
    top: 50px;
    bottom: 50px;
    width: 2px;
    background: #eee;
}

.year-circle {
    z-index: 1;
    font-size: 0.8rem;
}

.main-footer {
    background: #041221;
    color: white;
    padding: 80px 0 40px;
}

.main-footer h5 {
    color: var(--saffron);
}

.border-white-10 {
    border-color: rgba(255,255,255,0.1);
}

.bg-white-5 {
    background: rgba(255,255,255,0.05);
}

.brightness-0 { filter: brightness(0); }
.invert { filter: invert(1); }
.filter-white { filter: brightness(0) invert(1); }

/* Hero Integrated Form Card */
.hero-form-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-dark);
}

.card-header-custom {
    text-align: center;
    margin-bottom: 25px;
}

.card-header-custom h3 {
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.card-header-custom p {
    color: var(--teal);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0;
}

.hero-form-card .form-control, .hero-form-card .form-select {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    height: 50px;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.hero-form-card .form-control:focus, .hero-form-card .form-select:focus {
    background: #ffffff;
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1);
}

.hero-form-card .btn-submit-hero {
    background: var(--saffron);
    color: white;
    font-weight: 700;
    height: 50px;
    border-radius: 12px;
    width: 100%;
    border: none;
    font-size: 1.1rem;
    box-shadow: 0 10px 20px rgba(255, 153, 51, 0.3);
    transition: 0.3s;
}

.hero-form-card .btn-submit-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 25px rgba(255, 153, 51, 0.4);
}

.hero-form-card .form-footer {
    font-size: 0.8rem;
    color: #64748b;
}

/* Trust Indicators Inline */
.trust-indicators-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.trust-indicator-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
}

.trust-indicator-item i {
    color: var(--saffron);
}

/* Section Headers */
.section-header {
    margin-bottom: 50px;
    text-align: center;
}

.section-header h2 {
    color: var(--primary-blue);
    font-weight: 800;
    margin-bottom: 15px;
}

.section-header p {
    color: #666;
    font-size: 1.1rem;
    font-weight: 500;
}

/* Missing UI Elements Styling */
.counter-item {
    padding: 20px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: 0.3s;
}

.counter-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.pricing-card {
    background: white;
    transition: 0.4s;
    border: 1px solid #edf2f7;
}

.pricing-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.border-teal { border-color: var(--teal) !important; }

.workflow-stage {
    position: relative;
    z-index: 2;
}

.stage-badge {
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    color: white;
}

.proof-card {
    transition: 0.3s;
    border: 1px solid transparent;
}

.proof-card:hover {
    transform: translateY(-5px);
    border-color: var(--teal);
    box-shadow: 0 10px 25px rgba(13, 148, 136, 0.1);
}

.next-step-card {
    padding: 30px 20px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.next-step-card:hover {
    transform: translateY(-5px);
}

.risk-card, .mistake-card {
    transition: 0.3s;
}

.risk-card:hover, .mistake-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(220, 53, 69, 0.1);
}

.trust-badge {
    background: #f8fafc;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-blue);
    border: 1px solid #e2e8f0;
}

.security-badges small {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.footer-info-bar {
    background: var(--primary-blue);
    color: white;
    padding: 15px 0;
    font-size: 0.9rem;
    font-weight: 500;
}

.footer-info-bar i {
    color: var(--saffron);
    margin-right: 8px;
}

.sticky-mobile-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    z-index: 999;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
}

.sticky-btn-call, .sticky-btn-wa {
    flex: 1;
    padding: 15px;
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    color: white !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.sticky-btn-call { background: var(--saffron); }
.sticky-btn-wa { background: #25d366; }

@media (min-width: 992px) {
    .sticky-mobile-cta { display: none; }
}

.btn-teal {
    background: var(--teal);
    color: white;
    font-weight: 700;
    padding: 12px 25px;
    border-radius: 10px;
    transition: 0.3s;
    border: none;
}

.btn-teal:hover {
    background: #0b7a6f;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(13, 148, 136, 0.3);
}

/* How It Works Visual Section */
.how-it-works-visual {
    padding: 80px 0;
    background: #ffffff;
}

.workflow-timeline {
    position: relative;
}

.workflow-stage {
    position: relative;
    z-index: 2;
}

.stage-content {
    padding: 20px;
}

.stage-content h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.stage-content p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

.workflow-stage img {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.stage-badge {
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: white;
    display: inline-block;
    margin-bottom: 15px;
}

/* Proof Vault Section */
.proof-vault-section {
    padding: 80px 0;
    background: #f8fafc;
}

.proof-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.proof-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.proof-card img {
    border-radius: 8px;
    margin-bottom: 15px;
}

.proof-card h6 {
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.proof-card small {
    color: #888;
}

/* Case Studies Section */
.case-studies {
    padding: 80px 0;
    background: #ffffff;
}

.case-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    border: 1px solid #eee;
    transition: 0.3s;
}

.case-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

.case-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.case-card p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.6;
}

.case-card strong {
    color: var(--primary-blue);
}

.proof-marker {
    border-radius: 8px;
}

/* Guarantee Section */
.guarantee-section {
    background: linear-gradient(135deg, #0A2A52 0%, #0D9488 100%);
    padding: 60px 0;
    color: white;
    text-align: center;
}

.guarantee-box {
    background: rgba(255,255,255,0.1);
    border: 2px dashed rgba(255,255,255,0.3);
    padding: 50px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.guarantee-icon {
    font-size: 3.5rem;
    color: var(--saffron);
    margin-bottom: 20px;
}

.guarantee-box h2 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.guarantee-box p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

.guarantee-box .d-flex {
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.guarantee-box .d-flex span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}

/* DIY Risk Section */
.diy-risk-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.diy-risk-section .section-header {
    margin-bottom: 50px;
    text-align: center;
}

.diy-risk-section .section-header h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.diy-risk-section .section-header p {
    color: #666;
    font-size: 1rem;
}

.risk-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: 0.3s;
    border-top: 3px solid #dc3545;
}

.risk-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(220, 53, 69, 0.1);
}

.risk-card i {
    font-size: 2.5rem;
    color: #dc3545;
    margin-bottom: 20px;
}

.risk-card h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.risk-card p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

/* Compliance Engine Section */
.compliance-engine {
    padding: 80px 0;
    background: linear-gradient(135deg, #fff5e6 0%, #ffe6cc 100%);
}

.compliance-engine h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.compliance-engine .lead {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
}

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

.compliance-engine ul li {
    padding: 10px 0;
    font-size: 0.95rem;
    color: #555;
}

.compliance-engine ul li i {
    color: var(--teal);
    margin-right: 10px;
}

.compliance-engine ul li strong {
    color: var(--primary-blue);
}

.reminder-item {
    background: white;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 15px;
    border-left: 4px solid;
}

.reminder-item:first-child {
    border-left-color: #ffc107;
}

.reminder-item:nth-child(2) {
    border-left-color: #0dcaf0;
}

.reminder-item:nth-child(3) {
    border-left-color: #0d6efd;
}

.reminder-item h5 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 8px;
}

.reminder-item h5 i {
    margin-right: 8px;
}

.reminder-item p {
    font-size: 0.85rem;
    color: #666;
    margin: 0;
}

.compliance-engine .btn-teal {
    margin-top: 20px;
}

/* Dashboard Preview Section */
.dashboard-preview {
    padding: 80px 0;
    background: #f8f9fa;
}

.dashboard-preview h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.dashboard-preview .lead {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
}

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

.dashboard-preview ul li {
    padding: 12px 0;
    font-size: 0.95rem;
    color: #555;
}

.dashboard-preview ul li i {
    color: var(--teal);
    margin-right: 10px;
}

.dashboard-mockup {
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Leadership Section */
.leadership-section {
    padding: 80px 0;
    background: #ffffff;
}

.founder-card {
    text-align: center;
}

.founder-card img {
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    margin-bottom: 20px;
}

.founder-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.founder-card p {
    color: var(--teal);
    font-weight: 600;
    margin-bottom: 15px;
}

.founder-card .small p {
    color: #666;
    font-weight: normal;
}

.founder-card a {
    color: var(--teal);
    text-decoration: none;
    font-weight: 600;
}

.leadership-section h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 25px;
}

.leadership-section .lead {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.7;
}

/* Comparison Section */
.comparison-section {
    padding: 80px 0;
    background: #f8f9fa;
}

/* Next Steps Section */
.next-steps-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e6f7ff 100%);
}

.next-steps-section h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.next-steps-section .lead {
    color: #666;
    font-size: 1.1rem;
}

.next-step-card {
    background: white;
    border-radius: 20px;
    padding: 40px 20px;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.next-step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.next-step-card .step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00a86b 0%, #00c285 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 1.5rem;
    font-weight: 800;
}

.next-step-card h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.next-step-card p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

/* Partner Section */
.partner-section {
    padding: 60px 0;
    background: #ffffff;
    text-align: center;
}

.partner-section .section-header p {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 30px;
}

.partner-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.partner-item {
    font-size: 1.2rem;
    font-weight: 800;
    color: #ccc;
    padding: 15px 25px;
    border: 1px solid #eee;
    border-radius: 10px;
    transition: 0.3s;
}

.partner-item:hover {
    color: var(--primary-blue);
    border-color: var(--primary-blue);
}

/* Growth Vision Section */
.growth-vision {
    padding: 80px 0;
    background: #f8f9fa;
}

.growth-vision h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.growth-vision .lead {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
}

.growth-vision img {
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* City Presence Section */
.city-presence {
    padding: 60px 0;
    background: #ffffff;
    text-align: center;
}

.city-presence h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 25px;
}

.city-presence .d-flex {
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.city-presence .badge {
    font-size: 0.85rem;
    font-weight: 600;
    padding: 10px 20px;
    background: white;
    color: var(--primary-blue);
    border: 1px solid #eee;
}

.city-presence p {
    margin-top: 20px;
    color: #888;
    font-size: 0.9rem;
}

/* Verification Section */
.verification-section {
    padding: 60px 0;
    background: #ffffff;
    border-top: 1px solid #eee;
}

.verification-section h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.verification-section p {
    color: #666;
    font-size: 0.95rem;
}

.verification-section .text-teal {
    font-weight: 700;
}

.cert-box {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    transition: 0.3s;
}

.cert-box:hover {
    background: white;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.cert-box i {
    font-size: 2rem;
    color: var(--teal);
    margin-bottom: 15px;
}

.cert-box h6 {
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.cert-box p {
    font-size: 0.8rem;
    color: #888;
    margin: 0;
}

/* Legal Disclaimer Section */
.legal-disclaimer {
    padding: 60px 0;
    background: #f8f9fa;
    border-top: 1px solid #eee;
}

.legal-disclaimer h4 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 25px;
}

.legal-disclaimer .accordion-item {
    border: 1px solid #eee;
    border-radius: 10px !important;
    margin-bottom: 10px;
    overflow: hidden;
}

.legal-disclaimer .accordion-button {
    font-weight: 600;
    color: var(--primary-blue);
    padding: 15px 20px;
    background: white;
}

.legal-disclaimer .accordion-body {
    padding: 20px;
    font-size: 0.85rem;
    color: #666;
    line-height: 1.6;
}

/* Hero Proof Strip */
.hero-proof-strip {
    padding: 30px 0;
    background: #f8f9fa;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.proof-item {
    text-align: center;
}

.proof-item h5 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 8px;
}

.proof-item p {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 8px;
}

.proof-item a {
    color: var(--teal);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
}

/* Social Proof Counter */
.social-proof-counter {
    padding: 50px 0;
    background: linear-gradient(90deg, #00a86b 0%, #00c285 100%);
    color: white;
}

.counter-item {
    text-align: center;
    padding: 20px;
}

.counter-item h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 5px;
}

.counter-item p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin: 0;
}

/* Features Strip */
.features-strip {
    padding: 25px 0;
    background: white;
    border-bottom: 1px solid #f0f0f0;
}

.feature-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-weight: 600;
    color: var(--primary-blue);
    font-size: 0.95rem;
}

.feature-box i {
    font-size: 1.3rem;
    color: var(--teal);
}

/* Urgency Badge */
.urgency-badge-hero {
    text-align: center;
}

.urgency-badge-hero .badge {
    font-size: 0.9rem;
    font-weight: 600;
    padding: 10px 25px;
}

/* Google Reviews Widget */
.google-reviews-widget {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.google-reviews-widget h4 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

/* Form Trust Markers */
.form-trust-markers {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 25px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f8f9fa;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-blue);
}

.security-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 15px;
}

.security-badges small {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #888;
    font-size: 0.8rem;
}

.security-badges i {
    margin-right: 4px;
}

/* Pricing Badges */
.bg-saffron { background-color: var(--saffron); }
.bg-teal { background-color: var(--teal); }
.bg-primary { background-color: var(--primary-blue); }
.bg-success { background-color: #198754; }
.bg-warning { background-color: #ffc107; }
.bg-info { background-color: #0dcaf0; }
.bg-danger { background-color: #dc3545; }

/* Comparison Table Styles */
.comparison-badge {
    background: var(--teal);
    color: white;
    font-size: 0.7rem;
    padding: 4px 10px;
    border-radius: 50px;
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    z-index: 10;
}

/* ============================
   PROOF VAULT STYLES
============================ */

.proof-vault-section {
    padding: 80px 0;
    background: #f8fafc;
}

.proof-card {
    background: #fff;
    border-radius: 12px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    transition: 0.3s;
    height: 100%;
}

.proof-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.proof-card img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 10px;
}

.proof-card h6 {
    font-weight: 600;
    font-size: 14px;
    color: var(--primary-blue);
    margin: 0;
}

.proof-card small {
    color: #888;
    font-size: 12px;
}

/* Section Title Helper */
.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.section-title p {
    color: #666;
    font-size: 1.1rem;
}

/* ============================
   SUCCESS BOX
============================ */

.lead-success-box {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #0d9488;
    color: white;
    padding: 20px 25px;
    border-radius: 12px;
    z-index: 9999;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.lead-success-box h4 {
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.lead-success-box p {
    margin: 5px 0;
    font-size: 0.9rem;
}
