/* RM TITLE WIDGET */
.rm-title-wrapper {
    margin: 0 auto;
}

.rm-title-gradient {
    --gradient-color-1: #6b46c1;
    --gradient-color-2: #ea4d8b;
    background: linear-gradient(135deg, var(--gradient-color-1), var(--gradient-color-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.rm-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
}

.rm-subtitle {
    font-family: var(--font-secondary, serif);
    font-size: 24px;
    font-weight: 400;
    line-height: 1.3;
    color: var(--brand-purple);
}

.rm-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-muted);
}

/* HERO WIDGET */
.hero {
    position: relative;
    padding: 2rem 3rem 4rem;
    overflow: hidden;
    min-height: 400px;
}

.hero-bg-shape {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
    max-width: 800px;
}

.hero-top {
    width: 100%;
    position: relative;
    z-index: 2;
    margin-bottom: 2rem;
}

.hero-main {
    display: flex;
    align-items: flex-start;
    gap: 3rem;
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero-text-area {
    flex: 1;
}

.hero-image-area {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.main-hero-img {
    width: 100%;
    max-width: 600px;
    height: auto;
    object-fit: contain;
}

.hero h2 {
    font-size: 50px;
    margin-bottom: 0.5rem;
}

.hero h2 .accent-text {
    background: var(--bg-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero h3 {
    font-size: 35px;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 20px;
    margin-bottom: 2rem;
    color: var(--text-muted);
}

.cta-btn.wide {
    width: fit-content;
    padding: 1rem 2.5rem;
}

@media (max-width: 768px) {
    .hero {
        padding: 4rem 1.5rem;
        text-align: center;
    }

    .hero-main {
        flex-direction: column;
        align-items: center;
    }

    .hero h2 {
        font-size: 2rem;
    }

    .hero h3 {
        font-size: 1.5rem;
    }
}

/* TRUSTED BRANDS WIDGET */
.trusted-brands {
    padding: 2rem 0;
    text-align: center;
}

.brands-label {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.logo-carousel {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.logo-track {
    display: flex;
    animation: scroll-brands 30s linear infinite;
    gap: 4rem;
    will-change: transform;
}

/* Pause animation on hover */
.logo-carousel:hover .logo-track {
    animation-play-state: paused;
}

.logo-track img {
    height: 40px;
    width: auto;
    filter: grayscale(1);
    opacity: 0.6;
    transition: filter 0.3s, opacity 0.3s;
}

.logo-track img:hover {
    filter: grayscale(0);
    opacity: 1;
}

.brand-logo {
    flex: 0 0 auto;
    width: 200px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.4s ease;
    cursor: pointer;
    padding: 0 1rem;
}

.brand-logo:hover {
    transform: scale(1.1);
}

@keyframes scroll-brands {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* GROWTH MARKETING WIDGET */
.growth-marketing {
    padding: 2rem 1.5rem;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--brand-purple);
    margin-bottom: 4rem;
    text-transform: uppercase;
}

.growth-container {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
    max-width: 1440px;
    margin: 0 auto;
}

.growth-left {
    flex: 1;
}

.marketing-box {
    background-color: var(--brand-purple);
    color: #fff;
    padding: 2.5rem;
    border-radius: 1.5rem;
    aspect-ratio: 1 / 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    max-width: 360px;
    margin-bottom: 2rem;
}

.box-icon {
    font-size: 3rem;
}

.box-content {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.2;
}

.box-stat {
    font-size: 4rem;
    font-weight: 800;
}

.marketing-desc p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.growth-right {
    flex: 1.5;
}

.growth-heading h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--brand-blue);
    margin-bottom: 2.5rem;
    line-height: 1.2;
}

.accent-text {
    color: #ea4d8b;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.stat-card {
    border: 1px solid #e0e0e0;
    padding: 2rem 1.5rem;
    border-radius: 1.5rem;
    text-align: center;
    transition: transform 0.3s;
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

.stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--brand-blue);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-muted);
}

.stat-card p {
    font-size: 1rem;
    color: var(--brand-pink);
    margin-top: 1rem;
    font-weight: 600;
}

.growth-footer {
    margin-top: 4rem;
    display: flex;
    justify-content: center;
}

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

    .marketing-box {
        margin: 0 auto 3rem;
    }

    .growth-heading {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.75rem;
    }

    .growth-heading h3 {
        font-size: 1.75rem;
    }

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

/* SEGMENT CARDS WIDGET */
.who-we-work-with {
    padding: 2rem 1.5rem;
}

.who-we-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.who-we-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: var(--bg-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.who-we-header p {
    font-size: 1.2rem;
    color: var(--text-muted);
}

.segments-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    max-width: 1440px;
    margin: 0 auto;
}

.segment-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: #fff;
    border-radius: 1.5rem;
    border: 1px solid #f0f0f0;
    transition: transform 0.3s, box-shadow 0.3s;
}

.segment-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.segment-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: var(--bg-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.segment-icon i,
.segment-icon svg {
    font-size: 2.5rem;
    color: #fff;
}

.segment-card h4 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--brand-purple);
    margin-bottom: 1.5rem;
}

