.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-gradient {
    color: white;
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
}

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

.logo-small {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.main-headline {
    font-size: 3.5rem;
    font-weight: 700;
    margin: 0.5rem 0;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .main-headline {
        font-size: 2.5rem;
    }
}

.sub-headline {
    font-size: 1.5rem;
    margin: 1rem auto 2rem;
    max-width: 800px;
    opacity: 0.95;
}

.hero-blurb {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem auto;
    max-width: 800px;
    text-align: left;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.retainer-badge {
    background: rgba(255, 255, 255, 0.2);
    margin-top: 24px;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    display: inline-block;
}

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

.service-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #3a86ff;
}

.schedule-timeline {
    position: relative;
    padding: 2rem 0;
}

.schedule-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #3a86ff;
    transform: translateX(-50%);
}

@media (max-width: 768px) {
    .schedule-timeline::before {
        left: 30px;
    }
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
}

.timeline-content {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    width: calc(50% - 40px);
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: auto;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-right: auto;
}

@media (max-width: 768px) {
    .timeline-content {
        width: calc(100% - 60px);
        margin-left: 60px !important;
        margin-right: 0 !important;
    }
}

.timeline-number {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    background: #3a86ff;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    z-index: 2;
}

@media (max-width: 768px) {
    .timeline-number {
        left: 30px;
        transform: translateX(-50%);
    }
}

.offer-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-left: 4px solid #3a86ff;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.btn-primary {
    background: linear-gradient(to right, #4a00e0, #8e2de2);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(74, 0, 224, 0.3);
}

.testimonial {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #3a86ff;
    margin: 2rem 0;
    font-style: italic;
}

.availability-badge {
    display: inline-block;
    background: #10b981;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-left: 1rem;
}

.nav-button {
    background: linear-gradient(to right, #4a00e0, #8e2de2);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.nav-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.pricing-card {
    background: white;
    border: 2px solid #3a86ff;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    margin: 2rem 0;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: #2e7d32;
    margin: 1rem 0;
}

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

.contact-form {
    max-width: 720px;
    margin: 0 auto;
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    width: 100%;
    box-sizing: border-box;
}
.offer-card-header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 8px;
}

.offer-star {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}

.offer-card p em {
    display: block;
    margin-top: 8px;
    font-style: italic;
    color: #666;
    font-size: 0.9em;
}
/* Contact Form */
.form-group {
    margin-bottom: 1.5rem;
    width: 100%;
    box-sizing: border-box;
}

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

.form-control {
    width: 100%;
    max-width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.form-control:focus {
    outline: none;
    border-color: #3a86ff;
}

.btn-primary {
    width: 100%;
    max-width: 100%;
    background: linear-gradient(to right, #4a00e0, #8e2de2);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    box-sizing: border-box;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(74, 0, 224, 0.3);
}

.setup-outcome {
    margin-top: -60px; /* more defined in marketing.css */
}
/* Specific adjustments for the contact form layout */
#contactForm {
    width: 100%;
    box-sizing: border-box;
}

#contactForm .setup-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    width: 100%;
    box-sizing: border-box;
}

#contactForm .setup-grid .form-group {
    margin-bottom: 0;
}

/* Mobile responsiveness for the form */
@media (max-width: 768px) {
    #contactForm .setup-grid {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 1.5rem;
        max-width: 95%;
    }
}
/* Alec Section */
.alec-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #f8f9ff 0%, #f0f2ff 100%);
    border-radius: 24px;
    margin: 3rem auto;
    max-width: 1200px;
}

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

.alec-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.alec-photo {
    flex-shrink: 0;
}

.alec-headshot {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid white;
    box-shadow: 0 10px 30px rgba(74, 0, 224, 0.15);
}

.alec-intro {
    flex: 1;
    min-width: 300px;
}

.alec-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #1a1a2e;
}

.alec-tagline {
    font-size: 1.2rem;
    color: #4A00E0;
    font-weight: 600;
    margin: 0;
}

.alec-timeline {
    display: flex;
    gap: 2rem;
    position: relative;
    flex-wrap: wrap;
}

.alec-column {
    flex: 1;
    min-width: 300px;
}

.alec-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 1rem;
}

.arrow-icon {
    font-size: 3rem;
    color: #4A00E0;
    margin-bottom: 0.5rem;
}

.arrow-text {
    color: #666;
    font-weight: 600;
    transform: rotate(0deg);
    white-space: nowrap;
}

.alec-timeline-content {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    position: relative;
}

.alec-timeline-content:before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4A00E0, #8E2DE2);
    border-radius: 20px 20px 0 0;
    width: calc(100% - 14px);
    transform: translateX(-50%);
}

.timeline-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.timeline-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.timeline-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.5;
}

.timeline-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4A00E0;
    font-weight: bold;
}

.alec-past .timeline-list li:before {
    content: "★";
}

.btn-primary {
    display: inline-block;
    background: linear-gradient(90deg, #4A00E0, #8E2DE2);
    color: white;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(74, 0, 224, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 0, 224, 0.4);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .alec-header {
        flex-direction: column;
        text-align: center;
    }

    .alec-headshot {
        width: 150px;
        height: 150px;
    }

    .alec-intro h2 {
        font-size: 2rem;
    }

    .alec-timeline {
        flex-direction: column;
    }

    .alec-arrow {
        flex-direction: row;
        padding: 1rem 0;
    }

    .arrow-icon {
        transform: rotate(90deg);
        margin: 0 1rem;
    }
}