:root {
    --color-bg: #0a0a0a;
    --color-text: #f0f0f0;
    --color-gold: #c5a059;
    --color-gold-light: #e6c885;
    --color-dark-overlay: rgba(0, 0, 0, 0.7);
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    --transition-smooth: all 0.4s ease;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-body);
    line-height: 1.8;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--color-gold);
    margin-bottom: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.05em;
}

a {
    color: var(--color-text);
    text-decoration: none;
    transition: var(--transition-smooth);
}

a:hover {
    color: var(--color-gold);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.site-header {
    padding: 25px 0;
    border-bottom: 1px solid rgba(197, 160, 89, 0.2);
    position: sticky;
    top: 0;
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition-smooth);
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.logo a {
    color: var(--color-gold);
}

.nav-wrapper {
    display: flex;
    align-items: center;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 40px;
}

.main-nav a {
    font-size: 1.1rem;
    /* Slightly larger for the serif font */
    text-transform: none;
    /* Only first letter capital (as in lang files) */
    letter-spacing: 0.05em;
    position: relative;
    font-family: var(--font-heading);
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--color-gold);
    transition: var(--transition-smooth);
}

.main-nav a:hover::after {
    width: 100%;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--color-gold);
    margin: 5px 0;
    transition: var(--transition-smooth);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Dropdown */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropbtn {
    background-color: transparent;
    color: var(--color-gold);
    padding: 10px;
    font-size: 0.9rem;
    border: 1px solid var(--color-gold);
    cursor: pointer;
    font-family: var(--font-body);
    transition: var(--transition-smooth);
}

.dropbtn:hover {
    background-color: var(--color-gold);
    color: #000;
}

.dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    background-color: #1a1a1a;
    min-width: 100px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
    border: 1px solid rgba(197, 160, 89, 0.2);
}

.dropdown-content a {
    color: var(--color-text);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: 0.9rem;
}

.dropdown-content a:hover {
    background-color: rgba(197, 160, 89, 0.1);
    color: var(--color-gold);
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Footer */
.site-footer {
    padding: 60px 0;
    border-top: 1px solid rgba(197, 160, 89, 0.2);
    margin-top: 80px;
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.9;
    background: linear-gradient(to top, #050505, #0a0a0a);
}

.footer-logo {
    font-family: var(--font-heading);
    color: var(--color-gold);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

/* Sections */
section {
    padding: 100px 0;
}

.page-header {
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    position: relative;
    margin-bottom: 60px;
}

.page-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-dark-overlay);
}

.page-header h1 {
    position: relative;
    z-index: 1;
    font-size: 4rem;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out;
}

.hero {
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    position: relative;
    background-attachment: fixed;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 0 20px;
    animation: fadeInUp 1.2s ease-out;
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 30px;
    color: #fff;
    line-height: 1.2;
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
}

.btn {
    display: inline-block;
    padding: 15px 40px;
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
    background: transparent;
}

.btn:hover {
    background-color: var(--color-gold);
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(197, 160, 89, 0.2);
}

/* Forms */
form {
    max-width: 700px;
    margin: 0 auto;
    padding: 40px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.form-group {
    margin-bottom: 30px;
}

label {
    display: block;
    margin-bottom: 10px;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-gold);
}

input,
textarea {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-text);
}

/* Flip Cards */
.flip-card {
    background-color: transparent;
    height: 350px;
    /* Fixed height for consistency */
    perspective: 1000px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner,
.flip-card.flipped .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(255, 255, 255, 0.02);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
}

.flip-card-front {
    border: 1px solid rgba(197, 160, 89, 0.3);
}

.flip-card-back {
    background: #151515;
    /* Slightly lighter dark for contrast */
    border: 1px solid var(--color-gold);
    transform: rotateY(180deg);
}

.flip-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.flip-card p {
    font-size: 1rem;
    line-height: 1.6;
}

.flip-hint {
    position: absolute;
    bottom: 20px;
    font-size: 1.5rem;
    color: var(--color-gold);
    opacity: 0.5;
    animation: rotate 2s infinite linear;
    display: none;
    /* Hidden by default, shown on mobile or hover hint */
}

