/* ===========================
   BARREIRO ADVOCACIA - STYLES
   www.barreiroadvocacia.com.br
   =========================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-page: #0a0a0b;
    --bg-card: #1a1a1c;
    --bg-section: #141416;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a8;
    --text-muted: #6b6b73;
    --brand-primary: #1e40af;
    --brand-gold: #d4af37;
    --brand-hover: #1e3a8a;
    --border-color: rgba(160, 160, 168, 0.2);
    --gold-glow: rgba(212, 175, 55, 0.3);
    --blue-glow: rgba(30, 64, 175, 0.3);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--bg-page);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

@keyframes scrollLine {
    0% { transform: scaleY(0); opacity: 1; }
    100% { transform: scaleY(1); opacity: 0; }
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-up.visible,
.stat-item.visible,
.differential-item.visible,
.practice-area-card.visible,
.testimonial-card.visible,
.contact-card.visible,
.highlight-item.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 11, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: background 0.3s, box-shadow 0.3s;
}

.header.scrolled {
    background: rgba(10, 10, 11, 0.98);
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    transition: opacity 0.2s;
}

.header-logo:hover { opacity: 0.8; }
.header-logo svg { color: var(--brand-gold); }

.logo-text {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.2;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.header-nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
}

.header-nav a:hover { color: var(--brand-gold); }

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    padding: 1rem 2rem 1.5rem;
    gap: 1rem;
    border-top: 1px solid var(--border-color);
    background: rgba(10, 10, 11, 0.98);
}

.mobile-menu.active { display: flex; }
.mobile-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 1rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}
.mobile-menu a:hover { color: var(--brand-gold); }

/* ===== BUTTONS ===== */
.btn-primary {
    background: var(--brand-primary);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background 0.2s, transform 0.2s;
    white-space: nowrap;
}

.btn-primary:hover {
    background: var(--brand-hover);
    transform: translateY(-1px);
}

.btn-gold {
    background: linear-gradient(135deg, var(--brand-gold), #c49b33);
    color: #0a0a0b;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: transform 0.2s, box-shadow 0.2s;
    display: inline-block;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--gold-glow);
}

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 2rem 4rem;
    overflow: hidden;
}

.hero-bg-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10,10,11,0.98) 0%, rgba(10,10,11,0.85) 50%, rgba(30,64,175,0.1) 100%);
    z-index: 1;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(212,175,55,0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(30,64,175,0.08) 0%, transparent 50%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    background: transparent;
    border: 1px solid var(--brand-gold);
    color: var(--brand-gold);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.decorative-line {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--brand-gold), transparent);
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--brand-gold);
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.hero-description {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 650px;
}

.hero-cta {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.hero-checks {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.hero-checks span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.hero-google-rating {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1.25rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50px;
    width: fit-content;
}

.google-stars { font-size: 0.9rem; }

.google-text {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.google-score {
    color: var(--brand-gold);
    font-weight: 700;
    font-size: 1rem;
}

.google-divider { opacity: 0.3; }

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-line {
    width: 2px;
    height: 50px;
    background: linear-gradient(var(--brand-gold), transparent);
    margin: 0 auto;
    animation: scrollLine 2s ease-in-out infinite;
}

/* ===== STATS SECTION ===== */
.stats-section {
    background: linear-gradient(#0a0a0b, #141416);
    padding: 4rem 2rem;
    border-bottom: 1px solid var(--border-color);
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s, transform 0.5s;
}

.stat-icon-bg {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--brand-gold), #c49b33);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

.stat-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--gold-glow), transparent);
    pointer-events: none;
    z-index: 0;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--brand-gold);
    position: relative;
    z-index: 1;
}

.stat-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-secondary);
    letter-spacing: 1.5px;
    margin-top: 0.25rem;
    position: relative;
    z-index: 1;
}

.stat-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.4rem;
    position: relative;
    z-index: 1;
}

