.logo-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-img {
    height: 32px;
    width: auto;
}
.hero-wrap {
    background:
        radial-gradient(
            1200px 600px at 85% -10%,
            rgba(255, 255, 255, 0.1) 0%,
            rgba(255, 255, 255, 0) 60%
        ),
        linear-gradient(
            140deg,
            var(--purple-950),
            var(--purple-900) 46%,
            var(--purple-800)
        );
    color: #fff;
    /*padding: 0px 0 40px;*/
    /*position: relative;*/
    /*overflow: hidden;*/
}

.nav {
    /*position: sticky;*/
    /*top: 0;*/
    /*z-index: 70;*/
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: none;
    transition: none;
}

.hero {
    padding: 0px 0 40px;
    background: none;
}

.nav a {
    color: #fff;
    opacity: 0.92;
}
.nav a:hover {
    opacity: 1;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 44px;
    align-items: center;
}
.eyebrow {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.78rem;
    background: rgba(124, 77, 255, 0.14);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.18);
    letter-spacing: 0.28px;
    text-transform: uppercase;
}
.hero h1 {
    font-size: clamp(36px, 4.2vw, 56px);
    line-height: 1.05;
    margin: 0.6rem 0 0.4rem;
}
.hero p {
    font-size: clamp(16px, 2.1vw, 20px);
    color: rgba(255, 255, 255, 0.94);
    margin: 0 0 1rem;
}
.hero-cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.hero-chips {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 18px;
}
.chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    font-weight: 650;
    letter-spacing: 0.15px;
    color: #efeaff;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    padding: 8px 12px;
    margin-right: 5px;
}

/* Hero image - prevent layout shift */
.hero-image {
    position: relative;
    width: 100%;
    min-height: 400px;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}
.block {
    border-radius: 12px;
    background: linear-gradient(
        160deg,
        rgba(124, 77, 255, 0.16),
        rgba(124, 77, 255, 0.05)
    );
    border: 1px solid rgba(169, 146, 255, 0.25);
    min-height: 90px;
    animation: floatIn 0.9s both;
}
.block:nth-child(2) {
    animation-delay: 0.08s;
}
.block:nth-child(3) {
    animation-delay: 0.16s;
}
.block:nth-child(4) {
    animation-delay: 0.24s;
}
.block:nth-child(5) {
    animation-delay: 0.32s;
}
.block:nth-child(6) {
    animation-delay: 0.4s;
}
@keyframes floatIn {
    from {
        opacity: 0;
        transform: translateY(10px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}
section {
    scroll-margin-top: 84px;
}
.section {
    padding: 82px 0;
}
.section.light {
    background: #fff;
}
.section.gray {
    background: var(--gray-100);
}
.section.gradient {
    background: linear-gradient(160deg, var(--purple-900), var(--purple-700));
    color: #fff;
}
.h2 {
    font-size: clamp(26px, 3vw, 36px);
    margin: 10px 0 12px;
}
.lead {
    color: var(--muted);
    font-size: clamp(16px, 2vw, 19px);
    max-width: 820px;
}
.pillars {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}
.pillar {
    background: #fff;
    border: 1px solid var(--gray-300);
    border-radius: 16px;
    padding: 20px;
    box-shadow: var(--shadow-card);
}
.pillar h3 {
    margin: 6px 0 6px;
    font-size: 18px;
}
.pillar p {
    margin: 0;
    color: #535a7a;
}
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    align-items: stretch;
}
.tile {
    background: #fff;
    border: 1px solid var(--gray-300);
    border-radius: 16px;
    padding: 20px;
    box-shadow: var(--shadow-card);
}
.tile-gradient {
    background: linear-gradient(180deg, var(--purple-850), var(--purple-700));
    color: #fff;
    border-radius: 16px;
    padding: 22px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(255, 255, 255, 0.14);
}
.tile h3 {
    margin: 0.2rem 0 0.5rem;
    font-size: 20px;
}
.list {
    margin: 0;
    padding-left: 1.1rem;
    color: #505575;
}
.list li {
    margin: 0.4rem 0;
}
.steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}
.step {
    background: var(--gray-100);
    border: 1px solid var(--gray-300);
    border-radius: 16px;
    padding: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-card);
}
.badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--purple-600);
    color: #fff;
    font-weight: 800;
    font-size: 0.78rem;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    letter-spacing: 0.3px;
    box-shadow: var(--shadow-soft);
}
.step h4 {
    margin: 12px 0 8px;
    font-size: 18px;
}
.step p {
    margin: 0;
    color: #505575;
}
.kpis {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}
.kpi {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 16px;
    padding: 22px;
    text-align: center;
    box-shadow: var(--shadow-soft);
}
.kpi h3 {
    margin: 6px 0 8px;
    font-size: 20px;
}
.kpi p {
    margin: 0;
    color: rgba(255, 255, 255, 0.92);
    font-weight: 600;
}
.logos {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    align-items: center;
}
/* --- Trusted by professionals (white, lean, techy) --- */
#trusted-logos.section.gray {
    padding-top: 28px;
    padding-bottom: 28px;
}
#trusted-logos .eyebrow {
    color: #333a66;
    background: transparent;
    border: none;
    letter-spacing: 0.02em;
    font-weight: 700;
    padding: 0;
}
#trusted-logos .wrap {
    display: grid;
    gap: 10px;
}
#trusted-logos .divider {
    height: 1px;
    background: linear-gradient(
        90deg,
        rgba(25, 30, 60, 0.08),
        rgba(25, 30, 60, 0.04) 35%,
        rgba(25, 30, 60, 0.08)
    );
}
#trusted-logos .logo-marquee {
    overflow: hidden;
    mask-image: linear-gradient(
        to right,
        transparent 0,
        black 6%,
        black 94%,
        transparent 100%
    );
    -webkit-mask-image: linear-gradient(
        to right,
        transparent 0,
        black 6%,
        black 94%,
        transparent 100%
    );
}
/* === Seamless Trusted Logos Carousel === */
#trusted-logos .logo-marquee {
    --marquee-gap: 46px;
}