@media (hover: none) {
    .flip-hint {
        display: block;
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Typography Spacing */
.text-content p,
.intro-text p,
.card-content p,
.hero-content p {
    margin-bottom: 1.5rem;
}

/* Utilities */
/* Grid System */
/* Grid System */
.grid {
    display: grid;
    grid-template-columns: 1fr;
    /* Mobile: 1 column */
    gap: 60px;
}

@media (min-width: 768px) {
    .grid {
        grid-template-columns: repeat(2, 1fr);
        /* Tablet: 2 columns */
        align-items: stretch;
        /* Match height */
    }
}

@media (min-width: 1200px) {
    .grid {
        grid-template-columns: repeat(4, 1fr);
        /* Desktop: 4 columns */
    }
}


.mt-40 {
    margin-top: 60px;
    /* Increased for better spacing */
}

.mt-80 {
    margin-top: 80px;
}

.my-80 {
    margin-top: 80px;
    margin-bottom: 80px;
}

/* Certification Section */
.cert-section {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

.cert-text-col {
    width: 100%;
    text-align: left;
}

.cert-logos-col {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: center;
}

.cert-logo {
    width: 100px;
    height: 100px;
    /* Fixed height for perfect circle */
    object-fit: contain;
    background-color: white;
    /* White background as requested */
    border-radius: 50%;
    /* Round shape */
    padding: 10px;
    /* Spacing inside the circle */
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.5));
    transition: transform 0.3s ease;
}

.cert-logo:hover {
    transform: scale(1.05);
}

.vdc {
    border: 2px solid var(--color-gold);
}

/* Outro */
.vision-outro {
    max-width: 800px;
    margin: 120px auto 0;
    /* Increased spacing */
    text-align: left;
    /* Align text to left as requested */
    font-size: 1.3rem;
    font-style: italic;
    color: var(--color-gold);
    line-height: 1.8;
    position: relative;
    padding: 0 40px;
    /* Increased padding for quotes */
}

/* Decorative element for outro */
.vision-outro::before {
    content: '❝';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 3rem;
    line-height: 1;
    opacity: 0.5;
}

/* Target paragraph for inline closing quote to follow text closely */
.vision-outro p::after {
    content: '❞';
    display: inline-block;
    position: relative;
    top: 10px;
    /* Adjust vertical alignment */
    margin-left: 10px;
    font-size: 3rem;
    line-height: 0;
    opacity: 0.5;
    color: var(--color-gold);
}

@media (min-width: 900px) {
    .cert-section {
        flex-direction: row;
        align-items: center;
        /* Vertically center align text and logos */
        justify-content: space-between;
        gap: 60px;
    }

    .cert-text-col {
        flex: 1;
    }

    .cert-logos-col {
        flex: 0 0 auto;
        /* Allow auto width */
        flex-direction: row;
        /* Horizontal side-by-side */
        gap: 20px;
        padding-top: 0;
        align-items: center;
        /* Center with text block if needed, or flex-start */
    }

    .cert-logo {
        width: 80px;
        /* Smaller logos */
        height: 80px;
    }
}

.text-highlight {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--color-gold);
    border-left: 3px solid var(--color-gold);
    padding-left: 20px;
    margin-top: 40px;
}

.border-gold {
    border: 1px solid var(--color-gold);
}

