/* ===== BASE & VARIABLES ===== */
:root {
    --bg-main: #ffffff;
    /* Clean white */
    --bg-secondary: #f9fafb;
    /* Very light gray */
    --text-main: #111827;
    /* Near black */
    --text-muted: #4b5563;
    /* Slate dark gray */

    --primary: #ff5e00;
    /* Bold Orange */
    --primary-hover: #e05300;
    --secondary: #6d28d9;
    /* Bold Violet */
    --accent: #059669;
    /* Bold Emerald */

    --card-bg: rgba(255, 255, 255, 0.9);
    --card-border: rgba(0, 0, 0, 0.08);
    --glass-bg: rgba(255, 255, 255, 0.85);

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Outfit', sans-serif;

    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-title span {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-description {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.text-center {
    text-align: center;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    gap: 0.5rem;
    font-size: 1rem;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 8px 30px rgba(255, 94, 0, 0.3);
    border: 1px solid var(--primary);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    box-shadow: 0 10px 40px rgba(255, 94, 0, 0.5);
    transform: translateY(-3px);
    background: var(--primary-hover);
    color: #fff;
}

.btn-outline {
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.15);
    color: var(--text-main);
}

.btn-outline:hover {
    border-color: var(--primary);
    background: rgba(255, 94, 0, 0.05);
}

/* NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.navbar.scrolled {
    padding: 1rem 0;
    background: var(--glass-bg);
    border-bottom: 1px solid var(--card-border);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.brand-logo .dot {
    color: var(--primary);
}

.nav-list {
    display: flex;
    gap: 2rem;
}

.nav-link {
    font-weight: 500;
    font-size: 1rem;
    color: var(--text-muted);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.has-dropdown {
    position: relative;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-main);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    min-width: 180px;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown li a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-muted);
}

.dropdown li a:hover {
    background: rgba(0, 0, 0, 0.03);
    color: var(--primary);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mobile-toggle {
    display: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-main);
}

/* HERO */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 40px;
    overflow: hidden;
}

.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.2;
    animation: drift 20s infinite alternate;
}

.shape-1 {
    width: 600px;
    height: 600px;
    background: var(--primary);
    top: -200px;
    left: -100px;
}

.shape-2 {
    width: 500px;
    height: 500px;
    background: var(--secondary);
    bottom: -100px;
    right: -50px;
    animation-delay: -5s;
}

@keyframes drift {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(50px, 50px) scale(1.1);
    }
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 94, 0, 0.1);
    border: 1px solid rgba(255, 94, 0, 0.2);
    border-radius: 50px;
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 3.5rem;
    /* Shrunk slightly for compact scrolling */
    margin-bottom: 1.25rem;
    line-height: 1.1;
}

.hero-title span {
    background: linear-gradient(135deg, var(--primary), var(--secondary), var(--primary));
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 4s ease infinite;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.hero-cta-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.trust-indicators {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.users-avatars {
    display: flex;
}

.users-avatars img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--bg-main);
    margin-left: -15px;
}

.users-avatars img:first-child {
    margin-left: 0;
}

.trust-indicators p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.hero-visual {
    position: relative;
}