.segment-card p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
}

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

@media (max-width: 768px) {
    .who-we-header h2 {
        font-size: 2rem;
    }

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

@media (max-width: 480px) {
    .segments-grid {
        grid-template-columns: 1fr;
    }
}

/* SERVICES GRID WIDGET */
.brand-needs {
    padding: 2rem 1.5rem;
}

.needs-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3rem;
}

.brand-needs h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: var(--bg-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.needs-header p {
    font-size: 1.2rem;
    color: var(--text-muted);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    max-width: 1440px;
    margin: 0 auto 3rem;
}

.service-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    padding: 2rem;
    border-radius: 1.5rem;
    transition: all 0.4s;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.service-card .box-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

/* Allow Elementor dynamic styles to override */
.elementor-widget-rm-services-grid .service-card .box-icon {
    width: var(--icon-width, 60px);
    height: var(--icon-height, 60px);
    background: var(--icon-bg, var(--bg-gradient));
    color: var(--icon-color, #fff);
    border-radius: var(--icon-radius, 12px);
    font-size: var(--icon-size, 2rem);
    padding: var(--icon-padding, 0);
}

.service-card h4 {
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--brand-purple);
}

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

.needs-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1440px;
    margin: 0 auto;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    gap: 3rem;
}

.footer-text {
    flex: 2;
}

.footer-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-muted);
}

.final-cta-text {
    font-weight: 800;
    color: var(--brand-purple);
}

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

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .needs-footer {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* SCALABLE GROWTH / METHODOLOGY */
.scalable-growth {
    padding: 2rem 1.5rem;
}

.growth-intro {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto 4rem;
}

.growth-intro h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    background: var(--bg-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.intro-content p {
    font-size: 1.15rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.methodology-area {
    max-width: 1440px;
    margin: 0 auto;
}

.methodology-area h3 {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--brand-pink);
    margin-bottom: 3rem;
    letter-spacing: 0.1em;
}

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

.step-item {
    text-align: center;
}

.step-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: #f8f8f8;
    border-radius: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--brand-purple);
    position: relative;
}

/* Support for Elementor SVG icons */
.step-icon i,
.step-icon svg {
    width: 3rem;
    height: 3rem;
}

.step-icon i {
    font-size: 3rem;
}

.step-icon svg {
    fill: var(--brand-purple);
}

.step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 35px;
    height: 35px;
    background: var(--bg-gradient);
    color: #fff;
    border-radius: 50%;
    font-size: 1rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-item h5 {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.step-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-muted);
}

@media (max-width: 1024px) {
    .methodology-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .growth-intro h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .methodology-grid {
        grid-template-columns: 1fr;
    }
}

/* TECH STACK WIDGET */
.tech-stack {
    padding: 2rem 1.5rem;
}

.tech-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.tech-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: var(--bg-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tech-header p {
    font-size: 1.2rem;
    color: var(--text-muted);
}

.tech-categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1440px;
    margin: 0 auto;
}

.tech-category h4 {
    font-size: 1rem;
    font-weight: 800;
    color: var(--brand-pink);
    letter-spacing: 0.15em;
    margin-bottom: 2rem;
    text-transform: uppercase;
    text-align: center;
}

.tech-logos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.tech-logo {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 1rem;
    padding: 2rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px;
    transition: all 0.3s;
}

.tech-logo img {
    max-height: 50px;
    max-width: 90%;
    object-fit: contain;
    filter: grayscale(1);
    opacity: 0.6;
    transition: all 0.3s;
}

.tech-logo:hover img {
    filter: grayscale(0);
    opacity: 1;
}

.tech-logo:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    border-color: var(--brand-purple);
    transform: translateY(-5px);
}

@media (max-width: 1200px) {
    .tech-categories {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .tech-logos {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .tech-logos {
        grid-template-columns: repeat(2, 1fr);
    }

    .tech-header h2 {
        font-size: 2rem;
    }
}

/* PORTFOLIO WIDGET */
.work-showcase {
    padding: 2rem 1.5rem;
}

.work-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.work-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: var(--bg-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.work-header p {
    font-size: 1.2rem;
    color: var(--text-muted);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1440px;
    margin: 0 auto;
}

.portfolio-item {
    border-radius: 1.5rem;
    overflow: hidden;
    background: #fff;
    border: 1px solid #eee;
    transition: transform 0.3s;
}

.portfolio-item:hover {
    transform: translateY(-10px);
}

.portfolio-thumb {
    aspect-ratio: 16 / 9;
    background: #f8f8f8;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.img-placeholder {
    font-weight: 800;
    color: #ddd;
    font-size: 2rem;
}

.portfolio-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.portfolio-link-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.portfolio-content {
    padding: 2rem;
}

.portfolio-content h4 {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--brand-purple);
}

.portfolio-content p {
    font-size: 1rem;
    color: var(--brand-pink);
    font-weight: 600;
}

@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .work-header h2 {
        font-size: 2rem;
    }
}

/* TESTIMONIALS WIDGET */
.testimonials {
    padding: 6rem 1.5rem;
    background: transparent;
}

.testimonials-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4rem;
}

