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

body {
    font-family: 'Work Sans', sans-serif;
  font-style:italic;
    line-height: 1.6;
    color: #1E1E1E;
    background-color: #FAFAFA;
}

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

/* Header Styles */
.header {
    background-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    position: static;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    font-family: 'Oswald', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #B7410E;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.logo-img {
    height: 80px;
    width: auto;
    transition: transform 0.3s ease;
}

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

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 1rem;
}

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

.nav-link {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: #FAFAFA;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(30, 30, 30, 0.6), rgba(30, 30, 30, 0.6)), 
                url('https://storage.googleapis.com/gritbaby/20250712_0756_Tool%20Constellation%20Pattern_remix_01jzz7s692ednvzpgvwd4ers51.png') center/cover;
    background-attachment: fixed;
    color: #FAFAFA;
    padding: 180px 0;
    min-height: 65vh;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-family: 'Oswald', sans-serif;
    font-size: 5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
    font-weight: 500;
}

.hero-services {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    opacity: 0.85;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.cta-button {
    display: inline-block;
    background-color: #B7410E;
    color: #FAFAFA;
    padding: 18px 40px;
    text-decoration: none;
    border-radius: 0;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(183, 65, 14, 0.3);
    border: 2px solid #B7410E;
}

.cta-button:hover {
    background-color: transparent;
    color: #B7410E;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(183, 65, 14, 0.4);
}

/* CTA Banner Styles */
.cta-banner {
    background-color: #B7410E;
    padding: 30px 0;
}

.cta-banner-content {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cta-banner-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #FAFAFA;
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    flex: 1;
}

.cta-banner-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: #FAFAFA;
    color: #B7410E;
    padding: 18px 35px;
    text-decoration: none;
    border-radius: 0;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 3px solid #FAFAFA;
    white-space: nowrap;
}

.cta-banner-button:hover {
    background-color: transparent;
    color: #FAFAFA;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.phone-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.cta-banner-button:hover .phone-icon {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .cta-banner {
        padding: 25px 0;
    }
    
    .cta-banner-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .cta-banner-title {
        font-size: 1.5rem;
    }
    
    .cta-banner-button {
        padding: 16px 28px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .cta-banner {
        padding: 20px 0;
    }
    
    .cta-banner-title {
        font-size: 1.3rem;
    }
    
    .cta-banner-button {
        padding: 14px 24px;
        font-size: 0.8rem;
        gap: 8px;
    }
}

/* Construction Images Section */
.construction-images {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.images-container {
    display: flex;
    width: 100%;
    height: 100%;
}

.construction-image {
    flex: 1;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.construction-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.3s ease, transform 0.3s ease;
}

.construction-image:hover img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .construction-images {
        height: 200px;
    }
    
    .images-container {
        flex-wrap: wrap;
    }
    
    .construction-image {
        flex: 1 1 50%;
        height: 50%;
    }
}

/* Section Styles */
.section-title {
    font-family: 'Oswald', sans-serif;
    font-size: 2.8rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 4rem;
    color: #1E1E1E;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
}

.section-cta {
    text-align: center;
    margin-top: 4rem;
}

/* Who We Help Section */
.who-we-help {
    padding: 120px 0;
    background-color: #1E1E1E;
}

.who-we-help .section-title {
    color: #FAFAFA;
}

.who-we-help-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: center;
    margin-bottom: 4rem;
    min-height: 500px;
}

.video-section {
    position: relative;
    height: 100%;
    border-right: 4px solid #B7410E;
}

.industry-video {
    width: 100%;
    height: 100%;
    min-height: 500px;
    object-fit: cover;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.industries-section {
    padding: 3rem;
}

.industries-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #FAFAFA;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.industries-list {
    list-style: none;
    padding: 0;
}

.industries-list li {
    color: #FAFAFA;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.industries-list li:before {
    content: '▶';
    color: #B7410E;
    font-size: 0.8rem;
    position: absolute;
    left: 0;
    top: 0.2rem;
}

.industries-list li:hover {
    color: #B7410E;
    transform: translateX(5px);
    transition: all 0.3s ease;
}

