/* Global reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Construction Banner */
.construction-banner {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    color: white;
    padding: 0.75rem 1rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1001;
    box-shadow: 0 2px 15px rgba(0,0,0,0.15);
    animation: slideInDown 0.5s ease-out;
}

@keyframes slideInDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.construction-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    position: relative;
    padding: 0 3rem;
}

.construction-content i.fa-tools {
    font-size: 1.2rem;
    animation: pulse 2s ease-in-out infinite;
}

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

@keyframes slideOutUp {
    from {
        transform: translateY(0);
        opacity: 1;
    }
    to {
        transform: translateY(-100%);
        opacity: 0;
    }
}

.construction-text {
    font-weight: 600;
    font-size: 0.95rem;
    text-align: center;
}

.construction-close {
    position: absolute;
    right: 1rem;
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.construction-close:hover {
    background: rgba(255,255,255,0.3);
    transform: rotate(90deg);
}

.construction-close i {
    font-size: 0.9rem;
}

body.banner-visible {
    padding-top: 45px;
}

body.banner-visible header {
    top: 45px;
}

/* Header */
header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

header.scrolled {
    background: rgba(102, 126, 234, 0.98);
    padding: 0.5rem 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.2);
}

nav {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    gap: 2rem;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    background: linear-gradient(45deg, #fff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.logo i {
    color: #ffd166;
    font-size: 1.6rem;
}

.logo:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    padding: 0.6rem 1rem;
    border-radius: 8px;
    position: relative;
}

.nav-links a:hover {
    background: rgba(255,255,255,0.15);
}

.nav-links a.active {
    background: rgba(255,255,255,0.2);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 2px;
    background: #ffd166;
    border-radius: 2px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-cta {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    text-decoration: none;
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
    white-space: nowrap;
}

.nav-cta:hover {
    background: linear-gradient(135deg, #ee5a24, #ff6b6b);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

.nav-link-secondary {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.7rem 1.2rem;
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 50px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-link-secondary:hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.6);
    transform: translateY(-2px);
}

.mobile-menu {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: rgba(102, 126, 234, 0.98);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    padding: 2rem 0;
    z-index: 999;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
}

.mobile-nav.active {
    display: block;
    animation: slideDown 0.3s ease;
}

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

.mobile-nav ul {
    list-style: none;
    text-align: center;
    margin-bottom: 1.5rem;
}

.mobile-nav ul li {
    margin: 0.5rem 0;
}

.mobile-nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 1rem;
    display: block;
    transition: all 0.3s ease;
    border-radius: 8px;
    margin: 0 1rem;
}

.mobile-nav ul li a:hover {
    background: rgba(255,255,255,0.15);
}

.mobile-nav-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 0 2rem;
    margin-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 1.5rem;
}

.mobile-cta {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    text-decoration: none;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.mobile-cta:hover {
    background: linear-gradient(135deg, #ee5a24, #ff6b6b);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

.mobile-link-secondary {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 50px;
    text-align: center;
    transition: all 0.3s ease;
}

.mobile-link-secondary:hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.6);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 150px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: linear-gradient(45deg, rgba(255,255,255,0.1), transparent);
    transform: rotate(15deg);
    animation: float 20s infinite linear;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -10%;
    width: 120%;
    height: 100px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z' fill='%23f5f7fa'%3E%3C/path%3E%3C/svg%3E") repeat-x;
    background-size: 1200px 100px;
}

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

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    animation: fadeInUp 1s ease 0.2s both;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
    animation: fadeInUp 1s ease 0.4s both;
}
.hero-benefits {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    color: rgba(255,255,255,0.9);
    animation: fadeInUp 1s ease 0.5s both;
}
.hero-benefits li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(255,255,255,0.1);
    padding: 0.75rem 1.2rem;
    border-radius: 999px;
    font-weight: 500;
    backdrop-filter: blur(4px);
}
.hero-benefits i {
    color: #ffd166;
}
.hero-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    animation: fadeInUp 1s ease 0.6s both;
}
.btn-primary {
    background: #ff6b6b;
    color: white;
    border: 2px solid transparent;
    padding: 16px 40px;
}
.btn-primary:hover {
    background: #ff8f8f;
    box-shadow: 0 15px 35px rgba(255, 107, 107, 0.3);
}
.hero-proof {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: rgba(255,255,255,0.85);
    font-size: 0.95rem;
    gap: 0.4rem;
}
.hero-proof p {
    margin: 0;
}
.hero-rating {
    display: flex;
    gap: 0.3rem;
    color: #ffd166;
}

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