.testimonials-header h2 {
    font-size: 39px;
    font-weight: 700;
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 1rem;
    background: var(--bg-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.testimonials-header p {
    font-family: var(--font-secondary);
    font-size: 20px;
    font-weight: 500;
    line-height: 1.4;
    color: var(--text-muted);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1440px;
    margin: 0 auto 4rem;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: #fff;
    padding: 2rem;
    border-radius: 1.5rem;
    border: 1px solid rgba(154, 75, 145, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--bg-gradient);
    opacity: 0;
    transition: opacity 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(154, 75, 145, 0.15);
    border-color: rgba(234, 77, 139, 0.2);
}

.testimonial-card:hover::before {
    opacity: 1;
}

/* Star Rating */
.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.25rem;
}

.testimonial-rating i {
    font-size: 1.25rem;
    color: #ffb400;
}

/* Testimonial Text */
.testimonial-text {
    font-family: var(--font-secondary);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    color: #333;
    margin-bottom: 1.5rem;
    position: relative;
    flex-grow: 1;
}

/* Author Section */
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bg-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 14px;
    flex-shrink: 0;
}

.author-info h4 {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0.25rem;
}

.author-info p {
    font-family: var(--font-secondary);
    font-size: 14px;
    font-weight: 400;
    color: var(--text-muted);
}

/* Stats Badge */
.testimonial-stats {
    display: flex;
    gap: 0.75rem;
}

.stat-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(154, 75, 145, 0.08), rgba(234, 77, 139, 0.08));
    border-radius: 2rem;
    font-family: var(--font-secondary);
    font-size: 13px;
    font-weight: 600;
    color: var(--brand-purple);
}

.stat-badge svg {
    height: 10px;

}

.stat-badge svg path {
    fill: var(--gradient-color-1)
}

