/* Theme 7: Clean Minimal - Light, No Gradients, Full Redesign */

/* ===== FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=DM+Sans:wght@400;500;600;700&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
    /* Solid Colors - No Gradients */
    --white: #ffffff;
    --off-white: #fafbfc;
    --light-gray: #f1f5f9;
    --border-gray: #e2e8f0;
    --medium-gray: #94a3b8;
    --dark-gray: #475569;
    --charcoal: #1e293b;
    --black: #0f172a;

    /* Brand Colors - Solid */
    --purple: #7c3aed;
    --purple-light: #ede9fe;
    --teal: #0d9488;
    --teal-light: #ccfbf1;
    --blue: #2563eb;
    --blue-light: #dbeafe;
    --cyan: #0891b2;
    --cyan-light: #cffafe;

    /* Typography */
    --font-display: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'DM Sans', sans-serif;

    /* Spacing */
    --section-padding: 120px 0;
    --container-max: 1200px;

    /* Borders & Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--white);
    color: var(--charcoal);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    color: var(--black);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
}

img {
    max-width: 100%;
    height: auto;
}

/* ===== NAVIGATION ===== */
.navbar {
    padding: 20px 0;
    background: var(--white);
    border-bottom: 1px solid var(--border-gray);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 12px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

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

.logo-img {
    height: 45px;
}

.navbar-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--dark-gray);
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    transition: all 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--purple);
    background: var(--purple-light);
}

.btn-portal {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 12px 24px;
    background: var(--purple);
    color: var(--white);
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-portal:hover {
    background: var(--black);
    transform: translateY(-2px);
}

/* ===== HERO SECTION - Split Layout ===== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0 80px;
    background: var(--off-white);
    position: relative;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-content {
    padding-right: 40px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: var(--purple-light);
    color: var(--purple);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: var(--radius-xl);
    margin-bottom: 24px;
}

.hero-eyebrow i {
    font-size: 1rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-title .highlight {
    color: var(--purple);
    display: block;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--dark-gray);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 60px;
}

.btn-primary {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1rem;
    padding: 16px 32px;
    background: var(--purple);
    color: var(--white);
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.2s ease;
}

.btn-primary:hover {
    background: var(--black);
    transform: translateY(-2px);
    color: var(--white);
}

.btn-secondary {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1rem;
    padding: 16px 32px;
    background: var(--white);
    color: var(--charcoal);
    border: 2px solid var(--border-gray);
    border-radius: var(--radius-md);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.2s ease;
}

.btn-secondary:hover {
    border-color: var(--purple);
    color: var(--purple);
}

.hero-metrics {
    display: flex;
    gap: 48px;
}

.metric-item {
    text-align: left;
}

.metric-value {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--black);
    line-height: 1;
    margin-bottom: 4px;
}

.metric-label {
    font-size: 0.9rem;
    color: var(--medium-gray);
    font-weight: 500;
}

/* Hero Visual - Card Stack */
.hero-visual {
    position: relative;
    height: 500px;
}

.hero-card-stack {
    position: relative;
    width: 100%;
    height: 100%;
}

.stack-card {
    position: absolute;
    background: var(--white);
    border: 1px solid var(--border-gray);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.stack-card.main {
    width: 340px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
}

.stack-card.main .card-icon {
    width: 64px;
    height: 64px;
    background: var(--purple-light);
    color: var(--purple);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 20px;
}

.stack-card.main h4 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.stack-card.main p {
    color: var(--dark-gray);
    font-size: 0.95rem;
}

.stack-card.float {
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.stack-card.float-1 {
    top: 10%;
    right: 5%;
    z-index: 2;
}

.stack-card.float-2 {
    bottom: 25%;
    left: 0;
    z-index: 2;
}

.stack-card.float-3 {
    bottom: 5%;
    right: 15%;
    z-index: 2;
}

.stack-card.float .float-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.stack-card.float-1 .float-icon {
    background: var(--teal-light);
    color: var(--teal);
}

.stack-card.float-2 .float-icon {
    background: var(--blue-light);
    color: var(--blue);
}

.stack-card.float-3 .float-icon {
    background: var(--cyan-light);
    color: var(--cyan);
}

.stack-card.float span {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--charcoal);
}

/* ===== SERVICES SECTION - Horizontal Cards ===== */
.services-section {
    padding: var(--section-padding);
    background: var(--white);
}

.section-header {
    max-width: 700px;
    margin: 0 auto 60px;
    text-align: center;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--purple);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 16px;
}

.section-title .highlight {
    color: var(--purple);
}

.section-desc {
    font-size: 1.1rem;
    color: var(--dark-gray);
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.service-row {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 40px;
    align-items: center;
    padding: 40px;
    background: var(--off-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-gray);
    transition: all 0.3s ease;
}

.service-row:hover {
    border-color: var(--purple);
    box-shadow: 0 8px 32px rgba(124, 58, 237, 0.08);
}

.service-row.featured {
    background: var(--purple-light);
    border-color: var(--purple);
}

.service-header {
    display: flex;
    align-items: center;
    gap: 20px;
}

.service-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    flex-shrink: 0;
}

.service-icon.purple {
    background: var(--purple);
    color: var(--white);
}

.service-icon.blue {
    background: var(--blue);
    color: var(--white);
}

.service-icon.teal {
    background: var(--teal);
    color: var(--white);
}

.service-name h3 {
    font-size: 1.25rem;
    margin-bottom: 4px;
}

.service-name span {
    font-size: 0.9rem;
    color: var(--dark-gray);
}

.service-specs-inline {
    display: flex;
    gap: 32px;
}

.spec-inline {
    text-align: center;
}

.spec-inline .spec-val {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--black);
    display: block;
}