.img-responsive {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Alerts */
.alert {
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    color: #fff;
}

.alert-success {
    background: rgba(0, 255, 0, 0.1);
    border-color: green;
}

.alert-error {
    background: rgba(255, 0, 0, 0.1);
    border-color: red;
}

/* Responsive */
@media (min-width: 769px) and (max-width: 1200px) {
    .main-nav ul {
        gap: 20px;
    }

    .nav-wrapper {
        margin: 0 30px;
    }
}

@media (max-width: 768px) {
    .site-header .container {
        justify-content: space-between;
        padding: 0 20px;
    }

    .hamburger {
        display: block;
    }

    .main-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(10, 10, 10, 0.98);
        display: flex;
        align-items: center;
        justify-content: center;
        transform: translateX(-100%);
        transition: var(--transition-smooth);
        z-index: 1000;
    }

    .main-nav.active {
        transform: translateX(0);
    }

    .main-nav ul {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .main-nav a {
        font-size: 1.5rem;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }
}

/* Popups & Modals */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(10, 10, 10, 0.4);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.popup-overlay.hidden {
    opacity: 0;
    pointer-events: none;
    display: none;
}

.popup-content {
    background: rgba(10, 10, 10, 0.9);
    border: 1px solid var(--color-gold);
    padding: 3rem;
    text-align: center;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
    animation: fadeInUp 0.5s ease-out;
}

.age-gate-header {
    margin-bottom: 2rem;
}

.age-gate-header .lion-icon {
    width: 100px;
    height: auto;
    display: block;
    margin: 0 auto 1.5rem auto;
    filter: drop-shadow(0 0 10px var(--color-gold));
}

/* Logos */
.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    line-height: 1;
}

.logo-champagne {
    font-size: 1.1rem;
    letter-spacing: 0.35em;
    /* Wider spacing to match GAUTRON width */
    text-transform: none;
    margin-right: -0.35em;
    /* Compensate for last letter spacing */
    color: var(--color-gold);
    font-family: var(--font-heading);
}

.logo-gautron {
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--color-gold);
    font-family: var(--font-heading);
    text-transform: uppercase;
    margin-top: 5px;
    /* Increased spacing from Champagne */
}

.header-logo-img {
    height: 80px;
    /* Increased to match text block height */
    width: auto;
    margin-right: 15px;
}

.footer-logo-img {
    width: 100px;
    height: auto;
}

.age-gate-header h2 {
    font-size: 1.5rem;
    letter-spacing: 0.15em;
    margin-bottom: 0;
}

.age-gate-content p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    color: var(--color-text);
}

.age-gate-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-gold {
    background-color: var(--color-gold);
    color: #000;
    font-weight: 700;
    font-family: var(--font-heading);
    /* Premium font */
    letter-spacing: 0.1em;
}

.btn-gold:hover {
    background-color: var(--color-gold-light);
    color: #000;
}

.btn-outline {
    border: 1px solid var(--color-text);
    color: var(--color-text);
    font-family: var(--font-heading);
    /* Premium font */
    letter-spacing: 0.1em;
}

.btn-outline:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 350px;
    max-width: calc(100% - 60px);
    background: rgba(10, 10, 10, 0.95);
    border: 1px solid var(--color-gold);
    padding: 1.5rem;
    z-index: 9998;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.5s ease;
}

.cookie-banner.hidden {
    transform: translateY(100px);
    opacity: 0;
    pointer-events: none;
}

.cookie-content p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.btn-small {
    padding: 8px 20px;
    font-size: 0.8rem;
    background-color: var(--color-gold);
    color: #000;
    border: none;
    cursor: pointer;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition-smooth);
    font-family: var(--font-heading);
    /* Premium font */
}

.btn-small:hover {
    background-color: white;
}

@media (max-width: 600px) {
    .age-gate-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .cookie-banner {
        left: 20px;
        bottom: 20px;
        width: calc(100% - 40px);
    }
}

/* Range Page Grid - Using Subgrid for perfect dynamic alignment */
.product-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        /* Each card row now has 4 synced sub-rows: Img, Title, Desc, Specs */
        grid-template-rows: auto auto auto auto;
        gap: 20px 40px;
    }

    .product-card:nth-child(1),
    .product-card:nth-child(2) {
        margin-bottom: 60px;
    }
}

.product-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

@media (min-width: 1024px) {
    .product-card {
        display: grid;
        grid-row: span 4;
        grid-template-rows: subgrid;
        background: var(--color-dark-accent);
        border: 1px solid rgba(255, 255, 255, 0.05);
    }
}

.product-img-wrapper {
    padding: 40px 20px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.02);
}