@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .testimonials-banner {
        padding: 2rem;
    }

    .banner-content {
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .testimonials {
        padding: 3rem 1rem;
    }

    .testimonials-header {
        margin-bottom: 3rem;
    }

    .testimonials-header h2 {
        font-size: 28px;
    }

    .testimonials-header p {
        font-size: 16px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .testimonial-text {
        font-size: 16px;
    }

    .testimonials-banner {
        padding: 1.5rem;
    }

    .banner-content {
        flex-direction: column;
        gap: 2rem;
    }

    .banner-divider {
        width: 60px;
        height: 1px;
    }

    .stat-number {
        font-size: 32px;
    }

    .stat-label {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .testimonials {
        padding: 2rem 1rem;
    }

    .testimonials-header h2 {
        font-size: 24px;
    }

    .testimonial-card {
        padding: 1.25rem;
    }

    .author-avatar {
        width: 45px;
        height: 45px;
        font-size: 12px;
    }

    .testimonial-text {
        font-size: 15px;
    }

    .stat-badge {
        font-size: 12px;
        padding: 0.4rem 0.8rem;
    }
}

/* TESTIMONIALS BANNER */
.testimonials-banner {
    background: var(--bg-gradient);
    border-radius: 1.5rem;
    padding: 2.5rem 3rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    box-shadow: 0 20px 40px rgba(154, 75, 145, 0.2);
}

.banner-content {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.banner-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, #fff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-label {
    font-size: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.banner-divider {
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.3);
}

@media (max-width: 1024px) {
    .testimonials-banner {
        padding: 2rem;
    }

    .banner-content {
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 36px;
    }
}

/* FINAL CTA WIDGET */
.final-cta {
    padding: 8rem 1.5rem;
    text-align: center;
    color: #fff;
    background: var(--bg-gradient);
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.final-cta h2 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #fff;
}

.final-cta p {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 3rem;
    opacity: 0.95;
}

.white-btn {
    background: #fff;
    color: var(--brand-purple);
    border-radius: 0.75rem;
    padding: 1rem 2.5rem;
    font-weight: 800;
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.white-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    color: var(--brand-pink);
}

@media (max-width: 768px) {
    .final-cta {
        padding: 2rem 1.5rem;
    }

    .final-cta h2 {
        font-size: 2.5rem;
    }

    .final-cta p {
        font-size: 1.25rem;
    }
}

/* CONTACT HERO */
.contact-hero {
    position: relative;
    min-height: 40vh;
    background: linear-gradient(135deg, #0f0f1a 0%, #1a1a2e 50%, #16213e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
    padding: 4rem 2rem;
}

.hero-shapes .shape {
    position: absolute;
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
    opacity: 0.5;
}

.shape-1 {
    width: 100px;
    height: 100px;
    background: var(--brand-purple);
    top: 10%;
    left: 10%;
}

.shape-2 {
    width: 150px;
    height: 150px;
    background: var(--brand-pink);
    bottom: 10%;
    right: 10%;
}

.shape-3 {
    width: 70px;
    height: 70px;
    background: var(--brand-cyan);
    top: 30%;
    right: 20%;
}

@keyframes float {

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

    50% {
        transform: translateY(-30px) rotate(10deg);
    }
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: 600;
}

.hero-badge svg {
    width: 20px;
    height: 20px;
    fill: var(--brand-pink);
}

.contact-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

/* CONTACT INFO & FORM WRAPPERS */
.contact-content {
    background: #f8fafc;
    padding: 2rem 1.5rem;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
}

/* CONTACT FORM WIDGET */
.contact-form-wrapper {
    background: #fff;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(107, 70, 193, 0.08);
}

.contact-form-wrapper h2 {
    font-size: clamp(1.3rem, 2.5vw, 1.75rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #1a1a2e;
}

.contact-form-wrapper .form-subtitle {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 1rem;
    line-height: 1.5;
}

/* Ninja Forms Premium Styling Overrides */
.rm-ninja-form-container .nf-form-cont {
    padding: 0;
}

.rm-ninja-form-container .nf-form-content {
    padding: 0;
}

.rm-ninja-form-container .nf-field-container {
    margin-bottom: 1.25rem;
}

.rm-ninja-form-container .nf-field-label label {
    font-weight: 700;
    font-size: 0.85rem;
    color: #1a1a2e;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
    display: block;
}

.rm-ninja-form-container .nf-field-label label span.ninja-forms-req-symbol {
    color: var(--brand-pink);
    margin-left: 2px;
}

.nf-field-label {
    display: none;
}

.nf-form-fields-required {
    font-size: 11px;
    margin-bottom: 15px;
}

.rm-ninja-form-container .nf-field-element input:not([type="button"]),
.rm-ninja-form-container .nf-field-element textarea {
    width: 100% !important;
    padding: 0.875rem 1.25rem !important;
    border: 1px solid rgba(107, 70, 193, 0.15) !important;
    border-radius: 12px !important;
    font-family: inherit !important;
    font-size: 0.95rem !important;
    transition: all 0.3s ease !important;
    background: #F8FAFC !important;
    color: #1a1a2e !important;
}

.rm-ninja-form-container .nf-field-element input:not([type="button"]):focus,
.rm-ninja-form-container .nf-field-element textarea:focus {
    outline: none !important;
    border-color: var(--brand-purple) !important;
    background: #ffffff !important;
    box-shadow: 0 0 0 4px rgba(107, 70, 193, 0.1) !important;
}

/* Submit Button Styling */
.rm-ninja-form-container .nf-field-element input[type="button"],
.rm-ninja-form-container .nf-field-element input[type="submit"],
.rm-ninja-form-container .nf-field-element button {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.75rem !important;
    padding: 1rem 2.5rem !important;
    background: linear-gradient(135deg, var(--brand-purple), var(--brand-pink)) !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 50px !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 6px 20px rgba(107, 70, 193, 0.25) !important;
    width: auto !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
}

.rm-ninja-form-container .nf-field-element input[type="button"]:hover,
.rm-ninja-form-container .nf-field-element input[type="submit"]:hover,
.rm-ninja-form-container .nf-field-element button:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 10px 25px rgba(107, 70, 193, 0.35) !important;
}

.rm-ninja-form-placeholder {
    padding: 3rem;
    border: 2px dashed rgba(107, 70, 193, 0.2);
    border-radius: 12px;
    text-align: center;
    color: var(--text-muted);
    font-weight: 500;
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-card {
    background: #fff;
    padding: 2rem;
    border-radius: 1.5rem;
    display: flex;
    gap: 1.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
    border: 1px solid #f0f0f0;
}

.info-icon {
    width: 60px;
    height: 60px;
    background: var(--brand-purple);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
}

.info-icon svg {
    width: 25px;
    height: 25px;
    fill: #fff;
}

.contact-info-card:nth-child(2) .info-icon {
    background: var(--brand-pink);
}

.contact-info-card:nth-child(3) .info-icon {
    background: var(--brand-blue);
}

.info-content h3 {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.info-content p,
.info-content a {
    color: var(--text-muted);
    font-size: 1rem;
    text-decoration: none;
}

.contact-social-card {
    background: #fff;
    padding: 2rem;
    border-radius: 1.5rem;
    text-align: center;
}

.contact-social-card h3 {
    margin-bottom: 1rem;
    font-weight: 800;
}

.social-links {
    display: flex;
    gap: 4rem;
    justify-content: center;
    margin-top: 25px;
}

.social-links svg {
    width: 25px;
    height: 25px;
    fill: var(--brand-purple);
}

.social-link {
    width: 50px;
    height: 50px;
    background: #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-purple);
    font-size: 1.5rem;
    transition: all 0.3s;
}

.social-link:hover {
    background: var(--brand-purple);
    color: #fff;
    transform: translateY(-3px);
}

.social-link:hover svg {
    fill: #fff;
}

@media (max-width: 1024px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-hero h1 {
        font-size: 2.5rem;
    }

}

/* PAGE HERO (Reusable) */
.page-hero {
    position: relative;
    min-height: 40vh;
    background: linear-gradient(135deg, #0f0f1a 0%, #1a1a2e 50%, #16213e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
    padding: 6rem 2rem;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
}

.page-hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.8);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.6;
}

.hero-scroll .mouse {
    width: 24px;
    height: 40px;
    border: 2px solid #fff;
    border-radius: 12px;
    position: relative;
}

.hero-scroll .mouse::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    width: 4px;
    height: 8px;
    background: #fff;
    border-radius: 2px;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        transform: translate(-50%, 0);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, 15px);
        opacity: 0;
    }
}

/* ABOUT PAGE WIDGETS */
.who-are-we {
    padding: 2rem 1.5rem;
    background: var(--bg-light);
}

.section-header-about {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(107, 70, 193, 0.1);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    color: var(--brand-purple);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.highlight-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.highlight-card {
    background: #fff;
    padding: 3rem 2rem;
    border-radius: 1.5rem;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.highlight-card:hover {
    transform: translateY(-10px);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--brand-purple), var(--brand-pink));
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
}

.card-icon svg {
    width: 30px;
    height: 30px;
    fill: #fff;
}

/* STATS BAR */
.stats-section {
    background: linear-gradient(135deg, var(--brand-purple) 0%, var(--brand-pink) 100%);
    padding: 3rem 2rem;
    position: relative;
    overflow: hidden;
    color: #fff;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, transparent 70%);
    border-radius: 50%;
}

.stats-section::after {
    content: '';
    position: absolute;
    bottom: -120px;
    left: -120px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.stats-header {
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 2;
}

.stats-header h3 {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

.stats-header p {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 800;
    color: #fff;
    margin: 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.stat-card {
    text-align: center;
    padding: 2rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 0.75rem;
    background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* PHILOSOPHY */
.philosophy-section {
    padding: 2rem 1.5rem;
}

.philosophy-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.rm-phil-img-right .philosophy-item {
    direction: rtl;
}

.rm-phil-img-right .phil-content {
    direction: ltr;
}

.phil-img-wrapper {
    position: relative;
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.phil-img img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.phil-number {
    width: 60px;
    height: 60px;
    background: var(--brand-purple);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1rem;
    font-weight: 800;
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.phil-content h3 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.phil-description {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
}

.phil-description p {
    margin-bottom: 1.5rem;
}

.phil-description ul {
    list-style: none;
    padding: 0;
}

.phil-description li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.phil-description li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 8px;
    height: 8px;
    background: var(--brand-pink);
    border-radius: 50%;
}

/* TEAM SECTION */
.team-section {
    padding: 3rem 2rem;
    background: #fff;
}

.team-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.team-header h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--brand-purple);
    margin-bottom: 0.75rem;
}

.team-header p {
    font-size: 1rem;
    color: var(--text-muted);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.team-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(107, 70, 193, 0.12);
}

.team-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/5;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.team-card:hover .team-image img {
    transform: scale(1.08);
}

.team-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.team-card:hover .team-image::after {
    opacity: 1;
}

.team-social {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    display: flex;
    gap: 0.75rem;
    opacity: 0;
    z-index: 3;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.team-card:hover .team-social {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.team-social a {
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-purple);
    font-size: 1.25rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.team-social a:hover {
    background: var(--brand-purple);
    color: #fff;
    transform: translateY(-3px);
}

.team-info {
    padding: 1.5rem;
    text-align: center;
}

.team-info h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0.25rem;
}

.team-info p {
    font-size: 0.9rem;
    color: var(--brand-pink);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}


/* CAREER & ACCORDION */
.rm-accordion-container {
    max-width: 1000px;
    margin: 0 auto;
}

.rm-accordion-card {
    background: #fff;
    border: 1px solid rgba(107, 70, 193, 0.08);
    border-radius: 16px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.rm-accordion-card:hover {
    box-shadow: 0 10px 30px rgba(107, 70, 193, 0.1);
}

.rm-accordion-card.active {
    border-color: var(--brand-purple);
    box-shadow: 0 12px 40px rgba(107, 70, 193, 0.12);
}

.rm-accordion-header {
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.3s ease;
}

.rm-accordion-header:hover {
    background: var(--bg-light);
}

.rm-accordion-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex: 1;
}

.rm-accordion-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(107, 70, 193, 0.1), rgba(236, 72, 153, 0.1));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--brand-purple);
    flex-shrink: 0;
}

.rm-accordion-icon svg {
    width: 30px;
    height: 30px;
    fill: var(--brand-purple);
}

.rm-accordion-title-group h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0.25rem;
}

.rm-accordion-subtitle {
    font-size: 0.8rem;
    color: var(--brand-pink);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.rm-accordion-toggle {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--brand-purple), var(--brand-pink));
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.rm-accordion-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(107, 70, 193, 0.25);
}

