/* --- Hero Section Layout --- */
.hero {
    width: 100%;
    position: relative;
    overflow: hidden;
    padding: 4rem 0;
    min-height: calc(100vh - var(--nav-height));
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
    display: grid;
    align-items: center;
}

/* --- Left Column: Text Content --- */
.hero-copy {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-copy h1,
.hero-copy p {
    transition: opacity var(--transition-speed) ease-in-out, transform var(--transition-speed) ease-in-out;
}

.hero-copy.fade-out h1,
.hero-copy.fade-out p {
    opacity: 0;
    transform: translateY(10px);
}

.hero-copy h1 {
    font-size: clamp(2.0rem, 5vw, 3.0rem);
    font-weight: 700;
    margin: 0 0 0.75rem;
    line-height: 1.15;
}

.hero-copy p {
    font-size: clamp(1.1rem, 2.5vw, 1.35rem);
    color: var(--color-secondary-text);
    margin: 0 0 2rem;
    max-width: 550px;
}

.cta-button {
    display: inline-block;
    background-image: linear-gradient(135deg, var(--color-accent-dark), var(--color-accent), var(--color-accent-pink));
    color: var(--color-white);
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(106, 17, 203, 0.4);
}

/* --- Right Column: Image & Blob --- */
.hero-media {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 300px;
}

.hero-blob {
    position: absolute;
    width: 120%;
    height: 120%;
    max-width: 700px;
    max-height: 700px;
    background-image: linear-gradient(45deg, var(--color-accent-dark) 0%, var(--color-accent) 50%, var(--color-accent-pink) 100%);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    animation: morph 8s ease-in-out infinite both;
    z-index: 1;
    opacity: 0.7;
    filter: hue-rotate(var(--blob-hue-rotate));
    transition: filter 1s ease-in-out;
}

@keyframes morph {
    0% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }

    50% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }

    100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
}

.hero-media img {
    position: relative;
    z-index: 5;
    max-width: 80%;
    height: auto;
    object-fit: contain;
    transition: opacity var(--transition-speed) ease-in-out, transform var(--transition-speed) ease-in-out;
}

.hero-media.fade-out img {
    opacity: 0;
    transform: scale(0.95);
}

/* --- Bottom: Slide Indicator Dots --- */
.hero-dots {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
    z-index: 20;
    position: relative;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: transparent;
    border: 2px solid var(--color-accent);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.dot:hover {
    transform: scale(1.2);
}

.dot.active {
    background-color: var(--color-accent);
    transform: scale(1.1);
}

/* --- About Section --- */
.about-section {
    padding: 6rem 2rem;
    background-color: #f9faff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.about-media {
    position: relative;
    display: grid;
    place-items: center;
}

.about-blob {
    position: absolute;
    width: 100%;
    height: 100%;
    max-width: 500px;
    max-height: 500px;
    background-image: linear-gradient(135deg, var(--color-accent-dark) 0%, var(--color-accent) 50%, var(--color-accent-pink) 100%);
    filter: hue-rotate(40deg);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: morph 5s ease-in-out infinite alternate;
    z-index: 1;
    opacity: 0.7;
}

.about-media img {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 400px;
    border-radius: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-content {
    text-align: center;
}

.section-subtitle {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.companyname {
    font-size: 2rem;
    font-weight: 800;
}

.about-content h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    margin: 0 0 1rem;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--color-secondary-text);
    max-width: 600px;
    margin: 0 auto 2rem auto;
}

.read-more-btn {
    display: inline-block;
    background-image: linear-gradient(135deg, var(--color-accent-dark), var(--color-accent), var(--color-accent-pink));
    color: var(--color-white);
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.read-more-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(106, 17, 203, 0.4);
}

/* --- Services Section --- */
.services-section {
    padding: 6rem 2rem;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
}

.services-title {
    text-align: center;
    margin-bottom: 4rem;
}

.services-title h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    margin: 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: #f9faff;
    padding: 2.5rem 2rem;
    border-radius: 1rem;
    text-align: center;
    border: 1px solid #e0e0e0;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--color-accent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.8s ease;
    z-index: 1;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    color: var(--color-white);
}

