/* Prova de Equivalencia - DEMO skin alinhada com perguntasdaespecialidade.pt */

/* Variables (mesmos nomes do style.css original p/ compat com SVGs inline) */
:root {
    --primary-blue: #0065AE;
    --primary-dark: #005a9c;
    --gradient-end: #003c66;
    --accent: #5ec4ff;
    --text-dark: #1a1a2e;
    --text-gray: #555;
    --text-light: #6b7280;
    --bg-light: #f7f8fc;
    --bg-card: #ffffff;
    --border: #eeeeee;
    --success-green: #10b981;
    --warning-orange: #f59e0b;
    --radius: 14px;
    --shadow-sm: 0 2px 4px rgba(136,144,195,.2), 0 5px 15px rgba(37,44,97,.1);
    --shadow-md: 0 5px 15px rgba(37,44,97,.12), 0 2px 8px rgba(136,144,195,.15);
    --shadow-hover: 0 8px 30px rgba(37,44,97,.15), 0 2px 8px rgba(136,144,195,.2);
}

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Poppins', Helvetica, Arial, sans-serif;
    color: var(--text-dark);
    background: #fff;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; }

/* Container */
.container { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }

/* ======= NAVBAR ======= */
.navbar {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 1000;
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 15px 2rem;
    transition: all 0.3s ease;
}
.nav-container {
    max-width: 1100px; margin: 0 auto; padding: 0;
    display: flex; align-items: center; justify-content: space-between;
}
.nav-logo a { display: flex; align-items: center; gap: 0.6rem; }
.nav-logo-img { height: 40px; width: auto; display: block; }
.nav-logo-text { font-size: 1.4rem; font-weight: 800; color: var(--primary-dark); letter-spacing: -0.02em; }
.nav-links { display: flex; align-items: center; gap: 2rem; flex-shrink: 0; }
.nav-links a {
    color: var(--text-dark); font-size: 0.9rem; font-weight: 500;
    transition: color 0.2s ease;
}
.nav-links a:hover { color: var(--primary-blue); }
.nav-links-login {
    padding: 0.5rem 1.5rem; border: 2px solid var(--primary-blue);
    border-radius: 50px; color: var(--primary-blue) !important;
    font-weight: 600 !important; transition: all 0.2s ease !important;
}
.nav-links-login:hover { background: var(--primary-blue); color: #fff !important; }
.nav-cta {
    padding: 0.5rem 1.5rem !important;
    background: var(--primary-blue);
    color: #fff !important; border-radius: 50px; font-weight: 600 !important;
    box-shadow: var(--shadow-sm);
    transition: all 0.2s ease !important;
}
.nav-cta:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: var(--shadow-hover); }
.mobile-menu-btn {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 5px;
}
.mobile-menu-btn span {
    display: block; width: 25px; height: 2px;
    background: var(--text-dark); border-radius: 2px;
    transition: all 0.3s ease;
}

/* ======= BUTTONS ======= */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    gap: 8px; padding: 0.85rem 2rem; border-radius: 50px;
    font-weight: 600; font-size: 1rem; border: none;
    cursor: pointer; transition: all 0.2s ease; text-decoration: none;
}
.btn-primary {
    background: var(--primary-blue); color: #fff; box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: var(--shadow-hover); }
.btn-white {
    background: #fff; color: var(--primary-blue); font-weight: 700;
    box-shadow: 0 4px 16px rgba(0,0,0,.15);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.22); }