/* ===== SECTIONS ===== */
.section {
    padding: 6rem 2rem;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-tag {
    display: inline-block;
    background: rgba(212,175,55,0.1);
    border: 1px solid rgba(212,175,55,0.3);
    color: var(--brand-gold);
    padding: 0.35rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 600px;
    line-height: 1.7;
    margin-bottom: 3rem;
}

/* ===== DIFERENCIAIS ===== */
.differentials-section {
    background: var(--bg-section);
    text-align: center;
}

.differentials-section .section-subtitle { margin: 0 auto 3rem; }

.differentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.differential-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.75rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: border-color 0.3s, transform 0.3s;
    opacity: 0;
    transform: translateY(20px);
}

.differential-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.differential-item:hover {
    border-color: var(--brand-gold);
    transform: translateY(-3px);
}

.differential-icon {
    font-size: 1.5rem;
    min-width: 40px;
}

.differential-item span {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-primary);
    text-align: left;
}

/* ===== SOBRE ===== */
.about-section { background: var(--bg-page); }

.about-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 5rem;
    align-items: center;
}

.about-image-area {
    position: relative;
}

.about-image {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
    max-height: 500px;
    border: 2px solid rgba(212,175,55,0.2);
}

.about-rating {
    position: absolute;
    bottom: -1rem;
    right: -1rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    text-align: center;
}

.rating-stars { font-size: 1rem; margin-bottom: 0.25rem; }
.rating-text { font-size: 0.8rem; color: var(--text-secondary); }

.about-subtitle {
    color: var(--brand-gold);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1.25rem;
}

.about-text {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.highlights-grid {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 2rem;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transition: border-color 0.3s;
    opacity: 0;
    transform: translateY(20px);
}

.highlight-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.highlight-item:hover { border-color: var(--brand-gold); }
.highlight-icon { font-size: 1.4rem; min-width: 36px; }
.highlight-title { font-weight: 600; font-size: 0.95rem; color: var(--text-primary); margin-bottom: 0.25rem; }
.highlight-text { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.6; }

/* ===== ÁREAS DE ATUAÇÃO ===== */
.practice-areas-section {
    background: var(--bg-page);
    position: relative;
    text-align: center;
}

.practice-areas-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 300px;
    background: radial-gradient(at 50% 0%, rgba(212,175,55,0.05), transparent);
    pointer-events: none;
}

.practice-areas-section .section-subtitle { margin: 0 auto 3rem; }

.practice-areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.practice-area-card {
    background: rgba(26,26,28,0.6);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(20px);
    transition: 0.4s;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: left;
    opacity: 0;
    transform: translateY(20px);
}

.practice-area-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.practice-area-card:hover {
    border-color: rgba(212,175,55,0.3);
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.practice-area-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.practice-icon {
    font-size: 2rem;
    min-width: 50px;
    padding-top: 0.2rem;
}

.practice-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.practice-description {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

.practice-items {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    flex-grow: 1;
}

.practice-items li {
    color: var(--text-secondary);
    font-size: 0.9rem;
    padding-left: 1.2rem;
    position: relative;
}

.practice-items li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--brand-gold);
}

