:root {
    --primary: #239BD1;
    --primary-hover: #239BD1;
    --secondary: #0f172a;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --bg-white: #ffffff;
    --bg-light: #f1f5f9;
    --glass: rgba(255, 255, 255, 0.7);
    --shadow-soft: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-premium: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --radius-lg: 24px;
    --radius-md: 16px;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--bg-white);
}

h1,
h2,
h3,
h4 {
    font-weight: 700;
    line-height: 1.2;
}

/* Global Icon Fix */
svg[data-lucide], 
i[data-lucide] {
    display: inline-block !important;
    vertical-align: middle;
    stroke: currentColor;
    fill: none;
    width: 20px;
    height: 20px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

section {
    padding: 100px 0;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 106, 0, 0.3);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--secondary);
    color: var(--secondary);
}

.btn-outline:hover {
    background: var(--secondary);
    color: white;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--bg-white);
    box-shadow: var(--shadow-soft);
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.logo img {
    height: 45px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.phone-link {
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 800px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    position: relative;
    padding-top: 80px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.85) 30%, rgba(255, 255, 255, 0.1) 100%);
    z-index: 1;
}

.hero-blob {
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.4);
    filter: blur(100px);
    border-radius: 50%;
    z-index: 2;
    pointer-events: none;
}

.blob-left {
    top: 50%;
    left: -200px;
    transform: translateY(-50%);
}

.blob-right {
    top: 10%;
    right: -200px;
}

.hero .container {
    position: relative;
    z-index: 3;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    max-width: 700px;
}

.hero-text p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-btns {
    display: flex;
    gap: 1rem;
}

/* Tyre Finder Form */
.finder-card {
    background: var(--glass);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-premium);
    border: 1px solid rgba(255, 255, 255, 0.4);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.finder-card h3 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.9rem;
}

.form-group select {
    width: 100%;
    padding: 12px;
    border-radius: var(--radius-md);
    border: 1px solid #ddd;
    background: white;
    font-family: inherit;
    font-size: 1rem;
}

/* Trust Icons */
.trust-row {
    background: var(--bg-light);
    padding: 3rem 0;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
}

.trust-item i {
    font-size: 2rem;
    color: var(--primary);
}

/* How It Works */
.how-it-works {
    text-align: center;
    background: var(--bg-white);
    padding: 60px 0;
}

.how-it-works .section-title {
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.section-title p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.steps-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
}

.step-card {
    flex: 1;
    position: relative;
    z-index: 2;
    padding: 0 1rem;
}

.step-visual {
    position: relative;
    width: 180px;
    height: 180px;
    margin: 0 auto 1.5rem;
}

.step-circle {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: white;
    border: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
    transition: var(--transition);
}

