/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #000;
    background: #fff;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 600;
    color: #000;
}

.nav-logo i {
    margin-right: 8px;
    font-size: 1.8rem;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #666;
    font-weight: 400;
    transition: color 0.3s ease;
    font-size: 15px;
}

.nav-link:hover {
    color: #000;
}

.nav-cta {
    display: flex;
    gap: 1rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Buttons */
.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.btn-primary {
    background: #000;
    color: white;
    border: 1px solid #000;
    font-weight: 500;
}

.btn-primary:hover {
    background: #333;
    border-color: #333;
    transform: translateY(-1px);
}

.btn-secondary {
    background: transparent;
    color: #000;
    border: 1px solid #e5e5e5;
}

.btn-secondary:hover {
    background: #f8f8f8;
    border-color: #000;
}

.btn-outline {
    background: transparent;
    color: #000;
    border: 1px solid #000;
}

.btn-outline:hover {
    background: #000;
    color: white;
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
}

/* Hero Section */
.hero {
    padding: 140px 0 0;
    background: #fff;
    color: #000;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(0, 0, 0, 0.02) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(0, 0, 0, 0.02) 0%, transparent 50%);
    opacity: 1;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    margin-bottom: 1.5rem;
}


.badge-text {
    background: #f8f8f8;
    color: #000;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid #e5e5e5;
}

.hero-title {
    font-size: 4rem;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
    max-width: 800px;
}

.rotating-tool {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
    min-width: 140px;
    text-align: center;
    font-weight: 600;
}

.rotating-tool::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 1px;
    opacity: 0.3;
}

.hero-subtitle {
    font-size: 1.375rem;
    margin-bottom: 3rem;
    color: #666;
    line-height: 1.5;
    font-weight: 400;
    max-width: 600px;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

/* Works With Section */
.works-with {
    padding: 60px 0;
    background: #f8f8f8;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
}

.works-with-content {
    text-align: center;
}

.works-with-text {
    font-size: 0.875rem;
    color: #666;
    margin-bottom: 2rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.works-with-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.works-with-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.3s ease;
}

.works-with-logo:hover {
    transform: translateY(-2px);
}

.logo-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e5e5;
}

.logo-icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.logo-name {
    font-size: 0.875rem;
    color: #666;
    font-weight: 500;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #000;
    letter-spacing: -0.02em;
}

.section-header p {
    font-size: 1.25rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400;
}

/* Features Section */
.features {
    padding: 40px 0 120px;
    background: #fff;
}

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

.feature-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.feature-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border-color: #e5e5e5;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: #f8f8f8;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    border: 1px solid #e5e5e5;
}

.feature-icon i {
    font-size: 1.25rem;
    color: #000;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #000;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
    font-size: 15px;
}

/* How It Works Section */
.how-it-works {
    padding: 120px 0;
    background: #f8f8f8;
}

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

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

.step-number {
    width: 48px;
    height: 48px;
    background: #000;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 2;
}

.step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 24px;
    left: 50%;
    width: 100%;
    height: 1px;
    background: #e5e5e5;
    z-index: 1;
}

.step-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #000;
}

.step-content p {
    color: #666;
    line-height: 1.6;
    font-size: 15px;
}

/* Pricing Section */
.pricing {
    padding: 120px 0;
    background: #fff;
}

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

.pricing-card {
    background: #fff;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border-color: #e5e5e5;
}

.pricing-card.featured {
    border-color: #000;
    transform: scale(1.02);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #000;
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #000;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.currency {
    font-size: 1.25rem;
    color: #666;
}

.amount {
    font-size: 3rem;
    font-weight: 600;
    color: #000;
}

.period {
    font-size: 1rem;
    color: #666;
}

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

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: #666;
    font-size: 15px;
}

.pricing-features i {
    color: #000;
    font-size: 0.875rem;
}

/* Testimonials Section */
.testimonials {
    padding: 120px 0;
    background: #f8f8f8;
}

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

.testimonial {
    background: #fff;
    padding: 2.5rem;
    border-radius: 16px;
    border-left: 3px solid #000;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.testimonial-content p {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #000;
    margin-bottom: 1.5rem;
    font-style: italic;
}

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

.author-avatar {
    width: 48px;
    height: 48px;
    background: #f8f8f8;
    border: 1px solid #e5e5e5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 1.25rem;
}

.author-info h4 {
    font-weight: 600;
    color: #000;
    margin-bottom: 4px;
}

.author-info span {
    color: #666;
    font-size: 0.875rem;
}