/* Services Section */
.services {
    padding: 120px 0;
    background-color: #FAFAFA;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.service-card {
    text-align: left;
    padding: 0;
    border-radius: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #F5F5F5;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.service-card:hover {
    transform: translateY(-8px);
    background: #FAFAFA;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
    filter: grayscale(0%);
}

.service-divider {
    height: 4px;
    background-color: #B7410E;
    width: 100%;
    margin: 0;
}

.service-card h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 1.5rem 2rem 1rem 2rem;
    color: #1E1E1E;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-card p {
    color: #666;
    line-height: 1.6;
    margin: 0 2rem 2rem 2rem;
    font-size: 0.95rem;
}

.service-cta {
    display: inline-block;
    background-color: #B7410E;
    color: #FAFAFA;
    padding: 12px 24px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    margin: 0 2rem 2rem 2rem;
    border: 2px solid #B7410E;
}

.service-cta:hover {
    background-color: transparent;
    color: #B7410E;
    transform: translateY(-2px);
}

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

.pricing-intro {
    text-align: center;
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 3rem;
    font-weight: 500;
}

.pricing-toggle {
    display: flex;
    justify-content: center;
    margin-bottom: 4rem;
    background-color: #F5F5F5;
    border-radius: 8px;
    padding: 8px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.toggle-btn {
    flex: 1;
    padding: 12px 24px;
    background: none;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.toggle-btn.active {
    background-color: #B7410E;
    color: #FAFAFA;
    box-shadow: 0 2px 8px rgba(183, 65, 14, 0.3);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 5rem;
}

.pricing-card {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.pricing-card.recommended {
    border-color: #B7410E;
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(183, 65, 14, 0.2);
}

.pricing-card.recommended:hover {
    transform: scale(1.05) translateY(-8px);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #B7410E;
    color: #FAFAFA;
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.plan-name {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #1E1E1E;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.plan-price {
    margin-bottom: 1.5rem;
}

.price {
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #B7410E;
}

.period {
    font-size: 1.2rem;
    color: #666;
    font-weight: 500;
}

.yearly-price.hidden,
.monthly-price.hidden {
    display: none;
}

.plan-tagline {
    color: #666;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.onboarding-fee {
    font-size: 0.9rem;
    color: #999;
    margin-bottom: 2rem;
    text-align: center;
    padding: 8px;
    background-color: #F8F8F8;
    border-radius: 6px;
}

.plan-features {
    list-style: none;
    margin-bottom: 2.5rem;
    padding: 0;
}

.plan-features li {
    padding: 8px 0;
    padding-left: 1.5rem;
    position: relative;
    color: #333;
    line-height: 1.5;
}

.plan-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #B7410E;
    font-weight: bold;
    font-size: 1.1rem;
}

.plan-features li strong {
    color: #1E1E1E;
}

.plan-cta {
    display: block;
    width: 100%;
    background-color: #B7410E;
    color: #FAFAFA;
    padding: 16px 24px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid #B7410E;
}

.plan-cta:hover {
    background-color: transparent;
    color: #B7410E;
    transform: translateY(-2px);
}

.additional-offerings {
    border-top: 2px solid #E0E0E0;
    padding-top: 4rem;
}

.offerings-title {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 3rem;
    color: #1E1E1E;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.offerings-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.offering-card {
    background: #FFFFFF;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    text-align: center;
    transition: transform 0.3s ease;
}

.offering-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.offering-card h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1E1E1E;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.offering-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.offering-cta {
    display: inline-block;
    background-color: #B7410E;
    color: #FAFAFA;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: 2px solid #B7410E;
}

.offering-cta:hover {
    background-color: transparent;
    color: #B7410E;
    transform: translateY(-2px);
}

.add-ons {
    text-align: center;
}

.add-ons h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #1E1E1E;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.add-ons-list {
    list-style: none;
    padding: 0;
    display: inline-block;
    text-align: left;
}

.add-ons-list li {
    color: #666;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
}

.add-ons-list li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: #B7410E;
    font-weight: bold;
}

/* Pricing Responsive Design */
@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .pricing-card.recommended {
        transform: none;
    }
    
    .pricing-card.recommended:hover {
        transform: translateY(-8px);
    }
    
    .offerings-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-toggle {
        max-width: 100%;
        margin-bottom: 3rem;
    }
    
    .toggle-btn {
        font-size: 0.85rem;
        padding: 10px 16px;
    }
}

