/* ============================================
   LIGNECRÉATIVE — CSS v3 (clean rebuild)
   ============================================ */

/* ---- RESET ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
ul, ol { list-style: none; }
a { text-decoration: none; }
img { display: block; max-width: 100%; }
html { scroll-behavior: smooth; }

/* ---- VARIABLES ---- */
:root {
    --pink:        #e13f96;
    --pink-dark:   #b02e73;
    --pink-light:  #fce8f3;
    --yellow:      #facc15;
    --dark:        #0f0f0f;
    --dark2:       #1a1a2e;
    --white:       #ffffff;
    --off:         #f7f6f2;
    --text:        #1a1a1a;
    --muted:       #6b7280;
    --border:      #e5e5e5;
    --r:           20px;
    --r-sm:        14px;
}

/* ---- BASE ---- */
body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background: var(--white);
    color: var(--text);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
h1, h2, h3 {
    font-family: 'Syne', sans-serif;
    line-height: 1.1;
}

/* ---- LOGO ---- */
.logo {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 26px;
    color: var(--dark);
    letter-spacing: -0.5px;
}
.logo em { font-style: normal; color: var(--pink); }
.logo-sm { font-size: 20px; }

/* ---- BUTTONS ---- */
.btn-pink, .btn-dark, .btn-outline, .btn-yellow, .btn-submit {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 999px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease;
}
.btn-pink   { background: var(--pink);   color: #fff; }
.btn-dark   { background: var(--dark);   color: #fff; }
.btn-yellow { background: var(--yellow); color: var(--dark); }
.btn-outline {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255,255,255,.35);
}
.btn-submit {
    background: var(--yellow);
    color: var(--dark);
    font-weight: 700;
    width: 100%;
    text-align: center;
    font-size: 16px;
}
.btn-pink:hover,
.btn-dark:hover,
.btn-yellow:hover,
.btn-submit:hover  { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.2); }
.btn-outline:hover { transform: translateY(-2px); background: rgba(255,255,255,.08); }
.btn-pink:hover    { box-shadow: 0 8px 24px rgba(225,63,150,.4); }
.btn-yellow:hover,
.btn-submit:hover  { box-shadow: 0 8px 24px rgba(250,204,21,.4); }

.btn-cta {
    display: inline-block;
    padding: 11px 22px;
    border-radius: 999px;
    background: var(--pink);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    transition: transform .2s, box-shadow .2s;
    white-space: nowrap;
}
.btn-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(225,63,150,.35); }

.mobile-cta {
    display: inline-block;
    padding: 13px 24px;
    border-radius: 999px;
    background: var(--pink);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    margin-top: 8px;
}

/* ---- NAV ---- */
.nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: border-color .3s, box-shadow .3s;
}
.nav.nav-scrolled {
    border-bottom-color: var(--border);
    box-shadow: 0 2px 20px rgba(0,0,0,.06);
}
.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 32px;
    display: flex;
    align-items: center;
    gap: 24px;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    margin: 0 auto;
}
.nav-links a {
    font-size: 15px;
    font-weight: 500;
    color: var(--muted);
    transition: color .2s;
}
.nav-links a:hover { color: var(--dark); }
.nav-cta { margin-left: auto; }

