/*
Theme Name: Previta Saúde
Theme URI: https://previtasaude.com.br
Author: Previta Saúde
Author URI: https://previtasaude.com.br
Description: Tema institucional para Previta Saúde – Prontuário Eletrônico e Telemedicina
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: previta-saude
Tags: health, medical, telemedicine, one-page, responsive
*/

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #1C1917;
    background: #FFFBF6;
    overflow-x: hidden;
    font-size: 16px;
    line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; }
ul { list-style: none; }

/* === CSS VARIABLES === */
:root {
    --red:       #E8391A;
    --orange:    #F5820A;
    --amber:     #F5A52A;
    --red-soft:  #FFF0EB;
    --ora-soft:  #FFF6EC;
    --warm:      #FFFBF6;
    --cream:     #FEF9F4;
    --white:     #FFFFFF;
    --gray:      #6B7280;
    --gray-mid:  #9CA3AF;
    --dark:      #1C1917;
    --border:    #F0E8DF;
    --grad:      linear-gradient(135deg, #E8391A 0%, #F5820A 60%, #F5A52A 100%);
    --shadow-warm: 0 8px 32px rgba(232,57,26,0.12);
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5 { font-weight: 800; line-height: 1.18; color: var(--dark); }
h1 { font-size: clamp(2.3rem, 4.5vw, 3.7rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); }
h3 { font-size: 1.05rem; }
p { color: var(--gray); line-height: 1.75; }

/* === LAYOUT === */
.container { max-width: 1200px; margin: 0 auto; padding: 0 5%; }
section { padding: 6rem 5%; }
.section-tag {
    display: inline-block; color: var(--orange);
    font-size: .78rem; font-weight: 700;
    letter-spacing: .08em; text-transform: uppercase; margin-bottom: .8rem;
}
.section-lead { font-size: 1rem; color: var(--gray); line-height: 1.75; max-width: 560px; }

/* === BUTTONS === */
.btn-primary {
    display: inline-block;
    background: var(--grad); color: white;
    padding: .95rem 2rem; border-radius: 50px;
    font-weight: 700; font-size: 1rem;
    box-shadow: var(--shadow-warm);
    transition: all .2s; border: none; cursor: pointer;
    font-family: inherit;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(232,57,26,0.25); color: white; }

.btn-outline {
    display: inline-block;
    background: white; color: var(--dark);
    padding: .95rem 2rem; border-radius: 50px;
    font-weight: 600; font-size: 1rem;
    border: 1.5px solid var(--border);
    transition: all .2s;
}
.btn-outline:hover { border-color: var(--orange); color: var(--orange); }

/* === NAVIGATION === */
#site-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    display: flex; align-items: center; justify-content: space-between;
    padding: 1rem 5%;
    background: rgba(255,251,246,0.94);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow .3s;
}
#site-header.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,.06); }
.site-logo img { height: 42px; width: auto; }
.site-logo a { display: flex; align-items: center; }

#primary-menu { display: flex; align-items: center; gap: 2rem; }
#primary-menu li a {
    color: #4B4540; font-size: .88rem; font-weight: 600; transition: color .2s;
}
#primary-menu li a:hover { color: var(--orange); }
#primary-menu .menu-cta a {
    background: var(--grad); color: white;
    padding: .6rem 1.5rem; border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 4px 16px rgba(232,57,26,0.3);
}
#primary-menu .menu-cta a:hover { transform: translateY(-1px); box-shadow: 0 6px 22px rgba(232,57,26,0.4); }

.menu-toggle {
    display: none; background: none; border: none; cursor: pointer;
    flex-direction: column; gap: 5px; padding: 4px;
}
.menu-toggle span { display: block; width: 24px; height: 2px; background: var(--dark); transition: all .3s; border-radius: 2px; }

/* === HERO === */
#hero {
    min-height: 100vh;
    background: var(--cream);
    display: flex; align-items: center;
    padding: 8rem 5% 5rem;
    position: relative; overflow: hidden;
}
#hero::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
        radial-gradient(circle at 70% 30%, rgba(245,130,10,0.08) 0%, transparent 50%),
        radial-gradient(circle at 20% 70%, rgba(232,57,26,0.06) 0%, transparent 45%);
    pointer-events: none;
}
.deco-ring {
    position: absolute; border-radius: 50%;
    border: 1.5px solid rgba(245,130,10,0.15);
    pointer-events: none;
}
.deco-ring-1 { width: 600px; height: 600px; top: -150px; right: -100px; }
.deco-ring-2 { width: 400px; height: 400px; top: -50px; right: 50px; }
.deco-ring-3 { width: 200px; height: 200px; top: 50px; right: 200px; }