.btn-outline {
    background: transparent; color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.5);
}
.btn-outline:hover { background: rgba(255, 255, 255, 0.12); border-color: #fff; }
.btn-outline-blue {
    background: transparent; color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}
.btn-outline-blue:hover { background: rgba(0, 101, 174, 0.08); transform: translateY(-2px); }

/* ======= HERO ======= */
.hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--gradient-end) 100%);
    position: relative; display: flex; align-items: center;
    padding: 140px 2rem 4.5rem; overflow: hidden;
}
.hero-container {
    max-width: 1200px; margin: 0 auto; width: 100%;
    display: grid; grid-template-columns: 1fr 1.1fr;
    gap: 3rem; align-items: center;
    position: relative; z-index: 1;
}
.hero-content { color: #fff; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255, 255, 255, 0.18);
    padding: 0.35rem 1rem; border-radius: 50px;
    font-size: 0.78rem; font-weight: 600; color: #fff;
    letter-spacing: 0.8px;
    margin-bottom: 1.25rem; backdrop-filter: blur(8px);
}
.hero-badge svg { color: var(--accent); }
.hero-content h1 {
    font-size: 3rem; font-weight: 800; line-height: 1.1;
    color: #fff; margin-bottom: 1.25rem;
}
.hero-content h1 span { color: var(--accent); }
.hero-subtitle {
    color: rgba(255, 255, 255, 0.92); font-size: 1.15rem;
    margin-bottom: 2rem; max-width: 520px; line-height: 1.6;
}
.hero-stats {
    display: flex; gap: 2.5rem; margin-bottom: 2rem;
}
.hero-stat { text-align: left; }
.hero-stat-number {
    display: block; font-size: 2rem; font-weight: 800; color: #fff;
}
.hero-stat-label {
    font-size: 0.85rem; color: rgba(255, 255, 255, 0.75); font-weight: 500;
}
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-dgert {
    display: flex; align-items: center; gap: 16px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 14px; padding: 14px 18px; margin-top: 1.75rem;
}
.hero-dgert-img { width: 48px; height: 48px; object-fit: contain; flex-shrink: 0; }
.hero-dgert-text { display: flex; flex-direction: column; gap: 2px; }
.hero-dgert-text strong { font-size: 0.9rem; font-weight: 600; color: #fff; }
.hero-dgert-text span { font-size: 0.8rem; color: rgba(255, 255, 255, 0.85); line-height: 1.4; }
.hero-image { position: relative; }
.hero-image > img {
    width: 100%; border-radius: 12px;
    box-shadow: 0 30px 60px rgba(0,0,0,.4), 0 12px 24px rgba(0,0,0,.25);
    display: block;
}
.hero-image-badge {
    position: absolute; bottom: -20px; left: -20px;
    background: #fff; border-radius: 14px;
    padding: 16px 20px; display: flex; align-items: center; gap: 12px;
    box-shadow: var(--shadow-hover);
    animation: float 3s ease-in-out infinite;
}
.hero-image-badge-text strong {
    display: block; font-size: 0.85rem; color: var(--text-dark);
}
.hero-image-badge-text span {
    font-size: 0.8rem; color: var(--success-green); font-weight: 600;
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ======= SECTIONS COMMON ======= */
.section { padding: 5rem 0; }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header h2 { font-size: 2.2rem; font-weight: 800; margin-bottom: 12px; color: var(--text-dark); }
.section-header p { color: var(--text-gray); font-size: 1.05rem; max-width: 600px; margin: 0 auto; }
.section-label {
    display: inline-block; background: #eef5fc;
    color: var(--primary-blue); padding: 6px 16px; border-radius: 50px;
    font-size: 0.78rem; font-weight: 600; letter-spacing: 0.8px;
    text-transform: uppercase; margin-bottom: 12px;
}
.bg-light { background: var(--bg-light); }

/* ======= PLATFORM SHOWCASE ======= */
.showcase-item {
    display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
    align-items: center; margin-bottom: 5rem;
}
.showcase-item:last-child { margin-bottom: 0; }
.showcase-item.reverse { direction: rtl; }
.showcase-item.reverse > * { direction: ltr; }
.showcase-text h3 { font-size: 1.7rem; font-weight: 800; margin-bottom: 12px; color: var(--text-dark); }
.showcase-text p { color: var(--text-gray); font-size: 1.05rem; margin-bottom: 1.5rem; line-height: 1.7; }
.showcase-features { display: flex; flex-direction: column; gap: 14px; }
.showcase-features li {
    display: flex; align-items: flex-start; gap: 12px;
    color: var(--text-dark); font-size: 0.95rem; line-height: 1.5;
}
.showcase-features li::before {
    content: '\2713'; display: flex; align-items: center; justify-content: center;
    width: 24px; height: 24px; border-radius: 50%;
    background: #eef5fc; margin-top: 1px;
    color: var(--primary-blue); font-size: 0.75rem; font-weight: 700; flex-shrink: 0;
}
.showcase-visual { border-radius: var(--radius); overflow: hidden; }
.showcase-img {
    width: 100%; border-radius: var(--radius);
    box-shadow: var(--shadow-md);
}

/* ======= GALLERY ======= */
.gallery-grid {
    display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.25rem;
    margin-top: 2.5rem;
}
.gallery-card {
    position: relative; border-radius: var(--radius); overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 1px 3px rgba(0,0,0,.04);
    cursor: pointer; transition: all 0.25s ease;
}
.gallery-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    border-color: transparent;
}
.gallery-img { width: 100%; height: 200px; object-fit: cover; display: block; }
.gallery-card h4 {
    padding: 14px 16px; font-size: 0.9rem; font-weight: 600;
    text-align: center; background: #fff;
}

/* ======= TEAM ======= */
.team-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 2rem; margin-top: 3.5rem;
}
.team-card {
    text-align: center; padding: 2.5rem 1.75rem;
    background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
    transition: all 0.25s ease;
}
.team-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    border-color: transparent;
}
.team-avatar-img {
    width: 120px; height: 120px; border-radius: 50%; object-fit: cover;
    margin: 0 auto 1.25rem; display: block;
    border: 4px solid #fff; box-shadow: var(--shadow-md);
}
.team-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 4px; }
.team-card .role {
    color: var(--primary-blue); font-weight: 600;
    font-size: 0.95rem; margin-bottom: 12px;
}
.team-card .desc { color: var(--text-gray); font-size: 0.9rem; line-height: 1.6; }