/* Burger */
.burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 38px;
    height: 38px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    margin-left: auto;
}
.burger span {
    display: block;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: all .3s;
    transform-origin: center;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav — caché par défaut, visible uniquement sur mobile via .open */
.nav-mobile {
    display: none !important;
    flex-direction: column;
    gap: 4px;
    padding: 12px 24px 20px;
    border-top: 1px solid var(--border);
    background: var(--white);
}
.nav-mobile a {
    font-size: 16px;
    font-weight: 500;
    color: var(--text);
    padding: 10px 8px;
    border-radius: 8px;
    transition: background .2s;
    text-decoration: none;
}
.nav-mobile a:hover { background: var(--off); }
@media (max-width: 900px) {
    .nav-mobile.open { display: flex !important; }
}

/* ---- HERO ---- */
.hero {
    background: var(--dark);
    color: #fff;
    padding: 80px 32px 100px;
    overflow: hidden;
    position: relative;
}
.hero-bg-glow {
    position: absolute;
    top: -200px; right: -200px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(225,63,150,.18) 0%, transparent 70%);
    pointer-events: none;
}
.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.hero-pill {
    display: inline-block;
    background: rgba(255,255,255,.1);
    color: rgba(255,255,255,.8);
    font-size: 13px;
    font-weight: 500;
    padding: 8px 18px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.15);
    margin-bottom: 28px;
    letter-spacing: .3px;
}
.hero-text h1 {
    font-size: clamp(52px, 6vw, 80px);
    font-weight: 800;
    color: #fff;
    letter-spacing: -2px;
    margin-bottom: 22px;
}
.hero-text h1 .accent { color: var(--pink); }
.hero-text > p {
    font-size: 18px;
    color: rgba(255,255,255,.6);
    max-width: 480px;
    line-height: 1.7;
    margin-bottom: 36px;
}
.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

/* Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
}
.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.hero-stat strong {
    font-family: 'Syne', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -1px;
    line-height: 1;
}
.hero-stat span {
    font-family: 'Syne', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--pink);
    margin-left: 2px;
}
.hero-stat p { font-size: 13px; color: rgba(255,255,255,.5); margin-top: 4px; }
.stat-sep { width: 1px; height: 40px; background: rgba(255,255,255,.15); }

/* Hero visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 380px;
}
.hero-card {
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 24px;
    padding: 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    backdrop-filter: blur(10px);
    z-index: 1;
}
.hero-card-badge {
    font-size: 12px;
    font-weight: 600;
    color: var(--pink);
    background: rgba(225,63,150,.15);
    border: 1px solid rgba(225,63,150,.3);
    padding: 5px 14px;
    border-radius: 999px;
    letter-spacing: .5px;
}
.hero-card-name {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 20px;
    color: #fff;
}
.hero-card-name em { font-style: normal; color: var(--pink); }
.logo-circle {
    width: 120px; height: 120px;
    border-radius: 50%;
    background: #fff;
    overflow: hidden;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 0 0 8px rgba(255,255,255,.06), 0 0 0 16px rgba(255,255,255,.03);
}
.logo-circle img { width: 100%; height: 100%; object-fit: cover; }

/* Services mini dans la hero card */
.hero-services-mini {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    width: 100%;
    margin-top: 8px;
}
.hero-services-mini span {
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.12);
    color: rgba(255,255,255,.8);
    font-size: 12px;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 10px;
    text-align: center;
    white-space: nowrap;
}

/* ---- MARQUEE ---- */
.marquee-band { background: var(--pink); padding: 14px 0; overflow: hidden; }
.marquee-track {
    display: flex;
    gap: 28px;
    white-space: nowrap;
    animation: marquee 22s linear infinite;
}
.marquee-track span { font-size: 15px; font-weight: 600; color: #fff; flex-shrink: 0; }
@keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ---- LAYOUT ---- */
.wrap { max-width: 1200px; margin: 0 auto; }
.section { padding: 100px 32px; }
.section-alt { background: var(--off); }

.section-head { margin-bottom: 60px; }
.section-head h2 {
    font-size: clamp(36px, 4vw, 54px);
    font-weight: 800;
    letter-spacing: -1.5px;
    color: var(--dark);
    margin-top: 12px;
    margin-bottom: 16px;
}
.section-desc { font-size: 17px; color: var(--muted); max-width: 560px; line-height: 1.65; }

.label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--pink);
}
.label-light { color: rgba(255,255,255,.5); }