.service-card:hover::before {
    width: 250%;
    height: 250%;
}

.service-card>* {
    position: relative;
    z-index: 2;
    transition: color 0.3s ease, transform 0.8s ease;
}

.service-icon {
    font-size: 3rem;
    color: var(--color-accent);
    margin-bottom: 1.5rem;
    transition: transform 0.8s ease;
}

.service-card:hover .service-icon {
    transform: rotate(180deg);
    color: var(--color-white);
}

.service-card h3 {
    font-size: 1.5rem;
    margin: 0 0 0.75rem;
}

.service-card p {
    line-height: 1.6;
    margin: 0 0 1.5rem;
    color: var(--color-secondary-text);
}

.service-card:hover p {
    color: #f0f0f0;
}

.learn-more-link {
    font-weight: 600;
    text-decoration: none;
    color: var(--color-accent);
    position: relative;
}

.service-card:hover .learn-more-link {
    color: var(--color-white);
}

.learn-more-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 100%;
    height: 2px;
    background-color: var(--color-accent-pink);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.service-card:hover .learn-more-link::after {
    transform: scaleX(1);
}


/* --- Responsive Layout: Desktop --- */
@media (min-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr 1fr;
        gap: 5rem;
    }

    .hero-copy {
        align-items: flex-start;
        text-align: left;

    }

    .hero-dots {
        position: absolute;
        bottom: 2rem;
        left: 50%;
        transform: translateX(-50%);
        margin-top: 0;
    }

    .about-container {
        grid-template-columns: 1fr 1fr;
        gap: 5rem;
    }

    .about-content {
        text-align: left;
    }

    .about-content p {
        margin-left: 0;
        margin-right: 0;
    }
}

/* --- Responsive Layout: Mobile --- */
@media (max-width: 767px) {
    .hero-container {
        grid-template-columns: 1fr;
    }

    .hero-media {
        order: 1;
        max-height: 50vh;
    }

    .hero-copy {
        order: 2;
        margin-top: 4rem;
    }



    .about-section {
        padding: 4rem 2rem;
    }

    /* On mobile, stack the About section with image first */
    .about-media {
        order: 1;
    }

    .about-content {
        order: 2;
        margin-top: 2rem;
    }

    .services-section {
        padding: 4rem 2rem;
    }
}


/* --- Products Section --- */
.products-section {
    background-color: #f9faff;
    padding: 6rem 2rem;
}

.products-container {
    max-width: 1200px;
    margin: 0 auto;
}

.products-title {
    text-align: center;
    margin-bottom: 4rem;
}

.products-title h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    margin: 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.product-card {
    background-color: #ffffff;
    padding: 2.5rem 2rem;
    border-radius: 1rem;
    text-align: center;
    border: 1px solid #e0e0e0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Border movement effect container */
.product-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid transparent;
    border-radius: 1rem;
    box-sizing: border-box;
    transition: border-color 0.4s ease;
}

/* Background color fill effect */
.product-card::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: linear-gradient(135deg, var(--color-accent-dark), var(--color-accent));
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
    z-index: 1;
}

.product-card:hover {
    transform: translateY(-10px);
    /* Card comes forward */
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    color: var(--color-white);
    /* Text color changes on hover */
}

.product-card:hover::after {
    border-color: var(--color-accent-pink);
    /* Border color appears */
}

.product-card:hover::before {
    width: 250%;
    height: 250%;
}

.product-card>* {
    position: relative;
    z-index: 2;
    transition: color 0.3s ease, transform 0.3s ease;
}

.product-icon {
    font-size: 3rem;
    color: var(--color-accent);
    margin-bottom: 1.5rem;
    transition: transform 0.4s ease, color 0.3s ease;
}

.product-card:hover .product-icon {
    transform: rotate(180deg);
    /* Icon rotates */
    color: var(--color-white);
}

.product-card h3 {
    font-size: 1.5rem;
    margin: 0 0 0.75rem;
}