/* ======= PRICING ======= */
.pricing-grid {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem; max-width: 900px; margin: 0 auto;
    align-items: stretch;
}
.pricing-card {
    background: #fff; border-radius: 16px;
    box-shadow: var(--shadow-md);
    overflow: hidden; border: 1px solid var(--border);
    position: relative; transition: all 0.25s ease;
    display: flex; flex-direction: column;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.pricing-card.featured { border-color: var(--primary-blue); box-shadow: 0 10px 40px rgba(0,101,174,.18); }
.pricing-card-badge {
    position: absolute; top: 16px; right: 16px;
    background: var(--accent); color: var(--gradient-end);
    font-size: 0.72rem; font-weight: 700;
    padding: 4px 14px; border-radius: 50px; z-index: 1;
}
.pricing-card-header {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--gradient-end) 100%);
    padding: 2.25rem 1.75rem; text-align: center; color: #fff;
}
.pricing-card-header h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 4px; }
.pricing-desc { color: rgba(255,255,255,0.85); font-size: 0.9rem; margin-bottom: 16px; }
.pricing-amount { display: flex; align-items: flex-start; justify-content: center; }
.pricing-amount .currency { font-size: 1.6rem; font-weight: 700; margin-top: 6px; }
.pricing-amount .value { font-size: 3.2rem; font-weight: 800; line-height: 1; }
.pricing-amount .decimals { font-size: 1.6rem; font-weight: 700; margin-top: 6px; }
.pricing-period { color: rgba(255,255,255,0.85); font-size: 0.85rem; margin-top: 8px; }
.pricing-card-body { padding: 1.75rem; flex: 1; display: flex; flex-direction: column; }
.pricing-card-body .pricing-features-list { flex: 1; }
.pricing-features-list {
    list-style: none; display: flex; flex-direction: column;
    gap: 14px; margin-bottom: 1.75rem;
}
.pricing-features-list li {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: 0.88rem; color: var(--text-dark);
}
.pricing-features-list li svg { flex-shrink: 0; margin-top: 2px; stroke: var(--primary-blue); }
.pricing-features-list li strong { font-weight: 600; }
.pricing-includes {
    display: flex; align-items: center; gap: 10px;
    background: #eef5fc; border: 1px solid #bfdbfe;
    border-radius: 12px; padding: 14px 16px;
    margin-bottom: 1.25rem; font-size: 0.9rem;
    color: var(--primary-blue); font-weight: 500;
}
.pricing-includes svg { flex-shrink: 0; }
.pricing-cta { text-align: center; }
.pricing-cta .btn { width: 100%; justify-content: center; font-size: 1rem; padding: 0.95rem 1.75rem; }
.pricing-guarantee {
    display: flex; align-items: center; justify-content: center;
    gap: 8px; font-size: 0.85rem; color: var(--text-light);
    margin-top: 2.5rem;
}

