/* ===== HOMEPAGE STYLES ===== */
:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --secondary: #0f172a;
    --accent: #f59e0b;
    --text: #334155;
    --text-light: #64748b;
    --bg-light: #f8fafc;
    --bg-warm: #faf9f6;
    --border: #e2e8f0;
    --white: #ffffff;
    --gradient-blue: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    --gradient-dark: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

/* ===== HERO SECTION ===== */
.hero-home {
    position: relative;
    padding: 48px 0 40px;
    display: flex;
    align-items: center;
    background: var(--white);
    overflow: hidden;
    border-bottom: 1px solid var(--border);
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(37, 99, 235, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(124, 58, 237, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 60% 80%, rgba(245, 158, 11, 0.03) 0%, transparent 40%);
}

.hero-grid-lines {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0,0,0,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,0,0,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
}

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

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(37, 99, 235, 0.08);
    border: 1px solid rgba(37, 99, 235, 0.2);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero-tag i {
    font-size: 0.7rem;
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 2.6rem;
    line-height: 1.15;
    color: var(--secondary);
    margin-bottom: 14px;
}

.hero-title span {
    background: linear-gradient(135deg, var(--primary), #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
    max-width: 520px;
    margin-bottom: 24px;
    font-weight: 400;
}

.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: white;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.92rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
}

.btn-hero-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.35);
    color: white;
}

.btn-hero-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--text);
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.92rem;
    text-decoration: none;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.btn-hero-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(37, 99, 235, 0.04);
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.hero-stat h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 2px;
}

.hero-stat p {
    color: var(--text-light);
    font-size: 0.82rem;
    font-weight: 400;
    margin: 0;
}

.hero-visual {
    position: relative;
}

.hero-card-stack {
    position: relative;
    height: 340px;
}

.hero-float-card {
    position: absolute;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 20px;
    transition: transform 0.4s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.hero-float-card:hover {
    transform: translateY(-6px);
}

.hero-float-card.card-1 {
    top: 0;
    right: 0;
    width: 260px;
}

.hero-float-card.card-2 {
    top: 90px;
    right: 150px;
    width: 240px;
}

.hero-float-card.card-3 {
    top: 195px;
    right: 20px;
    width: 270px;
}

.hfc-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 14px;
}

.hfc-icon.blue { background: rgba(37, 99, 235, 0.1); color: var(--primary); }
.hfc-icon.purple { background: rgba(124, 58, 237, 0.1); color: #7c3aed; }
.hfc-icon.amber { background: rgba(245, 158, 11, 0.1); color: #d97706; }

.hero-float-card h5 {
    color: var(--secondary);
    font-size: 0.88rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.hero-float-card p {
    color: var(--text-light);
    font-size: 0.78rem;
    margin: 0;
    line-height: 1.5;
}

/* ===== SECTION COMMON ===== */
.section-home {
    padding: 80px 0;
}

.section-home.bg-light {
    background: var(--bg-light);
}

.section-home.bg-warm {
    background: var(--bg-warm);
}

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

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(37, 99, 235, 0.08);
    color: var(--primary);
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 2.2rem;
    color: var(--secondary);
    margin-bottom: 12px;
}

.section-subtitle {
    color: var(--text-light);
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ===== FEATURED ARTICLES ===== */
.featured-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.featured-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
    border-color: transparent;
}

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

.featured-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
}

.featured-img-placeholder.bg-blue { background: var(--gradient-blue); }
.featured-img-placeholder.bg-dark { background: var(--gradient-dark); }
.featured-img-placeholder.bg-amber { background: linear-gradient(135deg, #f59e0b, #d97706); }
.featured-img-placeholder.bg-teal { background: linear-gradient(135deg, #14b8a6, #0d9488); }
.featured-img-placeholder.bg-rose { background: linear-gradient(135deg, #f43f5e, #e11d48); }
.featured-img-placeholder.bg-indigo { background: linear-gradient(135deg, #6366f1, #4f46e5); }

.featured-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(8px);
    color: white;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.featured-body {
    padding: 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.featured-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    font-size: 0.78rem;
    color: var(--text-light);
}

.featured-meta i {
    font-size: 0.7rem;
}

.featured-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--secondary);
    margin-bottom: 8px;
    line-height: 1.4;
}

.featured-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.featured-title a:hover {
    color: var(--primary);
}

.featured-excerpt {
    color: var(--text-light);
    font-size: 0.86rem;
    line-height: 1.6;
    margin-bottom: 16px;
    flex: 1;
}

.featured-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.featured-link:hover {
    gap: 10px;
    color: var(--primary-dark);
}

/* ===== LARGE FEATURED CARD ===== */
.featured-large {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    min-height: 440px;
    display: flex;
    align-items: flex-end;
}

.featured-large-bg {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    color: rgba(255,255,255,0.2);
}

.featured-large-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15,23,42,0.95) 0%, rgba(15,23,42,0.4) 60%, rgba(15,23,42,0.2) 100%);
}

.featured-large-content {
    position: relative;
    z-index: 2;
    padding: 32px;
}

.featured-large-content .featured-badge {
    position: static;
    display: inline-block;
    margin-bottom: 14px;
    background: var(--primary);
}

.featured-large-content h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.6rem;
    color: white;
    margin-bottom: 10px;
    line-height: 1.3;
}

.featured-large-content h3 a {
    color: inherit;
    text-decoration: none;
}

.featured-large-content p {
    color: #cbd5e1;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 18px;
}

.featured-large-content .featured-link {
    color: #60a5fa;
}

.featured-large-content .featured-link:hover {
    color: white;
}

/* ===== CATEGORIES / TOPICS ===== */
.topic-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 28px 22px;
    text-align: center;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
    height: 100%;
}

.topic-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    border-color: var(--primary);
}

.topic-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin: 0 auto 16px;
}