#trusted-logos .track {
    display: flex;
    align-items: center;
    gap: var(--marquee-gap);
    width: max-content; /* avoid rounding issues */
    will-change: transform;
    animation: none;
    /*ikai-marquee-fixed 24s linear infinite !important; /* force this one */
}

@keyframes ikai-marquee-fixed {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(calc(-50% + var(--marquee-gap) / 2));
    }
}

/* Mobile: change the VARIABLE, not the gap */
@media (max-width: 640px) {
    #trusted-logos .logo-marquee {
        --marquee-gap: 48px;
    }
    #trusted-logos .logo-item {
        height: 30px;
    }
}

#trusted-logos .track:hover {
    animation-play-state: paused;
}
/* Individual logo item */
#trusted-logos .logo-item {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 38px;
    opacity: 0.9;
    transition: opacity 0.2s ease;
    filter: grayscale(1) brightness(0); /* force black logos */
}
#trusted-logos .logo-item img {
    max-height: 100%;
    width: auto;
    display: block;
}
#trusted-logos .logo-item:hover {
    opacity: 1;
}
/* Reduced motion accessibility */
@media (prefers-reduced-motion: reduce) {
    #trusted-logos .track {
        animation: none;
    }
}
/* Responsive spacing */
@media (max-width: 640px) {
    #trusted-logos .track {
        gap: 48px;
    }
    #trusted-logos .logo-item {
        height: 30px;
    }
}
.logo-pill {
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid var(--gray-300);
    background: #fff;
    color: #393a58;
    font-weight: 700;
    box-shadow: var(--shadow-card);
}
.quote {
    background: #fff;
    border: 1px solid var(--gray-300);
    border-radius: 16px;
    padding: 20px;
    box-shadow: var(--shadow-card);
    font-style: italic;
    color: #3a3f66;
}
.about {
    background: #fff;
    border: 1px solid var(--gray-300);
    border-radius: 16px;
    padding: 22px;
    box-shadow: var(--shadow-card);
}
footer {
    background: #0d0a1e;
    color: #b7bbe0;
    font-size: 0.92rem;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.reveal {
    opacity: 0;
    transform: translateY(12px);
    transition:
        opacity 0.6s ease,
        transform 0.6s ease;
}
.reveal.show {
    opacity: 1;
    transform: none;
}
@media (max-width: 1020px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 28px;
        display: flex;
        flex-direction: column-reverse;
    }
    .pillars {
        grid-template-columns: 1fr 1fr;
    }
    .two-col {
        grid-template-columns: 1fr;
    }
    .steps,
    .kpis {
        grid-template-columns: 1fr;
    }
    .nav-links {
        gap: 12px;
    }

    /* Mobile Menu Styles */
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: linear-gradient(180deg, var(--purple-950), var(--purple-900));
        flex-direction: column;
        padding: 80px 24px 24px;
        gap: 20px;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
        transition: right 0.3s ease;
        z-index: 1000;
        align-items: flex-start;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        width: 100%;
        padding: 12px 16px;
        border-radius: 8px;
        transition: background 0.2s ease;
    }

    .nav-links a:hover {
        background: rgba(255, 255, 255, 0.1);
    }

    .nav-links .btn {
        margin-top: 8px;
    }
}
@media (max-width: 640px) {
    .container {
        width: min(100%, 92vw);
    }
    .hero {
        padding-top: 30px;
        padding-bottom: 56px;
    }
    .section {
        padding: 30px 0;
    }
    .hero-image {
        min-height: 250px;
    }
    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }
    .btn {
        width: 100%;
    }
    .screen {
        min-height: 220px;
        padding: 12px;
        grid-template-columns: repeat(2, 1fr);
    }
    /* Contact form - full width fields on mobile */
    .contact-form-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }
}
/* === Security & Compliance (IKAI) === */
.accent-ikai {
    background: linear-gradient(135deg, var(--purple-600), var(--purple-400));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 900;
}

