/* ============================================================
   MARIANGELA BUFFET — STYLES
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

/* ---------- TOKENS ---------- */
:root {
    --black:           #000000;
    --black-soft:      #0A0A0A;
    --black-card:      #111111;
    --white:           #FFFFFF;
    --white-muted:     #E8E8E8;
    --gray:            #9A9A9A;
    --gray-line:       rgba(255, 255, 255, 0.08);

    --orange:          #F78C27;
    --orange-light:    #FFA858;
    --orange-dark:     #C66E14;
    --orange-pale:     rgba(247, 140, 39, 0.12);
    --orange-border:   rgba(247, 140, 39, 0.35);

    --font-display:    'Playfair Display', Georgia, serif;
    --font-body:       'Inter', system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;

    --container:       1200px;
    --radius:          8px;
    --radius-lg:       14px;

    --transition:      0.3s ease;
}

/* ---------- RESET / BASE ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
}
body {
    background: var(--black);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    width: 100%;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.01em;
}

::selection { background: var(--orange); color: var(--white); }

/* ---------- LAYOUT ---------- */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 40px;
}
.section {
    padding: 144px 0;
    position: relative;
}
.section-alt { background: var(--black-soft); }

/* ---------- UTILITIES ---------- */
.eyebrow {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 20px;
}
.eyebrow::before {
    content: '';
    display: inline-block;
    width: 32px;
    height: 1px;
    background: var(--orange);
    vertical-align: middle;
    margin-right: 12px;
}
.highlight { color: var(--orange); }
.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 24px;
    max-width: 760px;
}
.section-subtitle {
    font-size: 1.125rem;
    color: var(--white-muted);
    max-width: 680px;
    margin-bottom: 80px;
}

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 36px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border: none;
    border-radius: var(--radius);
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
}
.btn-primary {
    background: var(--orange);
    color: var(--white);
    box-shadow: 0 8px 24px rgba(247, 140, 39, 0.28);
}
.btn-primary:hover {
    background: var(--orange-light);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(247, 140, 39, 0.4);
}
.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--orange);
}
.btn-outline:hover {
    background: var(--orange);
    color: var(--white);
}

/* ---------- NAVBAR ---------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 100;
    border-bottom: 1px solid var(--gray-line);
}
.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.brand {
    display: inline-flex;
    align-items: center;
    line-height: 0;
}
.brand img {
    height: 38px;
    width: auto;
    display: block;
}
.nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
}
.nav-links a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--white-muted);
    transition: var(--transition);
}
.nav-links a:hover { color: var(--orange); }

/* ---------- HERO ---------- */
.hero {
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    align-items: center;
    padding: 180px 0 120px;
    position: relative;
    overflow: hidden;
    background-image: url('hero-casamento.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    pointer-events: none;
    z-index: 1;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: 10%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(247, 140, 39, 0.12) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}
.hero .container { position: relative; z-index: 2; }
.hero-content { position: relative; z-index: 2; max-width: 920px; }
.hero-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: 1.05;
    margin-bottom: 28px;
    font-weight: 600;
}
.hero-subtitle {
    font-size: clamp(1.0625rem, 1.6vw, 1.25rem);
    color: var(--white-muted);
    margin-bottom: 40px;
    max-width: 720px;
    line-height: 1.6;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 24px;
    margin-bottom: 56px;
}
.hero-caption {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.9rem;
    color: var(--gray);
    font-style: italic;
}
.hero-caption::before {
    content: '';
    width: 36px;
    height: 1px;
    background: var(--orange);
}

/* ---------- ABOUT ---------- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}
.about-text p {
    font-size: 1.0625rem;
    color: var(--white-muted);
    margin-bottom: 22px;
    line-height: 1.75;
}
.about-text p:last-child { margin-bottom: 0; }
.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 48px;
    padding-top: 48px;
    border-top: 1px solid var(--gray-line);
}
.stat-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--orange);
    line-height: 1;
    margin-bottom: 8px;
}
.stat-label {
    font-size: 0.875rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ---------- SERVICES ---------- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}
.service-card {
    background: var(--black-card);
    border: 1px solid var(--gray-line);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--orange);
    transition: width 0.4s ease;
}
.service-card:hover {
    transform: translateY(-6px);
    border-color: var(--orange-border);
}
.service-card:hover::before { width: 100%; }
.service-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background: var(--orange-pale);
    border: 1px solid var(--orange-border);
    color: var(--orange);
    margin-bottom: 24px;
}
.service-number svg {
    width: 30px;
    height: 30px;
}
.service-title {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--white);
}
.service-text {
    color: var(--white-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ---------- DIFFERENTIALS ---------- */
.differentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 48px;
}
.differential {
    padding: 32px 0;
    border-top: 1px solid var(--gray-line);
    transition: var(--transition);
}
.differential-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--orange-pale);
    color: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    border: 1px solid var(--orange-border);
}
.differential-icon svg {
    width: 26px;
    height: 26px;
}
.differential-title {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--white);
}
.differential-text {
    color: var(--white-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ---------- IMAGE BREAK (PARALLAX) ---------- */
.image-break {
    position: relative;
    width: 100%;
    min-height: 56vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}
@media (hover: none) and (pointer: coarse) {
    .image-break {
        background-attachment: scroll;
    }
}
.image-break::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.65) 100%);
    pointer-events: none;
}
.image-break-text {
    position: relative;
    z-index: 2;
    padding: 32px 24px;
    max-width: 880px;
}
.image-break-text h3 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3.6vw, 3rem);
    color: var(--white);
    line-height: 1.25;
    font-weight: 500;
    font-style: italic;
    letter-spacing: -0.005em;
}
.image-break-text .highlight { font-style: italic; }
@media (max-width: 900px) {
    .image-break {
        background-attachment: scroll;
        min-height: 420px;
    }
}

/* ---------- TESTIMONIALS ---------- */
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}
.testimonial {
    background: var(--black-card);
    border: 1px solid var(--gray-line);
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    position: relative;
}
.testimonial::before {
    content: '"';
    position: absolute;
    top: 16px;
    left: 32px;
    font-family: var(--font-display);
    font-size: 6rem;
    color: var(--orange);
    opacity: 0.25;
    line-height: 1;
    font-weight: 700;
}
.testimonial-text {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--white);
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
}
.testimonial-author {
    font-size: 0.9rem;
    color: var(--orange);
    font-weight: 500;
    letter-spacing: 0.04em;
}

/* ---------- GOOGLE REVIEWS ---------- */
.reviews-header {
    text-align: center;
    margin-bottom: 64px;
}
.reviews-header .eyebrow,
.reviews-header .section-title,
.reviews-header .section-subtitle {
    margin-left: auto;
    margin-right: auto;
}
.reviews-header .section-subtitle { text-align: center; }
.rating-card {
    display: inline-flex;
    align-items: center;
    gap: 28px;
    background: var(--black-card);
    border: 1px solid var(--gray-line);
    border-radius: var(--radius-lg);
    padding: 24px 36px;
    margin-top: 8px;
}
.rating-google {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
}
.rating-info { text-align: left; }
.rating-score-row {
    display: flex;
    align-items: center;
    gap: 14px;
}
.rating-score {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--orange);
    line-height: 1;
}
.rating-stars {
    color: var(--orange);
    font-size: 1.25rem;
    letter-spacing: 3px;
    line-height: 1;
}
.rating-count {
    font-size: 0.85rem;
    color: var(--gray);
    margin-top: 8px;
}
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    margin-bottom: 56px;
}
.review-card {
    background: var(--black-card);
    border: 1px solid var(--gray-line);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.review-card:hover {
    border-color: var(--orange-border);
    transform: translateY(-3px);
}
.review-card-top {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}
.review-avatar {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--orange-pale);
    color: var(--orange);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--orange-border);
}
.review-meta {
    flex: 1;
    min-width: 0;
}
.review-author {
    font-weight: 600;
    color: var(--white);
    font-size: 0.95rem;
    line-height: 1.2;
}
.review-date {
    font-size: 0.78rem;
    color: var(--gray);
    margin-top: 4px;
}
.review-google {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}
.review-stars {
    color: var(--orange);
    font-size: 0.95rem;
    letter-spacing: 2px;
    line-height: 1;
    margin-bottom: 14px;
}
.review-text {
    color: var(--white-muted);
    font-size: 0.95rem;
    line-height: 1.65;
}
.reviews-cta {
    text-align: center;
}