.spec-inline .spec-lbl {
    font-size: 0.8rem;
    color: var(--medium-gray);
}

.service-action {
    text-align: right;
}

.btn-configure {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 14px 28px;
    background: var(--white);
    color: var(--charcoal);
    border: 2px solid var(--border-gray);
    border-radius: var(--radius-md);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.btn-configure:hover {
    background: var(--purple);
    border-color: var(--purple);
    color: var(--white);
}

/* ===== FEATURES SECTION - Asymmetric Grid ===== */
.features-section {
    padding: var(--section-padding);
    background: var(--off-white);
}

.features-asymmetric {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;
}

.feature-box {
    background: var(--white);
    border: 1px solid var(--border-gray);
    border-radius: var(--radius-lg);
    padding: 40px;
    transition: all 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.feature-box.large {
    grid-column: span 6;
}

.feature-box.medium {
    grid-column: span 4;
}

.feature-box.small {
    grid-column: span 3;
}

.feature-icon-box {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 24px;
}

.feature-icon-box.purple {
    background: var(--purple-light);
    color: var(--purple);
}

.feature-icon-box.teal {
    background: var(--teal-light);
    color: var(--teal);
}

.feature-icon-box.blue {
    background: var(--blue-light);
    color: var(--blue);
}

.feature-icon-box.cyan {
    background: var(--cyan-light);
    color: var(--cyan);
}

.feature-box h4 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.feature-box p {
    color: var(--dark-gray);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ===== NEWS SECTION - Magazine Layout ===== */
.news-section {
    padding: var(--section-padding);
    background: var(--white);
}

.news-magazine {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.news-featured {
    grid-row: span 2;
}

.news-article {
    background: var(--off-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-gray);
    transition: all 0.3s ease;
}

.news-article:hover {
    border-color: var(--purple);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.news-article.featured {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.news-thumb {
    height: 200px;
    background: var(--purple-light);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.news-article.featured .news-thumb {
    height: 280px;
}

.news-thumb i {
    font-size: 3rem;
    color: var(--purple);
}

.news-category-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 14px;
    background: var(--white);
    color: var(--purple);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.75rem;
    border-radius: var(--radius-xl);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.news-body {
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-body h5 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.news-article.featured .news-body h5 {
    font-size: 1.5rem;
}

.news-body p {
    color: var(--dark-gray);
    font-size: 0.95rem;
    margin-bottom: 20px;
    flex: 1;
}

.news-link {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--purple);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.news-link:hover {
    gap: 12px;
}

.news-small-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.news-small {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: var(--off-white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-gray);
    transition: all 0.3s ease;
}

.news-small:hover {
    border-color: var(--purple);
}

.news-small-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.news-small-icon.teal {
    background: var(--teal-light);
    color: var(--teal);
}

.news-small-icon.blue {
    background: var(--blue-light);
    color: var(--blue);
}

.news-small-icon.cyan {
    background: var(--cyan-light);
    color: var(--cyan);
}

.news-small-icon i {
    font-size: 1.5rem;
}

.news-small-content h6 {
    font-size: 1rem;
    margin-bottom: 6px;
}

.news-small-content p {
    font-size: 0.85rem;
    color: var(--dark-gray);
    margin: 0;
}

/* ===== PARTNERS SECTION - Grid with Separators ===== */
.partners-section {
    padding: 80px 0;
    background: var(--off-white);
    border-top: 1px solid var(--border-gray);
    border-bottom: 1px solid var(--border-gray);
}

.partners-header {
    text-align: center;
    margin-bottom: 48px;
}

.partners-header h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--medium-gray);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.partners-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
}

.partner-item {
    flex: 1;
    max-width: 180px;
    padding: 24px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid var(--border-gray);
}

.partner-item:last-child {
    border-right: none;
}

.partner-item img {
    max-height: 50px;
    width: auto;
    opacity: 0.6;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.partner-item:hover img {
    opacity: 1;
    filter: grayscale(0%);
}

/* ===== CLIENTS SECTION - Tag Cloud ===== */
.clients-section {
    padding: var(--section-padding);
    background: var(--white);
}

.clients-cloud {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}

.client-tag {
    padding: 16px 32px;
    background: var(--off-white);
    border: 1px solid var(--border-gray);
    border-radius: var(--radius-xl);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1rem;
    color: var(--charcoal);
    transition: all 0.3s ease;
}

.client-tag:hover {
    background: var(--purple-light);
    border-color: var(--purple);
    color: var(--purple);
}

/* ===== TESTIMONIALS SECTION - Stacked Cards ===== */
.testimonials-section {
    padding: var(--section-padding);
    background: var(--off-white);
}

.testimonials-stack {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.testimonial-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 32px;
    padding: 40px;
    background: var(--white);
    border: 1px solid var(--border-gray);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.testimonial-item:hover {
    border-color: var(--purple);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.testimonial-item.highlight {
    background: var(--purple);
    border-color: var(--purple);
}

.testimonial-item.highlight .testimonial-quote,
.testimonial-item.highlight .testimonial-author h5,
.testimonial-item.highlight .testimonial-author span {
    color: var(--white);
}

.testimonial-item.highlight .quote-mark {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.testimonial-item.highlight .testimonial-stars i {
    color: #fbbf24;
}

.quote-mark {
    width: 60px;
    height: 60px;
    background: var(--purple-light);
    color: var(--purple);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    flex-shrink: 0;
}

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

.testimonial-quote {
    font-size: 1.1rem;
    color: var(--charcoal);
    line-height: 1.8;
    margin-bottom: 24px;
    flex: 1;
}

.testimonial-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.testimonial-author h5 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.testimonial-author span {
    font-size: 0.85rem;
    color: var(--medium-gray);
}

.testimonial-stars {
    display: flex;
    gap: 4px;
}

.testimonial-stars i {
    color: #fbbf24;
    font-size: 1rem;
}

/* ===== CTA SECTION - Split Design ===== */
.cta-section {
    padding: 100px 0;
    background: var(--purple);
}

.cta-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.cta-content h2 {
    font-size: 2.75rem;
    color: var(--white);
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: flex-end;
}

.btn-white {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1rem;
    padding: 16px 32px;
    background: var(--white);
    color: var(--purple);
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.2s ease;
}

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

.btn-outline-white {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1rem;
    padding: 16px 32px;
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-md);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.2s ease;
}

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

/* ===== FOOTER - Clean Grid ===== */
.footer-section {
    padding: 80px 0 40px;
    background: var(--black);
    color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    margin: 20px 0 24px;
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-logo {
    height: 45px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
    transition: all 0.2s ease;
}

.footer-social a:hover {
    background: var(--purple);
}

.footer-links h5 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 24px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-contact h5 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 24px;
}

.contact-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.contact-row i {
    width: 24px;
    color: var(--purple);
}

.contact-row span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

.cert-badges {
    display: flex;
    gap: 10px;
    margin-top: 24px;
}

.cert-badge {
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.75rem;
    color: var(--white);
}

.footer-bottom {
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer-bottom-links a:hover {
    color: var(--white);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .features-asymmetric {
        grid-template-columns: repeat(6, 1fr);
    }

    .feature-box.large {
        grid-column: span 6;
    }

    .feature-box.medium {
        grid-column: span 3;
    }

    .feature-box.small {
        grid-column: span 3;
    }
}

@media (max-width: 991px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .hero-content {
        padding-right: 0;
        text-align: center;
    }

    .hero-description {
        margin: 0 auto 40px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-metrics {
        justify-content: center;
    }

    .hero-visual {
        height: 400px;
    }

    .service-row {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .service-header {
        justify-content: center;
    }

    .service-specs-inline {
        justify-content: center;
    }

    .service-action {
        text-align: center;
    }

    .features-asymmetric {
        grid-template-columns: 1fr;
    }

    .feature-box.large,
    .feature-box.medium,
    .feature-box.small {
        grid-column: span 1;
    }

    .news-magazine {
        grid-template-columns: 1fr;
    }

    .news-featured {
        grid-row: span 1;
    }

    .partners-grid {
        flex-wrap: wrap;
    }

    .partner-item {
        border-right: none;
        border-bottom: 1px solid var(--border-gray);
        max-width: 50%;
    }

    .cta-split {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cta-actions {
        justify-content: center;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

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

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

    .hero-metrics {
        flex-direction: column;
        gap: 24px;
    }

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

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

    .testimonial-item {
        grid-template-columns: 1fr;
    }

    .quote-mark {
        width: 50px;
        height: 50px;
    }

    .cta-actions {
        flex-direction: column;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* ===== ANIMATIONS ===== */
[data-aos] {
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.stack-card.float-1 {
    animation: float 4s ease-in-out infinite;
}

.stack-card.float-2 {
    animation: float 4s ease-in-out infinite 1s;
}

.stack-card.float-3 {
    animation: float 4s ease-in-out infinite 2s;
}