.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; width: 100%; position: relative; z-index: 1; }
.hero-content { animation: fadeUp .8s ease both; }

.hero-badge {
    display: inline-flex; align-items: center; gap: .5rem;
    background: var(--red-soft); border: 1px solid rgba(232,57,26,0.2);
    color: var(--red); padding: .45rem 1.1rem; border-radius: 50px;
    font-size: .78rem; font-weight: 700; letter-spacing: .05em;
    text-transform: uppercase; margin-bottom: 1.8rem;
}
.hero-badge::before {
    content: ''; width: 7px; height: 7px;
    background: var(--red); border-radius: 50%;
    animation: blink 2s infinite;
}
.hero-title { color: var(--dark); margin-bottom: 1.5rem; }
.grad-text {
    background: var(--grad);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-sub { font-size: 1.05rem; color: #6B6560; line-height: 1.78; max-width: 490px; margin-bottom: 2.5rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-stats {
    display: flex; gap: 3rem; margin-top: 4rem;
    padding-top: 2.5rem; border-top: 1px solid var(--border);
    animation: fadeUp .8s .2s ease both;
}
.stat-num {
    font-size: 2rem; font-weight: 800;
    background: var(--grad); -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; background-clip: text;
}
.stat-label { font-size: .78rem; color: var(--gray-mid); text-transform: uppercase; letter-spacing: .05em; margin-top: .2rem; }

/* hero card mockup */
.hero-visual { animation: fadeUp .8s .15s ease both; }
.hero-card {
    background: white; border: 1px solid var(--border);
    border-radius: 20px; padding: 1.8rem;
    box-shadow: 0 16px 48px rgba(232,57,26,0.08); margin-bottom: 1rem;
}
.hero-card-header { display: flex; align-items: center; gap: .8rem; margin-bottom: 1.4rem; }
.avatar {
    width: 42px; height: 42px; border-radius: 50%;
    background: var(--grad);
    display: flex; align-items: center; justify-content: center;
    color: white; font-weight: 700; font-size: .85rem; flex-shrink: 0;
}
.patient-name { color: var(--dark); font-weight: 700; font-size: .95rem; }
.patient-info { color: var(--gray-mid); font-size: .75rem; }
.card-tag {
    display: inline-block; background: #F0FDF4;
    color: #16A34A; padding: .2rem .7rem;
    border-radius: 50px; font-size: .7rem; font-weight: 700; margin-left: auto;
    border: 1px solid #BBF7D0;
}
.card-row { display: flex; justify-content: space-between; margin-bottom: .85rem; align-items: center; }
.card-label { color: var(--gray-mid); font-size: .8rem; }
.card-value { color: var(--dark); font-size: .85rem; font-weight: 600; }
.mini-card {
    background: var(--red-soft); border: 1px solid rgba(232,57,26,0.15);
    border-radius: 14px; padding: 1rem 1.3rem;
    display: flex; align-items: center; gap: .9rem;
}
.mini-icon {
    width: 36px; height: 36px; background: var(--grad);
    border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.mini-icon svg { width: 18px; height: 18px; fill: white; }
.mini-text { color: var(--dark); font-size: .85rem; font-weight: 600; }
.mini-sub { color: var(--gray); font-size: .75rem; }

/* === FEATURES === */
#funcionalidades { background: white; }
.features-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.4rem; margin-top: 3rem;
}
.feature-card {
    background: var(--warm); border: 1px solid var(--border);
    border-radius: 18px; padding: 2rem; transition: all .25s;
}
.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(232,57,26,0.1);
    border-color: rgba(245,130,10,0.3); background: white;
}
.feature-icon {
    width: 54px; height: 54px; border-radius: 16px;
    background: var(--red-soft); border: 1px solid rgba(232,57,26,0.12);
    display: flex; align-items: center; justify-content: center; margin-bottom: 1.3rem;
}
.feature-icon svg { width: 26px; height: 26px; fill: var(--orange); }
.feature-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: .6rem; color: var(--dark); }
.feature-card p { color: var(--gray); font-size: .9rem; line-height: 1.65; }