/* ======= FOOTER (PE-style claro) ======= */
.footer {
    background: #fff; color: var(--text-light);
    border-top: 1px solid var(--border);
    padding: 3rem 1.5rem;
}
.footer-content {
    max-width: 1100px; margin: 0 auto; text-align: center;
}
.footer-contact { margin-bottom: 1.5rem; }
.footer-contact h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 10px; color: var(--text-dark); }
.footer-email {
    color: var(--primary-blue); text-decoration: none;
    font-size: 1rem; transition: color 0.2s; font-weight: 500;
}
.footer-email:hover { color: var(--primary-dark); }
.footer-legal {
    display: flex; gap: 1.5rem; justify-content: center; margin-bottom: 1rem;
}
.footer-legal a {
    color: var(--text-gray); font-size: 0.875rem; text-decoration: none; transition: color 0.2s;
}
.footer-legal a:hover { color: var(--primary-blue); }
.footer-reclamacoes { margin-bottom: 1.25rem; display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.footer-reclamacoes img { height: 48px; width: auto; opacity: 0.9; transition: opacity 0.2s; }
.footer-reclamacoes img:hover { opacity: 1; }
.footer-copy { font-size: 0.8rem; color: #999; }
.footer-copy a { color: #999; text-decoration: underline; transition: color 0.2s; }
.footer-copy a:hover { color: var(--primary-blue); }

/* ======= PRR ======= */
.prr-bar { background: #fff; padding: 2rem 1.5rem 2.25rem; border-top: 1px solid var(--border); }
.prr-text { font-size: 0.85rem; color: #555; max-width: 820px; margin: 0 auto 1.25rem; line-height: 1.55; text-align: center; }
.prr-text a { color: var(--primary-blue); text-decoration: underline; }
.prr-images { display: flex; justify-content: center; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.prr-images img { max-height: 56px; max-width: 100%; height: auto; }
@media (max-width: 640px) {
    .prr-bar { padding: 1.5rem 1rem 1.75rem; }
    .prr-text { font-size: 0.78rem; margin-bottom: 1rem; }
    .prr-images img { max-height: 38px; }
}

/* ======= GALLERY MODAL ======= */
.gallery-modal {
    display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.9); z-index: 2000;
    align-items: center; justify-content: center;
}
.gallery-modal.active { display: flex; }
.gallery-modal-img {
    max-width: 85vw; max-height: 85vh; border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    object-fit: contain;
}
.gallery-modal-close {
    position: absolute; top: 20px; right: 30px;
    background: none; border: none; color: #fff;
    font-size: 2.5rem; cursor: pointer; line-height: 1;
    opacity: 0.7; transition: opacity 0.2s;
}
.gallery-modal-close:hover { opacity: 1; }
.gallery-modal-prev,
.gallery-modal-next {
    position: absolute; top: 50%; transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1); border: none; color: #fff;
    font-size: 3rem; cursor: pointer; padding: 10px 18px;
    border-radius: 12px; line-height: 1;
    opacity: 0.6; transition: all 0.2s;
}
.gallery-modal-prev:hover,
.gallery-modal-next:hover { opacity: 1; background: rgba(255, 255, 255, 0.2); }
.gallery-modal-prev { left: 20px; }
.gallery-modal-next { right: 20px; }

/* ======= STORY ======= */
.story-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem; margin-top: 3rem;
}
.story-card {
    padding: 2rem 1.75rem; background: #fff;
    border: 1px solid var(--border); border-radius: var(--radius);
    transition: all 0.25s ease;
}
.story-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); border-color: transparent; }
.story-icon {
    width: 52px; height: 52px; border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    background: #eef5fc; color: var(--primary-blue); margin-bottom: 1.25rem;
}
.story-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 10px; color: var(--text-dark); }
.story-card p { color: var(--text-gray); font-size: 0.92rem; line-height: 1.6; }
.story-founder {
    display: flex; align-items: center; gap: 2.5rem;
    margin-top: 3rem; padding: 2.5rem;
    background: var(--bg-light); border-radius: var(--radius);
    border: 1px solid var(--border);
}
.story-founder-img {
    width: 140px; height: 140px; border-radius: 50%; object-fit: cover;
    flex-shrink: 0; border: 4px solid #fff; box-shadow: var(--shadow-md);
}
.story-founder-text h3 { font-size: 1.5rem; font-weight: 800; margin: 8px 0 12px; color: var(--text-dark); }
.story-founder-text p { color: var(--text-gray); font-size: 0.98rem; line-height: 1.7; max-width: 640px; }

/* ======= FEATURE GRID ======= */
.feature-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem; margin-top: 3.5rem;
}
.feature-card {
    padding: 1.75rem; background: #fff;
    border: 1px solid var(--border); border-radius: var(--radius);
    transition: all 0.25s ease;
}
.feature-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); border-color: transparent; }
.feature-icon {
    width: 48px; height: 48px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    background: #eef5fc; color: var(--primary-blue); margin-bottom: 1rem;
}
.feature-card h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; color: var(--text-dark); }
.feature-card p { color: var(--text-gray); font-size: 0.88rem; line-height: 1.6; }

