/*
Theme Name: GSmedia Webdesign
Theme URI: https://gsmedia.nl
Author: GSmedia
Author URI: https://gsmedia.nl
Description: Modern, clean, conversion-focused custom WordPress theme.
Version: 1.0.0
Text Domain: gsmedia
*/

:root {
    --color-primary-50: #eff6ff;
    --color-primary-100: #dbeafe;
    --color-primary-500: #3b82f6;
    --color-primary-600: #2563eb;
    --color-primary-700: #1d4ed8;
    --color-slate-50: #f8fafc;
    --color-slate-100: #f1f5f9;
    --color-slate-200: #e2e8f0;
    --color-slate-300: #cbd5e1;
    --color-slate-400: #94a3b8;
    --color-slate-500: #64748b;
    --color-slate-600: #475569;
    --color-slate-900: #0f172a;
    --color-white: #ffffff;
    
    --font-sans: 'Inter', sans-serif;
    --font-display: 'Plus Jakarta Sans', sans-serif;
    
    --container-max-width: 1280px;
    --section-padding: 6rem 1rem;
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: var(--font-sans); color: var(--color-slate-900); background-color: var(--color-slate-50); line-height: 1.6; margin: 0; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; padding: 0; margin: 0; }
button { font-family: inherit; }

/* UTILS */
.container { max-width: var(--container-max-width); margin: 0 auto; padding: 0 1rem; }
.text-center { text-align: center; }
.max-w-3xl { max-width: 48rem; margin-left: auto; margin-right: auto; }
.hidden { display: none; }
.fade-in { animation: fadeIn 0.3s ease-in-out; }

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* BUTTONS */
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 0.875rem 2rem; border-radius: 9999px; font-weight: 500; cursor: pointer; transition: all 0.3s; font-size: 1rem; border: none; text-decoration: none; }
.btn-primary { background-color: var(--color-primary-600); color: white; }
.btn-primary:hover { background-color: var(--color-primary-700); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2); }
.btn-secondary { background: white; color: var(--color-primary-600); border: 1px solid var(--color-slate-200); }
.btn-secondary:hover { background: var(--color-primary-50); }
.btn-link { background: transparent; color: var(--color-slate-500); padding: 0.875rem 1.5rem; }
.btn-link:hover { color: var(--color-slate-900); }
.btn-lg { padding: 1rem 2.5rem; font-size: 1.125rem; }
.btn-sm { padding: 0.625rem 1.5rem; font-size: 0.875rem; }
.btn-full { width: 100%; }
.shadow-lg { box-shadow: 0 10px 25px -5px rgba(37, 99, 235, 0.25); }

/* HEADER */
.site-header { 
    position: sticky; 
    top: 0; 
    z-index: 100; 
    transition: all 0.3s ease-in-out; 
    padding: 2rem 0; 
    background-color: transparent;
    width: 100%;
}

.site-header.scrolled { 
    /* Forceer witte achtergrond en minder padding */
    background-color: rgba(255, 255, 255, 0.95) !important; 
    backdrop-filter: blur(10px); 
    padding-top: 1rem !important; 
    padding-bottom: 1rem !important; 
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05) !important; 
}

.header-container { display: flex; justify-content: space-between; align-items: center; }
.logo a { display: flex; align-items: center; gap: 0.75rem; }
.logo-img { height: 2.5rem; width: auto; }
.logo-text { font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; letter-spacing: -0.025em; }
.logo-text .highlight { color: var(--color-primary-600); }