/* ---- REVEAL ---- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---- SERVICES ---- */
.services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.scard {
    border-radius: var(--r);
    padding: 48px 44px;
    display: flex;
    flex-direction: column;
}
.scard-pink { background: var(--pink-light); border: 1.5px solid #f5c5e0; }
.scard-dark { background: var(--dark); color: #fff; }
.scard-icon { font-size: 40px; margin-bottom: 20px; }
.scard h3 {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -.5px;
    margin-bottom: 12px;
}
.scard-pink h3 { color: var(--dark); }
.scard-dark h3 { color: #fff; }
.scard > p { font-size: 15px; margin-bottom: 28px; line-height: 1.6; }
.scard-pink > p { color: var(--muted); }
.scard-dark > p { color: rgba(255,255,255,.55); }
.scard ul { flex: 1; margin-bottom: 32px; }
.scard li { font-size: 15px; padding: 11px 0; border-bottom: 1px solid; display: flex; align-items: center; gap: 10px; }
.scard li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; background: var(--pink); }
.scard-pink li { color: var(--text); border-color: rgba(0,0,0,.08); }
.scard-dark li { color: rgba(255,255,255,.8); border-color: rgba(255,255,255,.08); }
.scard-dark li::before { background: var(--yellow); }

/* ---- PORTFOLIO ---- */
.portfolio-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.pcard { border-radius: var(--r-sm); overflow: hidden; border: 1px solid var(--border); background: #fff; transition: transform .3s, box-shadow .3s; }
.pcard:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,.12); }
.pcard-visual { height: 180px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.pcard-img { width: 100%; height: 100%; object-fit: cover; }
.pcard-v1 { background: linear-gradient(135deg, #e13f96, #b02e73); }
.pcard-v2 { background: linear-gradient(135deg, #1a1a2e, #2d2d5e); }
.pcard-v3 { background: linear-gradient(135deg, #facc15, #f59e0b); }
.pcard-v4 { background: linear-gradient(135deg, #0f0f0f, #333); }
.pcard-info { padding: 16px 18px; }
.pill-tag { display: inline-block; background: var(--pink-light); color: var(--pink-dark); font-size: 12px; font-weight: 600; padding: 4px 12px; border-radius: 999px; margin-bottom: 6px; }
.pcard-info p { font-size: 14px; font-weight: 500; }

/* Mockup flyer */
.mock-flyer { background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.3); border-radius: 10px; padding: 16px 24px; text-align: center; color: #fff; width: 130px; }
.mf-sub { display: block; font-size: 11px; font-weight: 700; letter-spacing: 2px; opacity: .7; margin-bottom: 8px; }
.mf-big { display: block; font-family: 'Syne', sans-serif; font-size: 36px; font-weight: 800; line-height: 1; }
.mf-text { display: block; font-size: 11px; opacity: .8; margin-top: 4px; }

/* Mockup CV */
.mock-cv { background: rgba(255,255,255,.95); border-radius: 8px; padding: 16px 20px; width: 130px; }
.mcv-name { font-size: 13px; font-weight: 700; color: var(--dark); }
.mcv-title { font-size: 10px; color: var(--muted); margin-bottom: 12px; }
.mcv-line { height: 6px; background: #e5e5e5; border-radius: 3px; margin-bottom: 6px; }
.mcv-short { width: 60%; }

/* Mockup social */
.mock-social { background: rgba(255,255,255,.95); border-radius: 10px; overflow: hidden; width: 130px; }
.ms-header { display: flex; align-items: center; gap: 8px; padding: 10px 12px 8px; font-size: 11px; font-weight: 600; color: var(--dark); }
.ms-avatar { width: 22px; height: 22px; border-radius: 50%; background: var(--pink); }
.ms-img { width: 100%; height: 60px; background: linear-gradient(135deg, #f59e0b, #facc15); }
.ms-caption { font-size: 10px; padding: 8px 12px; color: var(--dark); font-weight: 500; }

/* Mockup carte */
.mock-carte { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); border-radius: 10px; padding: 16px 20px; width: 150px; color: #fff; }
.mc-logo { font-family: 'Syne', sans-serif; font-size: 22px; font-weight: 800; color: var(--yellow); margin-bottom: 10px; }
.mc-name { font-size: 13px; font-weight: 600; margin-bottom: 2px; }
.mc-job { font-size: 10px; opacity: .6; margin-bottom: 10px; }
.mc-tel { font-size: 10px; opacity: .8; }

/* ---- AUDIENCE ---- */
.audience-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.acard { background: #fff; border: 1px solid var(--border); border-radius: var(--r-sm); padding: 32px 24px; text-align: center; transition: transform .2s, box-shadow .2s; }
.acard:hover { transform: translateY(-4px); box-shadow: 0 10px 30px rgba(0,0,0,.08); }
.acard-icon { font-size: 36px; display: block; margin-bottom: 14px; }
.acard strong { display: block; font-size: 17px; font-weight: 600; margin-bottom: 8px; }
.acard p { font-size: 14px; color: var(--muted); line-height: 1.5; }

/* ---- STEPS ---- */
.steps { display: flex; flex-direction: column; max-width: 700px; }
.step { display: flex; gap: 28px; align-items: flex-start; }
.step-num {
    flex-shrink: 0;
    width: 52px; height: 52px;
    border-radius: 50%;
    background: var(--pink);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Syne', sans-serif;
    font-size: 20px; font-weight: 800;
    margin-top: 4px;
    box-shadow: 0 4px 16px rgba(225,63,150,.3);
}
.step-body h3 { font-size: 22px; font-weight: 700; margin-bottom: 8px; }
.step-body p { font-size: 16px; color: var(--muted); }
.step-line { width: 2px; height: 40px; background: linear-gradient(to bottom, var(--pink), var(--border)); margin-left: 25px; border-radius: 2px; }

/* ---- TARIFS ---- */
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; align-items: start; }
.pricingcard { background: #fff; border: 1.5px solid var(--border); border-radius: var(--r); padding: 36px 32px; position: relative; transition: transform .2s, box-shadow .2s; }
.pricingcard:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,.08); }
.pricingcard-featured { border-color: var(--pink); box-shadow: 0 8px 32px rgba(225,63,150,.15); }
.featured-badge {
    position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
    background: var(--pink); color: #fff;
    font-size: 12px; font-weight: 700;
    padding: 5px 16px; border-radius: 999px;
    white-space: nowrap;
}
.pricingcard-top span { font-size: 32px; display: block; margin-bottom: 12px; }
.pricingcard-top h3 { font-size: 22px; font-weight: 800; margin-bottom: 4px; color: var(--dark); }
.pricingcard-top p { font-size: 14px; color: var(--muted); margin-bottom: 16px; }
.pricingcard-price {
    padding: 14px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin-bottom: 24px;
    font-size: 15px;
    color: var(--muted);
}
.pricingcard-price strong {
    font-family: 'Syne', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -1px;
}
.price-list { margin-bottom: 28px; }
.price-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 9px 0;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
    color: var(--muted);
}
.price-list li:last-child { border-bottom: none; }
.price-list b { color: var(--dark); font-weight: 600; flex-shrink: 0; }

/* ---- TÉMOIGNAGES ---- */
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.tcard { background: #fff; border: 1px solid var(--border); border-radius: var(--r-sm); padding: 32px 28px; display: flex; flex-direction: column; gap: 16px; transition: transform .2s, box-shadow .2s; }
.tcard:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,.08); }
.tcard-stars { color: #f59e0b; font-size: 18px; letter-spacing: 2px; }
.tcard > p { font-size: 15px; color: var(--text); line-height: 1.65; flex: 1; font-style: italic; }
.tcard-author { display: flex; align-items: center; gap: 14px; padding-top: 16px; border-top: 1px solid var(--border); }
.tcard-av { width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Syne', sans-serif; font-size: 18px; font-weight: 800; color: #fff; flex-shrink: 0; }
.tav-1 { background: linear-gradient(135deg, var(--pink), var(--pink-dark)); }
.tav-2 { background: linear-gradient(135deg, #667eea, #764ba2); }
.tav-3 { background: linear-gradient(135deg, #f59e0b, #e35d6a); }
.tcard-author strong { display: block; font-size: 15px; font-weight: 600; }
.tcard-author span { font-size: 13px; color: var(--muted); }

/* ---- WHY ---- */
.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.why-item { background: var(--off); border: 1px solid var(--border); border-radius: var(--r-sm); padding: 28px; display: flex; gap: 18px; align-items: flex-start; transition: transform .2s, background .2s; }
.why-item:hover { transform: translateY(-3px); background: #fff; }
.why-item > span { font-size: 26px; flex-shrink: 0; background: #fff; width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; border: 1px solid var(--border); }
.why-item strong { display: block; font-size: 16px; font-weight: 600; margin-bottom: 6px; color: var(--dark); }
.why-item p { font-size: 14px; color: var(--muted); line-height: 1.55; }

/* ---- CONTACT ---- */
.contact-section { background: var(--dark2); color: #fff; padding: 100px 32px; }
.contact-section h2 { font-size: clamp(40px, 5vw, 60px); font-weight: 800; letter-spacing: -2px; color: #fff; margin: 14px 0 16px; }
.contact-sub { font-size: 18px; color: rgba(255,255,255,.5); margin-bottom: 48px; }
.contact-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: 40px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 14px; }
.contact-card { display: flex; align-items: center; gap: 14px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: var(--r-sm); padding: 18px 22px; transition: background .2s, transform .2s; }
.contact-card:hover { background: rgba(255,255,255,.11); transform: translateX(4px); }
.contact-card > span { font-size: 28px; }
.contact-card div { display: flex; flex-direction: column; }
.contact-card strong { font-size: 12px; font-weight: 600; color: rgba(255,255,255,.45); letter-spacing: .5px; text-transform: uppercase; margin-bottom: 3px; }
.contact-card em { font-style: normal; font-size: 15px; color: #fff; font-weight: 500; }

.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label { font-size: 13px; font-weight: 600; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: .5px; }
.form-field input,
.form-field select,
.form-field textarea {
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 12px;
    padding: 14px 18px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #fff;
    outline: none;
    transition: border-color .2s, background .2s;
    appearance: none;
    -webkit-appearance: none;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: rgba(255,255,255,.3); }
.form-field select option { background: var(--dark2); color: #fff; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--pink); background: rgba(255,255,255,.1); }
.form-field textarea { resize: vertical; min-height: 120px; }

/* ---- FOOTER ---- */
.footer { background: var(--dark); padding: 28px 32px; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; }
.footer .logo { color: #fff; }
.footer p { font-size: 13px; color: rgba(255,255,255,.4); }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,.4); transition: color .2s; }
.footer-links a:hover { color: rgba(255,255,255,.8); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .portfolio-grid { grid-template-columns: repeat(2,1fr); }
    .testi-grid    { grid-template-columns: repeat(2,1fr); }
    .why-grid      { grid-template-columns: repeat(2,1fr); }
    .pricing-grid  { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 900px) {
    .nav-links  { display: none; }
    .nav-cta    { display: none; }
    .burger     { display: flex; }

    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }
    .hero-text > p { max-width: 100%; }
    .hero-btns { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-visual { display: none; }

    .services-grid { grid-template-columns: 1fr; }
    .audience-grid { grid-template-columns: repeat(2,1fr); }
    .contact-layout { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
    .portfolio-grid { grid-template-columns: repeat(2,1fr); }
    .testi-grid     { grid-template-columns: 1fr; }
    .pricing-grid   { grid-template-columns: 1fr; }
    .why-grid       { grid-template-columns: 1fr; }
    .form-row       { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
    .section  { padding: 70px 20px; }
    .hero     { padding: 60px 20px 80px; }
    .nav-inner { padding: 14px 20px; }
    .audience-grid { grid-template-columns: 1fr; }
    .portfolio-grid { grid-template-columns: 1fr; }
    .footer-inner { flex-direction: column; text-align: center; }
    .footer-links { justify-content: center; }
    .contact-section { padding: 70px 20px; }
    .hero-stats { gap: 20px; }
}