.download-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
    animation: fadeInUp 1s ease 0.6s both;
}

.download-btn {
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 15px 25px;
    border-radius: 12px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    min-width: 200px;
}

.download-btn:hover {
    background: rgba(0,0,0,0.9);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border-color: rgba(255,255,255,0.2);
}

.download-btn i {
    font-size: 2rem;
}

.btn-text {
    text-align: left;
}

.btn-text .small {
    font-size: 0.8rem;
    opacity: 0.8;
    display: block;
}

.btn-text .large {
    font-size: 1.1rem;
    font-weight: 600;
    display: block;
}

.cta-secondary {
    margin-top: 2rem;
    animation: fadeInUp 1s ease 0.8s both;
}

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.5);
}

.trustbar {
    background: #fff;
    padding: 40px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.trustbar-title {
    text-align: center;
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 0.9rem;
}
.trustbar-logos {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    color: rgba(44, 62, 80, 0.7);
    font-weight: 600;
    font-size: 1.1rem;
}
.trustbar-logos span {
    opacity: 0.6;
    transition: opacity 0.3s ease;
}
.trustbar-logos span:hover {
    opacity: 1;
}
.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.2);
}

/* Features Section */
.features {
    padding: 100px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    position: relative;
}

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

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.feature-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border-top: 5px solid transparent;
}