@media (max-width: 480px) {
    .pricing {
        padding: 80px 0;
    }
    
    .pricing-card {
        padding: 2rem 1.5rem;
    }
    
    .plan-name {
        font-size: 1.5rem;
    }
    
    .price {
        font-size: 2.5rem;
    }
    
    .offering-card {
        padding: 1.5rem;
    }
}

/* Why Grit Baby Section */
.why-grit-baby {
    padding: 120px 0;
    background-color: #F5F5F5;
}

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

.benefit-item {
    background: #FAFAFA;
    padding: 2.5rem;
    border-radius: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    border-bottom: 4px solid #C79B4B;
}

.benefit-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.benefit-icon {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #B7410E;
}

.benefit-item h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1E1E1E;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

/* Partners Section */
.partners {
    padding: 120px 0;
    background-color: #FAFAFA;
}

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

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.5rem;
    background-color: #F5F5F5;
    border-radius: 0;
    transition: transform 0.3s ease;
    border: 1px solid #E0E0E0;
}

.partner-logo:hover {
    transform: scale(1.05);
    background-color: #FAFAFA;
    border-color: #C79B4B;
}

.placeholder-logo {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    color: #999;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Final CTA Section */
.final-cta {
    padding: 120px 0;
    background: linear-gradient(rgba(30, 30, 30, 0.8), rgba(30, 30, 30, 0.8)), 
                url('https://images.pexels.com/photos/1216589/pexels-photo-1216589.jpeg?auto=compress&cs=tinysrgb&w=1920&h=1080&fit=crop') center/cover;
    color: #FAFAFA;
}

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

.cta-title {
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 2rem;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-subtitle {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    line-height: 1.6;
}

/* Footer Styles */
.footer {
    background-color: #1E1E1E;
    color: #FAFAFA;
    padding: 80px 0 30px;
}

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

.footer-section h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #B7410E;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.footer-section h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #FAFAFA;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-section p {
    color: #CCC;
    line-height: 1.6;
}

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

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

.footer-links a {
    color: #CCC;
    text-decoration: none;
    transition: color 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.footer-links a:hover {
    color: #B7410E;
}

.contact-info p {
    margin-bottom: 0.8rem;
    color: #CCC;
}

.contact-info strong {
    color: #FAFAFA;
}

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

.social-link {
    display: inline-block;
    font-size: 1.8rem;
    text-decoration: none;
    transition: transform 0.3s ease;
    color: #CCC;
}

.social-link:hover {
    transform: scale(1.2);
    color: #B7410E;
}

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

.footer-bottom a {
    color: #CCC;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.footer-bottom a:hover {
    color: #B7410E;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        justify-content: center;
        position: relative;
    }
    
    .nav-brand {
        order: 0;
    }
    
    .nav-toggle {
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        color:#3b3b3b;
    }
    
    .who-we-help-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        min-height: auto;
    }
    
    .video-section {
        border-right: none;
        border-bottom: 4px solid #B7410E;
        height: auto;
    }
    
    .industry-video {
        height: 300px;
        min-height: 300px;
    }
    
    .industries-section {
        padding: 2rem 1rem;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background-color: #1E1E1E;
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.3);
        padding: 4rem 0;
        z-index: 1001;
        color:#ffffff;
    }

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

    .nav-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

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

    .cta-title {
        font-size: 2.2rem;
    }

    .categories-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .hero, .final-cta, .who-we-help, .services, .why-grit-baby, .partners {
        padding: 120px 0 80px;
    }
    
    .hero {
        min-height: 80vh;
        background-attachment: scroll;
    }
}

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

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

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

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

    .partners-grid {
        grid-template-columns: 1fr;
    }

    .cta-button {
        padding: 15px 30px;
        font-size: 0.9rem;
    }
}

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

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Additional Industrial Styling */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 2px,
        rgba(199, 155, 75, 0.03) 2px,
        rgba(199, 155, 75, 0.03) 4px
    );
    pointer-events: none;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 2px,
        rgba(199, 155, 75, 0.03) 2px,
        rgba(199, 155, 75, 0.03) 4px
    );
    pointer-events: none;
}