.security-copy {
    color: var(--muted);
    max-width: 760px;
}
.security-copy .muted-note {
    color: #6a6f91;
}

.compliance-wrap {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr; /* text | logos */
    gap: 18px;
    margin-top: 18px;
}

.badge-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.badge-card {
    background: #fff;
    border: 1px solid var(--gray-300);
    border-radius: 22px; /* matches brand radius */
    box-shadow: var(--shadow-card);
    padding: 22px;
    display: grid;
    place-items: center;
    transition:
        transform 0.15s ease,
        box-shadow 0.2s ease;
}
.badge-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}
.badge-card img {
    max-width: 72px; /* ~like the reference */
    height: auto;
    opacity: 0.95;
}

/* Stack on mobile */
/* Expand security copy full width while keeping section padding */
#security .security-copy {
    max-width: none; /* remove width constraint */
    width: 100%; /* take full container width */
    text-align: justify; /* optional – creates a more “block” feel */
    margin-top: 12px;
}

@media (max-width: 1400px) {
    .compliance-wrap {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 640px) {
    .badge-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .badge-card img {
        max-width: 80px;
    }
}
/* === Security & Compliance simplified (3 large icons) === */
.accent-ikai {
    background: linear-gradient(135deg, var(--purple-600), var(--purple-400));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 900;
}

#security .security-copy {
    width: 100%;
    max-width: none;
    color: var(--muted);
    margin-top: 10px;
    margin-bottom: 28px;
}

.compliance-flex {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 32px;
}

/* Icons row */
.badge-row {
    display: flex;
    align-items: center;
    margin-top: 25px;
    justify-content: space-around;
    gap: 25px;
    flex: 1;
}
.badge-icon {
    max-height: 100px;
    /*width: 120px;*/
    height: auto;
    opacity: 0.95;
    transition:
        transform 0.2s ease,
        opacity 0.2s ease;
}
.badge-icon:hover {
    transform: scale(1.05);
    opacity: 1;
}