.rm-accordion-card.active .rm-accordion-toggle {
    transform: rotate(180deg);
}

.rm-accordion-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.rm-accordion-card.active .rm-accordion-details {
    max-height: 2000px;
}

.rm-accordion-content {
    padding: 1.5rem;
    border-top: 1px solid rgba(107, 70, 193, 0.08);
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
}

.rm-accordion-content p {
    margin-bottom: 1.5rem;
}

.rm-accordion-content ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.rm-accordion-content li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.5rem 0;
}

.rm-accordion-content li::before {
    content: '→';
    color: var(--brand-pink);
    font-weight: 700;
}

.rm-accordion-footer {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(107, 70, 193, 0.05);
    text-align: center;
}

.rm-accordion-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 2.2rem;
    background: linear-gradient(135deg, var(--brand-purple), var(--brand-pink));
    color: #fff !important;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 20px rgba(107, 70, 193, 0.2);
}

.rm-accordion-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 30px rgba(107, 70, 193, 0.35);
}

.rm-accordion-btn i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.rm-accordion-btn:hover i {
    transform: translateX(4px);
}

/* BLOG */
.blog-posts-section {
    padding: 2rem 1.5rem;
}

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

.blog-card {
    background: #fff;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.blog-card-image {
    position: relative;
    aspect-ratio: 16/9;
}

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