.hero-image {
    width: 100%;
    max-width: 600px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    animation: float 6s ease-in-out infinite;
    position: relative;
    z-index: 2;
    border: 1px solid var(--card-border);
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

.glass-orb {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 70%);
    border-radius: 50%;
    filter: blur(20px);
    z-index: 1;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 1rem 1.5rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 3;
    animation: float 8s ease-in-out infinite reverse;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.floating-card i {
    font-size: 2rem;
    color: var(--primary);
    background: rgba(255, 94, 0, 0.1);
    padding: 0.5rem;
    border-radius: 10px;
}

.floating-card h4 {
    font-size: 1.25rem;
    color: var(--text-main);
}

.floating-card p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.deliverability-card {
    top: 10%;
    left: -10%;
}

.subscribers-card {
    bottom: 10%;
    right: -10%;
}

/* PILLARS */
.pillars {
    padding: 50px 0 100px;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: -80px;
    position: relative;
    z-index: 10;
}

.pillar-card {
    background: var(--bg-main);
    border: 1px solid var(--card-border);
    padding: 3rem 2.5rem;
    border-radius: 32px;
    transition: var(--transition);
    text-align: left;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.pillar-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 94, 0, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.icon-box {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.icon-purple {
    background: rgba(255, 94, 0, 0.1);
    color: var(--primary);
}

.icon-pink {
    background: rgba(109, 40, 217, 0.1);
    color: var(--secondary);
}

.icon-blue {
    background: rgba(5, 150, 105, 0.1);
    color: var(--accent);
}

.pillar-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.pillar-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* ABOUT */
.about {
    padding: 100px 0;
    background: radial-gradient(circle at right center, rgba(255, 94, 0, 0.03) 0%, transparent 50%);
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-visual {
    position: relative;
    height: 500px;
    background: url('assets/home_about.png') center/cover no-repeat;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.about-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(255, 94, 0, 0.2), rgba(109, 40, 217, 0.1));
}

.glass-panel {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    border: 1px solid var(--card-border);
    padding: 2rem;
    border-radius: 20px;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.glass-panel h2 {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.expert-list {
    margin-bottom: 2.5rem;
}

.expert-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--text-muted);
}

.expert-list i {
    color: var(--primary);
    font-size: 1.5rem;
    margin-top: 2px;
}

/* SERVICES GRID */
.services {
    padding: 100px 0;
    position: relative;
    background: var(--bg-secondary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background: var(--bg-main);
    border: 1px solid var(--card-border);
    padding: 2.5rem;
    border-radius: 28px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
}

.card-glow {
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: var(--primary);
    filter: blur(80px);
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 94, 0, 0.2);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.service-card:hover .card-glow {
    opacity: 0.15;
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    display: inline-block;
    position: relative;
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    position: relative;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    position: relative;
    line-height: 1.5;
}

/* CTA BANNER */
.cta-banner {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.cta-box {
    background: var(--bg-main);
    border: 1px solid var(--card-border);
    border-radius: 40px;
    padding: 5rem 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 94, 0, 0.3) 0%, transparent 60%);
    opacity: 0.3;
    filter: blur(60px);
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
}

.cta-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
    position: relative;
}

.cta-form {
    display: flex;
    gap: 1rem;
    width: 100%;
    max-width: 500px;
    position: relative;
}

.cta-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid var(--card-border);
    color: var(--text-main);
    font-family: inherit;
    font-size: 1rem;
    outline: none;
    transition: var(--transition);
}

.cta-form input:focus {
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(255, 94, 0, 0.1);
}

/* FOOTER */
.footer {
    background: var(--bg-main);
    padding: 80px 0 20px;
    border-top: 1px solid var(--card-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-logo {
    display: block;
    margin-bottom: 1.5rem;
}

.footer-brand p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--text-muted);
}

.social-links a:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.footer-links ul li,
.footer-contact ul li {
    margin-bottom: 1rem;
    color: var(--text-muted);
}

.footer-links ul li a:hover {
    color: var(--primary);
}

.footer-contact ul li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.footer-contact i {
    color: var(--primary);
    margin-top: 4px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--card-border);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-container {
        gap: 2rem;
    }

    .floating-card {
        padding: 0.75rem 1rem;
    }

    .floating-card h4 {
        font-size: 1rem;
    }

    .pillars-grid {
        grid-template-columns: 1fr;
        margin-top: 0;
        gap: 1.5rem;
    }

    .about-container {
        grid-template-columns: 1fr;
    }

    .about-visual {
        order: 2;
        height: 400px;
    }

    .about-content {
        order: 1;
    }

    .expert-list {
        text-align: left;
    }

    .cta-box {
        flex-direction: column;
        text-align: center;
        padding: 4rem 2rem;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-list {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--bg-main);
        flex-direction: column;
        align-items: center;
        padding-top: 2rem;
        transition: var(--transition);
        backdrop-filter: blur(20px);
    }

    .nav-list.active {
        left: 0;
    }

    .nav-actions .nav-btn {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .has-dropdown {
        width: 100%;
        text-align: center;
    }

    .dropdown {
        position: static;
        box-shadow: none;
        background: rgba(0, 0, 0, 0.03);
        max-width: 100%;
        display: none;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        margin-top: 1rem;
    }

    .dropdown.show-mobile {
        display: block;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-cta-group {
        justify-content: center;
        flex-direction: column;
    }

    .trust-indicators {
        justify-content: center;
    }

    .hero-visual {
        margin-top: 3rem;
    }

    .deliverability-card {
        left: 0;
        top: 0;
    }

    .subscribers-card {
        right: 0;
        bottom: 0;
    }

    .services-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }


    .cta-form {
        flex-direction: column;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* =========================================================================
   GENERIC SUBPAGE STYLES (About, Careers, Privacy, etc.)
========================================================================= */
.page-header {
    padding: 130px 0 40px;
    background: var(--bg-secondary);
    text-align: center;
    border-bottom: 1px solid var(--card-border);
}

.page-content-wrapper {
    padding: 60px 0;
    min-height: auto;
}

.integrated-wrapper {
    padding-top: 150px;
}

.page-content-wrapper h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.page-content-wrapper p {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

/* 2026 Trend Components for Subpages */
.split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
}

@media (max-width: 992px) {
    .split-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
        align-items: center;
        text-align: center;
        margin-bottom: 3rem;
    }
}

.job-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2.5rem 3rem;
    background: var(--bg-secondary);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border-color: var(--primary);
}

.job-card-info h3 {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    color: var(--text-main);
}

.job-card-info p {
    margin: 0;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

@media (max-width: 768px) {
    .job-card {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding: 2rem;
    }
}

.legal-box {
    background: #fff;
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid var(--card-border);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    text-align: left;
}

.legal-box h2 {
    margin-top: 2.5rem;
    border-bottom: 1px solid var(--card-border);
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.legal-box h2:first-child {
    margin-top: 0;
}

.culture-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

/* =========================================================================
   BLOG STYLES
========================================================================= */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 2rem;
}

@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

.blog-card {
    background: var(--bg-main);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(255, 94, 0, 0.3);
}

.blog-img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.blog-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-content h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-main);
    line-height: 1.3;
}

.blog-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.blog-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.blog-link:hover {
    gap: 1rem;
}

/* =========================================================================
   MOBILE RESPONSIVE UPGRADES FOR CORPORATE SUBPAGES 
========================================================================= */
.culture-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

@media (max-width: 992px) {
    .culture-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 100px 0 30px;
        /* Reduced huge scroll distance */
        background: var(--bg-secondary);
        text-align: center;
        border-bottom: 1px solid var(--card-border);
    }

    .page-content-wrapper {
        padding: 40px 0;
        min-height: auto;
    }

    .integrated-wrapper {
        padding-top: 100px;
    }

    .legal-box {
        background: #fff;
        padding: 2rem 1.5rem;
        /* Prevent squeezing text too tight */
        border-radius: 20px;
        border: 1px solid var(--card-border);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
        text-align: left;
    }
}