/* HERO */
.hero-section { position: relative; padding: 6rem 1rem 8rem; overflow: hidden; }
.hero-content { position: relative; z-index: 1; }
.hero-bg-blobs { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.blob { position: absolute; border-radius: 50%; filter: blur(60px); opacity: 0.3; width: 300px; height: 300px; }
.blob-1 { top: 5%; left: 20%; background: #dbeafe; }
.blob-2 { top: 10%; right: 20%; background: #e0e7ff; }

.hero-badge { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.25rem 0.75rem; background: #eff6ff; color: #1d4ed8; border-radius: 9999px; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; margin-bottom: 2rem; }
.hero-badge .dot { width: 0.5rem; height: 0.5rem; background: #2563eb; border-radius: 50%; }

.hero-title { font-family: var(--font-display); font-size: 3rem; line-height: 1.1; font-weight: 800; margin-bottom: 1.5rem; }
.hero-title .gradient-text { background: linear-gradient(to right, #2563eb, #4f46e5); -webkit-background-clip: text; color: transparent; }
.hero-subtitle { font-size: 1.125rem; color: var(--color-slate-600); max-width: 42rem; margin: 0 auto 2.5rem; }
.hero-actions { display: flex; gap: 1rem; justify-content: center; align-items: center; flex-wrap: wrap; margin-bottom: 3rem; }

.hero-benefits { display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap; font-size: 0.875rem; font-weight: 500; color: var(--color-slate-500); }
.benefit-item { display: flex; align-items: center; gap: 0.5rem; }
.check-icon { color: #22c55e; }

/* SECTIONS GLOBAL */
.section-title { font-family: var(--font-display); font-size: 2.25rem; font-weight: 700; margin-bottom: 1rem; }
.section-desc { color: var(--color-slate-600); max-width: 40rem; margin: 0 auto; }
.features-section, .process-section, .pricing-section, .upsells-section, .faq-section, .about-section { padding: var(--section-padding); }
.features-section, .pricing-section, .faq-section { background: white; }

/* =========================================
   CONTACT FORM 7 CUSTOM STYLING
   ========================================= */

/* Main Container */
.form-container { background: white; border-radius: 1.5rem; box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); border: 1px solid var(--color-slate-100); overflow: hidden; }

/* CF7 Resets */
div.wpcf7 .screen-reader-response { position: absolute; overflow: hidden; clip: rect(1px, 1px, 1px, 1px); height: 1px; width: 1px; margin: 0; padding: 0; border: 0; }
div.wpcf7-form-control-wrap { display: block; width: 100%; }

/* Sections */
.form-section { padding: 2rem; border-bottom: 1px solid var(--color-slate-100); }
@media (min-width: 768px) { .form-section { padding: 2.5rem; } }
.form-section:last-child { border-bottom: none; }

.form-section-title { display: flex; align-items: center; gap: 0.5rem; font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; color: var(--color-slate-900); margin-bottom: 1.5rem; }
.form-section-title svg { color: var(--color-primary-600); width: 24px; height: 24px; flex-shrink: 0; }

/* Grid & Groups */
.form-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-bottom: 1rem; }
@media (min-width: 768px) { .form-grid { grid-template-columns: 1fr 1fr; } }

.form-group { margin-bottom: 1.5rem; width: 100%; }
.form-label { display: block; font-size: 0.875rem; font-weight: 700; color: var(--color-slate-900); margin-bottom: 0.5rem; }
.form-hint { font-size: 0.875rem; color: var(--color-slate-500); margin-bottom: 0.5rem; display: block; margin-top: -0.25rem; }

/* Inputs */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="url"],
.wpcf7 textarea,
.wpcf7 select {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    border: 1px solid var(--color-slate-200);
    background-color: rgba(248, 250, 252, 0.3);
    font-family: inherit;
    font-size: 1rem;
    color: var(--color-slate-900);
    transition: 0.2s;
    outline: none;
    box-shadow: none;
    box-sizing: border-box;
}

.wpcf7 input:focus,
.wpcf7 textarea:focus,
.wpcf7 select:focus {
    border-color: var(--color-primary-500);
    background-color: white;
    box-shadow: 0 0 0 4px var(--color-primary-50);
}

.wpcf7 textarea { min-height: 8rem; resize: vertical; }

/* === Custom Radio/Checkbox Cards === */
.cf7-card-group .wpcf7-list-item { display: block; margin: 0 0 0.75rem 0; }
.cf7-card-group .wpcf7-list-item label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border: 1px solid var(--color-slate-200);
    background: white;
    border-radius: 0.5rem;
    transition: 0.2s;
    cursor: pointer;
    width: 100%;
    font-weight: 500;
    color: var(--color-slate-900);
}

.cf7-card-group .wpcf7-list-item label:hover {
    background-color: var(--color-slate-50);
    border-color: var(--color-slate-300);
}

.cf7-card-group input[type="checkbox"], 
.cf7-card-group input[type="radio"] {
    width: 1.25rem;
    height: 1.25rem;
    margin: 0;
    accent-color: var(--color-primary-600);
    cursor: pointer;
}

/* === Style Pills === */
.cf7-pills-group .wpcf7-list-item { display: inline-block; margin: 0 0.5rem 0.5rem 0; }
.cf7-pills-group .wpcf7-list-item label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    border: 1px solid var(--color-slate-200);
    background: white;
    color: var(--color-slate-600);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: 0.2s;
}

.cf7-pills-group .wpcf7-list-item label:hover {
    border-color: var(--color-primary-300);
    color: var(--color-primary-600);
}

.cf7-pills-group input[type="checkbox"] {
    width: 1rem; height: 1rem; accent-color: var(--color-primary-600);
}

/* === File Upload === */
.wpcf7-file {
    padding: 2rem;
    border: 2px dashed var(--color-slate-300);
    border-radius: 0.75rem;
    background-color: var(--color-slate-50);
    width: 100%;
    text-align: center;
    cursor: pointer;
    color: var(--color-slate-600);
    font-size: 0.875rem;
}
.wpcf7-file:hover {
    border-color: var(--color-primary-500);
    background-color: var(--color-primary-50);
}

/* === Info Boxes === */
.cf7-info-box { background:#eff6ff; border:1px solid #dbeafe; padding:1rem; border-radius:0.75rem; margin-bottom:1rem; display:flex; gap:0.75rem; font-size:0.875rem; color:#1e3a8a; }
.cf7-info-purple { background:#f3e8ff; border-color:#e9d5ff; color:#581c87; }

/* === Submit Button === */
.wpcf7-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    border-radius: 9999px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1.125rem;
    border: none;
    background-color: var(--color-primary-600);
    color: white;
    text-transform: none;
    width: 100%;
    max-width: 400px;
    margin-top: 1rem;
    box-shadow: 0 10px 25px -5px rgba(37, 99, 235, 0.25);
}

.wpcf7-submit:hover {
    background-color: var(--color-primary-700);
    transform: translateY(-2px);
    box-shadow: 0 15px 30px -5px rgba(37, 99, 235, 0.3);
}

/* === CF7 Response Output === */
.wpcf7-response-output { border: none !important; border-radius: 0.75rem; padding: 1.5rem !important; margin: 2rem 0 0 !important; text-align: center; font-weight: 500; }
.wpcf7-response-output.wpcf7-display-none { display: none; }
.wpcf7-response-output.wpcf7-validation-errors { background-color: #fef2f2; color: #991b1b; }
.wpcf7-response-output.wpcf7-mail-sent-ok { background-color: #f0fdf4; color: #166534; }
.wpcf7-not-valid-tip { font-size: 0.8rem; color: #ef4444; margin-top: 0.25rem; }


/* FEATURES, PROCESS, ETC (Existing Styles) */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; margin-top: 4rem; }
.feature-card { padding: 1.5rem; border: 1px solid var(--color-slate-100); background: var(--color-slate-50); border-radius: 1rem; transition: 0.3s; }
.feature-card:hover { background: white; box-shadow: 0 10px 20px rgba(0,0,0,0.05); transform: translateY(-4px); }
.feature-icon-box { width: 3rem; height: 3rem; background: #dbeafe; color: #2563eb; border-radius: 0.75rem; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.feature-icon-box svg { width: 24px; height: 24px; }
.feature-card h3 { font-weight: 700; margin-bottom: 0.5rem; }
.feature-card p { font-size: 0.875rem; color: var(--color-slate-500); }

/* Icons Placeholder classes */
.icon-layout::after { content: "☷"; font-size: 1.25rem; }
.icon-smartphone::after { content: "📱"; font-size: 1.25rem; }

/* PROCESS */
.process-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin-top: 4rem; margin-bottom: 4rem; position: relative; }
.process-line { display: none; }
.process-card { background: white; padding: 2rem; border-radius: 1rem; border: 1px solid var(--color-slate-100); position: relative; }
.process-num { position: absolute; top: 1rem; right: 1.5rem; font-family: var(--font-display); font-weight: 900; font-size: 2.5rem; color: var(--color-slate-100); opacity: 0.5; pointer-events: none; }
.process-step-title { font-weight: 700; font-size: 1.25rem; margin-bottom: 0.75rem; position: relative; z-index: 1; }
.process-cta { background: var(--color-primary-600); color: white; border-radius: 1.5rem; padding: 3rem; text-center; max-width: 56rem; margin: 0 auto; box-shadow: 0 20px 40px rgba(37, 99, 235, 0.3); }
.process-cta h3 { font-family: var(--font-display); font-size: 1.75rem; font-weight: 700; margin-bottom: 0.5rem; }
.process-cta p { color: #dbeafe; margin-bottom: 2rem; }

/* LIVE PREVIEW SECTION */
.live-preview-section { background-color: var(--color-slate-50); padding: var(--section-padding); }
.device-controls { display: flex; justify-content: center; gap: 1rem; margin-bottom: 2.5rem; flex-wrap: wrap; }
.device-btn { 
    display: inline-flex; 
    align-items: center; 
    gap: 0.5rem; 
    padding: 0.75rem 1.5rem; 
    background: white; 
    border: 1px solid var(--color-slate-200); 
    border-radius: 9999px; 
    color: var(--color-slate-600); 
    font-weight: 600; 
    cursor: pointer; 
    transition: all 0.3s;
}
.device-btn:hover { background: var(--color-slate-50); border-color: var(--color-slate-300); }
.device-btn.active { background: var(--color-slate-900); color: white; border-color: var(--color-slate-900); }

/* Project Switcher */
.project-switcher-container { text-align: center; margin-bottom: 1.5rem; }
.switcher-label { display: block; font-size: 0.875rem; color: var(--color-slate-500); margin-bottom: 0.75rem; font-weight: 600; }
.project-switcher { 
    display: inline-flex; 
    background: white; 
    border: 1px solid var(--color-slate-200); 
    padding: 0.25rem; 
    border-radius: 9999px; 
    gap: 0.25rem; 
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
}
.project-btn { 
    padding: 0.5rem 1.25rem; 
    border-radius: 9999px; 
    font-size: 0.875rem; 
    font-weight: 600; 
    border: none; 
    background: transparent; 
    color: var(--color-slate-500); 
    cursor: pointer; 
    transition: all 0.2s;
}
.project-btn.active { 
    background: var(--color-primary-50); 
    color: var(--color-primary-700); 
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.browser-frame-wrapper { display: flex; justify-content: center; width: 100%; overflow: visible; }
.browser-frame { 
    width: 100%; 
    max-width: 1100px; 
    height: 850px; 
    background: white; 
    border-radius: 18px; 
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); 
    display: flex; 
    flex-direction: column; 
    overflow: hidden; 
    transition: max-width 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    margin: 0 auto;
    border: 1px solid var(--color-slate-200);
}
.browser-header { 
    background: #f1f5f9; 
    padding: 0.75rem 1.25rem; 
    display: flex; 
    align-items: center; 
    border-bottom: 1px solid var(--color-slate-200); 
    flex-shrink: 0;
}
.browser-dots { display: flex; gap: 0.5rem; margin-right: 1.5rem; }
.dot { width: 12px; height: 12px; border-radius: 50%; }
.dot-red { background: #ef4444; }
.dot-yellow { background: #f59e0b; }
.dot-green { background: #22c55e; }

.browser-address-bar { 
    flex-grow: 1; 
    background: white; 
    padding: 0.4rem 1rem; 
    border-radius: 6px; 
    font-size: 0.8rem; 
    color: var(--color-slate-500); 
    display: flex; 
    align-items: center; 
    gap: 0.5rem; 
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}
.browser-content { 
    flex-grow: 1; 
    position: relative; 
    width: 100%;
}
.browser-content iframe { 
    position: absolute;
    top: 0;
    left: 0;
    width: 100%; 
    height: 100%; 
    border: none; 
}

/* PRICING */
.pricing-layout { display: grid; grid-template-columns: 1fr; gap: 4rem; align-items: center; }
@media (min-width: 1024px) { .pricing-layout { grid-template-columns: 1fr 1fr; } }
.pricing-note { background: #fff7ed; border: 1px solid #ffedd5; padding: 1.5rem; border-radius: 0.75rem; margin-top: 2rem; }
.pricing-note h4 { color: #9a3412; font-weight: 700; margin-bottom: 0.5rem; }
.pricing-note p { font-size: 0.875rem; color: #c2410c; }
.pricing-card { background: white; border-radius: 1.5rem; overflow: hidden; box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1); border: 1px solid var(--color-slate-100); }
.pricing-card .card-header { background: var(--color-slate-900); color: white; padding: 2rem; text-center; }
.pricing-card .card-header h3 { color: var(--color-slate-300); font-weight: 500; font-size: 1.125rem; margin-bottom: 0.25rem; }
.pricing-card .price .amount { font-size: 3rem; font-weight: 700; }
.pricing-card .price .period { color: var(--color-slate-400); }
.pricing-card .card-body { padding: 2rem; }
.feature-list li { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; color: var(--color-slate-600); font-weight: 500; }
.feature-list li::before { content: "✓"; color: #22c55e; font-weight: bold; }

/* UPSELLS */
.upsells-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; max-width: 56rem; margin: 4rem auto 2.5rem; }
.upsell-card { background: white; border-radius: 1rem; padding: 2rem; text-center; border: 1px solid var(--color-slate-200); transition: 0.3s; display: flex; flex-col; flex-direction: column; align-items: center; }
.upsell-card:hover { box-shadow: 0 10px 20px rgba(0,0,0,0.05); }
.upsell-icon { width: 4rem; height: 4rem; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; }
.icon-purple { background: #f3e8ff; color: #9333ea; }
.icon-pink { background: #fce7f3; color: #db2777; }
.upsell-price { font-size: 1.5rem; font-weight: 700; margin-bottom: 1rem; }
.upsell-price span { font-size: 0.875rem; font-weight: 400; color: var(--color-slate-400); }
.upsell-footer-note { text-align: center; color: var(--color-slate-500); font-size: 0.875rem; font-style: italic; }

/* ABOUT */
.about-layout { display: flex; flex-direction: column; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { 
    .about-layout { flex-direction: row; gap: 5rem; } 
    .about-image { width: 40%; display: flex; justify-content: flex-start; }
    .about-content { width: 60%; }
}
.image-wrapper-circle { position: relative; width: 12rem; height: 12rem; margin: 0 auto; }
@media (min-width: 768px) { .image-wrapper-circle { width: 13rem; height: 13rem; } }
.image-backdrop { position: absolute; inset: 12px; border-radius: 50%; background: #dbeafe; z-index: 0; transform: translate(-12px, -12px); }
.image-wrapper-circle img { width: 100%; height: 100%; object-fit: cover; object-position: top; border-radius: 50%; border: 4px solid white; position: relative; z-index: 1; box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1); }
.about-content h2 { margin-bottom: 1.5rem; }
.about-content p { margin-bottom: 1.25rem; color: var(--color-slate-600); font-size: 1.125rem; }
.about-content .intro { font-weight: 500; color: var(--color-slate-900); }
.about-content .highlight { color: var(--color-primary-600); font-weight: 700; font-family: var(--font-display); font-size: 1.25rem; padding-top: 0.5rem; }

/* FAQ */
.accordion { margin-top: 3rem; }
.accordion-item { border: 1px solid var(--color-slate-200); border-radius: 0.75rem; overflow: hidden; margin-bottom: 1rem; }
.accordion-header { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 1.5rem; background: white; border: none; font-size: 1rem; font-weight: 700; color: var(--color-slate-900); cursor: pointer; text-align: left; }
.accordion-header:hover { background: var(--color-slate-50); }
.accordion-content { max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out; background: white; border-top: 1px solid transparent; }
.accordion-item.active .accordion-content { max-height: 500px; border-top-color: var(--color-slate-100); }
.inner-content { padding: 1.5rem; padding-top: 0; color: var(--color-slate-600); }
.accordion-header .icon { color: var(--color-slate-400); font-size: 1.5rem; }

/* FOOTER CTA & FOOTER */
.footer-cta-section { background: var(--color-slate-900); color: white; padding: 6rem 1rem; text-center; }
.footer-cta-section h2 { font-family: var(--font-display); font-size: 2.5rem; font-weight: 700; margin-bottom: 1.5rem; }
.footer-cta-section p { color: var(--color-slate-300); font-size: 1.125rem; margin-bottom: 2.5rem; max-width: 40rem; margin-left: auto; margin-right: auto; }
.shadow-white { box-shadow: 0 10px 25px -5px rgba(255, 255, 255, 0.1); }

.site-footer { background: white; border-top: 1px solid var(--color-slate-200); padding: 3rem 0; margin-top: auto; }
.footer-container { display: flex; flex-direction: column; gap: 2rem; align-items: center; }
@media (min-width: 768px) { .footer-container { flex-direction: row; justify-content: space-between; } }
.footer-logo { display: flex; align-items: center; gap: 0.75rem; font-weight: 700; font-family: var(--font-display); font-size: 1.25rem; margin-bottom: 0.5rem; }
.footer-logo img { height: 2rem; }
.footer-tagline { color: var(--color-slate-500); font-size: 0.875rem; }
.footer-links { display: flex; gap: 2rem; font-size: 0.875rem; color: var(--color-slate-600); }
.footer-links a:hover { color: var(--color-primary-600); }
.footer-bottom { text-align: center; margin-top: 2rem; padding-top: 2rem; border-top: 1px solid var(--color-slate-100); color: var(--color-slate-400); font-size: 0.875rem; }

@media (min-width: 768px) {
    .hero-title { font-size: 4.5rem; }
    .hero-bg-blobs { inset: auto; width: 100%; max-width: 1200px; margin: 0 auto; }
}