/* === HOW IT WORKS === */
#como-funciona { background: var(--cream); }
.steps-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; margin-top: 3rem; }
.steps { display: flex; flex-direction: column; gap: 0; }
.step { display: flex; gap: 1.4rem; padding-bottom: 2.2rem; position: relative; }
.step:not(:last-child)::after {
    content: ''; position: absolute; left: 21px; top: 50px; bottom: 0;
    width: 2px; background: linear-gradient(to bottom, rgba(245,130,10,0.4), transparent);
}
.step-num {
    width: 44px; height: 44px; flex-shrink: 0; border-radius: 50%;
    background: var(--grad); display: flex; align-items: center; justify-content: center;
    color: white; font-weight: 800; font-size: .95rem;
    box-shadow: 0 4px 16px rgba(232,57,26,0.25);
}
.step-content h3 { font-size: 1rem; font-weight: 700; margin-bottom: .35rem; color: var(--dark); }
.step-content p { color: var(--gray); font-size: .88rem; line-height: 1.65; }

.steps-dashboard {
    background: white; border: 1px solid var(--border);
    border-radius: 24px; padding: 2rem;
    box-shadow: 0 12px 40px rgba(232,57,26,0.06);
}
.dash-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; }
.dash-title { font-weight: 700; font-size: .95rem; color: var(--dark); }
.dash-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--grad); box-shadow: 0 0 0 3px rgba(245,130,10,0.2); }
.metric-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.metric-box { background: var(--warm); border-radius: 14px; padding: 1rem 1.2rem; border: 1px solid var(--border); }
.metric-val {
    font-size: 1.6rem; font-weight: 800;
    background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.metric-lbl { font-size: .75rem; color: var(--gray-mid); margin-top: .15rem; }
.bar-wrap { margin-top: 1rem; }
.bar-label { display: flex; justify-content: space-between; font-size: .78rem; color: var(--gray); margin-bottom: .4rem; }
.bar-bg { background: var(--border); border-radius: 50px; height: 8px; overflow: hidden; }
.bar-fill { height: 100%; border-radius: 50px; background: var(--grad); }

/* === TELEMEDICINA === */
#telemedicina { background: linear-gradient(160deg, #FFF5EE 0%, #FEF0E8 50%, #FDF6F0 100%); }
.tele-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; margin-top: 3rem; }
.tele-list { display: flex; flex-direction: column; gap: 1.1rem; margin-top: 2rem; }
.tele-list li { display: flex; align-items: flex-start; gap: 1rem; color: #4B4540; font-size: .93rem; line-height: 1.55; }
.check {
    width: 24px; height: 24px; flex-shrink: 0; border-radius: 8px;
    background: var(--red-soft); border: 1px solid rgba(232,57,26,0.2);
    display: flex; align-items: center; justify-content: center; margin-top: 1px;
}
.check svg { width: 13px; height: 13px; stroke: var(--orange); fill: none; stroke-width: 2.5; }
.tele-visual {
    background: white; border: 1px solid var(--border);
    border-radius: 24px; padding: 2rem;
    box-shadow: 0 16px 48px rgba(232,57,26,0.08);
}
.video-mock {
    background: linear-gradient(135deg, #FFF0EB, #FEF6EC);
    border: 1px solid rgba(245,130,10,0.2);
    border-radius: 16px; min-height: 175px;
    display: flex; align-items: center; justify-content: center; margin-bottom: 1rem;
}
.video-label { color: var(--gray); font-size: .85rem; display: flex; align-items: center; gap: .5rem; }
.rec-dot { width: 8px; height: 8px; background: #ef4444; border-radius: 50%; animation: blink 1.5s infinite; }
.tele-controls { display: flex; gap: .8rem; justify-content: center; }
.ctrl-btn {
    width: 42px; height: 42px; background: var(--warm); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    border: 1.5px solid var(--border); transition: all .2s; cursor: pointer;
}
.ctrl-btn:hover { border-color: var(--orange); }
.ctrl-btn svg { width: 16px; height: 16px; fill: var(--gray); }
.ctrl-btn.end { background: #FEE2E2; border-color: #FECACA; width: 52px; height: 52px; }
.ctrl-btn.end svg { fill: #DC2626; width: 18px; height: 18px; }

/* === SEGURANÇA === */
#seguranca { background: white; }
.lgpd-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.2rem; margin-top: 2.5rem; }
.lgpd-card {
    background: var(--warm); border: 1px solid var(--border);
    border-radius: 16px; padding: 1.7rem; text-align: center; transition: all .2s;
}
.lgpd-card:hover { box-shadow: 0 8px 28px rgba(232,57,26,0.08); border-color: rgba(245,130,10,0.25); transform: translateY(-2px); }
.lgpd-icon { font-size: 2rem; margin-bottom: .8rem; }
.lgpd-card h4 { font-size: .95rem; font-weight: 700; margin-bottom: .4rem; color: var(--dark); }
.lgpd-card p { color: var(--gray); font-size: .82rem; line-height: 1.55; }

/* === PLANOS === */
#planos { background: var(--cream); }
.plans-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.plan-card {
    background: white; border: 1.5px solid var(--border);
    border-radius: 22px; padding: 2.2rem; transition: all .25s;
}
.plan-card.featured {
    background: linear-gradient(160deg, #FFF5EE, #FFFBF7);
    border-color: rgba(245,130,10,0.4);
    transform: scale(1.03);
    box-shadow: 0 16px 48px rgba(232,57,26,0.12);
}
.plan-card:not(.featured):hover { box-shadow: 0 12px 36px rgba(0,0,0,.08); transform: translateY(-2px); }
.plan-badge {
    display: inline-block; background: var(--grad); color: white;
    padding: .28rem .9rem; border-radius: 50px;
    font-size: .72rem; font-weight: 700; text-transform: uppercase; margin-bottom: 1rem;
}
.plan-name { font-size: .95rem; font-weight: 600; color: var(--gray-mid); margin-bottom: .4rem; }
.plan-price { font-size: 2.6rem; font-weight: 800; color: var(--dark); line-height: 1; margin-bottom: .3rem; }
.plan-price sup { font-size: 1.2rem; }
.plan-price sub { font-size: 1rem; color: var(--gray-mid); font-weight: 400; }
.plan-divider { border: none; border-top: 1px solid var(--border); margin: 1.5rem 0; }
.plan-features { display: flex; flex-direction: column; gap: .75rem; margin-bottom: 2rem; }
.plan-features li { display: flex; align-items: center; gap: .7rem; font-size: .88rem; color: #4B4540; }
.plan-check { color: var(--orange); font-weight: 800; font-size: 1rem; }
.btn-plan { display: block; text-align: center; padding: .9rem; border-radius: 50px; font-weight: 700; font-size: .95rem; transition: all .2s; cursor: pointer; font-family: inherit; border: none; }
.btn-plan-outline { border: 1.5px solid var(--border); color: var(--dark); background: transparent; }
.btn-plan-outline:hover { border-color: var(--orange); color: var(--orange); }
.btn-plan-solid { background: var(--grad); color: white; box-shadow: 0 4px 20px rgba(232,57,26,0.25); }
.btn-plan-solid:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(232,57,26,0.35); }

/* === DEPOIMENTOS === */
#depoimentos { background: white; }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.testimonial-card { background: var(--warm); border: 1px solid var(--border); border-radius: 18px; padding: 1.8rem; transition: all .2s; }
.testimonial-card:hover { box-shadow: 0 8px 28px rgba(232,57,26,0.08); }
.stars { font-size: 1rem; color: var(--amber); margin-bottom: 1rem; }
.testimonial-text { color: var(--gray); font-size: .92rem; line-height: 1.75; margin-bottom: 1.5rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: .8rem; }
.author-avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--grad); display: flex; align-items: center; justify-content: center; font-weight: 700; color: white; font-size: .82rem; flex-shrink: 0; }
.author-name { font-weight: 700; font-size: .9rem; color: var(--dark); }
.author-role { color: var(--gray-mid); font-size: .8rem; }

/* === CONTATO === */
#contato { background: linear-gradient(160deg, #FFF8F3 0%, #FEF3EB 100%); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 5rem; margin-top: 3.5rem; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-item { display: flex; align-items: flex-start; gap: 1rem; }
.contact-icon {
    width: 46px; height: 46px; flex-shrink: 0; border-radius: 14px;
    background: var(--red-soft); border: 1px solid rgba(232,57,26,0.15);
    display: flex; align-items: center; justify-content: center;
}
.contact-icon svg { width: 20px; height: 20px; fill: var(--orange); }
.contact-item-label { color: var(--gray-mid); font-size: .78rem; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; }
.contact-item-value { color: var(--dark); font-size: .95rem; font-weight: 600; margin-top: .15rem; }
.contact-hours { margin-top: .5rem; padding: 1.5rem; background: white; border-radius: 16px; border: 1px solid var(--border); }
.contact-hours strong { font-size: .85rem; font-weight: 700; display: block; margin-bottom: .5rem; color: var(--dark); }
.contact-hours p { font-size: .83rem; color: var(--gray); line-height: 1.8; }

.contact-form-box {
    background: white; border: 1px solid var(--border);
    border-radius: 24px; padding: 2.5rem;
    box-shadow: 0 12px 40px rgba(232,57,26,0.06);
}
.form-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 1.5rem; color: var(--dark); }
.contact-form { display: flex; flex-direction: column; gap: 0; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1rem; }
.form-group label { color: #6B6560; font-size: .82rem; font-weight: 600; }
.form-group input,
.form-group select,
.form-group textarea {
    background: var(--warm); border: 1.5px solid var(--border);
    border-radius: 10px; padding: .85rem 1rem; color: var(--dark);
    font-family: 'Plus Jakarta Sans', sans-serif; font-size: .9rem;
    outline: none; transition: border .2s; width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-mid); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--orange); background: white; }
.form-group textarea { resize: vertical; min-height: 110px; }
.btn-submit {
    width: 100%; background: var(--grad); color: white; border: none;
    padding: 1rem; border-radius: 50px; font-weight: 700; font-size: 1rem;
    cursor: pointer; transition: all .2s; font-family: inherit;
    box-shadow: 0 4px 20px rgba(232,57,26,0.25);
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(232,57,26,0.35); }

/* form success/error messages */
.form-message { padding: 1rem; border-radius: 10px; font-size: .9rem; font-weight: 600; margin-top: 1rem; display: none; }
.form-message.success { background: #F0FDF4; color: #16A34A; border: 1px solid #BBF7D0; }
.form-message.error   { background: #FEF2F2; color: #DC2626; border: 1px solid #FECACA; }

/* === FOOTER === */
#site-footer {
    background: #1C1410;
    color: rgba(255,255,255,0.45);
    padding: 3.5rem 5% 2rem;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-logo { height: 36px; margin-bottom: 1rem; }
.footer-brand p { font-size: .87rem; line-height: 1.65; }
.footer-col h5 { color: rgba(255,255,255,0.85); font-size: .82rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 1rem; }
.footer-links { display: flex; flex-direction: column; gap: .6rem; }
.footer-links a { color: rgba(255,255,255,0.4); font-size: .85rem; transition: color .2s; }
.footer-links a:hover { color: var(--amber); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; font-size: .8rem; flex-wrap: wrap; gap: 1rem; }
.cfm-badge {
    display: inline-flex; align-items: center; gap: .5rem;
    background: rgba(245,130,10,0.12); border: 1px solid rgba(245,130,10,0.25);
    color: var(--amber); padding: .35rem .9rem; border-radius: 50px; font-size: .75rem; font-weight: 700;
}

/* === ANIMATIONS === */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes blink  { 0%, 100% { opacity: 1; } 50% { opacity: .3; } }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .hero-inner    { grid-template-columns: 1fr; }
    .hero-visual   { display: none; }
    .tele-grid     { grid-template-columns: 1fr; gap: 2.5rem; }
    .steps-wrap    { grid-template-columns: 1fr; gap: 2.5rem; }
    .contact-grid  { grid-template-columns: 1fr; gap: 2.5rem; }
    .footer-grid   { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .plan-card.featured { transform: none; }
}
@media (max-width: 768px) {
    section { padding: 4rem 4%; }
    #primary-menu { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: rgba(255,251,246,0.98); padding: 1.5rem 5%; gap: 1rem; border-bottom: 1px solid var(--border); }
    #primary-menu.active { display: flex; }
    .menu-toggle { display: flex; }
    .form-row { grid-template-columns: 1fr; }
    .hero-stats { gap: 1.5rem; }
}
@media (max-width: 480px) {
    .footer-grid { grid-template-columns: 1fr; }
    .hero-actions { flex-direction: column; }
    .hero-actions a { text-align: center; }
}

/* === WORDPRESS DEFAULTS === */
.wp-caption { max-width: 100%; }
.alignnone { margin: 0; }
.aligncenter { display: block; margin: 1rem auto; }
.alignleft { float: left; margin: 0 1.5rem 1rem 0; }
.alignright { float: right; margin: 0 0 1rem 1.5rem; }
.screen-reader-text { clip: rect(1px,1px,1px,1px); position: absolute; }