.product-card p {
    line-height: 1.6;
    margin: 0 0 1.5rem;
    color: var(--color-secondary-text);
}

.product-card:hover p {
    color: #f0f0f0;
}

.learn-more-link {
    font-weight: 600;
    text-decoration: none;
    color: var(--color-accent);
    position: relative;
}

.product-card:hover .learn-more-link {
    color: var(--color-white);
}

.learn-more-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 100%;
    height: 2px;
    background-color: var(--color-accent-pink);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.product-card:hover .learn-more-link::after {
    transform: scaleX(1);
}



/* --- Users Section --- */
.users-section {
    padding: 6rem 2rem;
}

.users-container {
    max-width: 1200px;
    margin: 0 auto;
}

.users-title {
    text-align: center;
    margin-bottom: 4rem;
}

.users-title h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    margin: 0;
}

.users-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.user-card {
    background-color: var(--color-white);
    padding: 2.5rem 2rem;
    border-radius: 1rem;
    text-align: center;
    border: 1px solid #e0e0e0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Border movement effect container */
.user-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid transparent;
    border-radius: 1rem;
    box-sizing: border-box;
    transition: border-color 0.4s ease;
}

/* Background color fill effect */
.user-card::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: linear-gradient(135deg, var(--color-accent-dark), var(--color-accent));
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
    z-index: 1;
}

.user-card:hover {
    transform: translateY(-10px);
    /* Card comes forward */
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    color: var(--color-white);
    /* Text color changes on hover */
}

.user-card:hover::after {
    border-color: var(--color-accent-pink);
    /* Border color appears */
}

.user-card:hover::before {
    width: 250%;
    height: 250%;
}

.user-card>* {
    position: relative;
    z-index: 2;
    transition: color 0.3s ease, transform 0.3s ease;
}

.user-icon {
    font-size: 3rem;
    color: var(--color-accent);
    margin-bottom: 1.5rem;
    transition: transform 0.4s ease, color 0.3s ease;
}

.user-card:hover .user-icon {
    transform: rotate(180deg);
    /* Icon rotates */
    color: var(--color-white);
}

.user-card h3 {
    font-size: 1.5rem;
    margin: 0 0 0.75rem;
}

.user-card p {
    line-height: 1.6;
    margin: 0 0 1.5rem;
    color: var(--color-secondary-text);
}

.user-card:hover p {
    color: #f0f0f0;
}

.learn-more-link {
    font-weight: 600;
    text-decoration: none;
    color: var(--color-accent);
    position: relative;
}

.user-card:hover .learn-more-link {
    color: var(--color-white);
}

.learn-more-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 100%;
    height: 2px;
    background-color: var(--color-accent-pink);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.user-card:hover .learn-more-link::after {
    transform: scaleX(1);
}

/* --- Testimonial Section --- */
.testimonial-section {
    padding: 6rem 2rem;
    background-color: #f9faff;
}

.testimonial-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-title h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    margin: 0 0 4rem 0;
    color: black
        /* Title color from image */
}

.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
}

.testimonial-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    text-align: center;
}

.testimonial-image-wrapper {
    position: relative;
    width: 150px;
    height: 150px;
}

.testimonial-image-wrapper::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    z-index: 1;
    background-color: #FDF171;
    /* Yellow blob color */
}

/* Specific blob shapes for each card */
.testimonial-card:nth-child(1) .testimonial-image-wrapper::before {
    clip-path: circle(70.7% at 50% 50%);
}

.testimonial-card:nth-child(2) .testimonial-image-wrapper::before {
    clip-path: ellipse(65% 80% at 50% 50%);
}

.testimonial-image-wrapper img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transform: scale(0.9);
}

.testimonial-content blockquote {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--color-secondary-text);
    max-width: 600px;
    margin: 0 0 1rem 0;
    font-style: italic;
    border-left: 4px solid var(--color-accent-pink);
    padding-left: 1rem;
    text-align: left;
}

.testimonial-author {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--color-primary-text);
}

.testimonial-author span {
    display: block;
    font-weight: 400;
    font-size: 0.9rem;
    color: var(--color-secondary-text);
    margin-top: 0.25rem;
}