/* ---------- FAQ ---------- */
.faq-list {
    max-width: 860px;
    margin: 0 auto;
}
.faq-item {
    border-bottom: 1px solid var(--gray-line);
}
.faq-item:first-child { border-top: 1px solid var(--gray-line); }
.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 28px 0;
    text-align: left;
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    transition: color var(--transition);
}
.faq-question:hover { color: var(--orange); }
.faq-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border: 1px solid var(--orange);
    border-radius: 50%;
    position: relative;
    transition: var(--transition);
}
.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background: var(--orange);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.faq-icon::before { width: 12px; height: 1.5px; }
.faq-icon::after { width: 1.5px; height: 12px; transition: transform var(--transition); }
.faq-item.is-open .faq-icon { background: var(--orange); }
.faq-item.is-open .faq-icon::before,
.faq-item.is-open .faq-icon::after { background: var(--white); }
.faq-item.is-open .faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}
.faq-answer-inner {
    padding: 0 0 28px;
    color: var(--white-muted);
    font-size: 1rem;
    line-height: 1.75;
    max-width: 720px;
}
.faq-item.is-open .faq-answer { max-height: 400px; }

/* ---------- CONTACT FORM ---------- */
.contact {
    background: linear-gradient(180deg, var(--black) 0%, var(--black-soft) 100%);
}
.contact-wrapper {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    width: 100%;
    min-width: 0;
}
.contact .section-title { margin-left: auto; margin-right: auto; }
.contact .section-subtitle { margin-left: auto; margin-right: auto; text-align: center; }
.form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 20px;
    text-align: left;
    margin-top: 16px;
    width: 100%;
    max-width: 100%;
}
.form-field { display: flex; flex-direction: column; gap: 8px; min-width: 0; }
.form-field.full { grid-column: 1 / -1; }
.form-field label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--gray);
    font-weight: 500;
}
.form-field input,
.form-field select {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    background: var(--black-card);
    border: 1px solid var(--gray-line);
    border-radius: var(--radius);
    padding: 16px 18px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.form-field input[type="number"]::-webkit-outer-spin-button,
.form-field input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.form-field input[type="number"] { -moz-appearance: textfield; }

/* Date input — força shrink no iOS Safari (min-content travada por padrão) */
.form-field input[type="date"] {
    min-width: 0;
    width: 100%;
    max-width: 100%;
    display: block;
}
.form-field input[type="date"]::-webkit-date-and-time-value {
    text-align: left;
    min-width: 0;
}
.form-field input[type="date"]::-webkit-datetime-edit,
.form-field input[type="date"]::-webkit-datetime-edit-fields-wrapper,
.form-field input[type="date"]::-webkit-datetime-edit-text,
.form-field input[type="date"]::-webkit-datetime-edit-day-field,
.form-field input[type="date"]::-webkit-datetime-edit-month-field,
.form-field input[type="date"]::-webkit-datetime-edit-year-field {
    min-width: 0;
    padding: 0;
}
.form-field input[type="date"]::-webkit-calendar-picker-indicator {
    margin-left: auto;
    padding: 0;
    opacity: 0.7;
    cursor: pointer;
    filter: invert(64%) sepia(58%) saturate(727%) hue-rotate(346deg) brightness(99%) contrast(94%);
}
.form-field input:focus,
.form-field select:focus {
    outline: none;
    border-color: var(--orange);
    background: var(--black-soft);
}
.form-field select {
    appearance: none;
    -webkit-appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, var(--orange) 50%), linear-gradient(135deg, var(--orange) 50%, transparent 50%);
    background-position: calc(100% - 22px) 50%, calc(100% - 17px) 50%;
    background-size: 5px 5px;
    background-repeat: no-repeat;
    padding-right: 44px;
}
.form-field select option { background: var(--black-card); color: var(--white); }
.form .btn { grid-column: 1 / -1; margin-top: 12px; }

/* ---------- OPT-IN MODAL ---------- */
.optin-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.82);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.optin-overlay[hidden] { display: none; }
.optin-overlay.is-open { opacity: 1; }
.optin-modal {
    position: relative;
    background: linear-gradient(145deg, #181818 0%, #0A0A0A 100%);
    border: 1px solid var(--gray-line);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 560px;
    max-height: calc(100vh - 48px);
    max-height: calc(100svh - 48px);
    overflow-y: auto;
    padding: 48px 40px 40px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7);
    transform: translateY(24px);
    transition: transform 0.3s ease;
}
.optin-overlay.is-open .optin-modal { transform: translateY(0); }
.optin-close {
    position: absolute;
    top: 14px;
    right: 16px;
    background: transparent;
    border: none;
    color: var(--gray);
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    padding: 6px 10px;
    transition: color 0.2s ease;
}
.optin-close:hover { color: var(--orange); }
.optin-header {
    text-align: center;
    margin-bottom: 32px;
}
.optin-header .eyebrow { margin-bottom: 16px; }
.optin-title {
    font-family: var(--font-display);
    color: var(--white);
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    line-height: 1.2;
    margin-bottom: 12px;
    font-weight: 600;
    letter-spacing: -0.01em;
}
.optin-title .highlight { color: var(--orange); }
.optin-subtitle {
    color: var(--white-muted);
    font-size: 0.95rem;
    line-height: 1.55;
    max-width: 420px;
    margin: 0 auto;
}
.optin-modal .form {
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
    margin-top: 0;
}
.optin-modal .form .btn {
    margin-top: 8px;
    width: 100%;
}
body.optin-open { overflow: hidden; }
@media (max-width: 600px) {
    .optin-overlay { padding: 16px; }
    .optin-modal { padding: 40px 24px 28px; }
    .optin-title { font-size: 1.5rem; }
    .optin-header { margin-bottom: 24px; }
}