/* ======= SHOWCASE EYEBROW / SUBHEADER ======= */
.showcase-eyebrow {
    display: inline-block; font-size: 0.8rem; font-weight: 700;
    letter-spacing: .04em; text-transform: uppercase;
    color: var(--primary-blue); margin-bottom: 10px;
}
.section-subheader { text-align: center; max-width: 640px; margin: 4.5rem auto 0; }
.subheader-title { font-size: 1.6rem; font-weight: 800; color: var(--text-dark); margin-bottom: 10px; }
.section-subheader p { color: var(--text-gray); font-size: 0.98rem; line-height: 1.6; }

/* ======= CHAT MOCK ======= */
.chat-mock {
    background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
    box-shadow: var(--shadow-md); padding: 1.5rem;
    display: flex; flex-direction: column; gap: 0.9rem;
}
.chat-mock-head { display: flex; align-items: center; gap: 12px; padding-bottom: 0.9rem; border-bottom: 1px solid var(--border); }
.chat-avatar {
    width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; color: #fff; font-size: 0.95rem;
}
.chat-avatar.voxi { background: linear-gradient(135deg, var(--primary-blue) 0%, var(--gradient-end) 100%); }
.chat-avatar.leader { background: var(--accent); color: #00355c; }
.chat-mock-head-text { display: flex; flex-direction: column; }
.chat-mock-head-text strong { font-size: 0.98rem; color: var(--text-dark); }
.chat-mock-head-text span { font-size: 0.8rem; color: var(--text-gray); }
.chat-bubble {
    font-size: 0.9rem; line-height: 1.55; padding: 0.8rem 1rem;
    border-radius: 14px; max-width: 85%;
}
.chat-bubble.user { align-self: flex-end; background: var(--primary-blue); color: #fff; border-bottom-right-radius: 4px; }
.chat-bubble.bot { align-self: flex-start; background: var(--bg-light); color: var(--text-dark); border-bottom-left-radius: 4px; }
.chat-ref { display: block; margin-top: 8px; font-size: 0.72rem; font-weight: 600; color: var(--primary-blue); }
.chat-foot { text-align: center; font-size: 0.75rem; color: var(--text-gray); padding-top: 0.6rem; border-top: 1px solid var(--border); }

/* ======= PRICING SINGLE ======= */
.pricing-grid-single { grid-template-columns: 1fr; max-width: 520px; margin-left: auto; margin-right: auto; }

/* ======= RESPONSIVE ======= */
@media (max-width: 1050px) and (min-width: 769px) {
    .nav-links { gap: 1rem; }
    .nav-links a { font-size: 0.85rem; }
    .nav-logo-img { height: 36px; }
}
@media (max-width: 1024px) {
    .hero-container { grid-template-columns: 1fr; text-align: center; }
    .hero-subtitle { margin: 0 auto 2rem; }
    .hero-stats { justify-content: center; }
    .hero-buttons { justify-content: center; }
    .hero-image { display: none; }
    .showcase-item { grid-template-columns: 1fr; gap: 2.5rem; margin-bottom: 3.5rem; }
    .showcase-item.reverse { direction: ltr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .team-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
    .story-grid { grid-template-columns: 1fr; }
    .feature-grid { grid-template-columns: repeat(2, 1fr); }
    .story-founder { flex-direction: column; text-align: center; gap: 1.5rem; }
    .story-founder-text p { margin-left: auto; margin-right: auto; }
}
@media (max-width: 768px) {
    .nav-links { display: none; }
    .mobile-menu-btn { display: flex; }
    .navbar { padding: 12px 1.25rem; }
    .container { padding: 0 1.25rem; }
    .hero { padding: 120px 1.25rem 3rem; }
    .hero-content h1 { font-size: 2.1rem; }
    .hero-stats { flex-wrap: wrap; gap: 1.25rem; }
    .section { padding: 3.5rem 0; }
    .section-header { margin-bottom: 2.5rem; }
    .section-header h2 { font-size: 1.7rem; }
    .showcase-item { gap: 2rem; }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .pricing-grid { grid-template-columns: 1fr; }
    .feature-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
    .hero-content h1 { font-size: 1.9rem; }
    .hero-subtitle { font-size: 1.05rem; }
    .hero-stats { flex-direction: column; gap: 1rem; align-items: center; }
    .hero-buttons { flex-direction: column; align-items: stretch; }
    .hero-buttons .btn { width: 100%; }
    .gallery-grid { grid-template-columns: 1fr; }
    .section-header h2 { font-size: 1.5rem; }
    .pricing-card-header { padding: 1.75rem 1.25rem; }
    .pricing-card-body { padding: 1.5rem 1.25rem; }
}