.topic-icon.tc-blue { background: rgba(37,99,235,0.1); color: var(--primary); }
.topic-icon.tc-purple { background: rgba(124,58,237,0.1); color: #7c3aed; }
.topic-icon.tc-amber { background: rgba(245,158,11,0.1); color: #d97706; }
.topic-icon.tc-teal { background: rgba(20,184,166,0.1); color: #0d9488; }
.topic-icon.tc-rose { background: rgba(244,63,94,0.1); color: #e11d48; }
.topic-icon.tc-indigo { background: rgba(99,102,241,0.1); color: #4f46e5; }

.topic-card h5 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--secondary);
    margin-bottom: 6px;
}

.topic-card p {
    color: var(--text-light);
    font-size: 0.82rem;
    margin: 0;
    line-height: 1.5;
}

/* ===== AI & TECH SECTION ===== */
.ai-highlight {
    background: var(--secondary);
    border-radius: 20px;
    padding: 48px;
    position: relative;
    overflow: hidden;
}

.ai-highlight::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(37,99,235,0.2), transparent 70%);
    border-radius: 50%;
}

.ai-highlight-content {
    position: relative;
    z-index: 2;
}

.ai-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(37,99,235,0.2);
    color: #60a5fa;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.ai-highlight h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: white;
    margin-bottom: 14px;
    line-height: 1.3;
}

.ai-highlight > .ai-highlight-content > p {
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 28px;
}

.ai-feature {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 22px;
}

.ai-feature-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
}

.ai-feature-icon.af-blue { background: rgba(37,99,235,0.2); color: #60a5fa; }
.ai-feature-icon.af-purple { background: rgba(124,58,237,0.2); color: #a78bfa; }
.ai-feature-icon.af-amber { background: rgba(245,158,11,0.2); color: #fbbf24; }
.ai-feature-icon.af-teal { background: rgba(20,184,166,0.2); color: #5eead4; }

.ai-feature h5 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: white;
    margin-bottom: 4px;
}

.ai-feature p {
    color: #94a3b8;
    font-size: 0.82rem;
    margin: 0;
    line-height: 1.5;
}

.ai-visual-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.ai-visual-item {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 22px;
    text-align: center;
    transition: all 0.3s ease;
}

.ai-visual-item:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-2px);
}

.ai-visual-item i {
    font-size: 1.8rem;
    margin-bottom: 10px;
    display: block;
}

.ai-visual-item h6 {
    color: white;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.ai-visual-item p {
    color: #64748b;
    font-size: 0.74rem;
    margin: 0;
}

/* ===== MATERIALS SECTION ===== */
.material-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 26px;
    transition: all 0.3s ease;
    height: 100%;
}

.material-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}

.material-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}

