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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    font-weight: 400;
}

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

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: #6b7280;
    color: white;
    text-align: center;
}

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

.hero-content h1 {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.2;
    color: #fbbf24;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    color: #d1d5db;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.btn {
    padding: 1.2rem 3rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: #fbbf24;
    color: #000;
}

.btn-primary:hover {
    background: #f59e0b;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(251, 191, 36, 0.3);
}

.btn-whatsapp {
    background: #25d366;
    color: white;
}

.btn-whatsapp:hover {
    background: #128c7e;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

/* Results Section */
.results {
    padding: 6rem 0;
    background: #f8fafc;
}

.results h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: #000;
    letter-spacing: -0.02em;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #6b7280;
    margin-bottom: 4rem;
    font-weight: 500;
}

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

.result-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.result-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

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

.result-header h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #000;
}

.platform {
    background: #fbbf24;
    color: #000;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.before-after {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 2rem;
}

.before, .after {
    text-align: center;
}

.before h4, .after h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #6b7280;
}

.after h4 {
    color: #059669;
}

.metric {
    margin-bottom: 1rem;
}

.metric .number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: #000;
    line-height: 1;
}

.after .metric .number {
    color: #059669;
}

.metric .label {
    font-size: 0.9rem;
    color: #6b7280;
    font-weight: 500;
}

.arrow {
    font-size: 2rem;
    font-weight: 900;
    color: #fbbf24;
}

.result-footer {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
}

.timeframe {
    background: #f3f4f6;
    color: #6b7280;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.cta-section {
    text-align: center;
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Process Section */
.process {
    padding: 6rem 0;
    background: white;
}

.process h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 4rem;
    color: #000;
    letter-spacing: -0.02em;
}

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

.process-step {
    text-align: center;
    padding: 2rem;
}

.step-number {
    width: 80px;
    height: 80px;
    background: #000;
    color: #fbbf24;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    margin: 0 auto 1.5rem;
}

.process-step h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #000;
}

.process-step p {
    color: #6b7280;
    line-height: 1.6;
    font-size: 1rem;
}

/* More Results Section */
.more-results {
    padding: 6rem 0;
    background: #f8fafc;
}

.more-results h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 4rem;
    color: #000;
    letter-spacing: -0.02em;
}

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

.result-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 300px;
}

.result-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.result-image {
    height: 100%;
    background: linear-gradient(135deg, #000, #fbbf24);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.result-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.result-item:hover .result-overlay {
    transform: translateY(0);
}

.result-overlay h4 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.result-overlay p {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.result-time {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Lead Results Section */
.lead-results {
    padding: 6rem 0;
    background: white;
}

.lead-results h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 4rem;
    color: #000;
    letter-spacing: -0.02em;
}

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

.lead-card {
    text-align: center;
    padding: 3rem 2rem;
    background: #f8fafc;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.lead-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.lead-icon {
    width: 80px;
    height: 80px;
    background: #fbbf24;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.lead-icon i {
    font-size: 2rem;
    color: #000;
}

.lead-card h3 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: #000;
}

.lead-card p {
    color: #6b7280;
    font-size: 1.1rem;
    font-weight: 500;
}

/* FAQ Section */
.faq {
    padding: 6rem 0;
    background: #f8fafc;
}

.faq h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 4rem;
    color: #000;
    letter-spacing: -0.02em;
}

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

.faq-item {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
}

.faq-item h3 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #000;
}

.faq-item p, .faq-item ul {
    color: #6b7280;
    line-height: 1.6;
}

.faq-item ul {
    list-style: none;
    padding-left: 0;
}

.faq-item ul li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.faq-item ul li:before {
    content: "•";
    color: #fbbf24;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Packages Section */
.packages {
    padding: 6rem 0;
    background: white;
}

.packages h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 4rem;
    color: #000;
    letter-spacing: -0.02em;
}

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

.package-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.package-card.featured {
    border-color: #fbbf24;
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #fbbf24;
    color: #000;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.package-card h3 {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: #000;
    text-align: center;
}

.package-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #6b7280;
    text-align: center;
}

.package-content ul {
    list-style: none;
    margin-bottom: 2rem;
}

.package-content ul li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #f3f4f6;
    color: #6b7280;
    font-weight: 500;
}

.package-content ul li:last-child {
    border-bottom: none;
}

.package-price {
    text-align: center;
    margin-bottom: 2rem;
}

.package-price .price {
    font-size: 3rem;
    font-weight: 900;
    color: #000;
}

.package-price .period {
    font-size: 1.1rem;
    color: #6b7280;
    font-weight: 500;
}

.package-card .btn {
    width: 100%;
    text-align: center;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: #000;
    color: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

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

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: #fbbf24;
}