/* --- Responsive Layout --- */
@media (min-width: 768px) {
    .testimonial-card {
        flex-direction: row;
        text-align: left;
        gap: 3rem;
    }

    /* Alternate layout for even cards */
    .testimonial-card:nth-child(even) {
        flex-direction: row-reverse;
    }

    .testimonial-card:nth-child(even) .testimonial-content blockquote {
        border-left: none;
        border-right: 4px solid var(--color-accent-pink);
        padding-left: 0;
        padding-right: 1rem;
        text-align: right;
    }
}


/* --- Clients Section --- */
.clients-section {
    padding: 4rem 0;
    background-color: var(--color-white);
}

.clients-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    align-items: center;
    grid-template-columns: 1fr;
    /* Default to single column for mobile */
}

.clients-intro {
    background-color: var(--color-accent);
    color: var(--color-white);
    padding: 4rem 2rem;
    text-align: center;
}

.clients-intro h2 {
    font-size: clamp(2.2rem, 5vw, 3rem);
    font-weight: 700;
    margin: 0 0 1rem 0;
}

.clients-intro p {
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 400px;
    margin: 0 auto;
    opacity: 0.9;
}

.clients-grid-wrapper {
    padding: 2rem;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.client-card {
    background-color: var(--color-white);
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: none;
    /* Hide cards by default */
}

.client-card.active {
    display: block;
    /* Show active cards */
}

.client-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.client-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    color: var(--color-primary-text);
}

.client-card p {
    font-size: 1rem;
    color: var(--color-secondary-text);
    margin: 0;
}

/* --- Pagination Dots --- */
.clients-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.client-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #d0d0d0;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.client-dot:hover {
    transform: scale(1.2);
}

.client-dot.active {
    background-color: var(--color-accent);
    transform: scale(1.1);
}


/* --- Responsive Layout --- */
@media (min-width: 992px) {
    .clients-container {
        grid-template-columns: 400px 1fr;
        /* Two columns on desktop */
    }

    .clients-intro {
        text-align: left;
        padding: 6rem 3rem;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .clients-intro p {
        margin-left: 0;
    }

    .clients-grid-wrapper {
        padding: 3rem;
    }

    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}





/* --- Areas We Serve Section --- */
.areas-section {
    padding: 5rem 1.5rem;
}

.areas-container {
    max-width: 1200px;
    margin: 0 auto;
}

.areas-header {
    text-align: center;
    margin-bottom: 3rem;
}

.areas-eyebrow {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
}

.areas-header h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    line-height: 1.3;
    max-width: 750px;
    margin: 0 auto;
}

/* --- Tab Navigation --- */
.areas-tab-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 1.5rem;
}

.areas-tab {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 9999px;
    border: 1px solid #d1d5db;
    background-color: transparent;
    color: var(--ink);
    cursor: pointer;
    transition: all 0.3s ease;
}

.areas-tab:hover {
    background-color: #e5e7eb;
}

.areas-tab[aria-selected="true"] {
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
    color: var(--card);
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* --- Tab Panels --- */
.areas-tab-panel {
    background-color: var(--card);
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
    overflow: hidden;
    display: none;
    /* Hidden by default */
}

.areas-tab-panel.active {
    display: block;
    animation: fadeIn 0.6s ease-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.panel-grid {
    display: grid;
    grid-template-columns: 1fr;
}

.panel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.panel-content {
    padding: 2rem;
}

.panel-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 0 1.5rem 0;
}

.panel-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.panel-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    line-height: 1.5;
}

.panel-features li::before {
    content: '✔';
    font-weight: 700;
    color: var(--card);
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
    border-radius: 50%;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    margin-top: 2px;
}

.panel-cta {
    display: inline-block;
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
    color: var(--card);
    padding: 0.8rem 2rem;
    border-radius: 9999px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.panel-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* --- Responsive Layout --- */
@media (min-width: 992px) {
    .panel-grid {
        grid-template-columns: 1fr 1fr;
    }
}