.practice-btn {
    text-align: center;
    padding: 0.85rem 1.5rem;
    font-size: 0.9rem;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, #0d1b4b 0%, #0a0a0b 50%, #1a1205 100%);
    padding: 6rem 2rem;
    text-align: center;
    border-top: 1px solid rgba(212,175,55,0.1);
    border-bottom: 1px solid rgba(212,175,55,0.1);
    position: relative;
    overflow: hidden;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-tag {
    display: inline-block;
    background: rgba(212,175,55,0.1);
    border: 1px solid rgba(212,175,55,0.3);
    color: var(--brand-gold);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.cta-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.cta-benefits {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.cta-benefit {
    color: var(--text-secondary);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-action { margin-bottom: 1.5rem; }

.cta-footer {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ===== DEPOIMENTOS ===== */
.testimonials-section {
    background: var(--bg-section);
    text-align: center;
}

.testimonials-section .section-subtitle { margin: 0 auto 3rem; }

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.75rem;
}

.testimonial-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    transition: transform 0.3s, border-color 0.3s;
    text-align: left;
    opacity: 0;
    transform: translateY(20px);
}

.testimonial-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--brand-gold);
}

.testimonial-stars { font-size: 1rem; }

.testimonial-text {
    color: var(--text-primary);
    font-size: 0.95rem;
    line-height: 1.7;
    font-style: italic;
    flex-grow: 1;
}

.testimonial-author {
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.author-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.author-area {
    font-size: 0.8rem;
    color: var(--brand-gold);
    margin-top: 0.2rem;
}

/* ===== FAQ ===== */
.faq-section { background: var(--bg-page); text-align: center; }
.faq-section .section-subtitle { margin: 0 auto 3rem; }

.faq-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: border-color 0.2s, background 0.2s;
}

.faq-question:hover { border-color: var(--brand-primary); }

.faq-item.open .faq-question {
    border-color: var(--brand-gold);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.faq-arrow {
    color: var(--brand-gold);
    font-size: 0.8rem;
    transition: transform 0.3s;
    flex-shrink: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 0.95rem;
    padding: 0 1.5rem;
    background: rgba(26,26,28,0.5);
    border: 1px solid var(--brand-gold);
    border-top: none;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
    padding: 1.5rem;
}

/* ===== CONTATO ===== */
.contact-section { background: var(--bg-section); text-align: center; }
.contact-section .section-subtitle { margin: 0 auto 3rem; }

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.contact-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: border-color 0.3s, transform 0.3s;
    opacity: 0;
    transform: translateY(20px);
}

.contact-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.contact-card:hover {
    border-color: var(--brand-gold);
    transform: translateY(-3px);
}

.contact-icon { font-size: 2rem; margin-bottom: 0.75rem; }

.contact-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.contact-value {
    font-size: 0.95rem;
    color: var(--text-primary);
    text-decoration: none;
    line-height: 1.6;
}

.contact-value:hover { color: var(--brand-gold); }

.contact-cta {
    background: linear-gradient(135deg, #0d1b4b, #0a0a0b);
    border: 1px solid rgba(212,175,55,0.2);
    border-radius: 20px;
    padding: 3rem;
    max-width: 700px;
    margin: 0 auto;
}

.contact-cta h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.contact-cta p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.contact-checks {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.contact-checks span {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

/* ===== FOOTER ===== */
.footer {
    background: #050506;
    border-top: 1px solid var(--border-color);
    padding: 3rem 2rem;
    text-align: center;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo svg { color: var(--brand-gold); }

.footer-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
}

.footer-links a:hover { color: var(--brand-gold); }

.footer-copy {
    color: var(--text-muted);
    font-size: 0.8rem;
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
    margin-top: 1.5rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .about-image-area { max-width: 450px; margin: 0 auto; }
}

@media (max-width: 768px) {
    .header-nav { display: none; }
    .header-container .btn-primary { display: none; }
    .mobile-menu-btn { display: block; }
    
    .hero-section { padding: 6rem 1.5rem 4rem; }
    .hero-title { font-size: 2rem; }
    .hero-cta { flex-direction: column; align-items: flex-start; gap: 1rem; }
    
    .stats-container { grid-template-columns: 1fr; }
    
    .section { padding: 4rem 1.5rem; }
    
    .practice-areas-grid { grid-template-columns: 1fr; }
    
    .cta-benefits { flex-direction: column; align-items: center; gap: 0.75rem; }
    
    .testimonials-grid { grid-template-columns: 1fr; }
    
    .contact-grid { grid-template-columns: 1fr 1fr; }
    
    .contact-cta { padding: 2rem 1.5rem; }
    
    .footer-links { gap: 1rem; }
    
    .google-text { flex-wrap: wrap; gap: 0.25rem; }
}

@media (max-width: 480px) {
    .hero-google-rating { flex-direction: column; text-align: center; }
    .contact-grid { grid-template-columns: 1fr; }
    .differentials-grid { grid-template-columns: 1fr; }
}