.material-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.material-icon.mi-slate { background: #f1f5f9; color: #475569; }
.material-icon.mi-wood { background: #fef3c7; color: #92400e; }
.material-icon.mi-green { background: #d1fae5; color: #065f46; }
.material-icon.mi-glass { background: #dbeafe; color: #1d4ed8; }
.material-icon.mi-metal { background: #e2e8f0; color: #334155; }
.material-icon.mi-stone { background: #fce7f3; color: #9d174d; }

.material-card h5 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: var(--secondary);
    margin: 0;
}

.material-card > p {
    color: var(--text-light);
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 14px;
}

.material-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.material-tag {
    background: var(--bg-light);
    color: var(--text);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.74rem;
    font-weight: 500;
}

/* ===== OFFICE DESIGN SECTION ===== */
.office-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.office-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

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

.office-card-visual {
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    position: relative;
}

.office-card-body {
    padding: 22px;
}

.office-card-body h5 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: var(--secondary);
    margin-bottom: 8px;
}

.office-card-body p {
    color: var(--text-light);
    font-size: 0.84rem;
    line-height: 1.6;
    margin-bottom: 14px;
}

.office-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.office-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text);
    font-size: 0.82rem;
    padding: 4px 0;
}

.office-features li i {
    color: var(--primary);
    font-size: 0.7rem;
}

/* ===== NEWSLETTER SECTION ===== */
.newsletter-section {
    background: var(--gradient-blue);
    border-radius: 20px;
    padding: 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: -60%;
    left: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.1), transparent 60%);
    border-radius: 50%;
}

.newsletter-content {
    position: relative;
    z-index: 2;
}

.newsletter-section h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: white;
    margin-bottom: 10px;
}

.newsletter-section p {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
    margin-bottom: 28px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    max-width: 480px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 20px;
    border: none;
    border-radius: 12px;
    font-size: 0.9rem;
    font-family: 'Poppins', sans-serif;
    background: rgba(255,255,255,0.95);
    color: var(--secondary);
}

.newsletter-form input::placeholder {
    color: #94a3b8;
}

.newsletter-form input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255,255,255,0.3);
}

.newsletter-form button {
    padding: 14px 28px;
    background: var(--secondary);
    color: white;
    border: none;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-form button:hover {
    background: #1e293b;
    transform: translateY(-2px);
}

/* ===== LATEST ARTICLES GRID ===== */
.article-mini {
    display: flex;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid var(--border);
    transition: all 0.2s ease;
}

.article-mini:last-child {
    border-bottom: none;
}

.article-mini:hover {
    padding-left: 8px;
}

.article-mini-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
}

.article-mini-body h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--secondary);
    margin-bottom: 4px;
    line-height: 1.4;
}

.article-mini-body h6 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.article-mini-body h6 a:hover {
    color: var(--primary);
}

.article-mini-body p {
    color: var(--text-light);
    font-size: 0.78rem;
    margin: 0;
}

/* ===== FOOTER WAVE ===== */
.footer-wave-wrapper {
    position: relative;
    height: 150px;
    overflow: hidden;
    background: transparent;
    margin-top: -1px;
}

.footer-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.footer-wave-1 path {
    fill: rgba(93, 135, 230, 0.25);
}

.footer-wave-2 path {
    fill: rgba(74, 121, 228, 0.5);
}

.footer-wave-3 path {
    fill: #4272e6;
}

/* ===== FOOTER ENHANCED ===== */
.footer-home {
    background: #4272e6;
    padding: 48px 0 0;
    color: white;
}

.footer-brand p {
    font-size: 0.88rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: rgba(255,255,255,0.8);
}

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

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.footer-social a:hover {
    background: rgba(255,255,255,0.3);
    color: white;
    transform: translateY(-2px);
}

.footer-home h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: white;
    margin-bottom: 18px;
}

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

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

.footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-links a:hover {
    color: white;
    padding-left: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding: 20px 0;
    margin-top: 40px;
}

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

.footer-bottom a {
    color: rgba(255,255,255,0.7) !important;
}

.footer-bottom a:hover {
    color: white !important;
}

/* ===== ANIMATIONS ===== */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991.98px) {
    .hero-home {
        padding: 36px 0 32px;
    }

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

    .hero-card-stack {
        display: none;
    }

    .hero-stats {
        gap: 24px;
    }

    .hero-stat h4 {
        font-size: 1.4rem;
    }

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

    .ai-highlight {
        padding: 32px 24px;
    }

    .ai-highlight h3 {
        font-size: 1.4rem;
    }

    .ai-visual-grid {
        margin-top: 32px;
    }

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

    .newsletter-section {
        padding: 32px 20px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-section h3 {
        font-size: 1.4rem;
    }

    .featured-large {
        min-height: 320px;
    }
}

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

    .hero-desc {
        font-size: 0.95rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }

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

    .section-home {
        padding: 50px 0;
    }

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

    .ai-visual-grid {
        grid-template-columns: 1fr;
    }

    .footer-home .col-md-3 {
        margin-bottom: 24px;
    }
}