.blog-card-category {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: #fff;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-weight: 700;
    font-size: 0.75rem;
    color: var(--brand-purple);
}

/* MAP */
.map-section {
    padding: 2rem 1.5rem;
}

.map-container h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.map-wrapper {
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

/* NEWSLETTER WIDGET */
.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.newsletter-form.inline {
    flex-direction: row;
    gap: 0.5rem;
}

.newsletter-form input {
    padding: 1rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
}

.newsletter-form.inline input {
    flex: 1;
}

.newsletter-form.inline .send-btn {
    white-space: nowrap;
}

.send-btn {
    padding: 1rem;
    background: var(--brand-purple);
    border: none;
    border-radius: 0.75rem;
    color: #fff;
    font-weight: 700;
    cursor: pointer;
}

@media (max-width: 1024px) {

    .highlight-cards,
    .stats-grid,
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .philosophy-item {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {

    .highlight-cards,
    .stats-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

    .philosophy-item,
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

/* EXTRA STYLES FROM ABOUT AND CONTACT */
.about-hero {
    position: relative;
    min-height: 40vh;
    background: linear-gradient(135deg, #0f0f1a 0%, #1a1a2e 50%, #16213e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
    padding: 4rem 2rem;
}

.contact-hero {
    position: relative;
    min-height: 40vh;
    background: linear-gradient(135deg, #0f0f1a 0%, #1a1a2e 50%, #16213e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
    padding: 4rem 2rem;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
}


.who-are-we {
    padding: 4rem 2rem;
    background: #fff;
}

.highlight-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.philosophy-section {
    padding: 4rem 2rem;
    background: #f9f9f9;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* ========================================
   RM CTA WIDGET
   ======================================== */

.rm-cta {
    padding: 8rem 1.5rem;
    background: #2a2a2a;
    text-align: center;
    color: #fff;
}

.rm-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.rm-cta h2 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 50px;
    font-weight: 700;
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 1rem;
    color: #fff;
}

.rm-cta p {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.rm-cta-btn {
    background: #fff;
    color: #9A4B91;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.2s, box-shadow 0.2s, color 0.2s;
    cursor: pointer;
    border: none;
    justify-content: center;
}

.rm-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(236, 72, 153, 0.3);
    color: #EA4D8B;
}

.rm-cta-btn.rm-small {
    padding: 0.6rem 1.2rem;
    font-size: 14px;
}

.rm-cta-btn.rm-medium {
    padding: 0.75rem 1.5rem;
    font-size: 16px;
}

.rm-cta-btn.rm-large {
    padding: 0.85rem 1.8rem;
    font-size: 18px;
}

.rm-cta-btn.rm-wide {
    padding: 0.9rem 2rem;
    font-size: 18px;
}

.rm-cta-btn.rm-extra-wide {
    padding: 1rem 2.5rem;
    font-size: 20px;
}

/* RM CTA Responsive */
@media (max-width: 1024px) {
    .rm-cta h2 {
        font-size: 40px;
    }

    .rm-cta p {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .rm-cta {
        padding: 4rem 1rem;
    }

    .rm-cta h2 {
        font-size: 32px;
    }

    .rm-cta p {
        font-size: 16px;
    }

    .rm-cta-btn.rm-wide,
    .rm-cta-btn.rm-extra-wide {
        padding: 0.85rem 1.8rem;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .rm-cta h2 {
        font-size: 28px;
    }

    .rm-cta p {
        font-size: 15px;
    }
}


nf-fields-wrap {
    display: flex;
    flex-direction: column;
}

/* BLOG STYLES */
:root {
    --bg-light: #F8FAFC;
}

/* BLOG HERO */
.blog-hero {
    position: relative;
    min-height: 26vh;
    background: linear-gradient(135deg, #0f0f1a 0%, #1a1a2e 50%, #16213e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 1.5rem 2rem 1rem;
    border-radius: 20px;
}

.blog-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-bottom: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 0.7rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.blog-hero h1 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.blog-hero p {
    font-size: clamp(0.8rem, 1.2vw, 0.95rem);
    color: rgba(255, 255, 255, 0.65);
    max-width: 550px;
    margin: 0 auto 1rem;
    line-height: 1.5;
}
/* =========================================
   CASE STUDY SLIDER
========================================= */

/* MAIN WRAPPER */
.rm-case-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* SWIPER STRUCTURE FIX */
.rm-case-slider .swiper-wrapper {
  align-items: stretch;
}

.rm-case-slider .swiper-slide {
  display: flex;
  height: auto;
}

/* =========================================
   CARD CONTAINER
========================================= */

.rm-case-card {
  width: 100%;
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  box-sizing: border-box;

  display: flex;
  flex-direction: column;
  justify-content: center;

  transition: all 0.3s ease;
}

/* HOVER EFFECT */
.rm-case-card:hover {
  transform: translateY(-6px);
}

/* =========================================
   INNER LAYOUT (IMAGE LEFT + TEXT RIGHT)
========================================= */

.rm-case-inner {
  display: flex;
  gap: 20px;
  align-items: center;
}

/* =========================================
   IMAGE STYLING
========================================= */

.rm-case-image {
  flex-shrink: 0;
}

.rm-case-image img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}

/* =========================================
   CONTENT AREA
========================================= */

.rm-case-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* TITLE */
.rm-case-title {
  margin: 0 0 8px;
  line-height: 1.3;
}

/* DESCRIPTION */
.rm-case-desc {
  margin: 0;
  line-height: 1.5;
}

/* =========================================
   SPACING BETWEEN SLIDES
========================================= */

.rm-case-slider .swiper-slide {
  padding-bottom: 10px;
}

/* =========================================
   NAVIGATION ARROWS
========================================= */

.rm-case-slider .swiper-button-prev,
.rm-case-slider .swiper-button-next {
  color: #000;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.rm-case-slider .swiper-button-prev:after,
.rm-case-slider .swiper-button-next:after {
  font-size: 14px;
  font-weight: bold;
}

/* POSITIONING */
.rm-case-slider .swiper-button-prev {
  left: -10px;
}

.rm-case-slider .swiper-button-next {
  right: -10px;
}

/* =========================================
   PAGINATION DOTS
========================================= */

.rm-case-slider .swiper-pagination {
  margin-top: 15px;
  position: relative;
}

.rm-case-slider .swiper-pagination-bullet {
  background: #ccc;
  opacity: 1;
  width: 8px;
  height: 8px;
}

.rm-case-slider .swiper-pagination-bullet-active {
  background: #000;
}

/* =========================================
   EQUAL HEIGHT FIX
========================================= */

.rm-case-slider .swiper-slide {
  display: flex;
}

.rm-case-card {
  height: 100%;
}

/* =========================================
   RESPONSIVE
========================================= */

/* Tablet */
@media (max-width: 1024px) {

  .rm-case-inner {
    gap: 15px;
  }

  .rm-case-image img {
    width: 100px;
    height: 100px;
  }

  .rm-case-card {
    padding: 16px;
  }
}

/* Mobile */
@media (max-width: 767px) {

  .rm-case-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .rm-case-image img {
    width: 100%;
    height: auto;
  }

  .rm-case-card {
    padding: 14px;
  }
}

/* FEATURED POST */
.featured-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.15), rgba(107, 70, 193, 0.15));
    padding: 0.4rem 0.8rem;
    border-radius: 50px;
    margin-bottom: 1rem;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--brand-pink);
}

.featured-card {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 1.5rem;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    max-height: 320px;
}

.featured-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(107, 70, 193, 0.12);
}

.featured-image {
    position: relative;
    overflow: hidden;
    max-height: 320px;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.featured-card:hover .featured-image img {
    transform: scale(1.04);
}

.featured-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem 1.25rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
}

.featured-date {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(8px);
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
}

.featured-content {
    padding: 1.25rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-category {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--brand-pink);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 0.5rem;
}

.featured-content h2 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.featured-content h2 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.featured-content h2 a:hover {
    color: var(--brand-purple);
}

.featured-excerpt {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.featured-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(107, 70, 193, 0.08);
}

.featured-author {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.featured-author img,
.featured-author .avatar,
.featured-author .author-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    background: var(--bg-gradient);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 800;
}

.featured-author span {
    font-size: 0.8rem;
    font-weight: 600;
    color: #1a1a2e;
}

.read-time {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* BLOG GRID */
.blog-posts-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.blog-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(107, 70, 193, 0.12);
}

.blog-card-image {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.08);
}

.blog-card-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--brand-purple);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.blog-card-content {
    padding: 1rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-date {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 0.4rem;
}

.blog-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0.4rem;
    line-height: 1.3;
}

.blog-card h3 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-card h3 a:hover {
    color: var(--brand-purple);
}

.blog-card-excerpt {
    color: var(--text-muted);
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 0.75rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(107, 70, 193, 0.08);
    margin-top: auto;
}

.blog-card-author {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-card-author img,
.blog-card-author .avatar,
.blog-card-author .author-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    background: var(--bg-gradient);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 800;
}

.blog-card-author span {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #1a1a2e;
}

.blog-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--brand-purple);
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-card-link:hover {
    gap: 0.75rem;
    color: var(--brand-pink);
}

/* SIDEBAR WIDGETS */
.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sidebar-widget {
    background: #fff;
    border-radius: 12px;
    padding: 1.25rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.sidebar-widget-title {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.9rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0.75rem;
    padding-bottom: 0.6rem;
    border-bottom: 2px solid rgba(107, 70, 193, 0.08);
}

.sidebar-widget-title i {
    color: var(--brand-pink);
}

/* Newsletter Widget */
.newsletter-widget {
    background: linear-gradient(135deg, var(--brand-purple), var(--brand-pink));
    color: #fff;
}

.newsletter-widget .sidebar-widget-title {
    color: #fff;
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.newsletter-widget p {
    font-size: 0.9375rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.newsletter-input {
    padding: 0.875rem 1rem;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    color: #fff;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
}

.newsletter-btn {
    padding: 0.875rem 1.5rem;
    background: #fff;
    border: none;
    border-radius: 12px;
    color: var(--brand-purple);
    font-size: 0.875rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Popular Posts (Recent Posts in PHP) */
.popular-posts-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.popular-post {
    display: flex;
    gap: 1rem;
    padding: 0.75rem;
    border-radius: 16px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.popular-post:hover {
    background: var(--bg-light);
}

.popular-post-image {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
}

.popular-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.popular-post-content h4 {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 0.25rem;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.popular-post h4 a {
    color: inherit;
    text-decoration: none;
}

.popular-post:hover h4 {
    color: var(--brand-purple);
}

.popular-post-date {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

/* Categories Widget */
.categories-widget-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.category-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.category-item:hover {
    background: var(--bg-light);
}

.category-item-left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.category-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.category-icon.branding {
    background: linear-gradient(135deg, rgba(107, 70, 193, 0.15), rgba(107, 70, 193, 0.05));
    color: var(--brand-purple);
}

.category-icon.marketing {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.15), rgba(236, 72, 153, 0.05));
    color: var(--brand-pink);
}

.category-icon.digital {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(59, 130, 246, 0.05));
    color: var(--brand-blue);
}

.category-icon.growth {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.15), rgba(6, 182, 212, 0.05));
    color: var(--brand-cyan);
}

.category-icon.creative {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.15), rgba(249, 115, 22, 0.05));
    color: var(--brand-orange);
}

.category-item span {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #1a1a2e;
}

.category-count {
    font-size: 0.8125rem;
    color: var(--text-muted);
    background: var(--bg-light);
    padding: 0.25rem 0.625rem;
    border-radius: 20px;
}

/* Tags Widget */
.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    padding: 0.5rem 1rem;
    background: var(--bg-light);
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
}

.tag:hover {
    background: linear-gradient(135deg, var(--brand-purple), var(--brand-pink));
    color: #fff;
    transform: translateY(-2px);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .featured-card {
        grid-template-columns: 1fr;
        max-height: none;
    }

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