.product-img {
    max-width: 100%;
    height: auto;
    max-height: 400px;
    /* Constrain height */
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.product-card:hover .product-img {
    transform: scale(1.30) translateY(-10px);
}

.product-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

@media (min-width: 1024px) {
    .product-content {
        display: grid;
        grid-row: span 3;
        grid-template-rows: subgrid;
        padding: 0 30px 30px;
        background: transparent;
    }
}

.product-title {
    font-family: var(--font-heading);
    color: var(--color-gold);
    font-size: 1.8rem;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(197, 160, 89, 0.3);
    padding-bottom: 15px;
}

.product-desc {
    margin-bottom: 20px;
    font-style: italic;
    opacity: 0.9;
}

.product-specs {
    list-style: none;
    padding: 0;
    margin-top: 20px;
    /* Consistent gap after description */
}

.product-specs li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    /* Align with top of multi-line text */
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 8px;
    text-align: left;
    /* Ensure left alignment */
}

.product-specs li:last-child {
    border-bottom: none;
}

.product-specs strong {
    color: var(--color-gold);
    font-weight: normal;
    font-family: var(--font-heading);
    min-width: 140px;
    /* Give more space to titles */
    flex-shrink: 0;
    margin-right: 20px;
    /* Gap after title/colon */
}

.order-info {
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 20px 30px;
    background: transparent;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.order-info p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0;
    font-style: italic;
}



.order-info a {
    color: var(--color-gold);
    text-decoration: underline;
    font-weight: bold;
}

/* Footer */
.site-footer {
    background: #0a0a0a;
    border-top: 1px solid rgba(197, 160, 89, 0.3);
    padding: 60px 0 30px;
    margin-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr 1fr;
        text-align: left;
    }
}

.footer-col h4 {
    font-family: var(--font-heading);
    color: var(--color-gold);
    font-size: 1.1rem;
    margin-bottom: 20px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    /* Vertical stacking */
    align-items: center;
    /* Centered on vertical axis */
    gap: 0;
}

@media (min-width: 768px) {
    .footer-brand {
        align-items: center;
        /* Stay centered */
    }
}

.footer-brand-name {
    font-family: var(--font-heading);
    color: var(--color-gold);
    font-size: 1.2rem;
    letter-spacing: 0.05em;
}

.footer-contact p {
    margin-bottom: 15px;
}

.footer-contact a {
    color: var(--color-text);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--color-gold);
}

.footer-contact svg {
    color: var(--color-gold);
    flex-shrink: 0;
}

.footer-legal ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-legal li {
    margin-bottom: 10px;
}

.footer-legal a {
    color: var(--color-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--color-gold);
}

.footer-bottom {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-warning,
.footer-copy {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 8px;
}

.footer-warning {
    font-style: italic;
}

/* Origins Page Layout */
.origins-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
    /* Vertically center image with text */
}

@media (min-width: 900px) {
    .origins-grid {
        grid-template-columns: 2fr 1fr;
        gap: 60px;
    }
}

.origins-grid .text-content h2 {
    margin-bottom: 30px;
}



.origins-grid .image-content img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
}

/* Vision Page - Grid-based Width Constraint */
.vision-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* The flip cards grid - 3 columns centered on desktop */
.vision-container .grid {
    width: 100%;
    justify-content: center;
}

@media (min-width: 1200px) {
    .vision-container .grid {
        grid-template-columns: repeat(3, minmax(280px, 350px));
        /* Exactly 3 cards */
        justify-content: center;
    }
}

/* Match intro/cert/outro to grid width on desktop */
.vision-container .intro-text,
.vision-container .cert-section,
.vision-container .vision-outro {
    width: 100%;
    box-sizing: border-box;
}

/* On desktop (when 3 cards show in row), limit text sections */
@media (min-width: 1200px) {

    .vision-container .intro-text,
    .vision-container .cert-section {
        /* Same as grid: uses full container but grid handles it */
        padding: 0;
    }
}

@media (max-width: 900px) {
    .vision-container .cert-section {
        flex-direction: column;
        text-align: center;
    }

    .vision-container .cert-logos-col {
        justify-content: center;
    }
}