/* Right-side tile */
.confidential-tile {
    flex: 1;
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: 22px;
    box-shadow: var(--shadow-card);
    padding: 24px 28px;
    max-width: 600px;
    /*margin-left: 80px;*/
}
.confidential-tile h3 {
    margin-top: 0;
    margin-bottom: 10px;
    font-weight: 700;
}
.confidential-tile ul li {
    margin-bottom: 6px;
    line-height: 1.5;
}

/* Stack on smaller screens */
@media (max-width: 900px) {
    .compliance-flex {
        flex-direction: column;
        align-items: center;
    }
    .badge-row {
        gap: 36px;
    }
    .badge-icon {
        width: auto;
        height: auto;
    }
    /* GDPR badge - smaller */
    .badge-row img[alt="GDPR"] {
        max-width: 65px;
        max-height: 65px;
    }
    /* ISO and SOC2 badges - bigger */
    .badge-row img[alt="ISO 27001 aligned"],
    .badge-row img[alt="AICPA SOC"] {
        max-width: 95px;
        max-height: 95px;
    }
    .confidential-tile {
        max-width: 100%;
    }
}
/* === Centered Security & Compliance Layout === */
.compliance-centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 36px;
    margin-top: 28px;
}

.badge-center {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
    flex-wrap: wrap;
}

.badge-large {
    width: 130px; /* enlarge logos */
    height: auto;
    opacity: 0.95;
    transition:
        transform 0.25s ease,
        opacity 0.25s ease;
}
.badge-large:hover {
    transform: scale(1.08);
    opacity: 1;
}

/* Wider info box */
.confidential-wide {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: 22px;
    box-shadow: var(--shadow-card);
    padding: 36px 48px;
    max-width: 880px; /* wider than before */
    width: 100%;
}
.confidential-wide h3 {
    margin-top: 0;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: center;
}
.confidential-wide ul {
    margin: 0;
    padding-left: 1.2rem;
    color: #505575;
}
.confidential-wide ul li {
    margin-bottom: 6px;
    line-height: 1.55;
}

/* Responsive adjustments */
@media (max-width: 900px) {
    .badge-center {
        gap: 50px;
    }
    .badge-large {
        width: 300px;
    }
    .confidential-wide {
        padding: 28px;
        max-width: 100%;
    }
}
@media (max-width: 600px) {
    .badge-large {
        width: 80px;
    }
}

/* === Features Section === */
.time-reduction {
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 900;
    color: var(--purple-700);
    margin-bottom: 40px;
    letter-spacing: -0.5px;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 40px;
}

.feature-row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;
}

.feature-icon {
    font-size: 36px;
    flex-shrink: 0;
    line-height: 1;
}

.feature-item {
    flex: 1;
}

.feature-item h3 {
    margin: 0 0 8px;
    font-size: 18px;
    color: var(--purple-700);
    font-weight: 700;
}

.feature-item p {
    margin: 0;
    color: #505575;
    line-height: 1.6;
    font-size: 14px;
}

/* Responsive adjustments */
@media (max-width: 1020px) {
    .features-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .time-reduction {
        font-size: 24px;
        margin-bottom: 32px;
    }

    .features-list {
        gap: 24px;
    }
}