/* ---------- FOOTER ---------- */
.footer {
    background: var(--black);
    padding: 96px 0 40px;
    border-top: 1px solid var(--gray-line);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 64px;
    margin-bottom: 64px;
}
.footer-brand .brand { margin-bottom: 24px; display: inline-flex; }
.footer-brand .brand img { height: 56px; }
.footer-brand p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 320px;
}
.footer-col h4 {
    font-family: var(--font-body);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--orange);
    margin-bottom: 20px;
    font-weight: 600;
}
.footer-col p, .footer-col a {
    color: var(--white-muted);
    font-size: 0.95rem;
    line-height: 1.85;
    display: block;
    transition: var(--transition);
}
.footer-col a:hover { color: var(--orange); }
.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid var(--gray-line);
    text-align: center;
    color: var(--gray);
    font-size: 0.825rem;
    letter-spacing: 0.04em;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
    .container { padding: 0 32px; }
    .nav-links { display: none; }
    .section { padding: 104px 0; }
    .section-subtitle { margin-bottom: 56px; }
    .about-grid { grid-template-columns: 1fr; gap: 48px; }
    .testimonials-grid { grid-template-columns: 1fr; gap: 24px; }
    .footer { padding: 72px 0 32px; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; margin-bottom: 48px; }
    .hero { padding: 156px 0 96px; min-height: auto; }
    .hero-actions { gap: 16px; }
    .hero-caption { width: 100%; }
    .reviews-grid { gap: 20px; }
    .differentials-grid { gap: 36px; }
    /* Anti-jitter: zera transforms em touch */
    .service-card:hover,
    .review-card:hover,
    .btn-primary:hover,
    .btn-outline:hover {
        transform: none;
    }
}

@media (max-width: 600px) {
    .container { padding: 0 24px; }
    .section { padding: 88px 0; }
    .section-title { font-size: clamp(1.875rem, 7vw, 2.25rem); }
    .section-subtitle { margin-bottom: 48px; font-size: 1rem; }
    .form { grid-template-columns: minmax(0, 1fr); gap: 18px; }
    .form-field input,
    .form-field select { padding: 15px 16px; }
    .form-field select { padding-right: 40px; }
    .form-field input[type="date"] { padding-right: 14px; }
    .testimonial { padding: 36px 24px; }
    .testimonial::before { font-size: 5rem; top: 12px; left: 24px; }
    .testimonial-text { font-size: 1.125rem; }
    .service-card { padding: 32px 24px; }
    .review-card { padding: 24px; }
    .about-stats { grid-template-columns: 1fr; gap: 28px; padding-top: 36px; margin-top: 36px; }
    .stat-number { font-size: 2.25rem; }
    .btn { padding: 16px 26px; font-size: 0.825rem; }
    .hero-title { font-size: clamp(2.25rem, 9vw, 3rem); }
    .hero-subtitle { font-size: 1rem; }
    .hero { padding: 140px 0 72px; }
    .hero-actions { width: 100%; }
    .hero-actions .btn { width: 100%; }
    .faq-question { font-size: 1rem; padding: 22px 0; gap: 16px; }
    .faq-question span:first-child { line-height: 1.4; }
    .rating-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 24px;
        gap: 16px;
    }
    .rating-score-row { flex-wrap: wrap; }
    .image-break { min-height: 360px; }
    .navbar { padding: 14px 0; }
    .brand img { height: 32px; }
    .navbar .btn { padding: 10px 16px; font-size: 0.7rem; }
    .footer { padding: 64px 0 28px; }
    .footer-brand .brand img { height: 48px; }
}

@media (max-width: 380px) {
    .container { padding: 0 20px; }
    .hero-title { font-size: 2rem; }
    .section-title { font-size: 1.75rem; }
}
