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

:root {
    --primary-blue: #0A2E5C;
    --secondary-blue: #1E4D8B;
    --accent-gold: #C5A572;
    --light-gold: #E8D5B7;
    --white: #FFFFFF;
    --light-gray: #F8F9FA;
    --medium-gray: #6C757D;
    --dark-text: #212529;
    --border-color: #E9ECEF;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.7;
    color: var(--dark-text);
    overflow-x: hidden;
    background: var(--white);
    scroll-behavior: smooth;
}

/* Prevent flash of unstyled content */
.animate-on-scroll {
    opacity: 0;
}

html.js-loaded .animate-on-scroll {
    transition: opacity 0.3s ease;
}

/* Header/Navigation */
.header {
    background: var(--white);
    padding: 1.5rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(10, 46, 92, 0.08);
    border-bottom: 1px solid var(--border-color);
}

.nav-container {
    max-width: 1320px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 3rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    letter-spacing: -0.5px;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.logo:hover {
    opacity: 0.8;
}

.logo-accent {
    color: var(--accent-gold);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-menu a {
    color: var(--dark-text);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
    letter-spacing: 0.3px;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--secondary-blue);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

/* Hero Section */
.hero {
    margin-top: 85px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    padding: 8rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, rgba(197, 165, 114, 0.1) 0%, transparent 100%);
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-subtitle {
    font-size: 0.9rem;
    color: var(--accent-gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -1px;
}

.hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    font-weight: 400;
    line-height: 1.8;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--accent-gold);
    color: var(--primary-blue);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.cta-button:hover {
    background: var(--light-gold);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(197, 165, 114, 0.3);
}

/* Trust Bar */
.trust-bar {
    background: var(--white);
    padding: 4rem 3rem;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.trust-content {
    max-width: 1320px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.trust-item {
    min-width: 220px;
    max-width: 220px;
    flex: 0 0 220px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2.5rem 2rem;
    background: linear-gradient(135deg, var(--white) 0%, #fafbfc 100%);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    height: 180px;
    border: 2px solid transparent;
}

.trust-item::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, var(--accent-gold), var(--primary-blue));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.trust-item:hover::before {
    opacity: 1;
}

.trust-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(10, 46, 92, 0.12);
    background: var(--white);
}

.trust-number {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    margin-bottom: 1rem;
    height: 60px;
}

.trust-label {
    font-size: 0.8rem;
    color: var(--dark-text);
    font-weight: 600;
    line-height: 1.4;
    height: 3em;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.5px;
}

/* Features Section */
.features {
    padding: 6rem 3rem;
    background: var(--white);
}

.container {
    max-width: 1320px;
    margin: 0 auto;
}

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

.section-subtitle {
    font-size: 0.85rem;
    color: var(--accent-gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.section-description {
    font-size: 1.1rem;
    color: var(--medium-gray);
    line-height: 1.8;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: var(--accent-gold);
    box-shadow: 0 10px 40px rgba(10, 46, 92, 0.08);
    transform: translateY(-5px);
}

.feature-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: var(--white);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    color: var(--primary-blue);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-card p {
    color: var(--medium-gray);
    line-height: 1.8;
    font-size: 0.95rem;
}

/* Products Section */
.products {
    padding: 6rem 3rem;
    background: var(--light-gray);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.product-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.product-card:hover {
    box-shadow: 0 15px 50px rgba(10, 46, 92, 0.1);
    transform: translateY(-8px);
}

.product-header {
    padding: 2.5rem 2rem 2rem;
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
}

.product-category {
    font-size: 0.75rem;
    color: var(--accent-gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.5rem;
}

.product-header h3 {
    font-size: 1.8rem;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.product-subtitle {
    font-size: 0.9rem;
    color: var(--medium-gray);
}

.product-body {
    padding: 2rem;
}

.product-description {
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.product-features {
    list-style: none;
}

.product-features li {
    padding: 0.75rem 0;
    padding-left: 1.8rem;
    position: relative;
    color: var(--medium-gray);
    font-size: 0.9rem;
    border-bottom: 1px solid var(--border-color);
}

.product-features li:last-child {
    border-bottom: none;
}

.product-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-weight: bold;
    font-size: 1rem;
}

/* About Section */
.about {
    padding: 6rem 3rem;
    background: var(--white);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    font-size: 1.15rem;
    color: var(--medium-gray);
    line-height: 1.9;
    margin-bottom: 2rem;
}

/* Contact Section */
.contact {
    padding: 6rem 3rem;
    background: linear-gradient(135deg, var(--secondary-blue) 0%, var(--primary-blue) 100%);
    position: relative;
}

/* Footer */
.footer {
    background: var(--primary-blue);
    color: rgba(255, 255, 255, 0.8);
    padding: 4rem 3rem 2rem;
}

.footer-content {
    max-width: 1320px;
    margin: 0 auto;
}

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

.footer-brand h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-brand .logo-accent {
    color: var(--accent-gold);
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.8;
}

.footer-section h4 {
    color: var(--white);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-gold);
}

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

/* Process Section */
.process {
    padding: 6rem 3rem;
    background: var(--white);
}

/* Process Timeline Styles */
.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
    position: relative;
}

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

.step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 15px rgba(10, 46, 92, 0.2);
}

.process-step h3 {
    color: var(--primary-blue);
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.process-step p {
    color: var(--medium-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Connecting line */
@media (min-width: 768px) {
    .process-timeline::before {
        content: '';
        position: absolute;
        top: 35px;
        left: 10%;
        right: 10%;
        height: 2px;
        background: linear-gradient(90deg, var(--accent-gold), var(--primary-blue));
        z-index: -1;
    }
}

/* Testimonials */
.testimonials {
    padding: 6rem 3rem;
    background: var(--light-gray);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    position: relative;
}

.testimonial-quote {
    font-size: 3rem;
    color: var(--accent-gold);
    opacity: 0.3;
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    line-height: 1;
}

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

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

.testimonial-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
    font-size: 1.2rem;
}

.testimonial-info h4 {
    color: var(--primary-blue);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.testimonial-info p {
    color: var(--medium-gray);
    font-size: 0.85rem;
}

.testimonial-stars {
    color: var(--accent-gold);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* Partners */
.partners {
    padding: 4rem 3rem;
    background: var(--white);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.partners-title {
    text-align: center;
    font-size: 0.85rem;
    color: var(--medium-gray);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
}

.partners-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.partner-logo {
    font-size: 1.5rem;
    color: var(--primary-blue);
    font-weight: 700;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    padding: 1rem 2rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
}

.partner-logo:hover {
    opacity: 1;
}

/* FAQ */
.faq {
    padding: 6rem 3rem;
    background: var(--white);
}

.faq-container {
    max-width: 900px;
    margin: 4rem auto 0;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--accent-gold);
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--primary-blue);
    font-size: 1.05rem;
    user-select: none;
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--accent-gold);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 2rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 2rem 1.5rem;
}

.faq-answer p {
    color: var(--medium-gray);
    line-height: 1.8;
    font-size: 0.95rem;
}

/* CTA Banner */
.cta-banner {
    padding: 4rem 3rem;
    background: linear-gradient(135deg, var(--secondary-blue) 0%, var(--primary-blue) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(197, 165, 114, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-banner h3 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

/* Sticky Contact Button */
.sticky-contact {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.sticky-contact-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: var(--accent-gold);
    color: var(--primary-blue);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(197, 165, 114, 0.4);
    transition: all 0.3s ease;
}

.sticky-contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(197, 165, 114, 0.6);
}

.sticky-contact-icon {
    width: 24px;
    height: 24px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.8rem;
}

/* Contact Form & Info */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    max-width: 1320px;
    margin: 0 auto;
}

.contact-form-container {
    background: var(--white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(197, 165, 114, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.form-checkbox input[type="checkbox"] {
    margin-top: 0.25rem;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.form-checkbox label {
    font-size: 0.85rem;
    color: var(--medium-gray);
    line-height: 1.6;
    cursor: pointer;
}

.form-submit-btn {
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.form-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(10, 46, 92, 0.3);
}

.contact-info-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-info-card h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.contact-info-item {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 1.75rem;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background: var(--accent-gold);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-info-details h4 {
    color: var(--accent-gold);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.contact-info-details p,
.contact-info-details a {
    color: var(--white);
    font-size: 0.95rem;
    line-height: 1.6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-details a:hover {
    color: var(--accent-gold);
}

.contact-cta-box {
    background: var(--accent-gold);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.contact-cta-box h4 {
    color: var(--primary-blue);
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.contact-cta-box p {
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    opacity: 0.9;
}

.contact-phone-btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    background: var(--primary-blue);
    color: var(--white);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-phone-btn:hover {
    background: var(--secondary-blue);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(10, 46, 92, 0.3);
}

.form-success {
    display: none;
    padding: 1.25rem;
    background: #28a745;
    color: white;
    border-radius: 6px;
    text-align: center;
    font-weight: 500;
    margin-bottom: 1rem;
}

.form-success.show {
    display: block;
    animation: slideDown 0.4s ease;
}

/* ═══════════════════════════════════════════════════════════════════
   DYNAMIC PROCESS HEADER & PERFECT CTA STATS ALIGNMENT
   ═══════════════════════════════════════════════════════════════════ */

/* Dynamic Process Section Header */
.section-header-dynamic {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 5rem;
}

.header-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    animation: slideDown 0.6s ease;
}

.badge-icon {
    font-size: 1.2rem;
}

.badge-text {
    text-transform: uppercase;
}

.section-title-large {
    font-size: 2.75rem;
    color: var(--primary-blue);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--secondary-blue), var(--accent-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.steps-indicator {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin: 1.5rem 0;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border-color);
    transition: all 0.3s ease;
}

.dot.active {
    width: 40px;
    border-radius: 6px;
    background: var(--accent-gold);
}

/* Perfect CTA Stats Alignment */
.cta-stats {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 4rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.cta-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    min-width: 150px;
    max-width: 150px;
    flex: 0 0 150px;
}

.cta-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    width: 100%;
    text-align: center;
    height: 2.5rem;
}

.cta-stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-top: 0.5rem;
    width: 100%;
    text-align: center;
    line-height: 1.3;
    min-height: 2.5em;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.03);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes inputFocus {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.01);
    }
    100% {
        transform: scale(1);
    }
}

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

/* Scroll Animation Classes */
html.js-loaded .animate-on-scroll {
    opacity: 0;
}

.animate-on-scroll.animated {
    animation-duration: 0.8s;
    animation-fill-mode: both;
    animation-timing-function: ease-out;
}

.fade-up {
    animation-name: fadeInUp;
}

.fade-left {
    animation-name: fadeInLeft;
}

.fade-right {
    animation-name: fadeInRight;
}

.scale-in {
    animation-name: scaleIn;
}

/* Stagger animation delays */
.features-grid .animate-on-scroll:nth-child(1) { animation-delay: 0.1s; }
.features-grid .animate-on-scroll:nth-child(2) { animation-delay: 0.2s; }
.features-grid .animate-on-scroll:nth-child(3) { animation-delay: 0.3s; }
.features-grid .animate-on-scroll:nth-child(4) { animation-delay: 0.4s; }
.features-grid .animate-on-scroll:nth-child(5) { animation-delay: 0.5s; }
.features-grid .animate-on-scroll:nth-child(6) { animation-delay: 0.6s; }

.products-grid .animate-on-scroll:nth-child(1) { animation-delay: 0.1s; }
.products-grid .animate-on-scroll:nth-child(2) { animation-delay: 0.2s; }
.products-grid .animate-on-scroll:nth-child(3) { animation-delay: 0.3s; }

.testimonials-grid .animate-on-scroll:nth-child(1) { animation-delay: 0.1s; }
.testimonials-grid .animate-on-scroll:nth-child(2) { animation-delay: 0.2s; }
.testimonials-grid .animate-on-scroll:nth-child(3) { animation-delay: 0.3s; }

.faq-container .animate-on-scroll:nth-child(1) { animation-delay: 0.05s; }
.faq-container .animate-on-scroll:nth-child(2) { animation-delay: 0.1s; }
.faq-container .animate-on-scroll:nth-child(3) { animation-delay: 0.15s; }
.faq-container .animate-on-scroll:nth-child(4) { animation-delay: 0.2s; }
.faq-container .animate-on-scroll:nth-child(5) { animation-delay: 0.25s; }
.faq-container .animate-on-scroll:nth-child(6) { animation-delay: 0.3s; }

.partners-grid .animate-on-scroll:nth-child(1) { animation-delay: 0.1s; }
.partners-grid .animate-on-scroll:nth-child(2) { animation-delay: 0.2s; }
.partners-grid .animate-on-scroll:nth-child(3) { animation-delay: 0.3s; }

/* Enhanced animations */
.hero::before {
    animation: float 6s ease-in-out infinite;
}

.trust-number,
.stat-number,
.cta-stat-number {
    display: inline-block;
}

.trust-number.counting,
.stat-number.counting,
.cta-stat-number.counting {
    animation: countUp 0.6s ease-out;
}

.cta-button::before,
.form-submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.cta-button {
    position: relative;
    overflow: hidden;
}

.form-submit-btn {
    position: relative;
    overflow: hidden;
}

.cta-button:hover::before,
.form-submit-btn:hover::before {
    left: 100%;
}

.feature-card,
.product-card,
.testimonial-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.feature-card:hover,
.product-card:hover {
    transform: translateY(-10px) scale(1.02);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(10, 46, 92, 0.15);
}

.partner-logo {
    transition: all 0.3s ease;
}

.partner-logo:hover {
    transform: translateY(-5px) scale(1.1);
}

.faq-answer {
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    padding 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.3s ease;
    opacity: 0;
}

.faq-item.active .faq-answer {
    opacity: 1;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    animation: inputFocus 0.3s ease;
}

.sticky-contact {
    animation: slideInRight 0.5s ease-out 1s both;
}

.nav-menu li {
    animation: fadeInDown 0.5s ease-out both;
}

.nav-menu li:nth-child(1) { animation-delay: 0.1s; }
.nav-menu li:nth-child(2) { animation-delay: 0.2s; }
.nav-menu li:nth-child(3) { animation-delay: 0.3s; }
.nav-menu li:nth-child(4) { animation-delay: 0.4s; }
.nav-menu li:nth-child(5) { animation-delay: 0.5s; }

.hero-subtitle {
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.hero h1 {
    animation: fadeInUp 0.6s ease-out 0.4s both;
}

.hero p {
    animation: fadeInUp 0.6s ease-out 0.6s both;
}

.hero .cta-button {
    animation: fadeInUp 0.6s ease-out 0.8s both;
}

.trust-item {
    animation: scaleIn 0.5s ease-out both;
}

.trust-item:nth-child(1) { animation-delay: 0.1s; }
.trust-item:nth-child(2) { animation-delay: 0.2s; }
.trust-item:nth-child(3) { animation-delay: 0.3s; }
.trust-item:nth-child(4) { animation-delay: 0.4s; }

.loading-skeleton {
    background: linear-gradient(90deg, var(--light-gray) 25%, var(--border-color) 50%, var(--light-gray) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

/* Respect user's motion preferences */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .hero::before {
        animation: none !important;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
    }

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

@media (max-width: 768px) {
    .nav-container {
        padding: 0 1.5rem;
    }

    .logo {
        font-size: 1.2rem;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 85px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 85px);
        background: var(--white);
        flex-direction: column;
        gap: 0;
        padding: 2rem 0;
        box-shadow: 0 10px 40px rgba(10, 46, 92, 0.15);
        transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
    }

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

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-menu a {
        display: block;
        padding: 1.25rem 2rem;
        font-size: 1.1rem;
        width: 100%;
    }

    .nav-menu a::after {
        display: none;
    }

    .nav-menu a.active {
        background: var(--light-gray);
        border-left: 4px solid var(--accent-gold);
    }

    .hero {
        padding: 6rem 1.5rem 4rem;
    }

    .hero h1 {
        font-size: 2rem;
        line-height: 1.3;
    }

    .hero p {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-title-large {
        font-size: 2rem;
    }

    .header-badge {
        padding: 0.625rem 1.25rem;
        font-size: 0.75rem;
    }

    .steps-indicator {
        gap: 0.5rem;
    }

    .dot {
        width: 10px;
        height: 10px;
    }

    .dot.active {
        width: 30px;
    }

    .features,
    .products,
    .testimonials,
    .faq,
    .about,
    .process {
        padding: 4rem 1.5rem;
    }

    .contact {
        padding: 4rem 1.5rem;
    }

    .cta-button {
        padding: 0.875rem 2rem;
        font-size: 0.95rem;
    }

    .trust-content {
        gap: 0.75rem;
        flex-direction: row;
        justify-content: space-between;
    }

    .trust-item {
        min-width: 150px;
        max-width: 150px;
        flex: 0 0 150px;
        height: 140px;
        padding: 1.5rem 1rem;
    }

    .trust-number {
        font-size: 2.2rem;
        height: 45px;
    }

    .trust-label {
        font-size: 0.7rem;
        height: 2.8em;
    }

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

    .features-grid,
    .products-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-card,
    .product-card,
    .testimonial-card {
        padding: 1.5rem;
    }

    .product-header,
    .product-body {
        padding: 1.5rem;
    }

    .partners-grid {
        gap: 2rem;
    }

    .cta-stats {
        gap: 1.5rem;
    }

    .cta-stat {
        min-width: 30%;
        max-width: 30%;
        flex: 0 0 30%;
    }

    .cta-stat-number {
        font-size: 2rem;
        height: 2rem;
    }

    .cta-stat-label {
        font-size: 0.75rem;
    }

    .cta-banner h3 {
        font-size: 1.5rem;
    }

    .cta-banner p {
        font-size: 0.95rem;
    }

    .sticky-contact {
        bottom: 20px;
        right: 20px;
    }

    .sticky-contact-btn {
        padding: 0.875rem 1.25rem;
        font-size: 0.9rem;
    }

    .contact-form-container {
        padding: 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px;
    }

    .form-submit-btn {
        padding: 0.875rem 2rem;
        font-size: 0.95rem;
    }

    .contact-info-card {
        padding: 1.5rem;
    }

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

    .faq-question {
        padding: 1rem 1.25rem;
        font-size: 0.95rem;
    }

    .faq-answer {
        padding: 0 1.25rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 1.25rem 1rem;
    }

    .testimonial-quote {
        font-size: 2rem;
    }

    .footer {
        padding: 3rem 1.5rem 1.5rem;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }

    .section-subtitle {
        font-size: 0.75rem;
    }

    .section-description {
        font-size: 0.95rem;
    }

    .product-header h3 {
        font-size: 1.5rem;
    }

    .about-content p {
        font-size: 1rem;
    }

    .animate-on-scroll {
        animation-duration: 0.5s !important;
    }

    .nav-menu li {
        animation: none !important;
    }

    .hero-subtitle,
    .hero h1,
    .hero p,
    .hero .cta-button {
        animation-duration: 0.4s !important;
    }

    .hero::before {
        display: none;
    }

    .cta-banner::before {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.75rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .section-title-large {
        font-size: 1.6rem;
    }

    .trust-content {
        flex-wrap: wrap;
    }

    .trust-item {
        min-width: calc(50% - 1rem);
        max-width: calc(50% - 1rem);
        flex: 0 0 calc(50% - 1rem);
        height: 130px;
        padding: 1.25rem 0.75rem;
    }

    .trust-number {
        font-size: 2rem;
        height: 40px;
    }

    .trust-label {
        font-size: 0.65rem;
        height: 2.6em;
    }

    .cta-stat {
        min-width: 28%;
        max-width: 28%;
        flex: 0 0 28%;
    }

    .logo {
        font-size: 1.1rem;
    }

    .sticky-contact-btn {
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
    }

    .sticky-contact-icon {
        width: 20px;
        height: 20px;
    }
}