/* === Solution Demos Section === */
.solution-demos {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.demo-item {
    display: grid;
    margin-top: 20px;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
}

.demo-media {
    width: 100%;
}

.demo-media img {
    max-width: 70%;
    height: auto;
    display: block;
}

.demo-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.demo-content .badge {
    align-self: flex-start;
}

.demo-content h3 {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    color: var(--text);
}

.demo-content p {
    margin: 0;
    color: #505575;
    line-height: 1.6;
    font-size: 16px;
}

/* Alternate layout for second demo */
.demo-item:nth-child(2) .demo-media {
    order: 2;
}

.demo-item:nth-child(2) .demo-content {
    order: 1;
}

/* Responsive adjustments */
@media (max-width: 1020px) {
    .demo-item {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .demo-item:nth-child(2) .demo-media {
        order: 1;
    }

    .demo-item:nth-child(2) .demo-content {
        order: 2;
    }
}

@media (max-width: 640px) {
    .solution-demos {
        gap: 36px;
    }

    .demo-item {
        display: flex;
        flex-direction: column;
    }

    .demo-media {
        order: -1;
        text-align: center;
    }

    .demo-media img {
        max-width: 100%;
        width: 100%;
        margin: 0 auto;
    }

    /* Make Iteration and Initial-assessment images smaller on mobile */
    .demo-media img[src*="Iteration.png"],
    .demo-media img[src*="Initial-assessment.png"] {
        max-width: 85%;
        width: 85%;
    }

    .demo-content {
        order: 1;
    }

    .demo-content h3 {
        font-size: 20px;
    }

    .demo-content p {
        font-size: 15px;
    }
}

/* === Testimonials Section === */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.testimonial-card {
    background: #fff;
    border: 1px solid var(--gray-300);
    border-radius: 16px;
    padding: 24px;
    box-shadow: var(--shadow-card);
    position: relative;
    cursor: pointer;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease;
    min-height: 220px;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
    border-color: var(--purple-600);
}

.testimonial-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.testimonial-quote {
    font-style: italic;
    color: #2a2f4f;
    font-size: 18px;
    line-height: 1.5;
    margin: 0 0 auto;
    font-weight: 500;
    flex-grow: 1;
}

.testimonial-author {
    margin: 16px 0 0;
    padding-top: 12px;
    border-top: 1px solid var(--gray-200);
}

.testimonial-author strong {
    color: #333a66;
    display: block;
    margin-bottom: 2px;
    font-size: 13px;
}

.testimonial-author-company {
    color: #6a6f91;
    font-size: 12px;
    line-height: 1.4;
}

/* Modal Overlay */
.testimonial-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(13, 10, 30, 0.85);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 1000;
    overflow-y: auto;
    padding: 40px 20px;
    animation: fadeIn 0.2s ease;
}

.testimonial-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Modal Content */
.testimonial-modal-content {
    background: #fff;
    border-radius: 22px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 680px;
    width: 100%;
    padding: 40px;
    position: relative;
    animation: slideUp 0.3s ease;
    max-height: 90vh;
    overflow-y: auto;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Modal Close Button */
.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gray-100);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #333a66;
    transition: all 0.2s ease;
}

.modal-close:hover {
    background: var(--purple-600);
    color: #fff;
    transform: rotate(90deg);
}

/* Modal Quote */
.modal-quote {
    font-style: italic;
    color: #2a2f4f;
    font-size: 20px;
    line-height: 1.6;
    margin: 0 0 20px;
    font-weight: 500;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--purple-200);
}

/* Modal Author */
.modal-author {
    margin: 0 0 32px;
}

.modal-author strong {
    color: var(--purple-700);
    display: block;
    margin-bottom: 4px;
    font-size: 16px;
    font-weight: 700;
}

.modal-author-company {
    color: #6a6f91;
    font-size: 14px;
}

/* Modal Details */
.modal-section {
    margin-bottom: 24px;
}

.modal-section:last-of-type {
    margin-bottom: 0;
}

.modal-section h4 {
    margin: 0 0 12px;
    font-size: 17px;
    font-weight: 700;
    color: var(--purple-700);
}

.modal-section p {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: #505575;
}

/* Responsive adjustments */
@media (max-width: 1020px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

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

    .testimonial-card {
        min-height: 200px;
    }

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

    .testimonial-modal {
        padding: 20px 16px;
    }

    .testimonial-modal-content {
        padding: 32px 24px;
        max-height: 85vh;
    }

    .modal-close {
        top: 16px;
        right: 16px;
        width: 32px;
        height: 32px;
        font-size: 18px;
    }

    .modal-quote {
        font-size: 18px;
    }
}