.feature-card:nth-child(1) { border-top-color: #667eea; }
.feature-card:nth-child(2) { border-top-color: #764ba2; }
.feature-card:nth-child(3) { border-top-color: #ff6b6b; }
.feature-card:nth-child(4) { border-top-color: #4ecdc4; }
.feature-card:nth-child(5) { border-top-color: #45b7d1; }
.feature-card:nth-child(6) { border-top-color: #f9ca24; }

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.feature-icon {
    font-size: 3rem;
    color: #667eea;
    margin-bottom: 1.5rem;
    display: inline-block;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    border-radius: 50%;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(118, 75, 162, 0.2));
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* How it works Section */
.how-it-works {
    padding: 100px 0;
    background: white;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

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

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    font-size: 2rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.step h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.step p {
    color: #666;
    line-height: 1.6;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.services .section-title,
.services .section-subtitle {
    color: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.service-item {
    background: rgba(255,255,255,0.1);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 2rem 1.5rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255,255,255,0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: scale(1.05);
    background: rgba(255,255,255,0.2);
}

.service-item:hover::before {
    top: -30%;
    right: -30%;
}

.service-item i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

/* Stats Section */
.stats {
    background: linear-gradient(135deg, #2c3e50, #3498db);
    color: white;
    padding: 80px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 2.5rem 1.5rem;
    background: rgba(255,255,255,0.08);
    border-radius: 16px;
    box-shadow: 0 20px 45px rgba(0,0,0,0.15);
}

.stat-item h3 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #ffffff;
    text-shadow: 0 4px 20px rgba(0,0,0,0.25);
}

.stat-item p {
    font-size: 1.2rem;
    opacity: 0.85;
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
}

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

.testimonial-card {
    background: rgba(255,255,255,0.12);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    gap: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 22px 60px rgba(0,0,0,0.2);
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    position: relative;
}

.testimonial-text::before {
    content: '\201C';
    font-size: 4rem;
    position: absolute;
    top: -35px;
    left: -15px;
    color: rgba(255,255,255,0.35);
}

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

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
}

.testimonial-rating {
    margin-left: auto;
    color: #ffd166;
    display: flex;
    gap: 0.2rem;
}

.testimonial-rating i {
    font-size: 0.9rem;
}


.author-info h4 {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
    color: white;
}

.author-info p {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
}
/* Lead capture */
.lead-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 100px 0;
}
.lead-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    align-items: start;
}
.lead-content .section-title {
    text-align: left;
}
.lead-content .section-subtitle {
    text-align: left;
    max-width: 480px;
    margin-left: 0;
}
.lead-benefits {
    list-style: none;
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    color: #2c3e50;
}
.lead-benefits li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 500;
}
.lead-benefits i {
    color: #4ecdc4;
}
.lead-form {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.form-group label {
    font-weight: 600;
    color: #2c3e50;
}
.form-group input,
.form-group textarea {
    padding: 0.9rem 1rem;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 12px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    font-family: inherit;
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.2);
}
.form-consent {
    font-size: 0.9rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.form-consent i {
    color: #4ecdc4;
}
.form-success {
    display: none;
    font-size: 0.95rem;
    color: #2c3e50;
    background: rgba(78, 205, 196, 0.15);
    border-radius: 12px;
    padding: 0.8rem 1rem;
    align-items: center;
    gap: 0.6rem;
}

.form-success.visible {
    display: flex;
}

.form-success i {
    color: #4ecdc4;
}
/* FAQ */
.faq-section {
    padding: 100px 0;
    background: white;
}
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}
.faq-grid details {
    background: #f5f7fa;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.05);
    border-left: 4px solid #667eea;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.faq-grid details[open] {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.15);
}
.faq-grid summary {
    font-weight: 600;
    cursor: pointer;
    color: #2c3e50;
    font-size: 1.05rem;
}
.faq-grid p {
    margin-top: 1rem;
    color: #555;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 18px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(238, 90, 36, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    background: linear-gradient(135deg, #ee5a24, #ff6b6b);
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(238, 90, 36, 0.5);
}

.cta-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    .download-buttons {
        flex-direction: column;
    }
    .hero-benefits {
        flex-direction: column;
        align-items: center;
    }
    .hero-actions {
        width: 100%;
    }
    .lead-wrapper {
        grid-template-columns: 1fr;
    }
    .lead-form {
        padding: 2rem;
    }
    transition: opacity 0.3s ease;
}

.cta-button:hover::after {
    opacity: 1;
}

.cta-button svg {
    transition: transform 0.3s ease;
    .hero-benefits li {
        width: 100%;
        justify-content: center;
    }
}

.cta-button:hover svg {
    transform: translateX(5px);
}

/* Footer */
footer {
    background: #2c3e50;
    color: white;
    padding: 50px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: #3498db;
}

.footer-section p, .footer-section a {
    color: #bdc3c7;
    text-decoration: none;
    line-height: 1.8;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: #3498db;
}

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

.social-links a {
    background: #3498db;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
    background: #2980b9;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 2rem;
    text-align: center;
    color: #7f8c8d;
}

/* Scroll to top button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

/* Responsive */
@media (max-width: 1200px) {
    .nav-links {
        gap: 0.3rem;
    }
    
    .nav-links a {
        font-size: 0.9rem;
        padding: 0.6rem 0.8rem;
    }
    
    .nav-actions {
        gap: 0.8rem;
    }
    
    .nav-cta,
    .nav-link-secondary {
        font-size: 0.9rem;
        padding: 0.6rem 1.2rem;
    }
}

@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }
    
    .nav-actions {
        display: none;
    }
    
    .mobile-menu {
        display: block;
    }
    
    nav {
        padding: 0 1.5rem;
    }
    
    .logo {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .mobile-menu {
        display: block;
    }

    .nav-links {
        display: none;
    }
    
    .construction-text {
        font-size: 0.85rem;
    }
    
    .construction-content {
        padding: 0 2.5rem;
    }
    
    body.banner-visible {
        padding-top: 42px;
    }
    
    body.banner-visible header {
        top: 42px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

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

    .download-buttons {
        flex-direction: column;
        align-items: center;
    }

    .download-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .features-grid,
    .services-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }

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

    .steps {
        grid-template-columns: 1fr;
    }
    
    .logo {
        font-size: 1.4rem;
    }
    
    .logo i {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    nav {
        padding: 0 1rem;
    }
    
    .logo {
        font-size: 1.3rem;
    }
    
    .mobile-nav-actions {
        padding: 0 1.5rem;
    }
    
    .construction-banner {
        padding: 0.6rem 0.75rem;
    }
    
    .construction-text {
        font-size: 0.8rem;
    }
    
    .construction-content {
        padding: 0 2rem;
        gap: 0.6rem;
    }
    
    .construction-content i.fa-tools {
        font-size: 1rem;
    }
    
    .construction-close {
        width: 24px;
        height: 24px;
        right: 0.75rem;
    }
    
    body.banner-visible {
        padding-top: 38px;
    }
    
    body.banner-visible header {
        top: 38px;
    }
}

/* Loading animation */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Animations on scroll */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}