.contact-item h4 {
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.contact-item p {
    opacity: 0.9;
    margin: 0;
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group select::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #fbbf24;
    background: rgba(255, 255, 255, 0.15);
}

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

/* Footer */
.footer {
    background: #111827;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #fbbf24;
    font-weight: 700;
}

.footer-section p {
    color: #9ca3af;
    margin-bottom: 1rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

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

.social-links a:hover {
    background: #f59e0b;
    transform: translateY(-2px);
}

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

/* Footer CTA */
.footer-cta {
    text-align: center;
    margin: 3rem 0 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-cta h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #fbbf24;
}

.footer-cta .btn {
    font-size: 1rem;
    padding: 1rem 2rem;
}

/* Responsive Footer CTA */
@media (max-width: 768px) {
    .footer-cta h3 {
        font-size: 1.5rem;
    }
    
    .footer-cta .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .footer-cta {
        padding: 1.5rem;
        margin: 2rem 0 1.5rem;
    }
    
    .footer-cta h3 {
        font-size: 1.3rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-text h2 {
        font-size: 1.8rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }

    .results h2,
    .process h2,
    .more-results h2,
    .lead-results h2,
    .faq h2,
    .packages h2,
    .contact-info h2 {
        font-size: 2rem;
    }

    .results-grid,
    .process-grid,
    .leads-grid,
    .faq-grid,
    .packages-grid {
        grid-template-columns: 1fr;
    }

    .before-after {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .arrow {
        transform: rotate(90deg);
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .package-card.featured {
        transform: none;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-btn {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .cta-section {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }
}

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

    .hero-text h2 {
        font-size: 1.5rem;
    }

    .btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .result-card,
    .package-card {
        padding: 1.5rem;
    }

    .results h2,
    .process h2,
    .more-results h2,
    .lead-results h2,
    .faq h2,
    .packages h2,
    .contact-info h2 {
        font-size: 1.8rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

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

.result-card,
.process-step,
.lead-card,
.faq-item,
.package-card {
    animation: fadeInUp 0.6s ease-out;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: #f8fafc;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 2rem;
    color: #000;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #6b7280;
    margin-bottom: 2rem;
}

.founder-story {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    margin: 2rem 0;
    border-left: 4px solid #fbbf24;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.founder-story h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #000;
}

.founder-story p {
    color: #6b7280;
    margin-bottom: 0;
}

.highlight {
    font-size: 1.2rem;
    font-weight: 600;
    color: #000 !important;
    background: rgba(251, 191, 36, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #fbbf24;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.founder-image {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 4px solid #fbbf24;
}

/* Alternative style to show complete photo */
.founder-image-complete {
    width: 300px;
    height: auto;
    max-height: 400px;
    border-radius: 16px;
    object-fit: contain;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 4px solid #fbbf24;
}

/* Responsive Design for About Section */
@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-text h2 {
        font-size: 2rem;
    }
    
    .founder-image {
        width: 250px;
        height: 250px;
    }
}

@media (max-width: 480px) {
    .about-text h2 {
        font-size: 1.8rem;
    }
    
    .founder-image {
        width: 200px;
        height: 200px;
    }
}

/* Nathan Thrower Results Cards */
.thrower-results {
    margin-top: 4rem;
    text-align: center;
}

.thrower-results h3 {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 3rem;
    color: #000;
    letter-spacing: -0.02em;
}

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

.thrower-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border: 2px solid #fbbf24;
    transition: all 0.3s ease;
    max-width: 280px;
    margin: 0 auto;
}

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

.thrower-image {
    height: 150px;
    overflow: hidden;
    background: #f8fafc;
}

.result-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.thrower-card:hover .result-img {
    transform: scale(1.05);
}

.thrower-content {
    padding: 1rem;
    text-align: center;
}

.thrower-content h4 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: #000;
}

.thrower-content p {
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}

/* Responsive Design for Thrower Cards */
@media (max-width: 768px) {
    .thrower-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .thrower-results h3 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .thrower-results h3 {
        font-size: 1.6rem;
    }
    
    .thrower-content {
        padding: 1rem;
    }
    
    .thrower-content h4 {
        font-size: 1.2rem;
    }
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    font-size: 2rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-btn:hover {
    background: #128c7e;
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.6);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    }
}

/* Contact Buttons */
.contact-buttons {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-section {
    text-align: center;
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Clients Section */
.clients {
    padding: 6rem 0;
    background: white;
}

.clients h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 4rem;
    color: #000;
    letter-spacing: -0.02em;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.client-card {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid #fbbf24;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.client-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    background: white;
}

.client-card h3 {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: #000;
}

.client-card p {
    color: #6b7280;
    font-size: 0.9rem;
    font-weight: 500;
    margin: 0;
}

/* Responsive Design for Clients */
@media (max-width: 768px) {
    .clients h2 {
        font-size: 2rem;
    }
    
    .clients-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
    }
    
    .client-card {
        padding: 1rem;
    }
    
    .client-card h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .clients h2 {
        font-size: 1.8rem;
    }
    
    .clients-grid {
        grid-template-columns: 1fr;
        max-width: 300px;
    }
}

/* Footer Contact Info */
.contact-info {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.contact-info .contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: white;
}

.contact-info .contact-item i {
    font-size: 1.5rem;
    color: #fbbf24;
}

.contact-info .contact-item h4 {
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: #fbbf24;
}

.contact-info .contact-item p {
    opacity: 0.9;
    margin: 0;
    color: white;
}

/* Responsive Footer Contact */
@media (max-width: 768px) {
    .contact-info {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
}

/* Responsive Hero */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content h2 {
        font-size: 1.5rem;
    }
} 