/* CTA Section */
.cta {
    padding: 120px 0;
    background: #000;
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.8;
    font-weight: 400;
}

.cta-buttons {
    display: flex;
    justify-content: center;
}

.cta .btn-primary {
    background: white;
    color: #000;
    border: 1px solid white;
}

.cta .btn-primary:hover {
    background: #f8f8f8;
    border-color: #f8f8f8;
    transform: translateY(-1px);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: #fff;
    margin: 2% auto;
    padding: 0;
    border-radius: 16px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

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

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid #e5e5e5;
}

.modal-header h2 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.close {
    color: #999;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: #000;
}

/* Form Steps */
.form-step {
    display: none;
    padding: 2rem;
}

.form-step.active {
    display: block;
}

.step-header {
    text-align: center;
    margin-bottom: 2rem;
}

.step-number {
    width: 40px;
    height: 40px;
    background: #000;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-weight: 600;
}

.step-header h3 {
    margin: 0 0 0.5rem;
    font-size: 1.5rem;
    font-weight: 600;
}

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

/* Form Styles */
.booking-form {
    max-width: 500px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #000;
}

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

/* Time Slots */
.time-slots {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.time-slot {
    display: flex;
    align-items: center;
    padding: 1rem;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.time-slot:hover {
    border-color: #000;
    background-color: #f8f8f8;
}

.time-slot input[type="checkbox"] {
    width: auto;
    margin-right: 0.75rem;
}

.time-slot label {
    margin: 0;
    cursor: pointer;
    font-weight: 400;
}

/* Time Intervals */
.time-intervals {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.time-interval {
    display: flex;
    align-items: center;
    padding: 1rem;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.time-interval:hover {
    border-color: #000;
    background-color: #f8f8f8;
}

.time-interval input[type="radio"] {
    width: auto;
    margin-right: 0.75rem;
}

.time-interval label {
    margin: 0;
    cursor: pointer;
    font-weight: 400;
}

/* Package Selection */
.package-selection {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.package-option {
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.package-option:hover {
    border-color: #000;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.package-option.selected {
    border-color: #000;
    background-color: #f8f8f8;
}

.package-option.featured {
    border-color: #000;
    background: linear-gradient(135deg, #f8f8f8, #fff);
}

.package-badge {
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    background: #000;
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

.package-header {
    margin-bottom: 1rem;
}

.package-header h4 {
    margin: 0 0 0.5rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.package-price {
    font-size: 2rem;
    font-weight: 700;
    color: #000;
}

.package-period {
    font-size: 1rem;
    font-weight: 400;
    color: #666;
}

.package-features ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.package-features li {
    padding: 0.25rem 0;
    font-size: 0.9rem;
    color: #666;
}

.package-features li:before {
    content: "✓";
    color: #000;
    font-weight: bold;
    margin-right: 0.5rem;
}

/* Booking Summary */
.booking-summary {
    background: #f8f8f8;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e5e5e5;
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-item.total {
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 0.5rem;
    padding-top: 1rem;
    border-top: 2px solid #000;
}

/* Form Actions */
.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

/* Payment Section */
.payment-section {
    background: #f8f8f8;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

/* Footer */
.footer {
    background: #000;
    color: white;
    padding: 80px 0 30px;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #fff;
}

.footer-logo i {
    margin-right: 8px;
    font-size: 1.8rem;
}

.footer-section p {
    color: #999;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-section h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 15px;
}

.footer-section ul li a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    text-align: center;
    color: #999;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .pricing-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu a {
        padding: 1rem;
        display: block;
        font-size: 16px;
        color: #000;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .nav-menu a:last-child {
        border-bottom: none;
    }
    
    .nav-cta {
        display: none;
    }
    
    .hero-container {
        padding: 0 20px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
        margin-bottom: 1.5rem;
        text-align: center;
    }
    
    .rotating-tool {
        min-width: 120px;
        display: inline-block;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
        margin-bottom: 2.5rem;
        text-align: center;
        max-width: 100%;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        justify-content: center;
    }
    
    .btn-large {
        width: 100%;
        max-width: 300px;
        padding: 16px 24px;
        font-size: 16px;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .works-with {
        padding: 40px 0;
    }
    
    .works-with-content {
        text-align: center;
    }
    
    .works-with-text {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .works-with-logos {
        gap: 1.5rem;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .works-with-logo {
        flex: 0 0 auto;
        min-width: 80px;
    }
    
    .logo-icon {
        width: 40px;
        height: 40px;
        margin: 0 auto 0.5rem;
    }
    
    .logo-icon img {
        width: 28px;
        height: 28px;
    }
    
    .logo-name {
        font-size: 0.8rem;
        text-align: center;
    }
    
    .modal-content {
        width: 95%;
        margin: 2% auto;
        max-height: 96vh;
        border-radius: 12px;
    }
    
    .modal-header {
        padding: 1.5rem 1.5rem 1rem;
        border-bottom: 1px solid #e5e5e5;
    }
    
    .modal-header h2 {
        font-size: 1.5rem;
    }
    
    .form-step {
        padding: 1.5rem;
        max-height: calc(96vh - 120px);
        overflow-y: auto;
    }
    
    .form-step h3 {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }
    
    .time-slots {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .time-intervals {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .package-selection {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .package-option {
        padding: 1.25rem;
    }
    
    .form-actions {
        flex-direction: column;
        gap: 0.75rem;
        padding: 1rem 1.5rem;
        border-top: 1px solid #e5e5e5;
        background: #f8f8f8;
    }
    
    .form-actions .btn {
        width: 100%;
        padding: 14px 20px;
        font-size: 16px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 2rem;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .step:not(:last-child)::after {
        display: none;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pricing-card {
        padding: 2rem;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonial {
        padding: 2rem;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .section-header h2 {
        font-size: 2.25rem;
    }
    
    .section-header p {
        font-size: 1.125rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 80px 0 50px;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.1;
        text-align: center;
    }
    
    .rotating-tool {
        min-width: 100px;
        display: inline-block;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
        text-align: center;
        padding: 0 10px;
    }
    
    .hero-badge {
        margin-bottom: 1.5rem;
    }
    
    .badge-text {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
    
    .section-header h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
        text-align: center;
    }
    
    .section-header p {
        font-size: 1rem;
        text-align: center;
    }
    
    .features {
        padding: 80px 0;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
    }
    
    .feature-icon i {
        font-size: 1rem;
    }
    
    .how-it-works {
        padding: 80px 0;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .pricing {
        padding: 80px 0;
    }
    
    .pricing-card {
        padding: 1.5rem;
    }
    
    .amount {
        font-size: 2.5rem;
    }
    
    .testimonials {
        padding: 80px 0;
    }
    
    .testimonial {
        padding: 1.5rem;
    }
    
    .cta {
        padding: 80px 0;
    }
    
    .cta-content h2 {
        font-size: 2.25rem;
    }
    
    .cta-content p {
        font-size: 1.125rem;
    }
    
    .btn-large {
        padding: 16px 24px;
        font-size: 16px;
        width: 100%;
        max-width: 280px;
        min-height: 48px;
        touch-action: manipulation;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .btn {
        min-height: 44px;
        touch-action: manipulation;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .works-with-logos {
        gap: 1rem;
    }
    
    .works-with-logo {
        min-width: 70px;
    }
    
    .logo-icon {
        width: 36px;
        height: 36px;
    }
    
    .logo-icon img {
        width: 24px;
        height: 24px;
    }
    
    .logo-name {
        font-size: 0.75rem;
    }
    
    .modal-content {
        width: 98%;
        margin: 1% auto;
        max-height: 98vh;
    }
    
    .form-step {
        padding: 1rem;
        max-height: calc(98vh - 100px);
    }
    
    .time-slot, .time-interval {
        padding: 0.75rem;
        min-height: 44px;
    }
    
    .package-option {
        padding: 1rem;
        min-height: 44px;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 14px;
        min-height: 44px;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hamburger {
        width: 44px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hamburger span {
        width: 20px;
        height: 2px;
    }
    
    .hamburger span::before,
    .hamburger span::after {
        width: 20px;
        height: 2px;
    }
    
    .nav-menu {
        top: 60px;
        padding: 1.5rem 0;
    }
    
    .nav-menu a {
        padding: 1.25rem;
        font-size: 16px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .feature-card, .pricing-card, .testimonial {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .step {
        text-align: center;
        padding: 1.5rem 1rem;
    }
    
    .step-number {
        margin: 0 auto 1rem;
    }
    
    .cta-content {
        text-align: center;
        padding: 0 1rem;
    }
    
    .footer-content {
        text-align: center;
        gap: 2rem;
    }
    
    .footer-section {
        margin-bottom: 2rem;
    }
    
    .hero-logos {
        margin-top: 2rem;
    }
    
    .logos {
        gap: 1rem;
    }
    
    .logo {
        font-size: 14px;
    }
    
    .rotating-tool {
        min-width: 100px;
    }
}