.step-circle img,
.step-circle i {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.step-badge {
    position: absolute;
    bottom: 5px;
    left: 5px;
    width: 45px;
    height: 45px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    border: 4px solid white;
    box-shadow: 0 4px 10px rgba(255, 106, 0, 0.3);
}

.step-card h4 {
    text-transform: uppercase;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.step-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Connectors */
.step-connector {
    position: absolute;
    top: 100px;
    width: 100%;
    display: flex;
    justify-content: space-around;
    padding: 0 100px;
    z-index: 1;
}

.connector-line {
    width: 80px;
    height: 2px;
    border-top: 2px dotted #ccc;
    position: relative;
}

.connector-line::after {
    content: '';
    position: absolute;
    right: -2px;
    top: -5px;
    width: 8px;
    height: 8px;
    border-right: 2px solid #999;
    border-top: 2px solid #999;
    transform: rotate(45deg);
}

@media (max-width: 1024px) {
    .steps-container {
        flex-direction: column;
        align-items: center;
        gap: 4rem;
    }

    .step-connector {
        display: none;
    }
}

/* Products */
.products-section {
    background: var(--bg-light);
    padding: 80px 0;
}

.products-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
}

.products-title hspan {
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 1px;
    display: block;
    margin-bottom: 0.5rem;
}

.products-title h2 {
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.view-all {
    color: var(--secondary);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.product-grid-wrapper {
    position: relative;
    padding: 0 40px;
}


.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    color: var(--secondary);
    cursor: pointer;
    border: 1px solid #eee;
    z-index: 100;
    transition: var(--transition);
}

.slider-btn:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.slider-btn.prev {
    left: -20px;
}

.slider-btn.next {
    right: -20px;
}

.swiper {
    width: 100%;
    padding: 20px 0 40px;
}

.product-card {
    background: var(--bg-white);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: var(--transition);
    border: 1px solid #f1f5f9;
    position: relative;
    width: 100%;
}

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

.wishlist-btn {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 35px;
    height: 35px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    color: var(--secondary);
    cursor: pointer;
    z-index: 10;
}

.product-img-wrapper {
    height: 220px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-img-wrapper img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.product-card h4 {
    text-transform: uppercase;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.product-cat {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 0.25rem;
}

.product-size {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
}

.btn-view-details {
    width: 100%;
    padding: 12px;
    border: 1px solid #ffccaa;
    border-radius: 8px;
    background: transparent;
    color: var(--secondary);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition);
}

.btn-view-details:hover {
    border-color: var(--primary);
    background: rgba(255, 106, 0, 0.05);
}

.btn-view-details i {
    width: 16px;
    height: 16px;
}

/* Industries */
.industry-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.industry-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border: 1px solid #f1f5f9;
}

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

.industry-img-box {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.industry-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.industry-card:hover .industry-img-box img {
    transform: scale(1.05);
}

.industry-badge {
    position: absolute;
    bottom: -20px;
    left: 20px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid white;
    box-shadow: 0 4px 10px rgba(255, 106, 0, 0.3);
    z-index: 5;
}

.industry-content {
    padding: 35px 20px 25px;
}

.industry-content h4 {
    text-transform: uppercase;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    letter-spacing: 0.5px;
}

.industry-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Brands Section */
.brands-section {
    padding: 80px 0;
    text-align: center;
    background: white;
}

.brands-section h3 {
    text-transform: uppercase;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    letter-spacing: 1px;
    color: #111;
}

.brand-slider-wrapper {
    position: relative;
    padding: 0 50px;
}

.brand-item {
    background: white;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    border: 1px solid #f1f5f9;
    transition: var(--transition);
}

.brand-item:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.brand-item img {
    max-width: 120px;
    max-height: 50px;
    object-fit: contain;
}

/* Why Choose Us Card */
.why-choose-card {
    background: white;
    border-radius: 30px;
    display: flex;
    overflow: hidden;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.06);
    margin: 60px 0;
    border: 1px solid #f1f5f9;
}

.why-card-img {
    flex: 0 0 35%;
    position: relative;
    background: #f8fafc;
}

.why-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.why-card-content {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.why-card-header {
    margin-bottom: 3rem;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 2rem;
}

.why-card-header hspan {
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-muted);
    display: block;
    margin-bottom: 0.5rem;
}

.why-card-header h2 {
    font-size: 2.2rem;
    line-height: 1.2;
    text-transform: uppercase;
    font-weight: 800;
}

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

.small-feature {
    display: flex;
    gap: 1.25rem;
}

.small-feature-icon {
    color: var(--primary);
    background: #fff7ed;
    width: 45px;
    height: 45px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.small-feature-icon i {
    width: 22px;
    height: 22px;
}

.small-feature-text h4 {
    text-transform: uppercase;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.small-feature-text p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* CTA Bar */
.cta-bar {
    background: white;
    border-radius: 20px;
    padding: 2rem 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    margin-bottom: 80px;
    border: 1px solid #f1f5f9;
}

.cta-left {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.cta-tyre-img {
    width: 120px;
    height: auto;
}

.cta-text h3 {
    font-size: 1.5rem;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.cta-text p {
    color: var(--text-muted);
    font-size: 1.05rem;
}

/* Footer */
.main-footer {
    background: #ffffff;
    padding: 80px 0 20px;
    border-top: 1px solid #f1f5f9;
}

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

.footer-about .logo {
    margin-bottom: 1.5rem;
    display: inline-block;
    font-size: 1.8rem;
}

.footer-about p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    transition: var(--transition);
}

.social-links a i {
    width: 20px;
    height: 20px;
}

.social-links a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    transform: translateY(-3px);
}

.footer-col h4 {
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    letter-spacing: 1px;
    font-weight: 800;
    color: #111;
}

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

.footer-col ul li {
    margin-bottom: 1rem;
}

.footer-col ul li a {
    color: var(--text-muted);
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--primary);
}

.contact-info li {
    display: flex;
    gap: 1.25rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem !important;
}

.contact-info i {
    color: var(--primary);
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid #f1f5f9;
    padding-top: 30px;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Product Categories */
.category-section {
    padding: 100px 0;
    background: #ffffff;
    text-align: center;
}

.category-subtitle {
    text-transform: uppercase;
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    display: block;
}

.category-section h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.category-section h2 span {
    color: var(--primary);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    margin-top: 4rem;
}

.category-card {
    background: white;
    border: 1px solid #eef2f6;
    border-radius: 12px;
    padding: 0;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.cat-top {
    padding: 30px 20px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cat-bottom {
    padding: 10px 20px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.category-card:hover {
    border-color: var(--primary);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transform: translateY(-5px);
}

.cat-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.cat-name {
    font-size: 1.25rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.cat-line {
    width: 35px;
    height: 2px;
    background: var(--primary);
}

.cat-img-box {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background: #f8fafc;
}

.cat-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cat-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 2rem;
    min-height: 45px;
}

.btn-cat {
    background: transparent;
    border: 1px solid #ffbc8d;
    color: var(--primary);
    padding: 0.7rem 1.8rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.category-card:hover .btn-cat {
    background: var(--primary);
    color: white;
}

/* Features Row */
.features-row {
    padding: 40px 0;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    justify-content: space-between;
    margin-top: 4rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
}

.feature-item i {
    color: #1a202c;
    width: 28px;
    height: 28px;
}

.feature-item h4 {
    font-size: 0.95rem;
    font-weight: 800;
    margin-bottom: 0.2rem;
}

.feature-item p {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.3;
}

/* Help CTA Bar */
.help-cta-bar {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 3rem;
    display: flex;
    align-items: center;
    gap: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    margin-top: 5rem;
    border: 1px solid #f1f5f9;
}

.help-tyre {
    flex: 0 0 150px;
}

.help-tyre img {
    width: 100%;
}

.help-text {
    flex: 1;
}

.help-text h3 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.help-text p {
    color: var(--text-muted);
}

.help-btns {
    display: flex;
    gap: 1rem;
}

.btn-whatsapp {
    background: white;
    border: 1px solid #e2e8f0;
    color: #1a202c;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
}

/* Full Banner */
.full-banner-section {
    width: 100%;
    margin: 60px 0;
    overflow: hidden;
    position: relative;
}

.full-banner-section img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Localized Smoke Effect */
.smoke-emitter {
    position: absolute;
    bottom: 20%;
    /* Adjust based on tyre position */
    width: 120px;
    height: 60px;
    pointer-events: none;
    z-index: 2;
}

.emitter-left {
    left: 8%;
}

.emitter-right {
    right: 8%;
}

.smoke-puff {
    position: absolute;
    bottom: -10px;
    left: 50%;
    width: 60px;
    height: 60px;
    background: rgba(181, 155, 122, 0.5);
    /* Earthy Dust Color */
    border-radius: 50%;
    filter: blur(25px);
    animation: smokeRise 2.5s ease-out infinite;
    opacity: 0;
}

@keyframes smokeRise {
    0% {
        transform: translate(-50%, 0) scale(0.8) rotate(0deg);
        opacity: 0;
    }

    15% {
        opacity: 0.7;
    }

    100% {
        transform: translate(-120%, -100px) scale(5) rotate(45deg);
        opacity: 0;
    }
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1200px) {
    .category-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .features-row {
        flex-wrap: wrap;
        gap: 2rem;
    }
}

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

    .hero-content {
        grid-template-columns: 1fr;
    }

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

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

    .help-cta-bar {
        flex-direction: column;
        text-align: center;
        padding: 3rem 2rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

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

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

    .hero-btns {
        flex-direction: column;
    }

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